        :root {
            --primary: #bd2b26;
            --secondary: #0b2c5f;
            --accent: #d4af37;
            --accent-soft: #f5e6a3;

            --text-main: #0f172a;
            --text-light: #54657e;

            --bg-light: #f8fafc;
            --bg-dark: #020617;

            --glass: rgba(255, 255, 255, 0.85);

            --card-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.15);

            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: white;
            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);
        }


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

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

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

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

        .progress-bar {
            flex-grow: 1;

            max-width: 200px;

            height: 2px;
            background: #e2e8f0;
            position: relative;
            border-radius: 1px;
        }

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


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

            .programs-track {
                transform: none !important;

                justify-content: center;
                flex-wrap: wrap;
            }

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



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

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

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

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



        .hero {
            background-color: #bd2b26;
            min-height: 100vh;
            padding: 120px 5% 100px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: fadeInDown 1s ease-out;
        }

        .hero-tagline {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            color: white;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4.5vw, 3.5rem);
            font-weight: 900;
            line-height: 1.1;
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }

        .hero-title span {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4.5vw, 3.5rem);
            font-weight: 900;
            line-height: 1.1;
            color: white;
            position: relative;
        }

        .hero-description {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            font-weight: 400;
        }

        .hero-btns {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: white;
            color: var(--primary);
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            background: #ffffff;
            color: var(--primary);
        }

        .btn-secondary {
            border: 2px solid rgba(255, 255, 255, 0.4);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            backdrop-filter: blur(4px);
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
            border-color: white;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .hero-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            max-width: 700px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .hero-image-container::after {
            content: '';
            position: absolute;
            bottom: 10%;
            right: 0%;
            width: 80%;
            height: 60%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            filter: blur(40px);
            z-index: 0;
            pointer-events: none;
        }

        .hero-main-img {
            width: 100%;
            height: auto;
            position: relative;
            z-index: 1;
            transform: scale(2) translate(220px, 184px);
            transform-origin: bottom right;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
            -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%), 
                                linear-gradient(to left, black 85%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 85%, transparent 100%), 
                        linear-gradient(to left, black 85%, transparent 100%);
            -webkit-mask-composite: source-in;
            mask-composite: intersect;
        }

        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 18px 24px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.5);
            z-index: 10;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .floating-card:hover {
            transform: translateY(-10px) scale(1.05) !important;
            background: rgba(255, 255, 255, 0.6);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: rgba(255, 255, 255, 0.8);
        }

        .floating-card i,
        .floating-card svg {
            width: 44px;
            height: 44px;
            background: white !important;
            color: var(--primary) !important;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            padding: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .floating-card:hover i,
        .floating-card:hover svg {
            transform: rotate(5deg);
            background: var(--primary) !important;
            color: white !important;
        }

        .floating-card .card-info h5 {
            font-size: 1rem;
            font-weight: 800;
            color: var(--primary);
            margin: 0;
            line-height: 1.2;
        }

        .floating-card .card-info p {
            font-size: 0.8rem;
            color: black;
            margin: 0;
            margin-top: 2px;
            font-weight: 500;
        }

        .card-1 {
            top: 0%;
            left: 5%;
            animation-delay: 0s;
        }

        .card-2 {
            top: 3%;
            right: -30%;
            animation-delay: 1.5s;
        }

        .card-3 {
            bottom: -5%;
            left: -10%;
            animation-delay: 3s;
        }

        .card-4 {
            bottom: -18%;
            right: -25%;
            animation-delay: 4.5s;
        }

        .hero-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 1;
        }

        .hero-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }

        .hero-wave .shape-fill {
            fill: white;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

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

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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



        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 60px;
            }

            .hero-description {
                margin: 0 auto 2.5rem;
            }

            .hero-btns {
                justify-content: center;
            }

            .hero-image-container {
                max-width: 500px;
                margin: 0 auto;
                justify-content: center;
            }

            .hero-main-img {
                transform: scale(1.8) translate(20px, 70px);
                transform-origin: center;
            }

            .hero-wave svg {
                height: 100px;
            }

            .floating-card {
                padding: 8px 12px;
                border-radius: 18px;
            }

            .card-1 {
                top: 1%;
                left: 5%;
            }

            .card-2 {
                top: 10%;
                right: -5%;
            }

            .card-3 {
                bottom: -10%;
                left: -5%;
            }

            .card-4 {
                bottom: -20%;
                right: 0%;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding-top: 100px;
            }

            .hero-title {
                font-size: 2.5rem;
                letter-spacing: -0.02em;
            }

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

            .hero-image-container {
                max-width: 100%;
            }

            .hero-main-img {
                transform: scale(1.5) translate(10px, 50px);
            }

            .floating-card {
                padding: 6px 10px;
                gap: 8px;
                border-radius: 12px;
            }

            .floating-card i,
            .floating-card svg {
                width: 30px;
                height: 30px;
                padding: 6px;
                border-radius: 8px;
            }

            .floating-card .card-info h5 {
                font-size: 0.8rem;
            }

            .floating-card .card-info p {
                font-size: 0.65rem;
            }

            .card-1 {
                top: 15%;
                left: 0%;
            }

            .card-2 {
                top: 5%;
                right: -2%;
            }

            .card-3 {
                bottom: 0%;
                left: -2%;
            }

            .card-4 {
                bottom: -10%;
                right: 0%;
            }
        }

        .vision-mission {
            padding: 60px 5%;
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
        }

        .section-header-slider {
            text-align: center;
            margin-bottom: 4rem;
            height: 60px;
            overflow: hidden;
        }

        .slider-text-wrapper {
            display: flex;
            flex-direction: column;
            animation: text-slide 9s infinite;
        }

        .slider-text-wrapper span {
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--primary);
            font-family: 'Outfit', sans-serif;
            height: 60px;
            line-height: 1.2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes text-slide {

            0%,
            25% {
                transform: translateY(0);
            }

            33%,
            58% {
                transform: translateY(-60px);
            }

            66%,
            91% {
                transform: translateY(-120px);
            }

            100% {
                transform: translateY(0);
            }
        }

        .leaf-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            align-items: center;
        }

        .leaf-card {
            position: relative;
            min-height: 380px;
            border-radius: 160px 40px 160px 40px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            display: flex;
            align-items: center;
            padding: 3.5rem 3rem;
        }

        .leaf-card.vision {
            background: linear-gradient(rgba(11, 44, 95, 0.85), rgba(11, 44, 95, 0.85)), url('../img/Mba/DSC03162.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            z-index: 2;
        }

        .leaf-card.mission {
            background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('../img/Mba/DSC03182.jpg');
            background-size: cover;
            background-position: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
            z-index: 1;
            padding-left: 3rem;
        }

        .leaf-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
        }

        .leaf-content h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            margin-bottom: 1.25rem;
            position: relative;
            display: inline-block;
        }

        .leaf-content h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }

        .vision .leaf-content h3::after {
            background: var(--accent);
        }

        .mission .leaf-content h3 {
            color: var(--primary);
        }

        .leaf-content p {
            font-size: 1rem;
            line-height: 1.7;
            opacity: 0.95;
        }

        .mission-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .mission-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            color: var(--text-main);
            line-height: 1.4;
        }

        .mission-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }

        .outcomes {
            padding: 100px 5%;
            background: #f1f5f9;
        }

        .outcomes-grid {
            max-width: 950px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .outcome-card {
            background: #f2f8ff;
            padding: 1.25rem 1rem;
            border-radius: 20px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
            border: 1.5px dashed var(--secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
        }

        .outcome-card:hover {
            border-color: var(--secondary);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
        }

        .outcome-icon {
            width: 65px;
            height: 65px;
            background: var(--secondary);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
            margin-bottom: 0.25rem;
        }

        .outcome-card:hover .outcome-icon {
            transform: rotate(10deg);
        }

        .outcome-card h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            color: var(--primary);
            margin: 0;
        }

        .outcome-card p {
            margin: 0;
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(2, 6, 23, 0.85);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .modal-content {
            background: white;
            width: 90%;
            max-width: 800px;
            max-height: 85vh;
            border-radius: 32px;
            position: relative;
            padding: 3rem;
            overflow-y: auto;
            transform: scale(0.9) translateY(20px);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1) translateY(0);
        }

        .close-modal {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            color: var(--text-main);
            border: none;
        }

        .close-modal:hover {
            background: var(--primary);
            color: white;
            transform: rotate(90deg);
        }

        .modal-header {
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .modal-header i {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            color: var(--primary);
        }

        .modal-body {
            color: var(--text-main);
            line-height: 1.8;
        }

        .modal-body ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .modal-body li {
            background: #f8fafc;
            padding: 1.25rem;
            border-radius: 16px;
            border-left: 4px solid var(--secondary);
        }

        .modal-body li strong {
            display: block;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .attainment-diagram {
            width: 100%;
            height: auto;
            border-radius: 16px;
            margin-top: 1.5rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        /* --- Animations --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

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

            .leaf-card.mission {
                margin-left: 0;
                padding-left: 3rem;
            }

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

        @media (max-width: 768px) {
            .leaf-card {
                min-height: auto;
                padding: 3rem 2rem;
                border-radius: 80px 20px 80px 20px;
            }

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

            .modal-content {
                padding: 2rem;
                border-radius: 20px;
            }

            .modal-header h2 {
                font-size: 1.5rem;
            }
        }

        /* --- Global Section Styles --- */
        section {
            padding: 100px 5%;
        }

        .section-tag {
            display: inline-block;
            padding: 6px 12px;
            background: rgba(37, 99, 235, 0.08);
            color: var(--secondary);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .about-mba {
            background: #ffffff;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content {
            padding-right: 2rem;
        }

        .about-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--bg-light);
            padding: 12px 20px;
            border-radius: 12px;
            border-left: 3px solid var(--accent);
        }

        .highlight-item span {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--secondary);
        }

        .why-mba {
            background: var(--bg-light);
            text-align: center;
        }

        .why-mba .section-title {
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .why-mba-slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 2rem 0;
        }

        .why-mba-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            transition: transform 0.5s ease-in-out;
        }

        .val-card {
            background: #f2f8ff;
            padding: 3rem 2rem;
            border-radius: 20px;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
            border: 1.5px dashed var(--secondary);
        }

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

        .val-icon {
            width: 60px;
            height: 60px;
            background: rgba(37, 99, 235, 0.05);
            color: var(--secondary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: var(--transition);
        }

        .val-card:hover .val-icon {
            background: var(--secondary);
            color: white;
        }

        .val-card h5 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: var(--secondary);
        }

        .val-card p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .outcomes {
            background: #ffffff;
        }

        @media (max-width: 1024px) {
            .about-mba {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .about-content {
                padding-right: 0;
            }

            .why-mba-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                width: 100%;
            }

            .why-mba-grid .val-card {
                flex: unset;
                box-sizing: border-box;
            }
        }

        @media (max-width: 768px) {
            .why-mba-grid {
                display: flex;
                gap: 0;
            }

            .why-mba-grid .val-card {
                flex: 0 0 100%;
            }
        }

        .choose-karunya {
            background: #ffffff;
        }

        .zigzag-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            margin-bottom: 8rem;
        }

        .zigzag-row:last-child {
            margin-bottom: 0;
        }

        .zigzag-row.reverse .zigzag-content {
            order: 2;
        }

        .zigzag-row.reverse .zigzag-image {
            order: 1;
        }

        .zigzag-image {
            position: relative;
            border-radius: 40px;
            overflow: hidden;
            aspect-ratio: 4/3;
        }

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

        .feature-list {
            list-style: none;
            margin-top: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .feature-item {

            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .feature-item i {
            color: var(--secondary);
            margin-top: 4px;
        }

        .feature-item h6 {
            font-size: 1rem;
            color: var(--secondary);
            margin-bottom: 4px;
        }

        .feature-item p {
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.4;
        }

        .entrepreneurship {
            background: linear-gradient(135deg, #0b2c5f 0%, #051937 100%);
            color: white;
            text-align: center;
        }

        .entrepreneurship .section-title,
        .entrepreneurship .section-tag {
            color: white;
        }

        .entrepreneurship .section-tag {
            background: rgba(255, 255, 255, 0.1);
        }

        .ecosystem-slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .ecosystem-track {
            display: flex;
            gap: 2rem;
            margin-top: 4rem;
            justify-content: center;
            transition: transform 0.5s ease-in-out;
        }

        @media (max-width: 1024px) {
            .ecosystem-track {
                justify-content: flex-start;
                padding: 1rem 5%;
            }
        }

        .ecosystem-track::-webkit-scrollbar {
            display: none;
        }

        .eco-card {
            flex: 0 0 300px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: left;
            transition: var(--transition);
            position: relative;
        }

        .eco-card::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -1rem;
            width: 2rem;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
            z-index: -1;
        }

        .eco-card:last-child::before {
            display: none;
        }

        .eco-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-10px);
            border-color: var(--accent);
        }

        .eco-icon {
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .eco-card h5 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .eco-card p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .zigzag-row {
                grid-template-columns: 1fr;
                gap: 3rem;
                margin-bottom: 5rem;
            }

            .zigzag-row.reverse .zigzag-content,
            .zigzag-row.reverse .zigzag-image {
                order: unset;
            }

            .ecosystem-track {
                padding: 2rem 0;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                justify-content: center;
                width: 100%;
            }

            .ecosystem-track .eco-card {
                flex: unset;
                box-sizing: border-box;
                margin: 0;
            }
        }

        @media (max-width: 768px) {
            .ecosystem-track {
                display: flex;
                gap: 0;
                justify-content: flex-start;
            }

            .ecosystem-track .eco-card {
                flex: 0 0 100%;
            }

            .ecosystem-track .eco-card::before {
                display: none;
            }
        }

        .research {
            background: #f8fafc;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .research-visual {
            position: relative;
            height: 500px;
        }

        .main-research-img {
            width: 80%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
            box-shadow: var(--card-shadow);
        }

        .overlay-stats-card {
            position: absolute;
            bottom: 30px;
            right: 0;
            background: #f2f8ff;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            width: 50%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 1.5rem;
        }

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

        .stat-icon {
            width: 40px;
            height: 40px;
            background: var(--bg-light);
            color: var(--secondary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-info h4 {
            font-size: 1.25rem;
            color: var(--secondary);
            line-height: 1;
        }

        .stat-info p {
            font-size: 0.75rem;
            color: var(--text-light);
        }

        .specializations {
            background: #ffffff;
            text-align: center;
        }

        .spec-grid {
            max-width: 1200px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .spec-card {
            background: rgba(37, 99, 235, 0.03);
            padding: 1.25rem 2rem;
            border-radius: 100px;
            border: 1px solid rgba(37, 99, 235, 0.08);
            transition: var(--transition);
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 1.5rem;
            cursor: pointer;
            text-align: left;
        }

        .spec-card:hover {
            transform: scale(1.05);
            background: white;
            border-color: var(--secondary);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
        }

        .spec-icon {
            width: 50px;
            height: 50px;
            background: white;
            color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .spec-card:hover .spec-icon {
            background: var(--secondary);
            color: white;
        }

        .spec-card h5 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            color: var(--secondary);
            font-weight: 700;
            margin: 0;
        }

        .view-more-btn {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 2rem auto 0;
            padding: 0.8rem 1.5rem;
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
            border-radius: 50px;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .view-more-btn:hover {
            background: var(--secondary);
            color: white;
        }

        .view-more-btn.active i {
            transform: rotate(180deg);
        }

        .careers .view-more-btn {
            color: var(--accent);
            border-color: var(--accent);
        }

        .careers .view-more-btn:hover {
            background: var(--accent);
            color: var(--primary);
        }

        @media (max-width: 1024px) {
            .research {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .research-visual {
                height: auto;
                margin-top: 3rem;
            }

            .main-research-img {
                width: 100%;
                border-radius: 20px;
            }

            .overlay-stats-card {
                position: relative;
                width: 85%;
                margin: -40px auto 0;
                right: auto;
                bottom: auto;
                display: flex;
                flex-direction: column;
                gap: 1rem;
                padding: 1.5rem;
                z-index: 10;
            }

            .stat-item {
                margin-bottom: 0;
                justify-content: flex-start;
                text-align: left;
            }

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

            .spec-card {
                padding: 0.8rem 1.25rem;
                gap: 0.75rem;
                border-radius: 50px;
            }

            .spec-icon {
                width: 40px;
                height: 40px;
            }

            .spec-card h5 {
                font-size: 0.95rem;
            }

            .career-card {
                padding: 2rem 1.5rem;
                gap: 1rem;
            }

            .career-icon {
                width: 40px;
                height: 40px;
            }

            .career-card h5 {
                font-size: 1.1rem;
            }

            .spec-grid .spec-card:nth-child(n+3),
            .career-grid .career-card:nth-child(n+3) {
                display: none;
            }

            .spec-grid.show-all .spec-card:nth-child(n+2),
            .career-grid.show-all .career-card:nth-child(n+2) {
                display: flex;
            }

            .view-more-btn {
                display: flex;
            }
        }


        .careers {
            background: var(--bg-dark);
            color: white;
            text-align: center;
        }

        .careers .section-title,
        .careers .section-tag {
            color: white;
        }

        .careers .section-tag {
            background: rgba(255, 255, 255, 0.1);
        }

        .career-grid {
            max-width: 1200px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .career-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 3rem 2rem;
            border-radius: 20px;

            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .career-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: scale(1.05);
            border-color: var(--accent);
        }

        .career-icon {
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .career-card h5 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
        }

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

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

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

            .spec-card {
                padding: 1rem 1.5rem;
                gap: 1rem;
            }

            .spec-grid .spec-card:nth-child(n+2),
            .career-grid .career-card:nth-child(n+2) {
                display: none;
            }
        }

        .testimonials {
            background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(0, 31, 63, 0.03), transparent);
            padding: 8rem 0;
            overflow: hidden;
            position: relative;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 20%;
            left: -5%;
            width: 300px;
            height: 300px;
            background: var(--accent);
            filter: blur(150px);
            opacity: 0.1;
            z-index: 0;
        }

        .testimonial-slider-container {
            max-width: 1400px;
            margin: 4rem auto 0;
            padding: 0 2rem;
            position: relative;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 2rem;
            padding: 2rem 0;
            cursor: grab;
        }

        .testimonial-card {
            min-width: calc(33.333% - 1.33rem);
            background: rgb(255 235 235 / 70%);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1.5px dashed var(--secondary);
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            transition: all 0.5s ease;
            position: relative;
            opacity: 0.5;
            transform: scale(0.9);
            filter: blur(2px);
        }

        .testimonial-card.active {
            opacity: 1;
            transform: scale(1.05);
            filter: blur(0);
            box-shadow: 0 25px 50px rgba(197, 160, 89, 0.15);
            border-color: var(--secondary);
            z-index: 2;
        }

        .quote-icon {
            position: absolute;
            top: 2rem;
            right: 2.5rem;
            color: var(--secondary);
            opacity: 0.8;
            z-index: 0;
        }

        .student-profile {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .student-photo {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #cde3f9;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
        }

        .student-info {
            flex: 1;
            padding-right: 20px;
        }

        .student-info h5 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--secondary);
            font-weight: 700;
            line-height: 1.2;
        }

        .student-info span {
            font-size: 0.85rem;
            color: var(--text-light);
            display: block;
            margin-top: 4px;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-main);
            line-height: 1.7;
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 4rem;
        }

        .nav-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 31, 63, 0.1);
            cursor: pointer;
            transition: var(--transition);
        }

        .nav-dot.active {
            width: 30px;
            border-radius: 10px;
            background: var(--secondary);
        }

        .nav-arrow {
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.05);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .nav-arrow:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .faq {
            padding: 8rem 0;
            background: white;
        }

        .faq-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 6rem;
            padding: 0 2rem;
        }

        .faq-intro {
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .search-container {
            margin-top: 3rem;
            display: flex;
            align-items: stretch;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 15px;
            background: #f8fafc;
            overflow: hidden;
            transition: var(--transition);
        }

        .search-icon-box {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 1.2rem;
            border-right: 1px solid rgba(0, 0, 0, 0.08);
            color: var(--text-light);
            background: rgba(0, 0, 0, 0.02);
        }

        .search-container input {
            flex: 1;
            padding: 1.2rem 1.5rem;
            border: none;
            background: transparent;
            font-family: inherit;
            outline: none;
            color: var(--primary);
        }

        .search-container:focus-within {
            border-color: var(--secondary);
            background: white;
            box-shadow: 0 10px 30px rgba(197, 160, 89, 0.1);
        }

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

        .faq-item {
            border-radius: 20px;
            background: #f8fafc;
            border: 1px solid rgba(0, 0, 0, 0.03);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(197, 160, 89, 0.3);
        }

        .faq-item.active {
            background: white;
            border-color: var(--secondary);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
        }

        .faq-header {
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            gap: 1.5rem;
        }

        .faq-header h5 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary);
            line-height: 1.4;
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(0, 31, 63, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            background: var(--secondary);
            color: white;
            transform: rotate(180deg);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-content {
            max-height: 800px;
        }

        .faq-content-inner {
            padding: 0 2rem 2rem 2rem;
            color: var(--text-light);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* --- CTA Section --- */
        .cta-bottom {
            background: var(--primary);
            padding: 6rem 2rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-bottom::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM32 56c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-8-3d3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm66 66c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM80 46c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6z' fill='%23c5a059' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-btn {
            background: var(--accent);
            color: var(--primary);
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 2.5rem;
            transition: var(--transition);
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
        }

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

            .faq-intro {
                position: static;
            }

            .testimonial-card {
                min-width: calc(50% - 1rem);
            }
        }

        @media (max-width: 768px) {
            .testimonial-slider-container {
                padding: 0 1rem;
            }

            .testimonial-track {
                gap: 1rem;
            }

            .testimonial-card {
                min-width: calc(100vw - 2rem);
                padding: 2rem;
                opacity: 0.3;
                transform: scale(0.85);
                filter: blur(4px);
            }

            .testimonial-card.active {
                opacity: 1;
                transform: scale(1);
                filter: blur(0);
            }

            .student-profile {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .student-info {
                padding-right: 0;
            }

            .testimonial-text {
                text-align: center;
            }

            .quote-icon {
                top: 1rem;
                right: 1.5rem;
                width: 30px !important;
                height: 30px !important;
            }

            .section-header-slider {
                height: 40px;
                margin-bottom: 2rem;
            }

            .slider-text-wrapper span {
                height: 40px;
                font-size: 1.5rem;
            }

            @keyframes text-slide {

                0%,
                25% {
                    transform: translateY(0);
                }

                33%,
                58% {
                    transform: translateY(-40px);
                }

                66%,
                91% {
                    transform: translateY(-80px);
                }

                100% {
                    transform: translateY(0);
                }
            }

            .hero-wave {
                margin-bottom: -2px;
            }

            .hero-wave svg {
                height: 90px;
            }


            .vision-mission,
            .outcomes,
            .about-mba,
            .why-mba,
            .entrepreneurship,
            .choose-karunya,
            .research,
            .specializations,
            .careers,
            .testimonials,
            .faq,
            .cta-bottom,
            footer {
                padding-top: 40px !important;
                padding-bottom: 20px !important;
            }

            .cta-bottom {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        @media (min-width: 1025px) and (max-width: 1440px) {
            .hero-main-img {
                transform: scale(1.8) translate(160px, 165px);
            }

            .hero-wave svg {
                height: 60px;
            }

            .card-1 {
                top: 5%;
                left: 5%;
            }

            .card-2 {
                top: -5%;
                right: -5%;
            }

            .card-3 {
                bottom: 1%;
                left: 5%;
            }

            .card-4 {
                bottom: -10%;
                right: -5%;
            }

            .eco-card {
                flex: 0 0 255px;
                padding: 1.5rem;
            }

            .eco-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 1rem;
            }

            .eco-card h5 {
                font-size: 1.1rem;
            }
        }
