:root {
    --theme-color: #6caf5f;
    --theme-color2: #FF5E14;
    --title-color: #0E121D;
    --body-color: #4D5765;
    --smoke-color: #F8F8F8;
    --black-color: #000000;
    --gray-color: #888C97;
    --white-color: #ffffff;
    --light-color: #72849B;
    --yellow-color: #FFB539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #E4E4E4;
    --title-font: 'Poppins', sans-serif;
    --body-font: 'Poppins', sans-serif;
    --icon-font: "Font Awesome 6 Pro";
    --main-container: 1220px;
    --container-gutters: 24px;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --section-title-space: 60px;
    --ripple-ani-duration: 5s;
}

/* ============================================
   GLOBAL FONT - Poppins
   ============================================ */
body,
h1, h2, h3, h4, h5, h6,
p, a, span, div,
.th-btn,
.menu-item,
.headerMenu__item {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* ============================================
   HEADER LAYOUT 3 - Transparent & Centered Logo
   ============================================ */
.header-layout3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    --main-container: 1680px;
    background: transparent !important;
}

.header-layout3 .sticky-wrapper {
    background: transparent !important;
}

.header-layout3 .menu-area {
    padding: 10px 0;
}

.header-layout3 .menu-area:after {
    display: none;
}

/* Header Top */
.header-layout3 .header-top {
    background: transparent;
    --body-color: #000000;
    padding: 12px 22px 12px 160px;
    margin-left: 115px;
}

/* Logo - Centered */
.header-layout3 .header-logo {
    margin-top: 5px;
    padding: 17px 30px;
    background: transparent;
    position: relative;
}

.header-layout3 .header-logo:after {
    display: none;
}

/* Center logo in header */
.header-layout3 .menu-area .row {
    justify-content: center;
}

.header-layout3 .menu-area .row > .col-auto:first-child {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.header-layout3 .menu-area .row > .col-auto:nth-child(2) {
    margin-left: 0;
}

.header-layout3 .menu-area .row > .col-auto:last-child {
    margin-left: auto;
}

/* Menu Font */
.header-layout3 .main-menu > ul > li > a {
    font-size: 14px;
    padding: 25px 0;
    color: var(--white-color);
}

.header-layout3 .main-menu > ul > li > a:hover {
    color: var(--theme-color);
}

.header-layout3 .main-menu {
    margin-left: 20px;
}

.header-layout3 .main-menu ul.sub-menu li a {
    font-size: 13px;
}

/* Header Button */
.header-layout3 .th-btn {
    font-size: 13px;
    padding: 15px 22px;
}

.header-layout3 .th-btn.style10.ml-15 {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0);
    transition: all 0.3s ease;
}

.header-layout3 .th-btn.style10.ml-15:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.header-layout3 .th-btn.style10.ml-15 i {
    color: #ffffff !important;
}

/* Mobile Menu Toggle */
.header-layout3 .th-menu-toggle {
    font-size: 20px;
}

/* Sticky State */
.header-layout3 .sticky-wrapper.sticky {
    background: rgba(14, 18, 29, 0.95) !important;
    backdrop-filter: blur(10px);
}

.header-layout3 .sticky-wrapper.sticky .header-logo {
    background: transparent;
}

/* Header Responsive */
@media (max-width: 1700px) {
    .header-layout3 {
        --main-container: 1500px;
    }
}

@media (max-width: 1500px) {
    .header-layout3 {
        --main-container: 1300px;
    }
}

