  
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #8b5cf6;
            --accent: #06b6d4;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray: #64748b;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --gradient-accent: linear-gradient(135deg, var(--accent), #a5f3fc);
            --neon-accent: #00f2fe;
        }

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

        body {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            background-attachment: fixed;
        }

        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(37, 99, 235, 0.3);
            border-radius: 50%;
            pointer-events: none;
            animation: float 15s infinite linear;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Header & Navigation - Enhanced */
        header {
            background: rgba(15, 23, 42, 0.92);
            backdrop-filter: blur(12px);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.4s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: transform 0.3s ease;
            text-decoration: none;
        }

        .logo:hover {
            transform: translateY(-3px);
        }

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

        .logo-line1 {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            letter-spacing: 1px;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
        }

        .logo-line2 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .tagline {
            font-size: 0.8rem;
            color: #94a3b8;
            font-weight: 500;
            margin-top: 3px;
            letter-spacing: 0.5px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--light);
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
            font-size: 1.05rem;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: var(--gradient);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 25px rgba(37, 99, 235, 0.5), 0 0 15px rgba(6, 182, 212, 0.5);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Hero Section - Enhanced with 3D effect and neon glow */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
            z-index: -1;
            animation: rotate 30s linear infinite;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            flex: 1;
            animation: fadeInUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }

        .hero-logo {
            margin-bottom: 30px;
        }

        .hero-logo .logo-line1 {
            font-size: 4.5rem;
            font-weight: 900;
            font-family: 'Montserrat', sans-serif;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
        }

        .hero-logo .logo-line2 {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: 8px;
            margin-top: -15px;
            color: white;
            text-transform: uppercase;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }

        .hero-logo .tagline {
            font-size: 1.8rem;
            color: var(--neon-accent);
            font-weight: 600;
            margin-top: 20px;
            position: relative;
            display: inline-block;
            font-family: 'Poppins', sans-serif;
            text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
        }

        .hero-text p {
            font-size: 1.25rem;
            color: #cbd5e1;
            margin-bottom: 35px;
            max-width: 600px;
            animation: fadeInUp 1s ease-out 0.6s forwards;
            opacity: 0;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease-out 0.8s forwards;
            opacity: 0;
        }

        .outline-button {
            background: transparent;
            color: var(--accent);
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .outline-button:hover {
            background: rgba(6, 182, 212, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            position: relative;
            animation: float 8s ease-in-out infinite;
            perspective: 1000px;
        }

        .hero-image-container {
            width: 100%;
            max-width: 500px;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(6, 182, 212, 0.4);
            transform: perspective(1000px) rotateY(5deg) rotateX(3deg);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .hero-image-container:hover {
            transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(6, 182, 212, 0.6);
        }

        .hero-image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.1));
            z-index: 1;
        }

        .hero-image-container img {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
        }

        .certificate-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: rgba(15, 23, 42, 0.95);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(6, 182, 212, 0.4);
            z-index: 2;
            animation: bounce 3s infinite ease-in-out;
            transform-origin: center;
            max-width: 200px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-top: 3px solid var(--accent);
        }

        .certificate-badge h4 {
            color: var(--neon-accent);
            margin-bottom: 8px;
            font-size: 0.9rem;
            text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
        }

        .certificate-badge p {
            font-size: 0.8rem;
            color: #94a3b8;
            margin: 5px 0;
        }

        /* Sections */
        section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--gradient);
            border-radius: 3px;
            box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
        }

        .section-title p {
            color: #94a3b8;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 25px auto 0;
        }

        /* Courses - Enhanced with glassmorphism and 3D effect */
        .courses {
            background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.9));
            position: relative;
            overflow: hidden;
        }

        .courses::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
            z-index: -1;
            animation: rotate 40s linear infinite;
        }

        .courses-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .course-card {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
            backdrop-filter: blur(10px);
            transform: translateY(30px);
            opacity: 0;
            perspective: 1000px;
        }

        .course-card.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .course-card:hover {
            transform: translateY(-15px) scale(1.02) rotateY(5deg);
            box-shadow: 0 20px 45px rgba(37, 99, 235, 0.3), 0 0 20px rgba(6, 182, 212, 0.3);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .course-header {
            background: var(--gradient);
            color: white;
            padding: 25px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .course-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            transform: rotate(30deg);
        }

        .course-header h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
            position: relative;
        }

        .course-body {
            padding: 30px 25px;
        }

        .course-list {
            list-style-type: none;
        }

        .course-list li {
            padding: 14px 0;
            border-bottom: 1px dashed rgba(226, 232, 240, 0.1);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .course-list li:hover {
            transform: translateX(5px);
            color: var(--neon-accent);
        }

        .course-list li:last-child {
            border-bottom: none;
        }

        .course-list li i {
            color: var(--accent);
            margin-right: 12px;
            font-size: 1rem;
            min-width: 20px;
            text-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
        }

        /* Internships Section - Enhanced with flip card effect */
        .internships {
            background: linear-gradient(to bottom, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
            position: relative;
            overflow: hidden;
        }

        .internships::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
            z-index: -1;
            animation: rotate 35s linear infinite reverse;
        }

        .internships-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .internship-card {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transform: translateY(30px);
            opacity: 0;
            position: relative;
            overflow: hidden;
            perspective: 1000px;
        }

        .internship-card.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .internship-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 45px rgba(37, 99, 235, 0.3), 0 0 20px rgba(6, 182, 212, 0.3);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .internship-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
            box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
        }

        .internship-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--neon-accent);
            text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
        }

        .internship-card p {
            color: #94a3b8;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .internship-features {
            list-style-type: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .internship-features li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

        .internship-features li i {
            color: var(--accent);
            margin-right: 10px;
            min-width: 20px;
            text-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
        }

        .duration-badge {
            display: inline-block;
            background: rgba(6, 182, 212, 0.2);
            color: var(--accent);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin: 5px;
            border: 1px solid var(--accent);
            text-shadow: 0 0 5px rgba(6, 182, 212, 0.3);
        }

        .duration-badge.online {
            background: rgba(139, 92, 246, 0.2);
            color: #8b5cf6;
            border-color: #8b5cf6;
        }

        .duration-badge.offline {
            background: rgba(251, 191, 36, 0.2);
            color: #fbbf24;
            border-color: #fbbf24;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .tech-item {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .tech-item:hover {
            background: rgba(37, 99, 235, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
        }
        
        /* Internship Benefits Section */
        .internship-benefits {
            background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.9));
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }

        .internship-benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
            z-index: -1;
            animation: rotate 45s linear infinite;
        }

        .benefits-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-card {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transform: translateY(30px);
            opacity: 0;
            perspective: 1000px;
        }

        .benefit-card.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3), 0 0 15px rgba(6, 182, 212, 0.3);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
            box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .benefit-card p {
            color: #94a3b8;
            font-size: 1rem;
        }

        /* About Section */
        .about {
            background: linear-gradient(to bottom, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
            z-index: -1;
            animation: rotate 50s linear infinite reverse;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: white;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        }

        .about-text p {
            margin-bottom: 20px;
            color: #94a3b8;
            font-size: 1.1rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            transition: all 0.3s ease;
            padding: 20px;
            border-radius: 12px;
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateY(30px);
            opacity: 0;
            perspective: 1000px;
        }

        .feature.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .feature:hover {
            transform: translateY(-5px);
            background: rgba(15, 23, 42, 0.7);
            border-color: var(--accent);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 10px rgba(6, 182, 212, 0.3);
        }

        .feature-icon {
            background: var(--gradient);
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
        }

        .feature-icon i {
            color: white;
            font-size: 1.5rem;
        }

        .feature-text h4 {
            margin-bottom: 8px;
            color: white;
            font-size: 1.2rem;
        }

        .feature-text p {
            color: #94a3b8;
            font-size: 0.95rem;
            margin: 0;
        }

        .certifications {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .cert-badge {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 450px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transform: translateY(30px);
            opacity: 0;
            perspective: 1000px;
        }

        .cert-badge.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .cert-badge:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3), 0 0 15px rgba(6, 182, 212, 0.3);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .cert-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient);
        }

        .cert-badge h3 {
            margin-bottom: 20px;
            color: var(--neon-accent);
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 15px;
            text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
        }

        .cert-badge h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
        }

        .franchise-info {
            background: rgba(15, 23, 42, 0.5);
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: left;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .franchise-info p {
            margin: 12px 0;
            color: white;
            font-weight: 500;
            font-size: 1.05rem;
        }

        .franchise-info p span {
            color: var(--neon-accent);
            font-weight: 600;
            text-shadow: 0 0 8px rgba(0, 242, 254, 0.3);
        }

        .cert-badge img {
            width: 100%;
            border-radius: 12px;
            margin-top: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: transform 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cert-badge:hover img {
            transform: scale(1.03);
        }

        /* Contact Section - Enhanced with form */
        .contact {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
            animation: pulse 15s infinite ease-in-out;
        }

        .contact .section-title h2 {
            color: white;
        }

        .contact .section-title p {
            color: #cbd5e1;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .contact-icon {
            background: var(--gradient);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        .contact-icon i {
            color: white;
            font-size: 1.5rem;
        }

        .contact-text h4 {
            margin-bottom: 8px;
            color: white;
            font-size: 1.3rem;
        }

        .contact-text p, .contact-text a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }

        .contact-text a:hover {
            color: var(--neon-accent);
            text-decoration: underline;
        }

        .map-container {
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            background: #1e293b;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.15), rgba(139, 92, 246, 0.15));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            padding: 20px;
        }
        
        /* Contact Form */
        .contact-form {
            background: rgba(15, 23, 42, 0.7);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--neon-accent);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer - Enhanced */
        footer {
            background: #0f172a;
            color: white;
            padding: 80px 0 30px;
            position: relative;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-logo h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            background: linear-gradient(90deg, var(--accent), #a5f3fc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
        }

        .footer-logo .tagline {
            font-size: 1.2rem;
            color: var(--neon-accent);
            font-weight: 600;
            margin-bottom: 25px;
            text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
        }

        .footer-logo p {
            color: #94a3b8;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
        }

        .footer-links h4 {
            margin-bottom: 25px;
            font-size: 1.4rem;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }

        .footer-links a:hover {
            color: var(--neon-accent);
            padding-left: 5px;
            text-shadow: 0 0 8px rgba(0, 242, 254, 0.3);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 1rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes expandLine {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px) perspective(1000px) rotateY(5deg);
            }
            50% {
                transform: translateY(-20px) perspective(1000px) rotateY(5deg);
            }
            100% {
                transform: translateY(0px) perspective(1000px) rotateY(5deg);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(0.95);
                opacity: 0.7;
            }
            50% {
                transform: scale(1);
                opacity: 0.4;
            }
            100% {
                transform: scale(0.95);
                opacity: 0.7;
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }
        
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s, visibility 0.5s;
        }
        
        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(255, 255, 255, 0.1);
            border-top: 5px solid var(--neon-accent);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-content, .about-content {
                flex-direction: column;
            }
            
            .hero-text {
                text-align: center;
                margin-bottom: 50px;
            }
            
            .hero-text p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image {
                margin-top: 40px;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero-logo .logo-line1 {
                font-size: 3rem;
            }
            
            .hero-logo .logo-line2 {
                font-size: 1.5rem;
                letter-spacing: 4px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .certificate-badge {
                position: relative;
                bottom: 0;
                right: 0;
                margin-top: 30px;
                max-width: 100%;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .navbar {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
            
            .nav-links {
                order: 3;
                width: 100%;
                justify-content: center;
                margin-top: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .hero-logo .logo-line1 {
                font-size: 2.5rem;
            }
            
            .hero-logo .logo-line2 {
                font-size: 1.2rem;
            }
            
            .hero-logo .tagline {
                font-size: 1.4rem;
            }
            
            .courses-container, .internships-container, .benefits-container {
                grid-template-columns: 1fr;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
 