:root {
            --primary: #0A0F2C;
            --accent-blue: #3A7BD5;
            --accent-teal: #1D9E75;
            --accent-amber: #EF9F27;
            --text-light: #F0F4FF;
            --text-muted: #9BA3C2;
            --card-bg: #111827;
            --bg-dark: #070C1E;
            --bg-light: #f8fafc;
            --text-main: #1e293b;

            --glass: rgba(10, 15, 44, 0.8);
            --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --radius-card: 12px;
            --radius-btn: 8px;
        }

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

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .brand {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
        }

        html {
            scroll-behavior: smooth;
        }

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


        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;
        }


        .nav-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            
            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: center;
        }

        .nav-row.bottom {
            display: none;

            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);
        }


        @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 {
            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);
        }


        @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;

                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);
        }






        footer {
            background: var(--bg-dark);
            color: var(--text-light);
            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;
            }
        }

        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 45px;
            height: 45px;
            background: var(--accent-blue);
            color: white;
            border-radius: var(--radius-btn);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--accent-teal);
            box-shadow: 0 15px 30px rgba(58, 123, 213, 0.3);
        }


        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: url('../img/Dscs/DSC06515-2.png') center/cover no-repeat;
            overflow: hidden;
            padding-top: 60px;
            
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, #0A0F2C F2 0%, #0A0F2C CC 40%, transparent 100%);
            z-index: 1;
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath fill='none' stroke='%233A7BD5' stroke-width='0.5' stroke-opacity='0.15' d='M20 0 L40 10 L40 30 L20 40 L0 30 L0 10 Z' /%3E%3C/svg%3E");
            opacity: 0.08;
            z-index: 2;
            animation: gridMove 100s linear infinite;
        }

        @keyframes gridMove {
            from {
                background-position: 0 0;
            }

            to {
                background-position: 1000px 1000px;
            }
        }

        .hero-container {
            width: 100%;
            max-width: 1400px;
            margin: 0;
            padding-left: 5%;
            position: relative;
            z-index: 10;
        }

        .hero-content {
            width: 65%;
        }

        
        .badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #5ca0ff;
            flex-shrink: 0;
            margin-right: 2px;
        }

        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 16px;
            border-radius: 50px;
            border: 1.5px solid rgba(255, 255, 255, 0.45);
            color: #FFFFFF;
            background: rgba(10, 15, 44, 0.70);
            
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            text-shadow: none;
            letter-spacing: 0.2px;
        }



        .hero h1 {
            font-size: 68px;
            font-weight: 600;
            color: #FFFFFF;
            line-height: 1.1;
            margin-bottom: 24px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            max-width: 900px;
            letter-spacing: -0.02em;
        }


        .hero h1 .highlight-blue {
            color: #5ca0ff;
        }

        .hero h1 .highlight-teal {
            color: #26cba0;
        }

        .hero-subtext {
            font-size: 22px;
            color: #CBD5E1;
            max-width: 600px;
            margin-top: 20px;
            line-height: 1.6;
            font-weight: 400;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            margin-top: 32px;
        }

        .btn-primary {
            background: var(--accent-blue);
            color: white;
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary {
            background: transparent;
            border: 1.5px solid #26cba0;
            color: #26cba0;
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary:hover {
            background: rgba(38, 203, 160, 0.1);
            color: #FFFFFF;
            border-color: #FFFFFF;
        }

        .hero-strip {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 52px;
            background: #0A0F2C;
            background: linear-gradient(90deg, #0A0F2C 0%, #161e3d 100%);
            display: flex;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            z-index: 100;
            overflow: hidden;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
        }

        .ticker-wrapper {
            display: flex;
            align-items: center;
            width: 100%;
            height: 100%;
        }

        .ticker-label {
            background: #3A7BD5 !important;
            color: #FFFFFF !important;
            padding: 0 1.5rem;
            height: 100%;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            z-index: 20;
            position: relative;
            white-space: nowrap;
            box-shadow: 15px 0 35px rgba(0, 0, 0, 0.6);
        }

        .ticker-label::after {
            content: '';
            position: absolute;
            right: -20px;
            top: 0;
            width: 20px;
            height: 100%;
            background: #3A7BD5;
            clip-path: polygon(0 0, 0% 100%, 100% 100%);
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 0, 0, 0.2);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.65rem;
            color: #FFFFFF;
        }

        .live-dot {
            width: 6px;
            height: 6px;
            background: #ff4757;
            border-radius: 50%;
            box-shadow: 0 0 8px #ff4757;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.4); opacity: 0.6; }
            100% { transform: scale(1); opacity: 1; }
        }

        .ticker-content {
            flex: 1;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            height: 100%;
        }

        .ticker-track {
            display: flex;
            gap: 6rem;
            white-space: nowrap;
            align-items: center;
            padding-left: 3rem;
            animation: tickerScroll 35s linear infinite;
        }

        .ticker-track:hover {
            animation-play-state: paused;
        }

        .ticker-track a {
            color: #FFFFFF !important;
            text-decoration: none !important;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.2px;
        }

        .ticker-track a strong {
            color: #60a5fa !important;
            font-weight: 700;
        }

        .ticker-track a:hover {
            color: #60a5fa !important;
            transform: translateY(-1px);
        }

        @keyframes tickerScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @media (max-width: 1440px) {
            .hero h1 {
                font-size: 56px;
            }

            .hero-subtext {
                font-size: 19px;
                max-width: 600px;
            }

            .hero-content {
                width: 75%;
            }
        }

        @media (max-width: 1280px) {
            .hero h1 {
                font-size: 48px;
            }

            .hero-subtext {
                font-size: 17px;
                max-width: 550px;
            }

            .hero-content {
                width: 85%;
            }

            .hero-container {
                padding-left: 6%;
            }
        }

        @media (max-width: 1024px) {
            .hero {
                background: url('../img/Dscs/DSC06515.jpg') center/cover no-repeat !important;
            }

            .hero::before {
                background: linear-gradient(to bottom, rgba(10, 15, 44, 0.9) 0%, rgba(10, 15, 44, 0.6) 50%, rgba(10, 15, 44, 0.9) 100%) !important;
                z-index: 1;
            }

            .hero-content {
                width: 80%;
            }

            .hero h1 {
                font-size: 56px;
            }

            .stats-row {
                gap: 2.5rem;
            }

            .stat-item:not(:last-child)::after {
                right: -1.25rem;
            }
        }

        @media (max-width: 768px) {
            .hero-badge {
                font-size: 14px;
            }

            .hero {
                height: auto;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                padding-top: 80px;
            }

            .hero-container {
                flex: 1;
                display: flex;
                align-items: center;
                padding: 2rem 1rem 3rem;
                width: 100%;
                padding-left: 1rem;
            }

            .hero-content {
                width: 100%;
                padding: 0;
            }

            .hero h1 {
                font-size: 28px;
                margin-bottom: 1.5rem;
            }

            .hero-subtext {
                font-size: 16px;
                margin-bottom: 2rem;
            }

            .hero-ctas {
                flex-direction: column;
                gap: 12px;
                width: 100%;
            }

            .hero-ctas .btn-primary,
            .hero-ctas .btn-secondary {
                width: 100%;
                text-align: center;
                padding: 12px 24px;
            }

            .hero-strip {
                position: relative;
                bottom: auto;
                height: 48px;
                background: #0A0F2C;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .ticker-label {
                padding: 0 1rem;
                font-size: 0.75rem;
                background: #3A7BD5 !important;
                color: #FFFFFF !important;
            }

            .ticker-label::after {
                display: none;
            }

            .live-indicator {
                display: none; /* Hide LIVE on small screens to save space */
            }

            .ticker-track {
                animation: tickerScroll 25s linear infinite;
                gap: 3rem;
            }

            .ticker-track a {
                font-size: 0.8rem;
                color: #FFFFFF !important;
            }
        }

        
        
        .why-section {
            background: url('../img/background/why-section-bg.png') center/cover no-repeat;
            padding: 100px 0;
            color: var(--text-main);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }

        
        .why-section {
            background: url('../img/background/why-section-bg.png') center/cover no-repeat;
            padding: 80px 0 100px;
            color: var(--text-main);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        
        .why-section {
            background: #f8fafc;
            background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                url('../img/background/why-section-bg.png') center/cover no-repeat;
            padding: 80px 0;
            color: var(--text-main);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .why-section::before {
            content: '';
            position: absolute;
            top: 10%;
            right: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(58, 123, 213, 0.08) 0%, transparent 70%);
            filter: blur(60px);
            z-index: 1;
            pointer-events: none;
        }

        .section-container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        @media (min-width: 1440px) {
            .section-container {
                max-width: 1400px;
            }
        }

        @media (min-width: 1600px) {
            .section-container {
                max-width: 1580px;
            }
        }

        @media (min-width: 1920px) {
            .section-container {
                max-width: 1700px;
                width: min(92vw, 1700px);
            }
        }

        .why-top-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 30px;
        }

        .why-content h2 {
            font-size: clamp(36px, 4.5vw, 58px);
            font-weight: 800;
            line-height: 1.15;
            color: #061336;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
            max-width: 100%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        .why-content h2 .highlight-blue {
            background: linear-gradient(90deg, #1351d8 0%, #4771ec 50%, #707893 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .why-content h2 .highlight-underline {
            position: relative;
            display: inline-block;
        }

        .why-content h2 .highlight-underline::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: -2%;
            width: 104%;
            height: 12.5px;
            background: #F6B81A;
            opacity: 0.85;
            z-index: -1;
            clip-path: ellipse(50% 100% at 50% 100%);
            filter: blur(0.2px);
        }

        .why-content p {
            color: #64748b;
            font-size: 16.5px;
            line-height: 1.5;
            margin-bottom: 28px;
            max-width: 520px;
            font-weight: 450;
        }

        .why-badges {
            display: flex;
            gap: 12px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .why-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 8px 14px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }

        .why-badge:hover {
            transform: translateY(-2px);
            background: white;
        }

        .badge-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
        }

        .badge-text {
            font-size: 11.5px;
            font-weight: 700;
            color: #334155;
            line-height: 1;
            white-space: nowrap;
        }

        .why-ctas {
            display: flex;
            gap: 16px;
        }

        .btn-why-primary {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            padding: 14px 30px;
            border-radius: 14px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 20px -5px rgba(30, 64, 175, 0.3);
        }

        .btn-why-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px -5px rgba(30, 64, 175, 0.5);
        }

        .btn-why-secondary {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            color: var(--primary);
            padding: 14px 30px;
            border-radius: 14px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(255, 255, 255, 1);
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .btn-why-secondary:hover {
            background: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }

        .why-image-wrapper {
            position: relative;
            padding: 10px;
        }

        .why-image-large {
            width: 100%;
            height: auto;
            border-radius: 32px;
            box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.2);
            display: block;
            transition: var(--transition);
        }

        .domain-grid-v2 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin: 40px auto 0;
            max-width: 1320px;
        }

        .domain-card-v2 {
            background: linear-gradient(145deg, #081225 0%, #0B1730 45%, #101B35 100%);
            border-radius: 24px;
            padding: 32px 24px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.03);
            display: flex;
            flex-direction: column;
            height: 100%;
            overflow: hidden;
        }

        .domain-card-v2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--card-accent);
            box-shadow: 0 2px 20px var(--card-border-glow);
            opacity: 0.9;
            z-index: 2;
        }

        .domain-card-v2:hover {
            transform: translateY(-8px);
            background: linear-gradient(145deg, #0a1832 0%, #0d1e3d 100%);
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 0 0 25px var(--card-glow-subtle);
        }

        .card-header-v2 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
        }

        .card-icon-v2 {
            width: 54px;
            height: 54px;
            background: var(--card-glow-subtle);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--card-accent);
            border: 1.5px solid var(--card-border-glow);
            box-shadow: 0 0 25px var(--card-glow-subtle);
            position: relative;
        }

        .card-icon-v2 svg {
            width: 24px;
            height: 24px;
            stroke-width: 2.25px;
        }

        .card-icon-v2::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid var(--card-glow-subtle);
            opacity: 0.5;
        }

        .card-arrow-v2 {
            color: var(--card-accent);
            opacity: 0.4;
            font-size: 14px;
            transition: var(--transition);
        }

        .domain-card-v2:hover .card-arrow-v2 {
            opacity: 1;
            transform: translateX(3px);
        }

        .domain-card-v2 h3 {
            color: #FFFFFF;
            font-size: 20px;
            margin-bottom: 24px;
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .domain-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .domain-features li {
            color: #94a3b8;
            font-size: 13.5px;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .domain-features li svg {
            color: var(--check-icon-color);
            filter: drop-shadow(0 0 6px var(--card-glow));
            width: 17px;
            height: 17px;
            stroke-width: 2.5px;
        }

        
        .banking-card {
            --card-accent: #F5A623;
            --card-glow: rgba(245, 166, 35, 0.35);
            --card-border-glow: rgba(245, 166, 35, 0.45);
            --card-glow-subtle: rgba(245, 166, 35, 0.15);
            --check-icon-color: #FDBA3B;
        }

        .healthcare-card {
            --card-accent: #14D3B5;
            --card-glow: rgba(20, 211, 181, 0.35);
            --card-border-glow: rgba(20, 211, 181, 0.45);
            --card-glow-subtle: rgba(20, 211, 181, 0.15);
            --check-icon-color: #2CEBC8;
        }

        .defence-card {
            --card-accent: #2F7BFF;
            --card-glow: rgba(47, 123, 255, 0.35);
            --card-border-glow: rgba(47, 123, 255, 0.45);
            --card-glow-subtle: rgba(47, 123, 255, 0.15);
            --check-icon-color: #5A9CFF;
        }

        .ecommerce-card {
            --card-accent: #8B5CF6;
            --card-glow: rgba(139, 92, 246, 0.35);
            --card-border-glow: rgba(139, 92, 246, 0.45);
            --card-glow-subtle: rgba(139, 92, 246, 0.15);
            --check-icon-color: #A78BFA;
        }

        @media (max-width: 1280px) {
            .domain-grid-v2 {
                max-width: 1100px;
            }
        }

        @media (max-width: 1100px) {
            .why-top-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .why-content h2 {
                margin: 0 auto 24px;
                max-width: 100%;
            }

            .why-content p {
                margin: 0 auto 28px;
            }

            .why-badges {
                justify-content: center;
            }

            .why-ctas {
                justify-content: center;
            }

            .domain-grid-v2 {
                grid-template-columns: repeat(2, 1fr);
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .why-section {
                padding: 60px 0;
            }

            .domain-grid-v2 {
                grid-template-columns: 1fr;
            }

            .btn-why-primary,
            .btn-why-secondary {
                width: 100%;
                justify-content: center;
            }

            .why-ctas {
                flex-direction: column;
            }
        }

        @media (max-width: 1280px) {
            .why-content h2 {
                font-size: 48px;
            }
        }

        @media (max-width: 1100px) {
            .why-top-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .why-content h2 {
                font-size: 42px;
            }

            .section-container {
                padding: 0 2rem;
            }
        }

        @media (max-width: 640px) {
            .domain-grid-v2 {
                grid-template-columns: 1fr;
            }

            .why-content h2 {
                font-size: 32px;
            }

            .why-badges {
                flex-direction: column;
            }
        }

        
        .usp-section {
            position: relative;
            padding: 80px 0;
            background: url('../img/Dscs/DSC06508.jpg') center/cover no-repeat;
            color: #FFFFFF;
            overflow: hidden;
        }

        .usp-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: #0A0F2C;
            opacity: 0.88;
            z-index: 1;
        }

        .usp-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .usp-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .usp-eyebrow {
            font-size: 16px;
            letter-spacing: 2px;
            color: #3A7BD5;
            font-weight: 700;
            text-transform: uppercase;
            display: block;
            margin-bottom: 12px;
        }

        .usp-header h2 {
            font-size: 42px;
            color: #FFFFFF;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.2;
            font-weight: 700;
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .usp-card {
            background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
            border-radius: 16px;
            padding: 32px 24px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.03);
            display: flex;
            flex-direction: column;
            gap: 20px;
            overflow: hidden;
            --accent-color: #3A7BD5;
            
            --glow-color: rgba(58, 123, 213, 0.5);
            --subtle-glow: rgba(58, 123, 213, 0.1);
        }

        .usp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-color);
            box-shadow: 0 2px 15px var(--glow-color);
            opacity: 0.8;
            z-index: 2;
        }

        .usp-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-color, #3A7BD5);
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
        }

        .usp-icon {
            width: 52px;
            height: 52px;
            background: var(--subtle-glow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            border: 1.5px solid var(--glow-color);
            box-shadow: 0 0 20px var(--subtle-glow);
            transition: all 0.3s ease;
            position: relative;
        }

        .usp-icon::after {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 1px solid var(--glow-color);
            opacity: 0.3;
        }

        .usp-card:hover .usp-icon {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 0 25px var(--glow-color);
        }

        .usp-card h3 {
            font-size: 18px;
            color: #FFFFFF;
            font-weight: 700;
            margin: 0;
        }

        .usp-card p {
            font-size: 13px;
            color: #9BA3C2;
            line-height: 1.6;
            margin: 0;
        }

        
        .usp-card.iaeste {
            --accent-color: #1D9E75;
            --glow-color: rgba(29, 158, 117, 0.5);
            --subtle-glow: rgba(29, 158, 117, 0.1);
        }

        .usp-card.curriculum {
            --accent-color: #0ea5e9;
            --glow-color: rgba(14, 165, 233, 0.5);
            --subtle-glow: rgba(14, 165, 233, 0.1);
        }

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

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

            .usp-header h2 {
                font-size: 28px;
            }
        }

        
        .infra-section {
            background: url('../img/background/infra-section-bg.png') center/cover no-repeat;
            padding: 60px 0;
            color: #1E293B;
            position: relative;
            overflow: hidden;
        }

        .infra-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: none;
            pointer-events: none;
        }

        .infra-container {
            width: min(92vw, 1320px);
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .infra-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .infra-header .usp-eyebrow {
            font-size: 16px;
            letter-spacing: 0.15em;
            font-weight: 700;
            color: #3B82F6;
            margin-bottom: 16px;
            display: inline-block;
            text-transform: uppercase;
        }

        .infra-header h2 {
            font-size: clamp(28px, 3.5vw, 48px);
            font-weight: 850;
            line-height: 1.05;
            letter-spacing: -0.035em;
            color: #08142F;
            max-width: 720px;
            margin: 0 auto 16px;
        }

        .infra-header h2 span.gradient-text {
            background: linear-gradient(90deg, #2563EB 0%, #4F7CFF 50%, #6A8DFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gradient-text {
            background: linear-gradient(90deg, #2563EB 0%, #4F7CFF 50%, #6A8DFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline;
        }

        .infra-subtext {
            font-size: 16px;
            line-height: 1.6;
            color: #64748B;
            max-width: 640px;
            margin: 0 auto 32px;
            text-align: center;
        }

        .tab-buttons {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 40px;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            padding: 4px;
            border-radius: 100px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        }

        .tab-btn {
            background: transparent;
            border: none;
            color: #64748B;
            padding: 8px 20px;
            border-radius: 80px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .tab-btn i {
            width: 14px;
            height: 14px;
        }

        .tab-btn:hover {
            color: #3B82F6;
        }

        .tab-btn.active {
            background: linear-gradient(135deg, #2563EB, #4F7CFF);
            color: #FFFFFF;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(12px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .infra-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .infra-card {
            background: linear-gradient(145deg, #071326 0%, #09172E 45%, #0D1D3A 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            height: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .infra-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 1px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 40%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .infra-card:hover {
            transform: translateY(-6px);
            border-color: var(--accent-color, rgba(59, 130, 246, 0.4));
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 12px rgba(var(--accent-rgb), 0.12);
        }

        .infra-card-img-wrapper {
            width: 100%;
            height: 170px;
            overflow: hidden;
            position: relative;
        }

        .infra-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .infra-card:hover .infra-card-img {
            transform: scale(1.06);
        }

        .infra-card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .infra-tag {
            font-size: 10px;
            background: rgba(var(--accent-rgb), 0.1);
            color: var(--accent-color);
            border: 1px solid rgba(var(--accent-rgb), 0.1);
            border-radius: 100px;
            padding: 3px 10px;
            display: inline-block;
            margin-bottom: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .infra-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #FFFFFF;
            margin: 0 0 10px;
            line-height: 1.2;
        }

        .infra-card p {
            font-size: 14px;
            color: #A8B3CF;
            line-height: 1.6;
            margin: 0 0 16px;
        }

        .learn-more {
            margin-top: auto;
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .learn-more i {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }

        .learn-more:hover {
            gap: 8px;
            filter: brightness(1.1);
        }

        .learn-more:hover i {
            transform: translateX(3px);
        }

        
        .infra-card.ai {
            --accent-color: #3B82F6;
            --accent-rgb: 59, 130, 246;
        }

        .infra-card.iot {
            --accent-color: #14D3B5;
            --accent-rgb: 20, 211, 181;
        }

        .infra-card.blockchain {
            --accent-color: #A855F7;
            --accent-rgb: 168, 85, 247;
        }

        .infra-card.cloud {
            --accent-color: #38BDF8;
            --accent-rgb: 56, 189, 248;
        }

        .infra-card.cyber {
            --accent-color: #2563EB;
            --accent-rgb: 37, 99, 235;
        }

        .infra-card.networking {
            --accent-color: #2563EB;
            --accent-rgb: 37, 99, 235;
        }

        
        .infra-bottom-bar {
            margin-top: 48px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 16px;
            padding: 16px 0;
            overflow: hidden;
            position: relative;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
            
            mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        }

        .marquee-track {
            display: flex;
            align-items: center;
            gap: 60px;
            width: max-content;
            animation: scroll-marquee 40s linear infinite;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
        }

        @keyframes scroll-marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .infra-bottom-bar:hover .marquee-track {
            animation-play-state: paused;
        }

        .feature-icon {
            width: 36px;
            height: 36px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3B82F6;
            box-shadow: 0 4px 10px rgba(59, 130, 246, 0.06);
        }

        .feature-icon i {
            width: 18px;
            height: 18px;
        }

        .feature-text {
            font-weight: 700;
            color: #1E293B;
            font-size: 14px;
        }

        @media (max-width: 1200px) {
            .infra-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .infra-bottom-bar {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
            .infra-section {
                padding: 48px 0;
            }

            .infra-header h2 {
                font-size: 28px;
            }

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

            .tab-buttons {
                width: 100%;
                border-radius: 12px;
                padding: 3px;
                margin-bottom: 24px;
            }

            .tab-btn {
                padding: 8px 10px;
                font-size: 12px;
                min-width: 90px;
            }

            .infra-bottom-bar {
                grid-template-columns: 1fr;
                padding: 20px;
                margin-top: 32px;
            }
        }

        
        .career-section {
            position: relative;
            background: #0A0F2C;
            padding: 80px 0;
            color: #FFFFFF;
            overflow: hidden;
        }

        .career-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('../img/Dscs/DSC06473.jpg') center/cover no-repeat;
            opacity: 0.12;
            filter: blur(20px);
            z-index: 1;
            transform: scale(1.1);
        }

        .career-container {
            position: relative;
            z-index: 2;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .career-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .career-header h2 {
            font-size: 37px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 16px;
        }

        .career-track-group {
            margin-bottom: 40px;
        }

        .career-track-label {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }

        .career-track-ds {
            color: #3A7BD5;
        }

        .career-track-cyber {
            color: #1D9E75;
        }

        .career-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .career-card {
            background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
            border-radius: 16px;
            padding: 24px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(255, 255, 255, 0.03);
            height: 100%;
            overflow: hidden;
        }

        .career-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--track-color, #3A7BD5);
            box-shadow: 0 2px 10px var(--track-glow, rgba(58, 123, 213, 0.4));
            opacity: 0.8;
            z-index: 2;
        }

        .career-card.ds {
            --track-color: #3A7BD5;
            --track-glow: rgba(58, 123, 213, 0.5);
            --track-subtle: rgba(58, 123, 213, 0.1);
        }

        .career-card.cyber {
            --track-color: #1D9E75;
            --track-glow: rgba(29, 158, 117, 0.5);
            --track-subtle: rgba(29, 158, 117, 0.1);
        }

        .career-card:hover {
            transform: translateY(-5px);
            background: #1a253a;
            border-color: rgba(255, 255, 255, 0.1);
        }

        .career-icon-badge {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            background: var(--track-subtle);
            color: var(--track-color);
            border: 1.5px solid var(--track-glow);
            box-shadow: 0 0 15px var(--track-subtle);
            transition: all 0.3s ease;
            position: relative;
        }

        .career-icon-badge::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid var(--track-glow);
            opacity: 0.3;
        }

        .career-card:hover .career-icon-badge {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 0 20px var(--track-glow);
        }

        .career-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #FFFFFF;
            margin: 0 0 8px;
            line-height: 1.4;
        }

        .career-card p {
            font-size: 12px;
            color: #9BA3C2;
            line-height: 1.6;
            margin: 0;
        }

        .high-demand-badge {
            font-size: 10px;
            background: rgba(239, 159, 39, 0.15);
            color: #EF9F27;
            border-radius: 4px;
            padding: 2px 8px;
            display: inline-block;
            margin-top: 12px;
            font-weight: 600;
            width: fit-content;
        }

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

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

            .career-header h2 {
                font-size: 28px;
            }
        }

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





        
        .testimonials-section {
            background: url('../img/background/testimonial-background.png') center/cover no-repeat;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            color: #1E293B;
        }

        .testimonial-quote-bg {
            position: absolute;
            top: 50%;
            left: 5%;
            transform: translateY(-50%);
            font-size: 280px;
            color: rgba(58, 123, 213, 0.04);
            font-family: serif;
            line-height: 1;
            z-index: 1;
            pointer-events: none;
        }

        .testimonials-container {
            position: relative;
            z-index: 2;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .testimonials-header h2 {
            font-size: 42px;
            font-weight: 700;
            margin-top: 10px;
            color: #0F172A;
        }

        .carousel-wrapper {
            position: relative;
            overflow: visible;
            margin: 0 -15px;
        }

        .carousel-track-container {
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial-slide {
            flex: 0 0 33.333%;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .testimonial-card {
            background: #FFFFFF;
            border: 1px solid #E2E8F0;
            border-radius: 16px;
            padding: 32px;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .testimonial-card:hover {
            border-color: rgba(58, 123, 213, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .testimonial-card p {
            font-size: 15px;
            color: #475569;
            line-height: 1.8;
            font-style: italic;
            margin: 0;
            flex-grow: 1;
            display: -webkit-box;
            display: box;
            
            line-clamp: 4;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .testimonial-card.expanded p {
            line-clamp: unset;
            -webkit-line-clamp: unset;
            display: block;
            overflow: visible;
        }

        .read-more-btn {
            color: #3A7BD5;
            background: none;
            border: none;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            padding: 4px 0;
            margin-top: 8px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all 0.2s ease;
        }

        .read-more-btn:hover {
            opacity: 0.8;
        }

        .read-more-btn i {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }

        .testimonial-card.expanded .read-more-btn i {
            transform: rotate(180deg);
        }

        .testimonial-divider {
            margin: 20px 0;
            border-top: 1px solid #F1F5F9;
        }

        .testimonial-footer {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .student-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #3A7BD5;
            flex-shrink: 0;
        }

        .student-info h4 {
            font-size: 14px;
            font-weight: 700;
            color: #0F172A;
            margin: 0;
        }

        .student-info span {
            font-size: 12px;
            color: #64748B;
        }

        
        .carousel-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: #FFFFFF;
            border: 1px solid #E2E8F0;
            border-radius: 50%;
            color: #3A7BD5;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .carousel-nav-btn:hover {
            background: #3A7BD5;
            color: #FFFFFF;
            border-color: #3A7BD5;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav-btn.prev {
            left: -60px;
        }

        .carousel-nav-btn.next {
            right: -60px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 32px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #E2E8F0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #3A7BD5;
            transform: scale(1.2);
        }

        @media (max-width: 1400px) {
            .carousel-nav-btn.prev {
                left: 10px;
            }

            .carousel-nav-btn.next {
                right: 10px;
            }
        }

        @media (max-width: 992px) {
            .testimonials-header h2 {
                font-size: 40px;
            }

            .testimonial-slide {
                flex: 0 0 50%;
            }
        }

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

            .testimonials-header h2 {
                font-size: 28px;
            }

            .carousel-nav-btn {
                display: none;
            }
        }

        
        .cta-section {
            background: linear-gradient(90deg, #0A0F2C 0%, #0D1F4A 100%);
            padding: 64px 0;
            position: relative;
            overflow: hidden;
            color: #FFFFFF;
        }

        .cta-pattern-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.06;
            pointer-events: none;
            z-index: 1;
        }

        .cta-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .cta-left {
            flex: 0 0 65%;
            max-width: 65%;
        }

        .cta-right {
            flex: 0 0 35%;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
            text-align: right;
        }

        .cta-eyebrow {
            font-size: 12px;
            color: #EF9F27;
            letter-spacing: 3px;
            font-weight: 600;
            text-transform: uppercase;
            display: block;
            margin-bottom: 12px;
        }

        .cta-left h2 {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            max-width: 600px;
            margin: 0;
            color: #FFFFFF;
        }

        .cta-subtext {
            font-size: 16px;
            color: #9BA3C2;
            margin-top: 12px;
            max-width: 540px;
        }

        .cta-btn-primary {
            background: #3A7BD5;
            color: #FFFFFF;
            padding: 16px 36px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .cta-btn-primary:hover {
            background: #2563b0;
            transform: translateY(-2px);
        }

        .cta-btn-secondary {
            background: transparent;
            border: 1.5px solid #1D9E75;
            color: #1D9E75;
            padding: 16px 36px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .cta-btn-secondary:hover {
            background: rgba(29, 158, 117, 0.1);
            transform: translateY(-2px);
        }

        .cta-btn-tertiary {
            background: transparent;
            color: #9BA3C2;
            font-size: 14px;
            text-decoration: none;
            padding: 8px 0;
            transition: all 0.3s ease;
            border: none;
        }

        .cta-btn-tertiary:hover {
            text-decoration: underline;
            color: #FFFFFF;
        }

        .cta-bottom-bar {
            border-top: 0.5px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            margin-top: 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cta-bottom-left {
            font-size: 13px;
            color: #9BA3C2;
        }

        .cta-bottom-links {
            display: flex;
            gap: 24px;
        }

        .cta-bottom-links a {
            font-size: 13px;
            color: #9BA3C2;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .cta-bottom-links a:hover {
            color: #FFFFFF;
        }

        .cta-bg-image {
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .cta-bg-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            mask-image: linear-gradient(to left, black 60%, transparent 100%);
            -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
            opacity: 0.6;
        }

        @media (max-width: 992px) {
            .cta-container {
                flex-direction: column;
                text-align: center;
                gap: 32px;
            }

            .cta-left,
            .cta-right {
                max-width: 100%;
                flex: 0 0 100%;
                align-items: center;
                text-align: center;
            }

            .cta-bg-image {
                display: none;
            }

            .cta-bottom-bar {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }

        
        #vision-mission-outcomes {
            background: #f1f5f9;
            padding: 3rem 1.5rem;
            font-family: 'Segoe UI', sans-serif;
            color: #1e293b;
        }

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

        .vmo-section-header {
            margin-bottom: 2rem;
        }

        .vmo-eyebrow {
            display: block;
            font-size: 16px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--accent-blue);
            margin-bottom: 8px;
        }

        .vmo-main-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary);
            margin: 0 0 10px;
        }

        .vmo-title-rule {
            width: 48px;
            height: 3px;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
            margin-bottom: 1.75rem;
        }

        
        .read-more-btn-mobile {
            display: none;
        }

        
        .vmo-vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 2rem;
            align-items: start;
        }

        .vmo-base-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
            border: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
        }

        .vmo-card-header {
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: background 0.3s ease;
            position: relative;
        }

        .vmo-card-header:hover {
            background: #f8fafc;
        }

        .vmo-card-header::after {
            content: '▼';
            font-size: 10px;
            color: #64748b;
            margin-left: auto;
            transition: transform 0.3s ease;
        }

        .vmo-base-card.vmo-opened .vmo-card-header::after {
            transform: rotate(180deg);
        }

        .vmo-icon-badge {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .vmo-card-title {
            font-size: 18px;
            font-weight: 700;
            color: #0A0F2C;
            margin: 0;
        }

        .vmo-card-body {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
        }

        .vmo-base-card.vmo-opened .vmo-card-body {
            padding: 16px 20px;
            max-height: 500px;
            opacity: 1;
            border-top: 1px solid #f1f5f9;
        }

        .vmo-card-body p {
            font-size: 13.5px;
            line-height: 1.8;
            color: #334155;
            margin: 0;
        }

        
        .vmo-mission-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .vmo-mission-item {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .vmo-check-circle {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #fff7e6;
            border: 2px solid var(--accent-amber);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .vmo-check-circle svg {
            width: 9px;
            height: 9px;
            stroke: var(--accent-amber);
            stroke-width: 3;
            fill: none;
            stroke-linecap: round;
        }

        .vmo-mission-text {
            font-size: 13px;
            line-height: 1.75;
            color: #334155;
        }

        
        .vmo-program-block {
            margin-bottom: 2rem;
        }

        .vmo-prog-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .vmo-pill-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .vmo-prog-heading {
            font-size: 22px;
            font-weight: 700;
            color: #0A0F2C;
            margin: 0;
        }

        .vmo-col-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            align-items: start;
        }

        .vmo-col-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
            border: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
        }

        .vmo-col-header {
            background: linear-gradient(135deg, #1a2d6b 0%, #2c4ba0 100%);
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: filter 0.3s ease;
        }

        .vmo-col-header:hover {
            filter: brightness(1.1);
        }

        .vmo-col-header::after {
            content: '▼';
            font-size: 10px;
            color: rgba(255, 255, 255, 0.7);
            margin-left: auto;
            transition: transform 0.3s ease;
        }

        .vmo-col-card.vmo-opened .vmo-col-header::after {
            transform: rotate(180deg);
        }

        .vmo-col-badge {
            width: 26px;
            height: 26px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.15);
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vmo-col-title {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
            margin: 0;
        }

        .vmo-col-body {
            padding: 0 12px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
        }

        .vmo-col-card.vmo-opened .vmo-col-body {
            padding: 10px 12px;
            max-height: 800px;
            opacity: 1;
        }

        .vmo-col-body::-webkit-scrollbar {
            width: 4px;
        }

        .vmo-col-body::-webkit-scrollbar-track {
            background: #f8fafc;
        }

        .vmo-col-body::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 4px;
        }

        
        .vmo-item-row {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f1f5f9;
        }

        .vmo-item-row:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .vmo-mini-check {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--accent-blue);
            background: #eef4fd;
            flex-shrink: 0;
        }

        .vmo-mini-check.teal {
            background: #e6f7f2;
            border-color: var(--accent-teal);
        }

        .vmo-mini-check svg {
            width: 8px;
            height: 8px;
            stroke: var(--accent-blue);
            stroke-width: 3;
            fill: none;
            stroke-linecap: round;
        }

        .vmo-mini-check.teal svg {
            stroke: var(--accent-teal);
        }

        .vmo-item-content span {
            display: block;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 2px;
        }

        .vmo-item-content p {
            font-size: 12.5px;
            line-height: 1.65;
            color: #334155;
            margin: 0;
        }

        
        .vmo-po-intro {
            font-size: 11px;
            color: #64748b;
            font-style: italic;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #f1f5f9;
        }

        .po-acc-item {
            border-bottom: 1px solid #f1f5f9;
        }

        .po-acc-item:last-child {
            border-bottom: none;
        }

        .po-acc-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 7px 6px;
            cursor: pointer;
            border-radius: 6px;
            transition: background 0.15s;
        }

        .po-acc-header:hover {
            background: #f8fafc;
        }

        .po-acc-header.open {
            background: #eef4fd;
        }

        .po-acc-num {
            width: 20px;
            height: 20px;
            border-radius: 5px;
            background: #eef4fd;
            color: var(--accent-blue);
            font-size: 10px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .po-acc-header.open .po-acc-num {
            background: var(--accent-blue);
            color: #fff;
        }

        .po-acc-name {
            font-size: 12px;
            font-weight: 600;
            color: #1e293b;
            flex: 1;
        }

        .po-acc-chevron {
            font-size: 9px;
            color: #94a3b8;
            transition: transform 0.2s;
        }

        .po-acc-header.open .po-acc-chevron {
            transform: rotate(180deg);
            color: var(--accent-blue);
        }

        .po-acc-body {
            display: none;
            padding: 6px 6px 10px 34px;
            font-size: 11.5px;
            color: #475569;
            line-height: 1.65;
        }

        .po-acc-item.open .po-acc-body {
            display: block;
        }

        @media (max-width: 992px) {

            .vmo-vm-grid,
            .vmo-col-grid {
                grid-template-columns: 1fr;
            }
        }

        

        
        .programs-v3-section {
            background: #F4F7FF;
            padding: 80px 0;
            width: 100%;
        }

        .programs-v3-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .programs-v3-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .v3-eyebrow {
            font-size: 16px;
            color: #3A7BD5;
            letter-spacing: 2px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
            display: block;
        }

        .programs-v3-header h2 {
            font-size: 42px;
            color: #0A0F2C;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .v3-intro {
            font-size: 16px;
            color: #4A5568;
            line-height: 1.8;
            max-width: 760px;
            margin: 0 auto 48px;
        }

        
        .level-toggle-wrapper {
            text-align: center;
            margin-bottom: 32px;
        }

        .level-toggle-container {
            background: #E2E8F5;
            border-radius: 50px;
            padding: 4px;
            display: inline-flex;
            gap: 0;
        }

        .level-toggle-btn {
            background: transparent;
            color: #4A5568;
            border-radius: 50px;
            padding: 8px 24px;
            font-size: 16px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .level-toggle-btn.active {
            background: #3A7BD5;
            color: #FFFFFF;
            font-weight: 600;
        }

        
        .v3-tabs-wrapper {
            border-bottom: 2px solid #E2E8F5;
            margin-bottom: 40px;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .v3-tabs-wrapper::-webkit-scrollbar {
            display: none;
        }

        .v3-tabs-container {
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .v3-tab {
            padding: 12px 24px;
            font-size: 18px;
            color: #718096;
            font-weight: 500;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .v3-tab.active {
            border-bottom-color: #3A7BD5;
            color: #3A7BD5;
            font-weight: 600;
        }

        
        .v3-program-pane {
            display: none;
            animation: v3FadeIn 0.5s ease forwards;
        }

        .v3-program-pane.active {
            display: block;
        }

        @keyframes v3FadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .v3-content-grid {
            display: grid;
            grid-template-columns: 60% 40%;
            gap: 40px;
            align-items: center;
        }

        
        .v3-program-info h3 {
            font-size: 26px;
            font-weight: 700;
            color: #0A0F2C;
            margin-bottom: 12px;

        }

        .v3-program-description {
            font-size: 15px;
            color: #4A5568;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .v3-meta-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }

        .v3-pill {
            background: #EEF2FF;
            border: 1px solid #C7D7F5;
            color: #3A7BD5;
            border-radius: 20px;
            padding: 5px 14px;
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
        }

        .v3-action-buttons {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .btn-v3-outline {
            background: transparent;
            border: 1.5px solid #3A7BD5;
            color: #3A7BD5;
            padding: 11px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-v3-outline:hover {
            background: rgba(58, 123, 213, 0.08);
        }

        .btn-v3-solid {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            padding: 12px 28px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 20px -5px rgba(30, 64, 175, 0.3);
            cursor: pointer;
        }

        .btn-v3-solid:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px -5px rgba(30, 64, 175, 0.5);
            background: linear-gradient(135deg, #1e40af, #3b82f6);
        }

        
        .v3-highlight-card {
            background: #FFFFFF;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #E2E8F5;
            box-shadow: 0 2px 12px rgba(58, 123, 213, 0.07);
        }

        .v3-card-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 12px 12px 0 0;
        }

        .v3-card-body {
            padding: 20px 22px;
        }

        .v3-card-label {
            font-size: 11px;
            color: #3A7BD5;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 14px;
            display: block;
        }

        .v3-highlight-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .v3-highlight-item {
            font-size: 14px;
            color: #4A5568;
            padding: 8px 0;
            border-bottom: 1px solid #F0F4FF;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .v3-highlight-item:last-child {
            border-bottom: none;
        }

        .v3-check {
            color: #1D9E75;
            font-weight: 700;
            flex-shrink: 0;
        }

        @media (max-width: 1024px) {
            .v3-content-grid {
                grid-template-columns: 1fr;
            }

            .v3-tabs-container {
                justify-content: flex-start;
            }
        }

        @media (max-width: 768px) {
            .programs-v3-header h2 {
                font-size: 28px;
            }

            .v3-tabs-wrapper {
                margin-left: -20px;
                margin-right: -20px;
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        @media (max-width: 480px) {
            .v3-pill {
                padding: 4px 10px;
                font-size: 11px;
            }

            .v3-action-buttons {
                flex-direction: column;
            }
        }

        
        .faq-section {
            background-color: #f0f9ff;
            padding: 80px 0;
            width: 100%;
        }

        .faq-top-block {
            text-align: center;
            max-width: 560px;
            margin: 0 auto 40px;
        }

        .faq-eyebrow {
            font-size: 14px;
            color: #3A7BD5;
            letter-spacing: 2px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .faq-top-block h2 {
            font-size: 42px;
            font-weight: 800;
            color: #0A0F2C;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .faq-top-block h2 span.gradient-text {
            background: linear-gradient(90deg, #2563EB 0%, #4F7CFF 50%, #6A8DFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .faq-subtext {
            font-size: 16px;
            color: #718096;
            line-height: 1.7;
            margin: 0 auto;
        }

        .faq-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 36px;
        }

        .faq-filter-pill {
            background: #FFFFFF;
            border: 1px solid #CBD5E8;
            color: #718096;
            border-radius: 20px;
            padding: 7px 20px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .faq-filter-pill:hover,
        .faq-filter-pill.active {
            background: #3A7BD5;
            color: #FFFFFF;
            border-color: #3A7BD5;
            font-weight: 600;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .faq-item {
            background: #FFFFFF;
            border-radius: 12px;
            border: 1px solid #E2E8F5;
            box-shadow: 0 1px 4px rgba(58, 123, 213, 0.05);
            overflow: hidden;
            transition: all 0.2s;
            height: fit-content;
        }

        .faq-item.active {
            box-shadow: 0 4px 16px rgba(58, 123, 213, 0.10);
            border-color: #C7D7F5;
        }

        .faq-item.hidden {
            display: none;
        }

        .faq-item.full-width {
            grid-column: 1 / -1;
        }

        .faq-question-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 14px;
            padding: 20px 22px;
            cursor: pointer;
        }

        .faq-question-row h3 {
            font-size: 18px;
            font-weight: 600;
            color: #0A0F2C;
            line-height: 1.5;
            flex: 1;
            transition: color 0.2s;
            margin: 0;
        }

        .faq-item.active .faq-question-row h3 {
            color: #3A7BD5;
        }

        .faq-toggle-icon {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: #EEF2FF;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.25s ease;
        }

        .faq-item.active .faq-toggle-icon {
            background: #3A7BD5;
            transform: rotate(45deg);
        }

        .faq-toggle-icon svg {
            width: 14px;
            height: 14px;
        }

        .faq-toggle-icon line {
            stroke: #3A7BD5;
            stroke-width: 2.5;
            transition: stroke 0.2s;
        }

        .faq-item.active .faq-toggle-icon line {
            stroke: #FFFFFF;
        }

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

        .faq-item.active .faq-answer-panel {
            max-height: 600px;
        }

        .faq-answer-inner {
            padding: 0 22px 20px;
            border-top: 1px solid #F0F4FF;
            padding-top: 14px;
        }

        .faq-category-tag {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 3px 10px;
            border-radius: 10px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .tag-programs {
            background: rgba(58, 123, 213, 0.10);
            color: #3A7BD5;
        }

        .tag-admissions {
            background: rgba(29, 158, 117, 0.10);
            color: #1D9E75;
        }

        .tag-career {
            background: rgba(239, 159, 39, 0.10);
            color: #B45309;
        }

        .tag-campus {
            background: rgba(139, 92, 246, 0.10);
            color: #7C3AED;
        }

        .faq-answer-inner p {
            font-size: 14px;
            color: #4A5568;
            line-height: 1.85;
            margin: 0;
        }


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

            .faq-item.full-width {
                grid-column: auto;
            }
        }

        @media (max-width: 768px) {
            .faq-filters {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
            }
        }

        @media (max-width: 480px) {
            .faq-question-row h3 {
                font-size: 14px;
            }

            .faq-answer-inner p {
                font-size: 13px;
            }
        }

        
        @media (max-width: 768px) {
            .desktop-only {
                display: none !important;
            }

            
            .hero h1,
            .vmo-main-title,
            .why-content h2,
            .usp-header h2,
            .programs-v3-header h2,
            .infra-header h2,
            .career-header h2,
            .testimonials-header h2,
            .faq-top-block h2,
            .cta-left h2,
            .v3-main-title {
                font-size: 28px !important;
                line-height: 1.3 !important;
                text-align: center !important;
                margin-bottom: 1.5rem !important;
                max-width: 100% !important;
                padding: 0 10px !important;
            }

            
            h3 {
                font-size: 22px !important;
                line-height: 1.4 !important;
            }

            .faq-question-row h3 {
                font-size: 16px !important;
                line-height: 1.4 !important;
                text-align: left !important;
            }

            
            .vmo-eyebrow,
            .usp-eyebrow,
            .eyebrow,
            .v3-eyebrow,
            .faq-eyebrow,
            .cta-eyebrow {
                display: block !important;
                text-align: center !important;
                margin-bottom: 0.5rem !important;
            }

            
            .why-content p {
                text-align: center !important;
                margin: 0 auto 2rem !important;
                font-size: 15px !important;
                line-height: 1.6 !important;
            }

            .why-content h2 .highlight-underline::after {
                height: 8px !important;
                bottom: -4px !important;
            }

            
            .v3-tabs-wrapper {
                border-bottom: none !important;
                overflow-x: visible !important;
                margin-bottom: 24px !important;
            }

            .v3-tabs-container {
                flex-direction: column !important;
                gap: 8px !important;
                padding: 0 !important;
            }

            .v3-tab {
                width: 100% !important;
                text-align: center !important;
                white-space: normal !important;
                font-size: 15px !important;
                padding: 12px 16px !important;
                border: 1px solid #E2E8F5 !important;
                border-radius: 8px !important;
                background: #F8FAFC !important;
            }

            .v3-tab.active {
                background: #F0F7FF !important;
                border-color: #3A7BD5 !important;
                color: #3A7BD5 !important;
                border-bottom-width: 2px !important;
            }

            .why-image-wrapper {
                padding: 0 !important;
                margin-top: 2rem !important;
                width: 100% !important;
            }

            .why-image-large {
                width: 100% !important;
                max-width: 100% !important;
                border-radius: 20px !important;
            }

            .section-container {
                padding: 0 1rem !important;
                width: 94% !important;
            }

            .vmo-title-rule {
                margin-left: auto !important;
                margin-right: auto !important;
            }

            
            .mobile-expand-grid.collapsed > *:nth-child(n+2) {
                display: none !important;
            }

            .read-more-btn-mobile {
                display: block !important;
                margin: 20px auto 0 !important;
                background: none !important;
                border: none !important;
                color: #3A7BD5 !important;
                font-weight: 600 !important;
                font-size: 14px !important;
                cursor: pointer !important;
                text-decoration: underline !important;
                padding: 10px !important;
            }

            .read-more-btn-mobile.hidden {
                display: none !important;
            }

            .cta-left {
                text-align: center !important;
                max-width: 100% !important;
                padding: 0 15px !important;
            }

            .cta-bottom-bar {
                justify-content: center !important;
            }

            .cta-bottom-links {
                justify-content: center !important;
            }
        }