body {
    margin: 0;
    padding: 0;
    background-color: black;
}

/* navbar */
.about-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 15px;
    z-index: 3;
    box-sizing: border-box;
}

.about-nav-left {
    width: 30%;
}

.about-nav-right {
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.nav-option-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    background-color: black;
    color: white;
    padding: 10px 20px;
    display: none;
    flex-direction: column;
    z-index: 10;
    margin-top: 10px;
}

.dropdown-menu p {
    margin: 0;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    white-space: nowrap;
}

.dropdown-menu p:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Show on hover */
.nav-option-group:hover .dropdown-menu {
    display: flex;
}

.drop-section {
    display: flex;
}

.nav-option-group:hover {
    color: #969696;
}

.nav-option {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    color: white;
}

.nav-option:hover {
    color: #969696;
}

.menu-icon {
    width: 20px;
    height: auto;
    display: none;
}

.down-arrow {
    width: 10px;
    height: 10px;
    border-left: 2.5px solid white;
    border-bottom: 2.5px solid white;
    transform: rotate(-45deg);
    margin-bottom: 3px;
}

.down-arrow :hover {
    color: #969696;
}

/* about-top-section */
.about-top-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    filter: grayscale(100%);
}


.black-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.video-overlay-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Animation Keyframes */
@keyframes slideFromTop {
    0% {
        transform: translateY(-200px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Apply the animation */
.video-overlay-content {
    animation: slideFromTop 0.8s ease-out forwards;
}

.about-head {
    margin: 0;
    font-weight: 500;
    font-size: 70px;
    line-height: 4.5rem;
}

.about-mini-head {
    margin: 0;
    font-weight: 300;
    font-size: 20px;
    padding: 20px 0px;
    color: white;
}

/* about-us-section */
.about-us-section {
    padding: 100px 15px;
    color: white;
    /* Ensure text is visible */
    display: flex;
    justify-content: center;
    padding-bottom: 0px;
}

.about-us-top {
    width: 60%;
    text-align: center;
}

@keyframes slideFromBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.about-us-top {
    opacity: 0;
    transform: translateY(100px);
}

.about-us-top.animate {
    animation: slideFromBottom 0.8s ease-out forwards;
}

.about-us-head {
    margin: 0;
    font-weight: 500;
    font-size: 55px;
    line-height: 4.5rem;
    color: white;
}

.about-us-video-section {
    margin-top: 40px;
    padding: 70px 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Needed for absolute positioning of play button */
    width: 100%;
    padding-top: 30px;
    height: auto;
}

@keyframes slideFromBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.about-img-grid {
    opacity: 0;
    transform: translateY(100px);
}

.about-img-grid.animate {
    animation: slideFromBottom 0.9s ease-out forwards;
}


.about-us-video {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 60vh;
}

.play-btn {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.2);
    /* Transparent white */
    border: 2px solid white;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    /* Optional for glassy look */
}

.play {
    width: 15px;
    height: auto;
}

.about-grid {
    padding: 50px 0px;
    padding-bottom: 100px;
}

@keyframes slideFromBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.second-grid-scrollb {
    opacity: 0;
    transform: translateY(100px);
}

.second-grid-scrollb.animate {
    animation: slideFromBottom 1s ease-out forwards;
}

.second-grid-scrollb {
    padding: 0px 15px;
}

/* project-section */
.project-section.b {
    padding: 150px 15px;
    background-color: black;
    display: flex;
    gap: 150px;
    padding-bottom: 80px;
}

/* testimonial-section */
.testimonial-section-grid {
    padding: 100px 15px;
    background-color: white;
}

/* Reuse the same keyframe */
@keyframes slideFromBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.testimonial-grids {
    opacity: 0;
    transform: translateY(100px);
}

.testimonial-grids.animate {
    animation: slideFromBottom 1s ease-out forwards;
}

.testimonial {
    font-size: 160px;
    margin: 0;
    color: black;
    font-weight: 900;
    text-align: center;
}

.testimonial-section {
    width: 100%;
    /* Full width */
    padding: 60px 0px;
    background-color: white;
    display: flex;
    justify-content: center;
    padding-top: 0;
}

.testimonial-container {
    width: 100%;
    /* Also full width */
    max-width: 1200px;
    /* Optional: controls inner content max width */
    text-align: center;
    padding: 20px 40px;
    position: relative;
}


.testimonial-text {
    font-size: 28px;
    line-height: 1.4;
    color: #999;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 500;
    color: black;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
}

.dot.active {
    background-color: black;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ccc;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.arrow.left {
    left: -30px;
}

.arrow.right {
    right: -30px;
}

.arrow:hover {
    border: 1px solid black;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

/* people-section */
.people-section {
    padding: 100px 15px;
    background-color: black;
    display: flex;
    justify-content: center;
}

.people-section-top {
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.people-section-top-grid {
    width: 60%;
    padding-bottom: 80px;
}

.people-mini-head {
    margin: 0;
    font-weight: 300;
    font-size: 20px;
    padding: 20px 0px;
    color: #969696;
}

.people-section-bottom {
    display: flex;
    gap: 50px;
    width: 100%;
}

.people-section-bottom {
    opacity: 0;
    transform: translateY(100px);
}

.people-section-bottom.animate {
    animation: slideFromBottom 1s ease-out forwards;
}

@keyframes slideFromBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.people-section-bottom-grid {
    flex: 1;
    /* Ensures equal width for each card */
    border: 0.2px solid white;
    display: flex;
    flex-direction: column;
}

.img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Crop any overflow */
}

.profile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image covers the whole container */
    display: block;
}

.img-bottom-section {
    display: flex;
    padding: 15px;
    justify-content: space-between;
}

.img-bottom-section-left {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.img-bottom-section-right {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.img-name {
    margin: 0;
    font-size: 24px;
    color: white;
    text-align: left;
}

.designation {
    font-size: 20px;
    margin: 0;
    color: #969696;
    text-align: left;
}

.img-bottom-socialmedia {
    text-transform: uppercase;
    font-size: 16px;
    color: white;
    font-weight: 300;
    margin: 0;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    height: 100vh;
    background-color: black;
    color: white;
    z-index: 999;
    transition: left 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-logo {
    width: 120px;
    height: auto;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu-links p {
    padding: 5px 0;
    margin: 0;
    font-size: 18px;
    cursor: pointer;
}



@media (max-width: 767px) {

    /* project-section */
    .project-section.b {
        padding: 20px 15px;
        background-color: black;
        display: block;
        gap: 0px;
        padding-bottom: 100px;
    }

    /* navbar */
    .about-nav {
        padding: 10px 10px;
    }

    .menu-icon {
        display: block;
    }

    .nav-option-group {
        display: none;
    }

    .nav-option {
        display: none;
    }

    .nav-option.b {
        display: flex;
    }

    .about-nav-right {
        justify-content: flex-end;
        gap: 20px;
    }

    .about-head {
        font-size: 35px;
        line-height: 2.2rem;
    }

    .about-mini-head {
        font-size: 16px;
    }

    /* about-us-section */
    .about-us-section {
        padding: 30px 15px;
    }

    .about-us-top {
        width: 100%;
    }

    .about-us-head {
        font-size: 35px;
        line-height: 2.5rem;
    }

    .about-us-video-section {
        margin-top: 0px;
        padding: 20px 10px;
        padding-top: 0px;
        height: auto;
    }

    .about-us-video {
        height: 30vh;
    }

    .about-grid {
        padding: 10px 0px;
        padding-bottom: 10px;
    }

    /* testimonial-section */
    .testimonial-section-grid {
        padding: 30px 10px;
        background-color: white;
    }

    .testimonial {
        font-size: 30px;
    }

    .testimonial-section {
        width: 100%;
        padding: 30px 0px;
    }

    .testimonial-container {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 10px;
        position: relative;
        box-sizing: border-box;
        overflow: hidden;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        color: #666;
        margin: 20px 0;
        padding: 0 10px;
    }

    .testimonial-slide {
        display: none;
    }

    .testimonial-slide.active {
        display: block;
        animation: fadeIn 0.4s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .arrow {
        position: absolute;
        top: 35%;
        transform: translateY(-80%);
        background: white;
        border: 1px solid #ccc;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        z-index: 10;
    }

    .arrow.left {
        left: 0px;
    }

    .arrow.right {
        right: 0px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .author-img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }

    .author-name {
        font-size: 14px;
        color: #333;
        font-weight: 600;
    }

    /* Dots */
    .testimonial-dots {
        margin-top: 20px;
    }

    .dot {
        height: 10px;
        width: 10px;
        background-color: #ddd;
        border-radius: 50%;
        display: inline-block;
        margin: 0 5px;
        transition: background-color 0.3s ease;
    }

    .dot.active {
        background-color: #333;
    }

    /* people-section */
    .people-section {
        padding: 30px 15px;
    }

    .people-section-top-grid {
        width: 100%;
        padding-bottom: 30px;
    }

    .people-mini-head {
        margin: 0;
        font-weight: 300;
        font-size: 16px;
        padding: 20px 0px;
        color: #969696;
    }

    .people-section-bottom {
        display: block;
    }

    .people-section-bottom-grid {
        margin-bottom: 15px;
    }

    .img-wrap {
        width: 100%;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        /* Crop any overflow */
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Navbar */
    .about-nav {
        padding: 15px 20px;
    }
    
    .nav-option {
        font-size: 14px;
    }
    
    .dropdown-menu {
        min-width: 120px;
        padding: 8px 15px;
    }
    
    /* Top Section */
    .about-head {
        font-size: 50px;
        line-height: 3.5rem;
    }
    
    .about-mini-head {
        font-size: 18px;
        padding: 15px 0;
    }
    
    /* About Us Section */
    .about-us-top {
        width: 80%;
    }
    
    .about-us-head {
        font-size: 42px;
        line-height: 3.5rem;
    }
    
    .about-us-video-section {
        padding: 50px 80px;
    }
    
    .about-us-video {
        height: 50vh;
    }
    
    /* Testimonial Section */
    .testimonial {
        font-size: 100px;
    }
    
    .testimonial-text {
        font-size: 22px;
    }
    
    .testimonial-container {
        padding: 20px;
    }
    
    /* People Section */
    .people-section-top-grid {
        width: 80%;
    }
    
    .people-section-bottom {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .people-section-bottom-grid {
        min-width: calc(50% - 15px);
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    /* Navbar */
    .about-nav {
        padding: 15px 25px;
    }
    
    .nav-option {
        font-size: 15px;
    }
    
    /* Top Section */
    .about-head {
        font-size: 60px;
        line-height: 4rem;
    }
    
    /* About Us Section */
    .about-us-top {
        width: 70%;
    }
    
    .about-us-video-section {
        padding: 60px 100px;
    }
    
    /* Testimonial Section */
    .testimonial {
        font-size: 120px;
    }
    
    .testimonial-text {
        font-size: 24px;
    }
    
    /* People Section */
    .people-section-top-grid {
        width: 70%;
    }
}