#vanta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.navibar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(9, 10, 75, 0.397);
    padding: 15px 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    z-index: 1000;
}

.navibar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    width: max-content;
    justify-content: flex-start;
}

.navibar a {
    color: white;
    text-decoration: none;
    font-size: 23px;
    padding: 10px 15px;
    border-radius: 5px;
}

.navibar a:hover {
    background: #555;
}

body {
    font-family: "Cal Sans", sans-serif;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.boxxs {
    background: rgba(20, 20, 20, 0.85); 
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15); 
    position: relative;
    z-index: 1;
    color: white; 
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.boxxs p {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #000000; 
}

#tech-title {
    font-size: 30px;
    font-family: "Cal Sans", sans-serif;
    font-weight: 600;
    text-align: center;
    color: #FFFFFF; 
    margin-bottom: 15px;
}

.tech-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: lightskyblue;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-top: 4px solid green;
}

.tech-item img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.tech-item p {
    margin: 5px 0 0;
    font-size: 12px;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 999;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: 0.4s;
}
.brand-text {
    display: none;
    position: fixed;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 24px;
    font-family: "Cal Sans", sans-serif;
    font-weight: bold;
    z-index: 999;
}

@media screen and (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .navibar {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 250px;
        background: rgba(9, 10, 75, 0.95);
        flex-direction: column;
        padding: 60px 20px;
        transition: 0.3s;
        z-index: 1001;
    }

    .navibar.active {
        left: 0;
    }

    .navibar ul {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .navibar ul {
        gap: 15px;
        padding: 0 10px;
        min-width: max-content;
    }

    .navibar a {
        font-size: 16px;
        padding: 8px 12px;
        white-space: nowrap;
        display: block;
        width: 100%; 
        text-align: left; 
        font-size: 23px;
        padding: 10px 15px;
        white-space: nowrap;
    }

    body {
        padding-top: 60px;
    }

    .boxxs {
        margin-top: 60px;
        width: 90%;
    }

    .btn {
        width: 100%;
        margin: 10px 0;
        justify-content: center;
    }

    .brand-text {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .navibar {
        padding: 60px 15px;
    }

    .navibar ul {
        gap: 15px;
    }

    .navibar a {
        font-size: 20px;
        padding: 8px 12px;
    }

    .brand-text {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .tech-container {
        gap: 10px;
        padding: 10px;
    }

    .tech-item {
        width: 70px;
        height: 70px;
    }

    .tech-item img {
        width: 35px;
        height: 35px;
    }
}
