  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #1a1a4d;
            color: #FBF2E3;
            overflow-x: hidden;
            position: relative;
            background-size: 50px 50px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(
                    0deg,
                    rgba(147, 177, 238, 0.15) 0px,
                    transparent 1px,
                    transparent 50px,
                    rgba(147, 177, 238, 0.15) 51px
                ),
                repeating-linear-gradient(
                    90deg,
                    rgba(147, 177, 238, 0.15) 0px,
                    transparent 1px,
                    transparent 50px,
                    rgba(147, 177, 238, 0.15) 51px
                );
            filter: blur(0.3px);
            opacity: 0.9;
            pointer-events: none;
            z-index: 0;
        }
        .header {
             width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            padding: 2rem 4rem;
        }
           .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            padding: 0 80px;
            margin-top: -60px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            z-index: 1000;
        }

        .logo-image {
            width: 150px;
            height: auto;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .nav {
            display: flex;
            gap: 1rem;
            background: transparent;
            padding: 0.5rem;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.2);
             justify-self: center;
        }

        .nav-item {
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .nav-item.active {
            background: #f5f0e8;
            color: #1a1d3d;
        }

        .nav-item:hover:not(.active) {
            background: rgba(255, 255, 255, 0.1);
        }

        .page-content {
            flex: 1;
            width: 100%;
        }

        /* Home Page */
        .home-page {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 6rem;
            width: 100%;
        }
        

        
    
         .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            padding: 0 80px;
            margin-top: -80px;
        }

        .hero-text {
            width: 100%;
        }

        .line-one {
            font-family: 'Fredoka', sans-serif;
            font-size: clamp(80px, 14vw, 220px);
            font-weight: 700;
            line-height: 0.85;
            margin-bottom: 10px;
            text-align: left;
        }

        .line-two {
            font-family: 'Fredoka', sans-serif;
            font-size: clamp(80px, 14vw, 220px);
            font-weight: 700;
            line-height: 0.85;
            text-align: right;
        }

        .cta-button {
            padding: 1.2rem 3rem;
            background: transparent;
            color: white;
            border: 2px solid white;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            margin-top: 50px;  
        }

        .cta-button:hover {
            background: white;
            color: #1a1d3d;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        /* Categories Section */
        .categories {
            width: 100%;
            padding: 3rem 0;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.2);
        }

        .categories-slider {
            display: flex;
            gap: 2rem;
            animation: slide 20s linear infinite;
        }

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

        .category-card {
            width: 350px;
            min-width: 450px;
            height: 170px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .category-card:hover {
            transform: scale(1.05);
        }

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
            z-index: 1;
        }

        .card-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            padding: 2rem;
        }


        .card-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
        }

        .machine-learning {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%),
                        url('https://images.unsplash.com/photo-1677442136019-21780ecad995?w=800') center/cover;
        }

        .data-science {
            background: linear-gradient(135deg, rgba(240, 147, 251, 0.8) 0%, rgba(245, 87, 108, 0.8) 100%),
                        url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800') center/cover;
        }

        .data-structures {
            background: linear-gradient(135deg, rgba(79, 172, 254, 0.8) 0%, rgba(0, 242, 254, 0.8) 100%),
                        url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?w=800') center/cover;
        }

        .artificial-intelligence {
            background: linear-gradient(135deg, rgba(67, 233, 123, 0.8) 0%, rgba(56, 249, 215, 0.8) 100%),
                        url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?w=800') center/cover;
        }

        .categories-slider:hover {
            animation-play-state: paused;
        }

        /* Under Construction Page */
        .under-construction {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 60vh;
            padding: 4rem 2rem;
            text-align: center;
        }

        .construction-icon {
            font-size: 5rem;
            margin-bottom: 2rem;
        }

        .under-construction h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            margin-bottom: 1rem;
            color: #f5f0e8;
        }

        .under-construction p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contact Page */
        .contact-page {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            gap: 4rem;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #f5f0e8;
        }

        .contact-info p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-details h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #f5f0e8;
        }

        .contact-details a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-details a:hover {
            color: #4facfe;
        }

        .contact-details p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin: 0;
        }

        .contact-form {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            padding: 3rem;
            border-radius: 20px;
        }

        .contact-form h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #f5f0e8;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #f5f0e8;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4facfe;
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: #000;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        .footer {
            width: 100%;
            background: rgba(0, 0, 0, 0.3);
            padding: 3rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #f5f0e8;
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #4facfe;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: white;
            font-size: 0.9rem;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #4facfe;
        }

        .newsletter-btn {
            width: 50px;
            height: 50px;
            background: #0066ff;
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s;
        }

        .newsletter-btn:hover {
            background: #0052cc;
            transform: scale(1.1);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .hidden {
            display: none;
        }

        @media (max-width: 968px) {
            .contact-page {
                flex-direction: column;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
    .header {
        display: flex;
        justify-content: space-between; /* Logo left, hamburger right */
        align-items: center;
        padding: 1.5rem 2rem;
    }

    .logo {
        order: 1; /* Logo stays on the left */
    }

    .hamburger {
        display: flex;
        order: 2; /* Hamburger goes to the right */
        margin-left: auto; /* Pushes hamburger to the right */
    }

    /* Rest of your existing mobile styles... */
    .logo-image {
        width: 120px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        flex-direction: column;
        background: rgba(26, 29, 61, 0.98);
        backdrop-filter: blur(10px);
        padding: 5rem 2rem 2rem;
        gap: 0;
        border-radius: 0;
        border: none;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        padding: 1rem;
        text-align: center;
        border-radius: 10px;
        margin: 0.5rem 0;
    }

    .main-content {
        padding: 1rem;
        min-height: 50vh;
    }

    .hero-text {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .categories {
        padding: 2rem 0;
    }

    .category-card {
        min-width: 250px;
        height: 180px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
        /* Tablet View */
        @media (max-width: 968px) {
            .header {
                padding: 1.5rem 3rem;
            }

            .contact-page {
                flex-direction: column;
                gap: 2rem;
                padding: 3rem 2rem;
            }

            .contact-info h1 {
                font-size: 2.5rem;
            }

            .hero-content {
                padding: 0 40px;
                margin-top: -40px;
            }

            .line-one, .line-two {
                font-size: clamp(60px, 12vw, 160px);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
        }

        /* Mobile View */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .header {
                padding: 1.5rem 2rem;
                grid-template-columns: auto 1fr auto;
            }

            .logo-image {
                width: 120px;
            }

            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 75%;
                max-width: 300px;
                height: 100vh;
                flex-direction: column;
                background: rgba(26, 29, 61, 0.98);
                backdrop-filter: blur(10px);
                padding: 5rem 2rem 2rem;
                gap: 0;
                border-radius: 0;
                border: none;
                transition: right 0.3s ease;
                z-index: 999;
                justify-self: end;
            }

            .nav.active {
                right: 0;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
            }

            .nav-item {
                width: 100%;
                padding: 1rem;
                text-align: center;
                border-radius: 10px;
                margin: 0.5rem 0;
            }

            .main-content {
                padding: 2rem 1.5rem;
                min-height: 60vh;
            }

            .hero-content {
                padding: 0 20px;
                margin-top: -20px;
            }

            .line-one, .line-two {
                font-size: clamp(50px, 15vw, 100px);
            }

            .line-one {
                text-align: center;
            }

            .line-two {
                text-align: center;
            }

            .cta-button {
                padding: 1rem 2.5rem;
                font-size: 0.9rem;
                margin-top: 30px;
            }

            .categories {
                padding: 2rem 0;
            }

            .category-card {
                min-width: 280px;
                height: 160px;
            }

            .card-content h3 {
                font-size: 1.3rem;
            }

            .under-construction {
                min-height: 50vh;
                padding: 3rem 1.5rem;
            }

            .construction-icon {
                font-size: 4rem;
                margin-bottom: 1.5rem;
            }

            .under-construction h1 {
                font-size: clamp(2rem, 8vw, 3rem);
            }

            .under-construction p {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .contact-page {
                padding: 2rem 1.5rem;
                gap: 3rem;
            }

            .contact-info h1 {
                font-size: 2rem;
            }

            .contact-info p {
                font-size: 1rem;
            }

            .contact-method {
                padding: 1.2rem;
                gap: 1rem;
            }

            .contact-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }

            .contact-details h3 {
                font-size: 1.1rem;
            }

            .contact-form {
                padding: 2rem 1.5rem;
            }

            .contact-form h2 {
                font-size: 1.5rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.9rem;
                font-size: 0.95rem;
            }

            .footer {
                padding: 2.5rem 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-section:first-child img {
                width: 130px !important;
            }

            .newsletter-form {
                flex-direction: row;
            }

            .newsletter-input {
                padding: 0.75rem 1rem;
                font-size: 0.85rem;
            }

            .newsletter-btn {
                width: 45px;
                height: 45px;
            }
        }

        /* Small Mobile View */
        @media (max-width: 480px) {
            .header {
                padding: 1rem 1.5rem;
            }

            .logo-image {
                width: 100px;
            }

            .nav {
                width: 85%;
                padding: 4rem 1.5rem 2rem;
            }

            .hero-content {
                padding: 0 10px;
            }

            .line-one, .line-two {
                font-size: clamp(40px, 18vw, 80px);
            }

            .cta-button {
                padding: 0.9rem 2rem;
                font-size: 0.85rem;
                margin-top: 20px;
            }

            .category-card {
                min-width: 240px;
                height: 150px;
            }

            .card-content h3 {
                font-size: 1.1rem;
            }

            .contact-page {
                padding: 1.5rem 1rem;
            }

            .contact-info h1 {
                font-size: 1.75rem;
            }

            .contact-method {
                padding: 1rem;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .contact-method:hover {
                transform: translateX(0);
            }

            .contact-form {
                padding: 1.5rem 1rem;
            }

            .contact-form h2 {
                font-size: 1.3rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.8rem;
            }

            .submit-btn {
                padding: 1rem;
                font-size: 1rem;
            }

            .footer {
                padding: 2rem 1rem;
            }

            .footer-section h3 {
                font-size: 1.1rem;
            }

            .footer-section p {
                font-size: 0.9rem;
            }

            .newsletter-input {
                font-size: 0.8rem;
                padding: 0.7rem 0.9rem;
            }

            .newsletter-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .footer-bottom {
                font-size: 0.8rem;
            }
        }

        /* Extra Small Mobile View */
        @media (max-width: 360px) {
            .logo-image {
                width: 90px;
            }

            .line-one, .line-two {
                font-size: clamp(35px, 20vw, 70px);
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.8rem;
            }

            .category-card {
                min-width: 220px;
                height: 140px;
            }

            .card-content h3 {
                font-size: 1rem;
            }

            .contact-info h1 {
                font-size: 1.5rem;
            }

            .contact-form h2 {
                font-size: 1.2rem;
            }
        }
