      /* =========================================
   FONTS
========================================= */

        @font-face {
            font-family: Oswald;
            src: url('../font/Oswald/Oswald-VariableFont_wght.ttf');
        }

        @font-face {
            font-family: Poppins;
            src: url('../font/Poppins/Poppins-Regular.ttf');
        }

        /* =========================================
   GLOBAL
========================================= */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Poppins;
        }

        body {
            background: #f4f8f8;
            overflow-x: hidden;
            color: #111;
        }

        /* =========================================
   COMMON CONTAINER
========================================= */

        .container {
            max-width: 1400px;
            margin: auto;
            position: relative;
            z-index: 2;
        }

        /* =========================================
   SECTION TITLE
========================================= */

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title span {
            color: #009999;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            margin-bottom: 18px;
        }

        .section-title span::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 2px;
            background: #ff8800;
            left: 50%;
            transform: translateX(-50%);
            bottom: -10px;
        }

        .section-title h2 {
            color: #111;
            font-size: 54px;
            font-family: Oswald;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* =========================================
   MANAGING DIRECTOR SECTION
========================================= */

        .core-team-section {
            width: 100%;
            padding: 100px 8%;
            background:
                radial-gradient(circle at top left, rgba(0, 179, 179, 0.06), transparent 35%),
                radial-gradient(circle at bottom right, rgba(255, 136, 0, 0.07), transparent 35%),
                linear-gradient(to bottom, #ffffff, #f6fbfb);
            position: relative;
            overflow: hidden;
        }

        .core-team-section::before {
            content: '';
            position: absolute;
            width: 350px;
            height: 350px;
            background: rgba(255, 136, 0, 0.05);
            top: -150px;
            right: -100px;
            border-radius: 50%;
        }

        .core-team-section::after {
            content: '';
            position: absolute;
            width: 280px;
            height: 280px;
            background: rgba(0, 179, 179, 0.05);
            bottom: -120px;
            left: -80px;
            border-radius: 50%;
        }

        /* =========================================
   TEAM CARD
========================================= */

        .team-card {
            display: flex;
            align-items: center;
            gap: 70px;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 12px;
            padding: 45px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        /* =========================================
   IMAGE
========================================= */

        .team-image {
            flex: 1;
            position: relative;
        }

        .image-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ff8800, #00b3b3);
            border-radius: 10px;
            top: 18px;
            left: -18px;
            z-index: -1;
        }

        .team-image img {
            width: 100%;
            border-radius: 10px;
            display: block;
            object-fit: cover;
        }

        /* =========================================
   TEAM CONTENT
========================================= */

        .team-content {
            flex: 1.2;
        }

        .team-content h3 {
            font-size: 52px;
            color: #111;
            font-family: Oswald;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .team-content .designation {
            color: #ff8800;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 22px;
        }

        .team-content p {
            color: #555;
            line-height: 1.9;
            margin-bottom: 18px;
            font-size: 15px;
        }

        /* =========================================
   HIGHLIGHTS
========================================= */

        .team-highlights {
            display: flex;
            gap: 18px;
            margin-top: 35px;
            flex-wrap: wrap;
        }

        .highlight-box {
            min-width: 170px;
            padding: 22px 18px;
            border-radius: 10px;
            background: #f8fbfb;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: 0.4s;
        }

        .highlight-box:hover {
            transform: translateY(-5px);
            border-color: #00b3b3;
        }

        .highlight-box h4 {
            font-size: 34px;
            font-family: Oswald;
            color: #009999;
            margin-bottom: 6px;
        }

        .highlight-box span {
            color: #666;
            font-size: 14px;
        }

        /* =========================================
   DIRECTORS SECTION
========================================= */

        .directors-section {
            width: 100%;
            padding: 100px 8%;
            background:
                radial-gradient(circle at top right, rgba(255, 136, 0, 0.06), transparent 30%),
                radial-gradient(circle at bottom left, rgba(0, 179, 179, 0.06), transparent 30%),
                linear-gradient(to bottom, #f6fbfb, #ffffff);
            position: relative;
            overflow: hidden;
        }

        /* =========================================
   DIRECTORS GRID
========================================= */

        .directors-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* =========================================
   DIRECTOR CARD
========================================= */

        .director-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 12px;
            overflow: hidden;
            transition: 0.4s;
            position: relative;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
        }

        .director-card:hover {
            transform: translateY(-8px);
            border-color: #00b3b3;
        }

        .active-card {
            border-top: 4px solid #ff8800;
        }

        /* =========================================
   DIRECTOR IMAGE
   FIXED FOR 500x500 IMAGES
========================================= */

        .director-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            background: #f5f5f5;
        }

        .director-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
            padding: 20px;
            background: #ffffff;
            transition: 0.4s ease;
        }

        .director-card:hover .director-image img {
            transform: scale(1.03);
        }

        /* REMOVE DARK OVERLAY */

        .director-overlay {
            display: none;
        }

        /* =========================================
   DIRECTOR CONTENT
========================================= */

        .director-content {
            padding: 28px;
            text-align: center;
        }

        .director-content h3 {
            color: #111;
            font-size: 28px;
            font-family: Oswald;
            margin-bottom: 10px;
            text-transform: uppercase;
            line-height: 1.2;
        }

        .director-content h4 {
            color: #ff8800;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .director-content p {
            color: #666;
            line-height: 1.7;
            font-size: 14px;
            font-style: italic;
        }

        /* =========================================
   RESPONSIVE
========================================= */

        @media(max-width:1100px) {

            .team-card {
                flex-direction: column;
            }

            .directors-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-content h3 {
                font-size: 42px;
            }

            .section-title h2 {
                font-size: 42px;
            }
        }

        @media(max-width:768px) {

            .core-team-section,
            .directors-section {
                padding: 75px 5%;
            }

            .team-card {
                padding: 30px;
                gap: 35px;
            }

            .directors-grid {
                grid-template-columns: 1fr;
            }

            .team-content h3 {
                font-size: 34px;
            }

            .section-title h2 {
                font-size: 34px;
            }

            .highlight-box {
                width: 100%;
            }

            .director-image img {
                padding: 15px;
            }
        }

        /* =========================================
   MODERN CORE TEAM GRID
   4 TOP + 3 CENTERED
========================================= */

        .modern-core-team-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 30px;
            align-items: start;
            margin-bottom: 70px;
        }

        /* =========================================================
   SECTION HEADER
========================================================= */

        .modern-core-team-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .modern-core-team-header span {
            color: #00a3a3;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            display: inline-block;
            position: relative;
            margin-bottom: 18px;
        }

        .modern-core-team-header span::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 2px;
            background: #ff8800;
            left: 50%;
            transform: translateX(-50%);
            bottom: -10px;
        }

        .modern-core-team-header h2 {
            font-size: 58px;
            color: #111;
            font-family: Oswald;
            text-transform: uppercase;
            line-height: 1;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .modern-core-team-header p {
            max-width: 720px;
            margin: auto;
            color: #666;
            font-size: 15px;
            line-height: 1.9;
        }

        /* =========================================================
   RESPONSIVE
========================================================= */

        @media(max-width:992px) {

            .modern-core-team-header h2 {
                font-size: 46px;
            }
        }

        @media(max-width:768px) {

            .modern-core-team-section {
                padding: 90px 5%;
            }

            .modern-core-team-header {
                margin-bottom: 45px;
            }

            .modern-core-team-header h2 {
                font-size: 34px;
            }

            .modern-core-team-header p {
                font-size: 14px;
                line-height: 1.8;
            }
        }

        /* =========================================================
   SECTION HEADER
========================================================= */

        .modern-core-team-header {
            text-align: center;
            margin-top: 70px;
            margin-bottom: 70px;
            position: relative;
        }

        .modern-core-team-header h2 {
            font-size: 58px;
            color: #111;
            font-family: Oswald;
            text-transform: uppercase;
            line-height: 1;
            margin-bottom: 20px;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
            padding-bottom: 18px;
        }

        .modern-core-team-header h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 2px;
            background: #ff8800;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
        }

        .modern-core-team-header p {
            max-width: 720px;
            margin: auto;
            color: #666;
            font-size: 15px;
            line-height: 1.9;
        }

        /* =========================================================
   RESPONSIVE
========================================================= */

        @media(max-width:992px) {

            .modern-core-team-header h2 {
                font-size: 46px;
            }
        }

        @media(max-width:768px) {

            .modern-core-team-section {
                padding: 90px 5%;
            }

            .modern-core-team-header {
                margin-bottom: 45px;
            }

            .modern-core-team-header h2 {
                font-size: 34px;
            }

            .modern-core-team-header p {
                font-size: 14px;
                line-height: 1.8;
            }
        }

        /* =========================================
   CARD WIDTH
========================================= */

        .modern-team-card {
            grid-column: span 3;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            overflow: hidden;
            transition: 0.4s ease;
            position: relative;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
        }

        /* =========================================
   FIRST ROW
   4 CARDS
========================================= */

        .modern-team-card:nth-child(1) {
            grid-column: 1 / span 3;
        }

        .modern-team-card:nth-child(2) {
            grid-column: 4 / span 3;
        }

        .modern-team-card:nth-child(3) {
            grid-column: 7 / span 3;
        }

        .modern-team-card:nth-child(4) {
            grid-column: 10 / span 3;
        }

        /* =========================================
   SECOND ROW
   3 CENTERED CARDS
========================================= */

        .modern-team-card:nth-child(5) {
            grid-column: 2 / span 3;
        }

        .modern-team-card:nth-child(6) {
            grid-column: 5 / span 3;
        }

        .modern-team-card:nth-child(7) {
            grid-column: 8 / span 3;
        }

        /* =========================================
   HOVER EFFECT
========================================= */

        .modern-team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #00b3b3, #ff8800);
        }

        .modern-team-card:hover {
            transform: translateY(-10px);
            border-color: #00b3b3;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
        }

        /* =========================================
   IMAGE
========================================= */

        .modern-team-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            background: #f4f4f4;
            overflow: hidden;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .modern-team-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            padding: 15px;
            transition: 0.4s ease;
            background: #fff;
        }

        .modern-team-card:hover .modern-team-image img {
            transform: scale(1.04);
        }

        /* =========================================
   CONTENT
========================================= */

        .modern-team-content {
            padding: 25px 20px;
            text-align: center;
        }

        .modern-team-content h3 {
            font-size: 24px;
            color: #111;
            font-family: Oswald;
            line-height: 1.2;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .modern-team-content h4 {
            color: #ff8800;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .modern-team-content p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            font-style: italic;
        }

        /* =========================================
   TABLET
========================================= */

        @media(max-width:1200px) {

            .modern-core-team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .modern-team-card {
                grid-column: auto !important;
            }
        }

        /* =========================================
   MOBILE
========================================= */

        @media(max-width:768px) {

            .modern-core-team-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .modern-team-card {
                display: flex;
                align-items: center;
                gap: 18px;
                padding: 15px;
            }

            .modern-team-card::before {
                width: 4px;
                height: 100%;
            }

            .modern-team-image {
                width: 120px;
                min-width: 120px;
                height: 120px;
                aspect-ratio: auto;
                border-bottom: none;
            }

            .modern-team-image img {
                padding: 10px;
            }

            .modern-team-content {
                text-align: left;
                padding: 0;
            }

            .modern-team-content h3 {
                font-size: 22px;
                margin-bottom: 6px;
            }

            .modern-team-content h4 {
                font-size: 13px;
                margin-bottom: 6px;
            }

            .modern-team-content p {
                font-size: 13px;
            }
        }