:root {
            --primary: #074a86;
            --secondary: #00d2ff;
            --accent: #f59e0b;
            --text-main: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --glass: rgba(255, 255, 255, 0.85);
            --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        img {
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
            user-select: none;
            -webkit-user-select: none;
            -ms-user-select: none;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* --- Navigation --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 0.5rem 0;
            transition: var(--transition);
        }

        .nav-container {
            width: 100%;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text .brand {
            font-size: 1.2rem;
            font-weight: 900;
            color: var(--primary);
            line-height: 1;
        }

        .logo-text .dept {
            font-size: 0.75rem;
            color: var(--text-light);
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* Updated Nav Structure for Expandable Layout */
        .nav-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            /* Align to right */
            width: 100%;
            padding-left: 2rem;
            position: relative;
        }

        .nav-row {
            display: flex;
            list-style: none;
            gap: 1rem;
            margin-bottom: 0;
            width: 100%;
            justify-content: flex-end;
            /* Align items to right */
            align-items: center;
        }

        .nav-row.bottom {
            display: none;
            /* Hidden by default */
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            gap: 1.5rem;
            margin-top: 0.5rem;
        }

        .nav-row.bottom.active {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        /* Hide bottom row when top row is hovered (Desktop) */
        @media (min-width: 1101px) {
            .nav-wrapper:has(.nav-row.top .nav-item:hover) .nav-row.bottom.active {
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }

        }

        /* Desktop Toggle Button */
        .desktop-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(7, 74, 134, 0.1);
            color: var(--primary);
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            margin-left: 0.5rem;
            border: 1px solid rgba(7, 74, 134, 0.1);
        }

        .desktop-toggle:hover {
            background: var(--primary);
            color: white;
        }

        .desktop-toggle.active i {
            transform: rotate(180deg);
        }

        /* Mobile Responsive Adjustments */
        @media (max-width: 1100px) {
            .nav-container {
                padding: 0 1.5rem;
            }

            .mobile-toggle {
                display: flex !important;
                align-items: center;
                justify-content: center;
                z-index: 1001;
                width: 40px;
                height: 40px;
                border-radius: 8px;
                transition: var(--transition);
                color: var(--primary);
                font-size: 30px;
                /* Ensure text icon is large enough */
                line-height: 1;
            }

            .desktop-toggle {
                display: none;
            }

            .nav-wrapper {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                padding: 80px 1rem 2rem;
                overflow-y: auto;
            }

            .nav-wrapper.active {
                right: 0;
            }

            .nav-row {
                display: grid !important;
                grid-template-columns: 1fr 1fr;
                gap: 0.75rem !important;
                width: 100% !important;
                margin-bottom: 0;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
            }

            .nav-row.bottom {
                margin-top: 0.75rem;
            }

            .nav-item {
                transition: opacity 0.2s ease;
            }

            .nav-wrapper:has(.nav-item:hover) .nav-item:not(:hover) {
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }

            .nav-item:hover {
                z-index: 10;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 0.5rem 0 0.5rem 1.5rem;
                display: none;
                min-width: auto;
                width: 100%;
                border: none;
                background: transparent;
            }

            .nav-item:hover .dropdown,
            .nav-item:focus-within .dropdown {
                display: block;
            }

            .nav-item:hover .nav-link {
                background: rgba(7, 74, 134, 0.08);
                color: var(--primary);
            }

            .nav-link {
                justify-content: center;
                width: 100%;
                text-align: center;
                background: rgba(7, 74, 134, 0.03);
            }
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--text-main);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 0.6rem 0.8rem;
            border-radius: 8px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-link:hover {
            background: rgba(7, 74, 134, 0.05);
            color: var(--primary);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 240px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            padding: 0.75rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown a {
            display: block;
            padding: 0.6rem 1rem;
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.85rem;
            border-radius: 6px;
            transition: var(--transition);
        }

        .dropdown a:hover {
            background: var(--bg-light);
            color: var(--primary);
            padding-left: 1.25rem;
        }

        .mobile-toggle {
            display: none;
            color: var(--primary);
            cursor: pointer;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: var(--transition);
        }

        .mobile-toggle:hover {
            background: rgba(7, 74, 134, 0.1);
        }

        .slider-controls {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .nav-btn {
            width: 45px;
            height: 45px;
            border: 1px solid #e2e8f0;
            background: white;
            border-radius: 4px;
           
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            color: var(--text-main);
        }

        .nav-btn:hover {
            border-color: var(--text-main);
            background: var(--bg-light);
        }

        .nav-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        .progress-bar {
            flex-grow: 1;
     
            max-width: 200px;
          
            height: 2px;
            background: #e2e8f0;
            position: relative;
            border-radius: 1px;
        }

        .progress-fill {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            background: black;
            width: 33%;
            /* Start at 1/3 */
            transition: width 0.3s ease, left 0.3s ease;
        }

       
        @media (min-width: 1025px) {
            .slider-controls {
                display: none !important;
            }

            .programs-track {
                transform: none !important;
             
                justify-content: center;
                flex-wrap: wrap;
            }

            .program-card {
                flex: 0 0 calc(33.333% - 2rem);
            }
        }

        /* --- Hero Section --- */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 5%;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .hero-overlay-mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
            z-index: -1;
        }

        .hero-frame {
            position: absolute;
            top: -20px;
            bottom: -20px;
            left: -20px;
            width: 100%;
          
            border: 10px solid var(--accent);
            border-right: none;
            z-index: -1;
     
            pointer-events: none;
        }



       
        .hero-frame::before {
            content: '';
            position: absolute;
            top: -10px;
            right: 0;
            width: 10px;
            height: 60px;
            background: var(--accent);
        }

      
        .hero-frame::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 10px;
            height: 60px;
            background: var(--accent);
        }

        .hero-content-wrapper {
            position: relative;
            
            max-width: 800px;
            width: fit-content;
         
            padding: 4rem 2rem 4rem 3rem;
         
            margin-left: 0;
         
            z-index: 2;
            opacity: 0;
            transform: translateX(100px);
            animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            animation-delay: 0.5s;
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-content h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 4rem;
            /* Increased size */
            font-weight: 800;
            color: white;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

        /* Unified Hero Buttons */
        .hero-btns {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            margin-top: 1rem;
        }

        .hero-btns .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none !important;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            border: none;
        }

        .hero-btns .btn i {
            width: 20px;
            height: 20px;
        }

        .hero-btns .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
        }

        .hero-btns .btn-outline {
            border: 2px solid white;
            color: white;
            background: transparent;
        }

        .hero-btns .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
        }

        .hero-btns .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--secondary);
        }

        /* Laptop View Adjustments */
        @media (min-width: 769px) and (max-width: 1800px) {
            .hero-content h1 {
                font-size: 3.5rem;
       
            }

            .hero-content p {
                font-size: 1.1rem;
                color: rgba(255, 255, 255, 0.9);
                margin-bottom: 2.5rem;
                max-width: 600px;
            }

            .hero-content-wrapper {
                padding: 3rem 2rem 3rem 2rem;
               
            }

            .hero {
                padding: 0 5%;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
         
            }

            .hero-frame {
                display: none;
         
            }

            .hero-content-wrapper {
                padding: 1rem;
   
                margin-left: 0;
         
                width: 100%;
                max-width: 100%;
                text-align: center;
            
                display: flex;
                flex-direction: column;
                align-items: center;
       
            }

            .hero-btns {
                justify-content: center;
                width: 100%;
                flex-direction: row;
                flex-wrap: wrap;
                align-items: center;
                gap: 1rem;
            }

            .btn-primary {
                padding: 0.8rem 1.5rem;
                font-size: 0.8rem;
            }

            .btn-text-link {
                font-size: 0.8rem;
                letter-spacing: 1px;
            }
        }


        @media (max-width: 430px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 0.95rem;
                line-height: 1.5;
            }

            .hero-btns {
                gap: 0.75rem;
            }

            .btn-primary {
                padding: 0.7rem 1.2rem;
                font-size: 0.75rem;
            }

            .btn-text-link {
                font-size: 0.75rem;
            }
        }

        /* --- Footer --- */
        footer {
            background: #050505;
            color: white;
            padding: 5rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2.5rem;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- About Section --- */
        .about-section {
            padding: 8rem 5%;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: stretch;
          
        }

        .about-content {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-content.active {
            opacity: 1;
            transform: translateY(0);
        }

        .section-tag {
            color: var(--secondary);
            text-transform: uppercase;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            display: block;
        }

        .about-content h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .about-content p {
            font-size: 1.05rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            color: var(--primary);
            background: rgba(7, 74, 134, 0.05);
            width: 45px;
            height: 45px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 0.25rem;
        }

        .feature-text p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

      
        .about-image-grid {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: repeat(3, 1fr);
            gap: 1rem;
            width: 100%;
            height: 100%;

        }

        .grid-img {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }

        .grid-img:hover {
            transform: scale(1.02);
            z-index: 5;
        }

        .grid-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
         
        }

        /* Row 1 */
        .img-1 {
            grid-column: 1;
            grid-row: 1;
        }

        .img-2 {
            grid-column: 2;
            grid-row: 1;
        }

        /* Row 2 */
        .img-3 {
            grid-column: 1;
            grid-row: 2;
        }

        .img-4 {
            grid-column: 2;
            grid-row: 2;
        }

        /* Row 3 */
        .img-5 {
            grid-column: 1;
            grid-row: 3;
        }

        .img-6 {
            grid-column: 2;
            grid-row: 3;
        }


        .about-decoration {
            position: absolute;
            width: 200px;
            height: 200px;
            border: 2px solid rgba(7, 74, 134, 0.05);
            border-radius: 30px;
            z-index: -1;
        }

        .deco-1 {
            top: -50px;
            right: -50px;
            transform: rotate(15deg);
        }

        .deco-2 {
            bottom: -50px;
            left: -50px;
            transform: rotate(-15deg);
        }

        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .about-section {
                padding: 5rem 5%;
            }

            .about-image-grid {
                display: block;
                position: relative;
                height: 400px;
                max-width: 600px;
                margin: 0 auto;
                overflow: hidden;
                border-radius: 20px;
            }

            .grid-img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: opacity 0.8s ease-in-out;
                border-radius: 20px;
                display: block;
         
            }

            .grid-img.active {
                opacity: 1;
                z-index: 2;
                display: block;
            }

            .grid-img img {
                object-fit: cover;
            }
        }

        @media (max-width: 768px) {
            .about-content h2 {
                font-size: 2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-image-grid {
                height: 400px;
            }
        }

        /* --- Vision & Mission Section --- */
        .vision-mission-section {
            padding: 2rem 4%;
            /* Reduced from 8rem to 5rem */
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
        }

        .vision-mission-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        .vision-mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .vm-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .vm-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .vm-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .vm-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .vm-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-main);
        }

        .vm-card p,
        .vm-card ul {
            font-size: 1.05rem;
            color: #64748b;
            line-height: 1.8;
        }

        .vm-card ul {
            list-style: none;
            padding: 0;
        }

        .vm-card ul li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
        }

        .vm-card ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--secondary);
            border-radius: 50%;
        }


        .accordion-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .accordion-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .accordion-header {
            padding: 2rem 2.5rem;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.3s ease;
            user-select: none;
        }

        .accordion-header:hover {
            background: rgba(7, 74, 134, 0.02);
        }

        .accordion-header.active {
            background: linear-gradient(90deg, rgba(7, 74, 134, 0.05), rgba(0, 210, 255, 0.05));
        }

        .accordion-title {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex: 1;
        }

        .accordion-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .accordion-title h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-main);
            margin: 0;
        }

        .accordion-toggle {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(7, 74, 134, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: var(--primary);
        }

        .accordion-header.active .accordion-toggle {
            transform: rotate(180deg);
            background: var(--primary);
            color: white;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 2.5rem;
        }

        .accordion-content.active {
            max-height: 5000px;
         
            padding: 1.5rem 2.5rem 2.5rem;
        }

        .accordion-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .accordion-content ul li {
            padding: 1rem 0;
            padding-left: 2.5rem;
            position: relative;
            font-size: 1.05rem;
            color: #475569;
            line-height: 1.7;
            border-bottom: 1px solid #f1f5f9;
        }

        .accordion-content ul li:last-child {
            border-bottom: none;
        }

        .accordion-content ul li strong {
            color: var(--primary);
            font-weight: 600;
        }

        .accordion-content ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 3px;
        }

        @media (max-width: 1024px) {
            .vision-mission-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .vision-mission-section {
                padding: 3rem 5%;
              
            }
        }

        @media (max-width: 768px) {
            .vision-mission-section {
                padding: 1rem 4%;
                
            }
            .section-header h2 {
                font-size: 2rem;
            }

            .vm-card {
                padding: 2rem;
            }

            .accordion-header {
                padding: 1.5rem;
            }

            .accordion-content.active {
                padding: 1rem 1.5rem 1.5rem;
            }

            .accordion-title h3 {
                font-size: 1.1rem;
            }
        }

        /* --- Why Karunya Section --- */
        .why-karunya-section {
            padding: 3rem 5% 1rem 5%;
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
            position: relative;
            overflow: hidden;
        }

        .why-karunya-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(7, 74, 134, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .why-karunya-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .why-karunya-header {
            text-align: center;
            /* margin-bottom: 5rem; */
        }

        .why-karunya-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.2;
            /* margin-bottom: 1.5rem; */
            position: relative;
            display: inline-block;
        }

        /* .why-karunya-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        } */

        .why-karunya-header p {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 800px;
            margin: 2rem auto 0;
            line-height: 1.8;
        }

        /* Introduction Content */
        .intro-stats-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            align-items: start;
            margin-top: 3rem;
        }

        .intro-content {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            margin-bottom: 0;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .intro-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }

        .intro-content h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .intro-content h3 i {
            color: var(--primary);
            background: rgba(7, 74, 134, 0.1);
            padding: 10px;
            border-radius: 10px;
        }

        .intro-content p {
            font-size: 1.05rem;
            /* Readable size */
            color: #475569;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .intro-content p:last-child {
            margin-bottom: 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .intro-stats-wrapper {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
            backdrop-filter: blur(10px);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(7, 74, 134, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .stat-card:hover::before {
            opacity: 0.05;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(7, 74, 134, 0.15);
            border-color: var(--primary);
        }

        .stat-card>* {
            position: relative;
            z-index: 1;
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: transform 0.4s ease;
        }

        .stat-card:hover .stat-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.95rem;
            color: #64748b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Research Section */
        .research-innovation {
            margin: 6rem 0;
        }

        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .section-title i {
            color: var(--secondary);
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: #64748b;
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .research-slider-wrapper {
            position: relative;
        }

        .research-slider-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .rs-nav-group {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex: 1;
            min-width: 300px;
        }

        .rs-nav {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .rs-btn {
            width: 45px;
            height: 45px;
            border: 1px solid #e2e8f0;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            color: var(--text-main);
        }

        .rs-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(7, 74, 134, 0.05);
        }

        .rs-progress-container {
            flex-grow: 1;
            height: 2px;
            background: #e2e8f0;
            position: relative;
            border-radius: 2px;
            max-width: 300px;
        }

        .rs-progress-bar {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            background: var(--text-main);
            width: 0%;
            transition: width 0.3s ease, left 0.3s ease;
            border-radius: 2px;
        }

        .rs-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            font-weight: 700;
            text-decoration: none;
            font-size: 1.1rem;
            transition: gap 0.3s ease;
            white-space: nowrap;
        }

        .rs-link:hover {
            gap: 0.75rem;
        }

        .research-projects-grid {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 1rem;
        }


        .research-projects-grid {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 1rem;
        }

        .research-projects-grid::-webkit-scrollbar {
            display: none;
        }

        .project-card {
            background-color: #f1f5f9;
            background-size: cover;
            background-position: center;
            height: 380px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            color: white;

            flex: 0 0 calc(25% - 1.5rem);
            scroll-snap-align: start;
        }

        @media (min-width: 1025px) and (max-width: 1366px) {
            .project-card {
                flex: 0 0 calc(33.333% - 1.33rem);
            }
        }

        /* Tablet View (2 items) */
        @media (max-width: 1024px) {
            .project-card {
                flex: 0 0 calc(50% - 1rem);
            }

            .research-slider-controls {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {

            .research-innovation .section-title i,
            .research-innovation .section-title svg {
                display: none !important;
            }

            .project-card {
                flex: 0 0 100%;
                height: 380px;
            }

            .research-slider-controls {
                flex-direction: column;
                gap: 2rem;
                align-items: center;
                text-align: center;
            }

            .rs-nav-group {
                width: 100%;
                justify-content: center;
                gap: 1.5rem;
            }

            .rs-progress-container {
                display: none;
            }

            .rs-link {
                font-size: 1rem;
                white-space: normal;
                display: block;
                max-width: 90%;
                margin: 0 auto;
            }
        }



        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.1) 100%);
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .project-card:hover::before {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.2) 100%);
        }

        .project-card.drdo::before,
        .project-card.isro::before,
        .project-card.dst::before,
        .project-card.aicte::before {
            display: none;
        }

        .project-content {
            position: relative;
            z-index: 2;
        }

        .project-funding {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .project-card:hover .project-funding {
            background: white;
            color: var(--primary);
        }

        .project-org {
            display: inline-block;
            margin-bottom: 0.5rem;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            color: var(--secondary);
        }

        .project-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            line-height: 1.3;
            margin-bottom: 0.75rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }


        .project-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .labs-facilities {
            margin: 6rem 0 2rem 0;
        }

        .labs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .lab-card {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
        }

        .lab-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(7, 74, 134, 0.12);
            border-color: var(--secondary);
        }

        .lab-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, rgba(7, 74, 134, 0.1), rgba(0, 210, 255, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 1.2rem;
            transition: all 0.3s ease;
        }

        .lab-card:hover .lab-icon {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            transform: scale(1.1);
        }

        .lab-name {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        .lab-badge {
            display: inline-block;
            padding: 0.25rem 0.6rem;
            background: linear-gradient(135deg, var(--accent), #f59e0b);
            color: white;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 0.5rem;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--primary), #0369a1);
            padding: 3.5rem;
            border-radius: 25px;
            text-align: center;
            margin-top: 5rem;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-box h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .cta-box p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: white;
            color: var(--primary);
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            gap: 1rem;
        }

        .labs-slider-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .labs-grid {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 1rem;
            margin-top: 2rem;
        }

        .labs-grid::-webkit-scrollbar {
            display: none;
        }

        .lab-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;

            flex: 0 0 calc(25% - 1.5rem);
            scroll-snap-align: start;
            min-height: 200px;
        }

        .lab-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--primary);
        }

        @media (max-width: 768px) {
            .lab-card {
                flex: 0 0 100%;
            }

            .labs-slider-controls {
                flex-direction: column-reverse;
                gap: 1.5rem;
                align-items: center;
            }
        }

        @media (max-width: 1024px) {
            .why-karunya-section {
                padding: 4rem 5% 1rem 5%;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .research-projects-grid {
                grid-template-columns: 1fr;
            }

            .labs-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .why-karunya-header h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .why-karunya-section {
                padding: 3rem 5% 1.5rem 5%;
            }

            .why-karunya-header {
                margin-bottom: 2rem;
            }

            .research-innovation {
                margin: 2rem 0;
            }

            .labs-facilities {
                margin: 2rem 0;
            }

            .why-karunya-header h2 {
                font-size: 2rem;
            }

            .why-karunya-header p {
                font-size: 1rem;
            }

            .intro-content {
                padding: 2.5rem 2rem;
            }

            .intro-content h3 {
                font-size: 1.5rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .labs-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .project-card {
                padding: 2rem;
            }

            .project-header {
                flex-direction: column;
            }

            .project-funding {
                margin-left: 0;
                margin-top: 1rem;
            }

            .cta-box {
                padding: 2.5rem 2rem;
            }

            .cta-box h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .labs-grid {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 2rem;
            }
        }


        /* Programs Section */
        .programs-section {
            padding: 3rem 5%;
            background: #f0f9ff;
            /* Light blue background */
        }

        .programs-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Section Header Refinement */
        .programs-section .section-header {
            text-align: left;
            margin-bottom: 3rem;
            max-width: 1200px;
        }

        .programs-section .section-header h2 {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--text-main);
            font-size: 2.2rem;
        }

        .programs-section .section-header p {
            margin-left: 0;
            margin-top: 1rem;
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.8;
            max-width: 100%;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }

        .program-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
            padding: 0;
            /* Remove padding from card container */
        }

        .program-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        }

        .program-image-container {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .program-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .program-card:hover .program-image-container img {
            transform: scale(1.05);
        }

        .program-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #000;
            color: #fff;
            padding: 8px 12px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.8rem;
            text-align: center;
            line-height: 1.2;
            z-index: 2;
        }

        .program-badge span {
            display: block;
            font-size: 0.65rem;
            font-weight: 500;
            opacity: 0.8;
            margin-top: 2px;
        }

        .program-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .program-card h3 {
            font-size: 1.35rem;
            margin-bottom: 1rem;
            color: var(--text-main);
            font-weight: 700;
            line-height: 1.3;
        }

        .program-desc {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* Career Section */
        .career-section {
            background: #fff;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            margin-top: 4rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .career-section h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--text-main);
        }

        .career-section p {
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-light);
        }

        .career-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .career-item {
            background: var(--bg-light);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            color: var(--primary);
            border: 1px solid rgba(7, 74, 134, 0.1);
            transition: var(--transition);
        }

        .career-item:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .career-item.highlight {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .career-footer {
            font-size: 0.95rem;
            margin-top: 2rem;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .programs-section {
                padding: 1rem 5% 4rem 5%;
            }

            .programs-grid {
                grid-template-columns: 1fr;
            }

            .program-image-container {
                height: 200px;
            }

            .career-section {
                padding: 2rem 1.5rem;
            }

            .career-item {
                font-size: 0.9rem;
                padding: 0.6rem 1.2rem;
            }
        }

        /* Testimonial Section */
        .testimonial-section {
            padding: 5rem 5%;
            background: #fff;
            overflow: hidden;
        }

        .testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-header {
            margin-bottom: 3rem;
        }

        .testimonial-tag {
            display: inline-flex;
            align-items: center;
            color: #ef4444;
            /* Red color */
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .testimonial-tag::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background: #ef4444;
            margin-left: 10px;
        }

        .header-content-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            /* Align bottom or center depending on preference, sticking to end for clean baseline or start */
            align-items: center;
            gap: 2rem;
        }

        .testimonial-header h2 {
            font-size: 2.5rem;
            color: var(--text-main);
            margin-bottom: 0;
            flex: 0 0 50%;
            /* Take half width */
            line-height: 1.2;
        }

        .testimonial-header p {
            color: var(--text-light);
            flex: 1;
            margin-bottom: 0;
            font-size: 1.05rem;
        }

        .testimonial-slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            /* Hide overflow */
            padding-bottom: 3rem;
            /* Space for dots */
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }

        .testimonial-card {
            flex: 0 0 50%;
            /* 2 cards per row on desktop */
            max-width: 50%;
            padding: 1rem;
            box-sizing: border-box;
            text-align: center;
        }

        .testimonial-card .t-image {
            width: 120px;
            /* INCREASED SIZE */
            height: 120px;
            /* INCREASED SIZE */
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1.5rem;
            border: 3px solid #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .testimonial-card .t-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .t-stars {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-bottom: 1.5rem;
        }

        .t-stars .fill-star {
            color: #fbbf24;
            /* Yellow */
            width: 24px;
            /* INCREASED SIZE */
            height: 24px;
            /* INCREASED SIZE */
            fill: #fbbf24;
        }

        .testimonial-card p.t-quote {
            background: #f0f9ff;
            /* Light blue bg */
            padding: 2.5rem;
            border-radius: 4px;
            color: var(--text-main);
            font-size: 1rem;
            line-height: 1.6;
            font-style: italic;
            position: relative;
            margin-bottom: 1.5rem;
        }

        .t-name {
            font-size: 1.1rem;
            color: var(--text-main);
            margin-bottom: 0.2rem;
        }

        .t-role {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .t-pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }

        .t-dot {
            width: 10px;
            height: 10px;
            background: #cbd5e1;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s;
        }

        .t-dot.active {
            background: var(--primary);
            width: 25px;
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            .header-content-wrapper {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .testimonial-card {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .testimonial-header h2 {
                font-size: 1.8rem;
                flex: auto;
            }
        }

        /* FAQ Section */
        .faq-section {
            padding: 5rem 5%;
            background: #eaebef;
            /* Light gray background from reference */
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-tag {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            display: inline-block;
        }

        .faq-header h2 {
            font-size: 2.2rem;
            color: var(--text-main);
            margin: 0;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #f9fafb;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            color: var(--text-main);
            margin: 0;
            font-weight: 600;
            padding-right: 1rem;
        }

        .faq-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            /* INCREASED SIZE FURTHER */
            height: 56px;
            /* INCREASED SIZE FURTHER */
            background: #e2e8f0;
            border-radius: 50%;
            flex-shrink: 0;
            transition: background 0.3s;
            position: relative;
        }

        .faq-icon i {
            width: 32px;
            /* INCREASED SIZE FURTHER */
            height: 32px;
            /* INCREASED SIZE FURTHER */
            color: var(--text-main);
            position: absolute;
            transition: opacity 0.3s, transform 0.3s;
        }

        .faq-icon .minus-icon {
            opacity: 0;
            transform: rotate(-90deg);
        }

        /* Active State */
        .faq-item.active .faq-icon {
            background: var(--primary);
        }

        .faq-item.active .faq-icon .plus-icon {
            opacity: 0;
            transform: rotate(90deg);
        }

        .faq-item.active .faq-icon .minus-icon {
            opacity: 1;
            transform: rotate(0);
            color: #fff;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }

        .faq-answer-content {
            padding: 0 2rem 1.5rem 2rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .faq-question {
                padding: 1rem 1.2rem;
            }

            .faq-question h3 {
                font-size: 1rem;
            }

            .faq-answer-content {
                padding: 0 1.2rem 1.2rem 1.2rem;
            }
        }