@media (max-width: 1299px) {
    .header-layout3 .header-button .icon-btn {
        display: none;
    }

    .header-layout3 .header-links li.d-xl-inline-block {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .header-layout3 .header-logo {
        padding: 12px 20px;
    }

    /* Reset center positioning on tablet */
    .header-layout3 .menu-area .row > .col-auto:first-child {
        position: relative;
        left: auto;
        transform: none;
    }
}

@media (max-width: 767px) {
    .header-layout3 {
    }

    .header-layout3 .header-top {
        padding: 12px 15px !important;
        margin-left: 0 !important;
    }

    .header-layout3 .menu-area {
        padding: 8px 0;
    }

    /* Reset center positioning on mobile */
    .header-layout3 .menu-area .row > .col-auto:first-child {
        position: relative;
        left: auto;
        transform: none;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    /* Smaller menu font & spacing */
    .header-layout3 .main-menu > ul > li > a {
        font-size: 13px;
        padding: 20px 0;
    }

    .header-layout3 .main-menu > ul > li {
        margin: 0 12px;
    }

    /* Smaller logo */
    .header-layout3 .header-logo img {
        max-height: 50px;
    }

    .header-layout3 .header-logo {
        padding: 12px 20px;
    }

    /* Smaller buttons */
    .header-layout3 .th-btn {
        font-size: 12px;
        padding: 12px 16px;
    }

    .header-layout3 .header-button .th-btn.style10.ml-15 {
        margin-left: 8px !important;
    }

    /* Reduce main menu margin */
    .header-layout3 .main-menu {
        margin-left: 10px;
    }
}

/* ============================================
   MOBILE SIDEBAR - Menu Buttons
   ============================================ */
.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}

.mobile-menu-buttons .th-btn {
    width: 100%;
    text-align: center;
    margin: 0;
}

.mobile-menu-buttons .mb-10 {
    margin-bottom: 10px;
}

/* ============================================
   HEADER LOGO - Desktop/Mobile Switch
   ============================================ */
.header-logo .header-logo-mobile {
    display: none;
}

@media (max-width: 767px) {
    .header-layout3 .menu-area .row {
        position: relative;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }

    /* Logo - Center */
    .header-logo .header-logo-desktop {
        display: none;
    }

    .header-logo .header-logo-mobile {
        display: block;
    }

    .header-logo .header-logo-mobile img {
        max-height: 55px;
        width: auto;
    }

    .header-layout3 .menu-area .row > .col-auto:first-child {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    /* Menu Toggle - Right, Bigger & White */
    .header-layout3 .th-menu-toggle {
        position: relative;
        z-index: 11;
        color: #ffffff;
        background: transparent;
        border: none;
        font-size: 28px;
        padding: 10px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-layout3 .th-menu-toggle:hover {
        color: var(--theme-color);
    }

    /* Home Button - Left */
    .mobile-home-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        color: #ffffff;
        font-size: 24px;
        background: transparent;
        border: none;
        text-decoration: none;
        z-index: 11;
    }

    .mobile-home-btn:hover {
        color: var(--theme-color);
    }

}

/* ============================================
   TABLET (767px - 991px) - Hide Logo & Home Button
   ============================================ */
@media (min-width: 768px) and (max-width: 991px) {


    .mobile-home-btn {
        display: none !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-style4 .hero-subtitle {
    color: var(--theme-color);
    margin-bottom: 27px;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--title-font);
    text-transform: uppercase;
    line-height: normal;
    margin-top: 0;
    padding: 6.5px 27px;
    border-radius: 10px;
    background: rgba(206, 210, 223, 0.68);
}

/* Hero Video Fullscreen */
.hero-video-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

.hero-video-bg.cover-mode {
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
}

.hero-video-content {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .hero-video-fullscreen,
    .hero-video-content {
        height: 80vh;
    }
}

@media (max-width: 767px) {
    .hero-video-fullscreen {
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
    }

    .hero-video-content {
        height: 100vh;
        height: 100dvh;
    }

    .hero-video-bg {
        object-fit: cover !important;
    }

    .hero-video-bg.cover-mode {
        object-fit: cover !important;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .hero-video-fullscreen {
        height: 100vh;
        height: 100dvh;
    }

    .hero-video-content {
        height: 100vh;
        height: 100dvh;
    }

    .hero-video-bg {
        object-fit: cover !important;
        /* Center the video content */
        object-position: center center;
    }
}
/* ============================================
   CONTACT MAP
   ============================================ */
.contact-map {
    line-height: 0.01px;
    margin-top: -200px;
}

.contact-map iframe {
    width: 100%;
    height: 700px;
}

@media (max-width: 1399px) {
    .contact-map {
        margin-top: -100px;
    }

    .contact-map iframe {
        height: 450px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.copyright-wrap-hooman {
    padding: 26px 0;
    background: transparent;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
    animation: none;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 90px;
        right: 30px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

/* ============================================
   SIDE MENU FLOATING BUTTON
   ============================================ */
.sidemenu-float {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    color: var(--title-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.sidemenu-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background-color: #25D366;
    color: #fff;
}

.sidemenu-float:active {
    transform: scale(0.95);
}

@media (max-width: 767px) {
    .sidemenu-float {
        display: none;
    }
}

/* ============================================
   FOOTER - Green Background & White Text
   ============================================ */
.footer-wrapper.footer-layout3 {
    background: var(--theme-color) !important;
    background-image: none !important;
}

.footer-wrapper.footer-layout3::before,
.footer-wrapper.footer-layout3::after {
    display: none !important;
}

/* All text white */
.footer-layout3,
.footer-layout3 p,
.footer-layout3 a,
.footer-layout3 h1,
.footer-layout3 h2,
.footer-layout3 h3,
.footer-layout3 h4,
.footer-layout3 h5,
.footer-layout3 h6,
.footer-layout3 .widget_title,
.footer-layout3 .footer-info-title,
.footer-layout3 .about-text,
.footer-layout3 .info-box_link,
.footer-layout3 .post-title a,
.footer-layout3 .menu a,
.footer-layout3 .copyright-text,
.footer-layout3 .recent-post-meta a {
    color: #ffffff !important;
}

/* Links hover effect */
.footer-layout3 a:hover {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Social icons */
.footer-layout3 .th-social a {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.footer-layout3 .th-social a:hover {
    background-color: #ffffff !important;
    color: var(--theme-color) !important;
}

/* Footer info icons */
.footer-layout3 .footer-info i {
    color: #ffffff !important;
}

/* Widget title underline */
.footer-layout3 .widget_title::before,
.footer-layout3 .widget_title::after {
    background-color: #ffffff !important;
}


.th-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.th-hero-slide .container {
    position: relative;
    z-index: 2;
}

.footer-widget .widget_title {
    font-family: 'Poppins', sans-serif;
    font-weight: 300; /* Light */
    font-size: 99%; /* 1% reduction */
}

.footer-info-wrap .footer-info-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 300; /* Light */
    font-size: 99%; /* 1% reduction */
}

.footer-info-wrap .info-box_link {
    font-family: 'Poppins', sans-serif;
    font-weight: 300; /* Light */
    font-size: 99%; /* 1% reduction */
}

/* Projects Page - Split Layout */
.projects-split-section {
    padding: 80px 0;
    background: var(--smoke-color);
}

/* View Toggle Buttons */
.view-toggle-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 30px;
}

.view-toggle-btn {
    padding: 12px 24px;
    border: 2px solid var(--theme-color);
    background: #fff;
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-toggle-btn:first-child {
    border-radius: 5px 0 0 5px;
}

.view-toggle-btn:last-child {
    border-radius: 0 5px 5px 0;
}

.view-toggle-btn.active {
    background: var(--theme-color);
    color: #fff;
}

.view-toggle-btn:hover:not(.active) {
    background: rgba(var(--theme-color-rgb), 0.1);
}

.projects-split-container {
    display: flex;
    gap: 30px;
}

/* Left Side - Project List */
.projects-list-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
}

/* Project Card Item */
.project-list-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.project-list-item:hover,
.project-list-item.active {
    border-color: var(--theme-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-list-item:last-child {
    margin-bottom: 0;
}

/* Project Thumbnail */
.project-list-thumb {
    flex: 0 0 180px;
    width: 180px;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
}

.project-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-list-item:hover .project-list-thumb img {
    transform: scale(1.05);
}

/* Project Info */
.project-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-list-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.project-list-item:hover .project-list-title {
    color: var(--theme-color);
}

.project-list-title a {
    color: inherit;
    text-decoration: none;
}

.project-list-desc {
    font-size: 14px;
    color: var(--body-color);
    margin-bottom: 12px;
}

.project-list-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-color);
    margin-bottom: 12px;
}

.project-list-location i {
    color: var(--theme-color);
}

.project-list-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-color);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.project-list-link:hover {
    gap: 10px;
    color: var(--theme-color);
}

/* Right Side - Map */
.projects-map-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
    position: sticky;
    top: 100px;
    height: fit-content;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
}

.projects-map-wrapper iframe {
    width: 100%;
    height: 600px;
    border: 0;
}

/* Grid View Styles */
.projects-grid-container {
    width: 100%;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-card-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-card-thumb img {
    transform: scale(1.1);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-btn {
    padding: 12px 28px;
    background: var(--theme-color);
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.project-card:hover .project-card-btn {
    transform: translateY(0);
}

.project-card-content {
    padding: 20px;
}

.project-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-card-title a {
    color: var(--title-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-card-title a:hover {
    color: var(--theme-color);
}

.project-card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-color);
}

.project-card-location i {
    color: var(--theme-color);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .projects-split-container {
        flex-direction: column;
    }

    .projects-list-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 15px;
        padding-right: 0;
        margin-bottom: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .projects-list-wrapper::-webkit-scrollbar {
        height: 4px;
    }

    .projects-list-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }

    .projects-list-wrapper::-webkit-scrollbar-thumb {
        background: var(--theme-color);
        border-radius: 2px;
    }

    .project-list-item {
        flex: 0 0 300px;
        min-width: 300px;
        flex-direction: column;
        scroll-snap-align: start;
        margin-bottom: 0;
    }

    .project-list-thumb {
        width: 100%;
        height: 180px;
        flex: 0 0 auto;
    }

    .projects-map-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
        position: relative;
        top: 0;
        height: 55vh !important;
        min-height: 450px !important;
        border-radius: 10px;
        align-self: auto;
    }

    .projects-map-wrapper iframe {
        width: 100% !important;
        height: 100% !important;
        min-height: 450px !important;
    }

    /* View toggle buttons - stack on mobile */
    .view-toggle-wrapper {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .project-list-item {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .project-list-thumb {
        height: 160px;
    }

    .projects-map-wrapper {
        height: 50vh !important;
        min-height: 400px !important;
        border-radius: 8px;
    }

    .projects-map-wrapper iframe {
        width: 100% !important;
        height: 100% !important;
        min-height: 400px !important;
    }

    .view-toggle-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .project-list-title {
        font-size: 18px;
    }

    .project-list-desc {
        display: none;
    }

    .project-list-info {
        padding: 15px;
    }

    .project-list-location {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

    .th-hero-wrapper,
.th-hero-slide {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Background image behavior */
.th-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ensure content is above background */
.th-hero-slide > .container {
    position: relative;
    z-index: 2;
}

.th-hero-wrapper::before,
.th-hero-wrapper::after,
.th-hero-slide::before,
.th-hero-slide::after,
.th-hero-bg::before,
.th-hero-bg::after,
.hero-style4::before,
.hero-style4::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

/* If overlay is a real layer */
.th-hero-overlay,
.hero-overlay,
.overlay,
.bg-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Force background to stay clean */
.th-hero-bg {
    filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}

/* Kill dark gradients */
.th-hero-wrapper,
.th-hero-slide {
    background: transparent !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #fff;
    opacity: 0.7;
}

.breadcrumb-item a:hover {
    opacity: 1 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem !important;
    }
    .breadcrumb {
        font-size: 0.8rem !important;
    }
}


.team-img {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Creates 1:1 aspect ratio (square) */
    overflow: hidden;
}

.team-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .team-img {
        padding-top: 100%; /* Keeps square ratio */
    }
}

@media (max-width: 767px) {
    .team-img {
        padding-top: 100%; /* Keeps square ratio */
    }
}