  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #CC3634;
            --primary-light: #e65a58;
            --primary-dark: #a12a28;
            --secondary: #575656;
            --light: #B2B2B2;
            --light-bg: #f8f9fa;
            --white: #FFFFFF;
            --dark: #1a1a1a;
            --gradient: linear-gradient(135deg, #CC3634 0%, #e65a58 100%);
            --shadow: 0 20px 60px rgba(204, 54, 52, 0.15);
            --shadow-light: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
            overflow-x: hidden;
        }

        /* Modern Header */
        /* Modern Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(204, 54, 52, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        /* Desktop Navigation */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--secondary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1001;
        }

        .mobile-menu-btn:hover {
            background: rgba(204, 54, 52, 0.1);
            color: var(--primary);
        }

        /* Hamburger Animation */
        .hamburger {
            width: 24px;
            height: 18px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hamburger span {
            width: 100%;
            height: 2px;
            background: var(--secondary);
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .mobile-menu-btn.active .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background: var(--white);
        }

        .mobile-menu-btn.active .hamburger span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
            background: var(--white);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background: var(--gradient);
            z-index: 1000;
            padding: 100px 0 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
        }

        .mobile-menu.active {
            right: 0;
        }

        /* Mobile Menu Content */
        .mobile-menu-content {
            padding: 0 40px;
        }

        .mobile-menu-header {
            text-align: center;
            margin-bottom: 50px;
            color: var(--white);
            position: relative;
        }

        .mobile-menu-header .logo-mobile {
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .mobile-menu-header .logo-mobile:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 1);
        }

        .mobile-menu-header .logo-mobile img {
            height: 60px;
            width: auto;
            filter: none;
            transition: all 0.3s ease;
            display: block;
        }

        .mobile-menu-header .logo-mobile img:hover {
            transform: scale(1.05);
        }

        .mobile-menu-header h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .mobile-menu-header p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Mobile Close Button */
        .mobile-close-btn {
            position: absolute;
            top: -10px;
            right: 0;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .mobile-close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--white);
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .mobile-close-btn:active {
            transform: scale(0.95);
        }

        .mobile-nav-links {
            list-style: none;
            margin-bottom: 40px;
        }

        .mobile-nav-links li {
            margin-bottom: 8px;
        }

        .mobile-nav-links a {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px 20px;
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mobile-nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: left 0.3s ease;
        }

        .mobile-nav-links a:hover::before {
            left: 0;
        }

        .mobile-nav-links a:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(10px);
        }

        .mobile-nav-links a i {
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
        }

        /* Mobile Menu CTA */
        .mobile-cta {
            padding: 0 20px;
            text-align: center;
        }

        .mobile-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--white);
            color: var(--primary);
            padding: 18px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 30px;
        }

        .mobile-cta-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Mobile Menu Social Links */
        .mobile-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 30px;
        }

        .mobile-social a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .mobile-social a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        .mobile-social a:hover::before {
            width: 100%;
            height: 100%;
        }

        .mobile-social a:hover {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .mobile-social a i {
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        /* Specific social media colors on hover */
        .mobile-social a.facebook:hover {
            background: #1877f2;
            border-color: #1877f2;
        }

        .mobile-social a.facebook:hover::before {
            background: #1877f2;
        }

        .mobile-social a.facebook:hover i {
            color: var(--white);
        }

        .mobile-social a.twitter:hover {
            background: #1da1f2;
            border-color: #1da1f2;
        }

        .mobile-social a.twitter:hover::before {
            background: #1da1f2;
        }

        .mobile-social a.twitter:hover i {
            color: var(--white);
        }

        .mobile-social a.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border-color: #e6683c;
        }

        .mobile-social a.instagram:hover::before {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .mobile-social a.instagram:hover i {
            color: var(--white);
        }

        .mobile-social a.linkedin:hover {
            background: #0077b5;
            border-color: #0077b5;
        }

        .mobile-social a.linkedin:hover::before {
            background: #0077b5;
        }

        .mobile-social a.linkedin:hover i {
            color: var(--white);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav {
                padding: 0 20px;
            }

            .mobile-menu {
                width: 100%;
                max-width: none;
            }

            .mobile-menu-content {
                padding: 0 30px;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu-content {
                padding: 0 20px;
            }

            .mobile-nav-links a {
                padding: 15px 15px;
                font-size: 1rem;
            }

            .mobile-menu-header h2 {
                font-size: 1.5rem;
            }

            .mobile-close-btn {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                top: -66px;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background-image:
                linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(250, 251, 252, 0.8) 100%),
                url('../images/Artificial-Intelligence.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            padding: 100px 0 50px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(204, 54, 52, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(204, 54, 52, 0.03) 0%, transparent 50%);
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .hero-left {
            color: var(--dark);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(204, 54, 52, 0.08);
            border: 1px solid rgba(204, 54, 52, 0.15);
            padding: 12px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .hero-badge:hover {
            background: rgba(204, 54, 52, 0.12);
            transform: translateY(-2px);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--dark);
            letter-spacing: -1px;
        }

        .hero-title .highlight {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 500;
            margin-bottom: 20px;
            color: var(--secondary);
            line-height: 1.3;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 35px;
            color: var(--secondary);
            max-width: 520px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(204, 54, 52, 0.15);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--secondary);
            font-weight: 500;
        }

        .hero-cta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient);
            color: var(--white);
            box-shadow: var(--shadow);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 25px 70px rgba(204, 54, 52, 0.25);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary);
            border: 2px solid rgba(204, 54, 52, 0.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(204, 54, 52, 0.15);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ai-hub {
            position: relative;
            width: 280px;
            height: 280px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 25px 80px rgba(204, 54, 52, 0.15),
                inset 0 0 0 1px rgba(204, 54, 52, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }

        .ai-hub::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: conic-gradient(from 0deg, var(--primary), var(--primary-light), var(--primary), var(--primary-light));
            border-radius: 50%;
            opacity: 0.6;
            animation: rotate 20s linear infinite;
            z-index: -1;
        }

        .ai-hub::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: var(--white);
            border-radius: 50%;
            z-index: -1;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .brain-icon {
            font-size: 4rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .tech-node {
            position: absolute;
            width: 70px;
            height: 70px;
            background: var(--white);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            animation: nodeFloat 8s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .tech-node:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 50px rgba(204, 54, 52, 0.2);
        }

        .tech-node:nth-child(1) {
            top: 8%;
            left: 15%;
            animation-delay: 0s;
        }

        .tech-node:nth-child(2) {
            top: 12%;
            right: 20%;
            animation-delay: 1s;
        }

        .tech-node:nth-child(3) {
            bottom: 15%;
            left: 10%;
            animation-delay: 2s;
        }

        .tech-node:nth-child(4) {
            bottom: 20%;
            right: 15%;
            animation-delay: 3s;
        }

        .tech-node:nth-child(5) {
            top: 50%;
            left: 2%;
            animation-delay: 4s;
        }

        .tech-node:nth-child(6) {
            top: 45%;
            right: 0%;
            animation-delay: 5s;
        }

        @keyframes nodeFloat {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
                opacity: 1;
            }
        }

        .connection-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(204, 54, 52, 0.4), transparent);
            animation: dataFlow 3s ease-in-out infinite;
        }

        .connection-line:nth-child(7) {
            top: 25%;
            left: 20%;
            width: 60%;
            transform: rotate(25deg);
        }

        .connection-line:nth-child(8) {
            top: 75%;
            right: 20%;
            width: 50%;
            transform: rotate(-35deg);
            animation-delay: 1s;
        }

        .connection-line:nth-child(9) {
            bottom: 30%;
            left: 15%;
            width: 55%;
            transform: rotate(10deg);
            animation-delay: 2s;
        }

        @keyframes dataFlow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--secondary);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Sections */
        .section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

       .section-badge {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			background: linear-gradient(135deg, rgba(204, 54, 52, 0.1) 0%, rgba(204, 54, 52, 0.05) 100%);
			border: 2px solid rgba(204, 54, 52, 0.2);
			padding: 12px 24px;
			border-radius: 50px;
			font-size: 0.9rem;
			font-weight: 700;
			color: var(--primary);
			margin-bottom: 30px;
			backdrop-filter: blur(10px);
			transition: all 0.4s ease;
		}
		.section-badge.white {
			background: rgba(255, 255, 255, 0.15);
			border-color: rgba(255, 255, 255, 0.3);
			color: var(--white);
			backdrop-filter: blur(20px);
		}
        .section-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(204, 54, 52, 0.2);
            border-color: var(--primary);
        }

        .section-title {
               font-size: 3.5rem;
				font-weight: 800;
				margin-bottom: 25px;
				color: var(--dark);
				line-height: 1.1;
				letter-spacing: -1px;
        }
		h2.section-title.white {
			COLOR: #FFF;
		}
		p.section-subtitle.white {
			color: #fff;
		}
		.section-title .highlight {
			background: var(--gradient);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			position: relative;
		}
		.section-title .highlight {
			background: var(--gradient);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			position: relative;
		}
        .section-subtitle {
            font-size: 1.3rem;
            color: var(--secondary);
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 15% 25%, rgba(204, 54, 52, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(204, 54, 52, 0.03) 0%, transparent 50%);
            z-index: 1;
        }

        /* Why Choose AI Section */
        .why-ai {
            background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
            position: relative;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .benefit-card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 25px;
            box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(204, 54, 52, 0.08);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .benefit-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 80px rgba(204, 54, 52, 0.2);
            border-color: var(--primary);
        }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            color: var(--white);
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(204, 54, 52, 0.3);
            transition: all 0.4s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .benefit-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .benefit-description {
            color: var(--secondary);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* Entry Requirements Section */
        .entry-requirements {
            background: var(--light-bg);
            position: relative;
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .requirement-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            transition: all 0.4s ease;
            border: 1px solid rgba(204, 54, 52, 0.08);
            position: relative;
            overflow: hidden;
        }

        .requirement-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .requirement-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(204, 54, 52, 0.15);
            border-color: var(--primary);
        }

        .requirement-card:hover::after {
            transform: scaleX(1);
        }

        .req-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .req-header i {
            font-size: 2.5rem;
            color: var(--primary);
            background: rgba(204, 54, 52, 0.1);
            padding: 15px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .requirement-card:hover .req-header i {
            transform: scale(1.1);
            background: var(--primary);
            color: var(--white);
        }

        .req-header h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
        }

        .req-grade {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 25px;
            padding: 15px 20px;
            background: rgba(204, 54, 52, 0.08);
            border-radius: 12px;
            text-align: center;
        }

        .req-list {
            list-style: none;
        }

        .req-list li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--secondary);
            font-weight: 500;
        }

        .req-list i {
            color: var(--primary);
            font-size: 1.1rem;
        }

        .req-list .fas.fa-star {
            color: #ffd700;
        }


        /* Career Opportunities Section */
        .career-opportunities {
            background: var(--white);
            position: relative;
        }

        .careers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }





        /* Entry Requirements Section */
        .entry-requirements {
            background: var(--light-bg);
            position: relative;
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .requirement-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            transition: all 0.4s ease;
            border: 1px solid rgba(204, 54, 52, 0.08);
            position: relative;
            overflow: hidden;
        }

        .requirement-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .requirement-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(204, 54, 52, 0.15);
            border-color: var(--primary);
        }

        .requirement-card:hover::after {
            transform: scaleX(1);
        }

        .req-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .req-header i {
            font-size: 2.5rem;
            color: var(--primary);
            background: rgba(204, 54, 52, 0.1);
            padding: 15px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .requirement-card:hover .req-header i {
            transform: scale(1.1);
            background: var(--primary);
            color: var(--white);
        }

        .req-header h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
        }

        .req-grade {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 25px;
            padding: 15px 20px;
            background: rgba(204, 54, 52, 0.08);
            border-radius: 12px;
            text-align: center;
        }

        .req-list {
            list-style: none;
        }

        .req-list li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--secondary);
            font-weight: 500;
        }

        .req-list i {
            color: var(--primary);
            font-size: 1.1rem;
        }

        .req-list .fas.fa-star {
            color: #ffd700;
        }
		/* CURRICULUM SECTION - WORKING TABS */
        .curriculum {
            background: var(--gradient);
            color: var(--white);
            position: relative;
            padding: 60px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }





        .highlight {
            background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

	   .section-subtitle {
			font-size: 1.3rem;
			color: var(--secondary);
			max-width: 700px;
			margin: 0 auto;
			font-weight: 400;
		}

        /* Tab Navigation - FIXED */
        .tab-navigation {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 70px auto 60px;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            max-width: 800px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .tab-btn {
            flex: 1;
            background: transparent;
            border: none;
            padding: 20px 15px;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            position: relative;
        }

        .tab-btn:hover {
            color: var(--white);
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .tab-btn.active {
            background: rgba(255, 255, 255, 0.9) !important;
            color: var(--primary) !important;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        .tab-number {
            display: block;
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .tab-title {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* Tab Content - FIXED */
        .tab-content {
            position: relative;
            min-height: 600px;
        }

        .tab-pane {
            display: none;
        }

        .tab-pane.active {
            display: block !important;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .year-intro {
            text-align: center;
            margin-bottom: 50px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        .year-intro h3 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .year-intro p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .semester-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .semester-card {
            background: rgba(255, 255, 255, 0.95);
            color: var(--dark);
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }

        .semester-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
        }

        .semester-card h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid rgba(204, 54, 52, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .course-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .course-list li {
            padding: 12px 15px;
            margin-bottom: 8px;
            background: var(--light-bg);
            border-radius: 10px;
            font-size: 0.95rem;
            color: var(--secondary);
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            font-weight: 500;
        }

        .course-list li:hover {
            background: var(--white);
            transform: translateX(8px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-left-color: var(--primary);
        }

        .course-list li.featured {
            background: rgba(204, 54, 52, 0.1);
            border-left-color: var(--primary);
            color: var(--dark);
            font-weight: 600;
        }

        .course-list li.ai-course {
            background: var(--gradient);
            color: var(--white);
            border-left-color: var(--white);
            font-weight: 600;
        }

        .course-list li.ai-course:hover {
            background: var(--primary-dark);
            transform: translateX(12px);
        }

        .course-list li.internship {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: var(--white);
            border-left-color: var(--white);
            font-weight: 600;
        }

        .course-list li.project {
            background: linear-gradient(135deg, #6f42c1, #e83e8c);
            color: var(--white);
            border-left-color: var(--white);
            font-weight: 600;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .tab-navigation {
                flex-direction: column;
                max-width: 300px;
                gap: 8px;
            }

            .tab-btn {
                padding: 15px;
            }

            .tab-number {
                font-size: 1.5rem;
            }

            .tab-title {
                font-size: 0.8rem;
            }

            .semester-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .semester-card {
                padding: 25px;
            }

            .year-intro {
                padding: 25px;
            }

            .year-intro h3 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 2.5rem;
            }
        }

        /* Career Opportunities Section */
        .career-opportunities {
            background: var(--white);
            position: relative;
        }

        .careers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }

        .career-card {
            background: var(--white);
            padding: 40px 35px;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            transition: all 0.4s ease;
            border-left: 6px solid var(--primary); + Math.floor(currentNumber) + 'K';
                    } else if (isStar) {
                        stat.textContent = currentNumber.toFixed(1) + '★';
                    } else if (isPlus) {
                        stat.textContent = Math.floor(currentNumber) + '+';
                    } else {
                        stat.textContent = Math.floor(currentNumber);
                    }
                }, 40);
            });
        }

        .career-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: var(--gradient);
            border-radius: 50%;
            transform: translate(50%, -50%);
            opacity: 0.1;
            transition: all 0.4s ease;
        }

        .career-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 70px rgba(204, 54, 52, 0.15);
        }

        .career-card:hover::before {
            transform: translate(30%, -30%) scale(1.2);
            opacity: 0.15;
        }

        .career-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .career-salary {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .career-description {
            color: var(--secondary);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .career-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .skill-tag {
            background: rgba(204, 54, 52, 0.1);
            color: var(--primary);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Industries Section - FIXED FOR DESKTOP ONE ROW */
        .industries {
            background: var(--light-bg);
            position: relative;
        }
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr); /* Force 6 columns on desktop */
            gap: 25px;
            margin-top: 60px;
        }
        .industry-item {
            background: var(--white);
            padding: 35px 20px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(204, 54, 52, 0.08);
            position: relative;
            overflow: hidden;
            min-height: 180px; /* Ensure consistent height */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .industry-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .industry-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(204, 54, 52, 0.15);
            color: var(--white);
        }
        .industry-item:hover::before {
            opacity: 1;
        }
        .industry-icon {
            font-size: 2.5rem; /* Slightly smaller for better fit */
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }
        .industry-item:hover .industry-icon {
            color: var(--white);
            transform: scale(1.1);
        }
        .industry-name {
            font-size: 1.1rem; /* Adjusted for better fit */
            font-weight: 700;
            color: var(--dark);
            position: relative;
            z-index: 2;
            transition: color 0.4s ease;
            text-align: center;
            line-height: 1.3;
        }
        .industry-item:hover .industry-name {
            color: var(--white);
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient);
            color: var(--white);
            text-align: center;
            position: relative;
        }

        .cta-section::before {
            background: none;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 25px;
        }

        .cta-text {
            font-size: 1.3rem;
            margin-bottom: 50px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 18px 35px;
            border: 3px solid var(--white);
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }

        .cta-btn-primary {
            background: var(--white);
            color: var(--primary);
        }

        .cta-btn-primary:hover {
            background: transparent;
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .cta-btn-secondary {
            background: transparent;
            color: var(--white);
        }

        .cta-btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .hero-title {
                font-size: 3rem;
            }

            .hero-visual {
                height: 400px;
                order: -1;
            }

            .ai-hub {
                width: 240px;
                height: 240px;
            }

            .brain-icon {
                font-size: 3.5rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .section {
                padding: 80px 0;
            }

            .container {
                padding: 0 20px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .hero-content {
                padding: 0 20px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .ai-hub {
                width: 200px;
                height: 200px;
            }

            .brain-icon {
                font-size: 3rem;
            }

            .tech-node {
                width: 55px;
                height: 55px;
                font-size: 1.2rem;
            }

            .benefits-grid,
            .careers-grid,
            .requirements-grid {
                grid-template-columns: 1fr;
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tab-navigation {
                flex-direction: column;
                max-width: 300px;
                gap: 8px;
            }

            .tab-btn {
                padding: 15px;
            }

            .tab-number {
                font-size: 1.5rem;
            }

            .tab-title {
                font-size: 0.8rem;
            }

            .semester-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .semester-card {
                padding: 25px;
            }

            .year-intro {
                padding: 25px;
            }

            .year-intro h3 {
                font-size: 1.8rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .cta-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-badge {
                font-size: 0.8rem;
                padding: 10px 16px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .industries-grid {
                grid-template-columns: 1fr;
            }

            .requirements-grid {
                grid-template-columns: 1fr;
            }

            .benefit-card,
            .career-card,
            .requirement-card {
                padding: 30px 25px;
            }
        }

        /* Loading Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
        .animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
        .animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }
        .animate-on-scroll:nth-child(4) { animation-delay: 0.4s; }
        .animate-on-scroll:nth-child(5) { animation-delay: 0.5s; }
        .animate-on-scroll:nth-child(6) { animation-delay: 0.6s; }

		/* Floating Apply Button */
        .floating-apply-btn {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--gradient);
            color: var(--white);
            border: none;
            border-radius: 25px;
            padding: 15px 25px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(204, 54, 52, 0.3);
            transition: all 0.3s ease;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            animation: pulse-glow 2s infinite;
            font-family: 'Inter', sans-serif;
        }

        .floating-apply-btn:hover {
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 15px 50px rgba(204, 54, 52, 0.4);
        }

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 10px 40px rgba(204, 54, 52, 0.3);
            }
            50% {
                box-shadow: 0 15px 50px rgba(204, 54, 52, 0.5);
            }
        }

        /* Popup Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .popup-overlay.active {
            display: flex;
            opacity: 1;
        }

        /* Desktop Popup Modal */
        .popup-modal {
            background: var(--white);
            border-radius: 25px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.8);
            transition: all 0.3s ease;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
        }

        .popup-overlay.active .popup-modal {
            transform: scale(1);
        }

        /* Desktop Close Button */
        .popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--secondary);
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            z-index: 1;
        }

        .popup-close:hover {
            background: var(--light-bg);
            color: var(--primary);
            transform: rotate(90deg);
        }

        /* Desktop Header */
        .popup-header {
            text-align: center;
            margin-bottom: 30px;
            padding-right: 40px; /* Account for close button */
        }

        .popup-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .popup-subtitle {
            color: var(--secondary);
            font-size: 1.1rem;
        }

        /* Form Container - Where your 3rd party form will go */
        .form-container {
            /* This is where you'll embed your 3rd party form */
            min-height: 200px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .floating-apply-btn {
                right: 20px;
                bottom: 20px;
                top: auto;
                transform: none;
                border-radius: 50px;
                padding: 18px 25px;
                font-size: 0.95rem;
                box-shadow: 0 8px 30px rgba(204, 54, 52, 0.4);
            }

            .floating-apply-btn:hover {
                transform: scale(1.05);
            }

            /* Mobile Bottom Sheet */
            .popup-overlay {
                align-items: flex-end;
                background: rgba(0, 0, 0, 0.6);
            }

            .popup-modal {
                width: 100%;
                max-width: none;
                max-height: 90vh;
                border-radius: 25px 25px 0 0;
                margin: 0;
                padding: 0;
                transform: translateY(100%);
                background: var(--white);
                position: relative;
            }

            .popup-overlay.active .popup-modal {
                transform: translateY(0);
            }

            /* Hide desktop header on mobile */
            .popup-header {
                display: none;
            }

            .popup-close {
                display: none;
            }

            /* Mobile Header */
            .mobile-header {
                display: block;
                background: var(--gradient);
                color: var(--white);
                padding: 25px 20px;
                border-radius: 25px 25px 0 0;
                position: relative;
            }

            .mobile-header .popup-title {
                color: var(--white);
                font-size: 1.5rem;
                margin: 0;
                text-align: left;
                padding-right: 50px; /* Account for mobile close button */
            }

            .mobile-header .popup-subtitle {
                color: rgba(255, 255, 255, 0.9);
                font-size: 0.95rem;
                margin-top: 5px;
                text-align: left;
            }

            /* Mobile Handle */
            .mobile-handle {
                display: block;
                width: 40px;
                height: 4px;
                background: rgba(255, 255, 255, 0.3);
                border-radius: 2px;
                margin: 0 auto 20px;
            }

            /* Mobile Close Button */
            .mobile-close {
                position: absolute;
                top: 20px;
                right: 20px;
                background: rgba(255, 255, 255, 0.2);
                border: none;
                color: var(--white);
                width: 35px;
                height: 35px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .mobile-close:hover {
                background: rgba(255, 255, 255, 0.3);
            }

            /* Mobile Form Container */
            .form-container {
                padding: 25px 20px 30px;
            }
        }

        /* Desktop-only elements */
        @media (min-width: 769px) {
            .mobile-header,
            .mobile-handle,
            .mobile-close {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .floating-apply-btn {
                right: 15px;
                bottom: 15px;
                padding: 16px 22px;
                font-size: 0.9rem;
            }

            .mobile-header {
                padding: 20px 15px;
            }

            .mobile-header .popup-title {
                font-size: 1.3rem;
            }

            .form-container {
                padding: 20px 15px 25px;
            }
        }

        /* Demo form styling - Remove this when using your 3rd party form */
        .demo-form {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 2px dashed #ccc;
        }

        .demo-form h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        .demo-form p {
            color: var(--secondary);
            margin-bottom: 0;
        }
/* About University Section */
        .about-university {
            background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .about-university::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(204, 54, 52, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(204, 54, 52, 0.03) 0%, transparent 50%);
            z-index: 1;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        /* Left Content */
        .about-text {
            position: relative;
        }
        
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(204, 54, 52, 0.1) 0%, rgba(204, 54, 52, 0.05) 100%);
            border: 2px solid rgba(204, 54, 52, 0.2);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }
        
        .section-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(204, 54, 52, 0.2);
            border-color: var(--primary);
        }
        
        .about-title {
            font-size: 2.5rem;
			font-weight: 700;
			margin-bottom: 20px;
			line-height: 1.2;
        }
        
        .about-title .highlight {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }
        
        .university-location {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .university-location i {
            font-size: 1.2rem;
        }
        
        .about-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--secondary);
            margin-bottom: 25px;
        }
        
        .key-points {
            list-style: none;
            margin-bottom: 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .key-points li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 15px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .key-points li:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 35px rgba(204, 54, 52, 0.15);
            border-left-color: var(--primary);
        }
        
        .key-points li i {
            color: var(--primary);
            font-size: 1.1rem;
            margin-top: 2px;
            min-width: 18px;
        }
        
        .key-points li span {
            font-size: 0.9rem;
            color: var(--dark);
            font-weight: 500;
            line-height: 1.5;
        }
        
        .about-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            font-family: 'Inter', sans-serif;
        }
        
        .btn-primary {
            background: var(--gradient);
            color: var(--white);
            box-shadow: var(--shadow);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 25px 70px rgba(204, 54, 52, 0.25);
        }
        
        .btn-secondary {
            background: var(--white);
            color: var(--primary);
            border: 2px solid rgba(204, 54, 52, 0.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        
        .btn-secondary:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(204, 54, 52, 0.15);
        }
        
        /* Right Image */
        .about-visual {
            position: relative;
            height: 450px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .about-visual:hover .about-image {
            transform: scale(1.05);
        }
        
        /* Floating Elements */
        .floating-stats {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 25px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.8rem;
            color: var(--secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Decorative Elements */
        .about-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(204, 54, 52, 0.1) 0%, transparent 50%);
            z-index: 1;
        }
        
        .floating-icon {
            position: absolute;
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            z-index: 2;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-icon i {
            font-size: 2rem;
            color: var(--primary);
        }
        
        .floating-icon:nth-child(1) {
            top: 50px;
            right: -40px;
            animation-delay: 0s;
        }
        
        .floating-icon:nth-child(2) {
            top: 250px;
            left: -40px;
            animation-delay: 2s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }
            
            .about-visual {
                order: -1;
                height: 400px;
            }
            
            .about-title {
                font-size: 2.5rem;
            }
            
            .key-points {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .floating-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
                padding: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .about-university {
                padding: 60px 0;
            }
            
            .container {
                padding: 0 20px;
            }
            
            .about-content {
                gap: 40px;
            }
            
            .about-title {
                font-size: 2.2rem;
            }
            
            .about-visual {
                height: 350px;
                border-radius: 20px;
            }
            
            .key-points {
                grid-template-columns: 1fr;
            }
            
            .floating-stats {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 20px;
                bottom: 20px;
                left: 20px;
                right: 20px;
            }
            
            .stat-item {
                display: flex;
                align-items: center;
                justify-content: space-between;
                text-align: left;
            }
            
            .stat-number {
                margin-bottom: 0;
            }
            
            .floating-icon {
                display: none;
            }
            
            .about-cta {
                justify-content: center;
            }
            
            .btn {
                flex: 1;
                max-width: 200px;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .about-title {
                font-size: 2.2rem;
            }
            
            .about-description {
                font-size: 1.05rem;
            }
            
            .key-points li {
                padding: 15px;
            }
            
            .floating-stats {
                padding: 15px;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .stat-label {
                font-size: 0.75rem;
            }
        }
        
        /* Demo Styles - Remove when integrating */
        .demo-container {
            padding: 40px 0;
            background: #f8f9fa;
        }
        
        .demo-note {
            text-align: center;
            color: var(--secondary);
            max-width: 600px;
            margin: 0 auto 40px;
            padding: 0 20px;
        }