
        :root {
            --primary: #0a0a1a;
            --secondary: #121230;
            --accent: #00eeff;
            --accent-purple: #a855f7;
            --text: #e0e0ff;
            --text-light: #a0a0c0;
            --card-bg: rgba(25, 25, 55, 0.7);
            --glow: 0 0 15px rgba(0, 238, 255, 0.5);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--primary);
            color: var(--text);
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(40, 40, 90, 0.3) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(60, 20, 80, 0.3) 0%, transparent 20%),
                linear-gradient(to bottom, var(--primary), var(--secondary));
            background-attachment: fixed;
            line-height: 1.6;
        }
        
        .ai-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(rgba(10, 10, 26, 0.9) 1px, transparent 1px),
                linear-gradient(90deg, rgba(10, 10, 26, 0.9) 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: -1;
            pointer-events: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 10, 26, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 238, 255, 0.2);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent), var(--accent-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--glow);
        }
        
        .logo-icon i {
            font-size: 24px;
            color: var(--primary);
        }
        
        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            background: linear-gradient(to right, var(--accent), var(--accent-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 5px;
        }
        
        .contact-info a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .contact-info a:hover {
            color: var(--accent);
        }
        
        /* Hero Section */
        .hero {
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        /* .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--accent), var(--accent-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            animation: fadeInUp 1s ease-out;
        } */
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--text-light);
            animation: fadeInUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }
        
        .hero-tagline {
            display: inline-block;
            padding: 10px 25px;
            background: var(--card-bg);
            border: 1px solid rgba(0, 238, 255, 0.3);
            border-radius: 50px;
            font-weight: 500;
            margin-top: 20px;
            backdrop-filter: blur(5px);
            animation: fadeInUp 1s ease-out 0.4s forwards;
            opacity: 0;
        }
        
        /* Journey Section */
        .journey {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            display: inline-block;
            margin-bottom: 15px;
            position: relative;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--accent), var(--accent-purple));
            border-radius: 3px;
        }
        
        .timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            top: 30px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--accent), var(--accent-purple));
            z-index: 1;
        }
        
        .timeline-point {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 30%;
            animation: fadeIn 0.8s ease-out forwards;
            opacity: 0;
        }
        
        .timeline-point:nth-child(1) { animation-delay: 0.2s; }
        .timeline-point:nth-child(2) { animation-delay: 0.4s; }
        .timeline-point:nth-child(3) { animation-delay: 0.6s; }
        
        .point-icon {
            width: 60px;
            height: 60px;
            background: var(--secondary);
            border: 3px solid var(--accent);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--accent);
            box-shadow: var(--glow);
        }
        
        .point-title {
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--accent);
        }
        
        .journey-details {
            max-width: 900px;
            margin: 60px auto 0;
            display: flex;
            gap: 30px;
        }
        
        .journey-card {
            flex: 1;
            background: var(--card-bg);
            border: 1px solid rgba(0, 238, 255, 0.2);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(5px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }
        
        .journey-card:nth-child(1) { animation-delay: 0.3s; }
        .journey-card:nth-child(2) { animation-delay: 0.5s; }
        
        .journey-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 238, 255, 0.2);
            border-color: var(--accent);
        }
        
        .journey-card h3 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .journey-card p {
            color: var(--text-light);
            margin-bottom: 15px;
        }
        
        .journey-card ul {
            text-decoration: none;
            text-align: left;
            padding-left: 20px;
            color: var(--text-light);
        }
        
        .journey-card li {
            margin-bottom: 8px;
        }
        
        /* Locations Section */
        .locations {
            padding: 80px 0;
        }
        
        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .location-card {
            background: var(--card-bg);
            border: 1px solid rgba(0, 238, 255, 0.2);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }
        
        .location-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: var(--glow);
        }
        
        .location-card h3 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .location-card ul {
            list-style: none;
        }
        
        .location-card li {
            margin-bottom: 8px;
            color: var(--text-light);
        }
        
        /* Collaboration Section */
        .collaboration {
            padding: 80px 0;
        }
        
        .collab-cards {
            display: flex;
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .collab-card {
            flex: 1;
            background: var(--card-bg);
            border: 1px solid rgba(0, 238, 255, 0.2);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }
        
        .collab-card:nth-child(1) { animation-delay: 0.2s; }
        .collab-card:nth-child(2) { animation-delay: 0.4s; }
        
        .collab-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 15px 30px rgba(0, 238, 255, 0.2);
        }
        
        .collab-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .collab-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .collab-card p {
            color: var(--text-light);
            margin-bottom: 25px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--accent), var(--accent-purple));
            color: var(--primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 238, 255, 0.4);
        }
        
        /* Excellence Carousel */
        .excellence {
            padding: 80px 0;
            text-align: center;
        }
        
        .carousel-container {
            /* max-width: 1000px;
            margin: 50px auto 0; */
            position: relative;
        }
        
        .carousel {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            padding: 20px 0;
            scroll-behavior: smooth;
        }
        
        .carousel::-webkit-scrollbar {
            display: none;
        }
        
       .carousel-item {
    scroll-snap-align: start;
    min-width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: var(--secondary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.carousel-item:nth-child(1) { animation-delay: 0.2s; }
.carousel-item:nth-child(2) { animation-delay: 0.4s; }
.carousel-item:nth-child(3) { animation-delay: 0.6s; }
.carousel-item:nth-child(4) { animation-delay: 0.8s; }

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-overlay {
    position: absolute;
    top: 0; /* Changed from bottom: 0 */
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.9);
    padding: 20px;
    transform: translateY(-100%); /* Changed from translateY(100%) */
    transition: transform 0.5s ease;
    backdrop-filter: blur(5px);
}

.carousel-item:hover .carousel-overlay {
    transform: translateY(0); /* Same as before */
}

.carousel-item:hover .carousel-img {
    transform: scale(1.1);
}
        .carousel-overlay h3 {
            color: var(--accent);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .carousel-overlay p {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-dot.active {
            background: var(--accent);
            transform: scale(1.3);
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: rgba(10, 10, 26, 0.7);
            backdrop-filter: blur(5px);
            border-top: 1px solid rgba(0, 238, 255, 0.2);
            border-bottom: 1px solid rgba(0, 238, 255, 0.2);
        }
        
        .contact-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .contact-content p {
            color: var(--text-light);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-details {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--secondary);
            border: 2px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--accent);
            margin-bottom: 15px;
            box-shadow: var(--glow);
        }
        
        .contact-item a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .contact-item a:hover {
            color: var(--accent);
        }
        
        /* Footer */
        footer {
            padding: 40px 0;
            text-align: center;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--accent), var(--accent-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        
        .disclaimer {
            /* max-width: 800px; */
            /* margin: 20px auto 0; */
            font-size: 0.8rem;
            /* color: var(--text-light); */
            /* opacity: 0.7; */
            text-align: left;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .journey-details {
                flex-direction: column;
            }
            
            .collab-cards {
                flex-direction: column;
            }
            
            .timeline {
                flex-direction: column;
                align-items: center;
                gap: 50px;
            }
            
            .timeline:before {
                width: 3px;
                height: 100%;
                top: 0;
                left: 50%;
            }
            
            .timeline-point {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-links {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .contact-info {
                align-items: center;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }