* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    width: 101vw;
}

/* nav bar yahan se hai  */
.navbar {
    width: 100%;
    /* padding-left: 23px; */
    height: 74px;
    background: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: white;
    position: sticky;
    top: 0px;
    z-index: 999
}

.nav-container {
    max-width: 100%;
    padding: 7px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo img {
    width: auto;
    height: 60px;
    /* margin-left: 30px; */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin-left: 70px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

.about-line {
    border-bottom: 3px solid rgb(5, 240, 240);
}

/* hero section */
.hero-left {
    width: 40vw;
    padding: 40px;
}

.hero-left button {
    padding: 11px;
    border-radius: 14px;
    margin-top: 25px;
    background-color: #000000;
    color: white;
    border: 2px solid black;
    cursor: pointer;
    font-weight: 400;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.hero-left button:hover {
    background: rgb(91, 92, 91);
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.hero-left h1 {
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

section {
    background-color: #bfecc7;
}

.right img {
    width: 100%;
    height: 307px;
    margin: 36px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-right: 17px;
}

center h2 {
    padding: 35px;
    font-size: 36px;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-color: #000000;
    text-decoration-thickness: 2px;
}

.main-text p {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bio {
    margin: 14px 190px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 18px;
}

/* Section heading */
.bio-1 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.tag-line {
    font-size: 17px;
    font-weight: 600;
}

.privacy-policy {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10px 150px;
}

/* GRID WRAPPER */
.team-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
    gap: 40px;
    padding: 20px 0;
}

/* EACH CARD */
.bio-2 {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.bio-2:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.bio-2 img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: auto;
    border: 3px solid #e5e5e5;
}

/* TEXT */
.bio-2 p {
    margin-top: 15px;
    font-size: 15px;
    line-height: 22px;
    color: #333;
}

/* RESPONSIVE (phones) */
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns */
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        /* 1 column */
    }
}


/* Footer yahan se hai */

.footer-container {
    width: 100%;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 30px;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
}

.footer-logo img {
    height: 50px;
}

.copyright {
    margin-left: 20px;
}

.social {
    display: flex;
    gap: 8px;
}

.social img {
    width: 32px;
    height: auto;
}

/* Mobile view */
@media (max-width: 500px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 10px;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .copyright {
        margin: 10px 0;
    }

    .social {
        margin-top: 10px;
        gap: 12px;
    }

    .footer-logo img {
        height: 35px;
    }

    .social img {
        width: 20px;
    }
}

/* Popup background */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* Popup box */
.popup-content {
    background: #fff;
    width: 350px;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: popIn 0.25s ease-out;
}

/* Animation */
@keyframes popIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Title */
.popup-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Small text */
.popup-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #444;
}

/* Buttons */
.popup-content .btn-pop {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

/* WhatsApp button */
.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1da851;
}

/* Call button */
.btn-call {
    background: #007bff;
    color: white;
}

.btn-call:hover {
    background: #0063d6;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #eee;
    border: none;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
}

.close-btn:hover {
    background: #ddd;
}



/* -- MOBILE VIEW FIXED -- */
@media (max-width: 855px) {

    .hero-left h1 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 6px 12px;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 150px;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        overflow-x: hidden;
    }

    .menu-icon {
        display: block;
    }

    #menu-toggle:checked~.nav-links {
        display: flex;
        background-color: #000000;
    }

    .hero {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .hero-left {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
        flex-direction: column;
    }

    .right img {
        height: 252px;
        width: 82vw;
        margin: 5px;
    }

    .bio {
        width: 80vw;
        margin: 10px 46px;
        margin-bottom: 40px;
    }

    .bio-1 {
        margin-bottom: 50px;
    }

    .bio-2 {
        margin: 31px 50px;
        gap: 40px;
    }

    .bio-2 img {
        width: 167px;
        height: 167px
    }

}

@media (max-width: 500px) {
    .tag-line{
        margin: 0px 45px;
        margin-bottom: 20px;
    }
    .privacy-policy {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: start;
        margin: 10px 45px;
    }

    .hero-left h1 {
        text-align: center;
    }

    .navbar {
        padding-left: 0px;
    }

    .nav-container {
        padding: 5px 20px;
        justify-content: space-between;
    }

    .footer-logo img {
        margin: 20px 10px;
        height: 35px;
    }

    .hero {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .bio {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: start;
    }

    .right img {
        margin-bottom: 20px;
        width: 394px;
        height: auto;
    }

    .main-text h2 {
        font-size: 21px;
        margin: 30px 46px;
        padding: 0;
    }

    .footer-container {
        height: 28vh;
    }

    .footer-logo {
        margin-left: 10px
    }

    .copyright {
        margin: 0px 10px;
    }

    .social {
        margin: 12px 13px;
    }

}