#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;
    z-index: 1000;
}

.navibar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    width: 100%; 
    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;
}
.contact-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(20, 20, 20, 0.85);
    padding: 90px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

body {
    font-family: "Cal Sans", sans-serif;
}

.buttons {
    margin-top: 10px;
}

.icon img {
    width: 40px;
    height: auto; 
    margin-right: 10px ;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    margin: 10px;
    font-size: 18px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(228, 224, 224);
    border-radius: 5px;
    transition: 0.3s;
}


.btn:hover {
    background: #ffffff;
    color: rgb(0, 0, 0);
}

.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;
        padding: 0;
    }

    .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;
    }

    .contact-container {
        width: 90%;
        padding: 40px 20px;
        margin-top: 60px;
        padding-right: 30px;
    }

    .btn {
        width: 100%;
        font-size: 16px;
        padding: 10px;
        justify-content: center;
    }

    .btn:hover {
        background: black;
        color: white;
    }

    .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;
    }

    .contact-container {
        width: 90%;
        padding: 40px 20px;
        margin-top: 60px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        box-sizing: border-box;
        margin-right: 10px;  
    }

    .btn {
        width: calc(100% - 4px); 
        box-sizing: border-box;
        border: 2px solid black;
        padding: 10px;
        font-size: 16px;
        margin: 10px 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn:hover {
        background: black;
        color: white;
    }

    .brand-text {
        display: block;
    }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
    .btn {
        font-size: 17px;
        padding: 12px 20px;
    }
}