* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #e5e7eb;
            background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
            background-attachment: fixed;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated Background Grid */
        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(167, 139, 250, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(167, 139, 250, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes gridMove {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(50px);
            }
        }

        /* Floating Orbs Background */
        .bg-orbs {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
            animation: floatOrb 15s ease-in-out infinite;
        }

        .orb-1 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #8b5cf6, transparent);
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #a78bfa, transparent);
            top: 50%;
            right: 10%;
            animation-delay: 3s;
            animation-duration: 18s;
        }

        .orb-3 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, #c4b5fd, transparent);
            bottom: 20%;
            left: 20%;
            animation-delay: 6s;
            animation-duration: 20s;
        }


        /*  */
        .orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #7c3aed, transparent);
    top: 75%;
    left: 65%;
    animation-delay: 9s;
    animation-duration: 22s;
    opacity: 0.12;
}

.orb-5 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #a855f7, transparent);
    top: 30%;
    left: -10%;
    animation-delay: 12s;
    animation-duration: 25s;
    opacity: 0.1;
}

.orb-6 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #c084fc, transparent);
    bottom: 10%;
    right: 15%;
    animation-delay: 15s;
    animation-duration: 28s;
    opacity: 0.15;
}
/*  */

        @keyframes floatOrb {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(50px, -50px) scale(1.1);
            }
            50% {
                transform: translate(-30px, -100px) scale(0.9);
            }
            75% {
                transform: translate(30px, -50px) scale(1.05);
            }
        }

        /* Shooting Stars */
        .shooting-stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 0 10px 2px rgba(167, 139, 250, 0.8);
            animation: shootingStar 3s linear infinite;
        }

        .star:nth-child(1) {
            top: 10%;
            left: 20%;
            animation-delay: 0s;
        }

        .star:nth-child(2) {
            top: 30%;
            left: 60%;
            animation-delay: 2s;
        }

        .star:nth-child(3) {
            top: 50%;
            left: 80%;
            animation-delay: 4s;
        }

        .star:nth-child(4) {
            top: 70%;
            left: 30%;
            animation-delay: 6s;
        }

        .star:nth-child(5) {
            top: 20%;
            left: 90%;
            animation-delay: 8s;
        }

        @keyframes shootingStar {
            0% {
                transform: translate(0, 0) rotate(45deg);
                opacity: 1;
            }
            70% {
                opacity: 1;
            }
            100% {
                transform: translate(200px, 200px) rotate(45deg);
                opacity: 0;
            }
        }

        .star::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50px;
            height: 1px;
            background: linear-gradient(90deg, white, transparent);
            transform: translateX(-50px);
        }

        /* Content Wrapper */
        .content-wrapper {
            position: relative;
            z-index: 2;
        }

        /* Mobile-First Header Styles */
        header {
            background: linear-gradient(135deg, #1e293b 0%, #312e81 100%);
            color: white;
            padding: 1rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        nav {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        /*  */
        .logo {
        font-family: 'Orbitron', 'Segoe UI', sans-serif;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        align-items: left;
        line-height: 1.1;
    }

.logo-strike {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #c084fc, #7c3aed, #5b21b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: solid;
  text-shadow: 0 0 15px rgba(224, 239, 9, 0.6);
  animation: glowPulse 2.5s ease-in-out infinite;
}

.logo-sub {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ecca31;
  letter-spacing: 1px;
  margin-top: 2px;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 15px rgba(167, 139, 250, 0.6), 0 0 30px rgba(124, 58, 237, 0.3);
  }
  50% {
    text-shadow: 0 0 25px rgba(167, 139, 250, 0.8), 0 0 40px rgba(124, 58, 237, 0.6);
  }
}

        /*  */
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            list-style: none;
            gap: 1rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        /* Mobile-First Hero Section */
        .hero {
            background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #5b21b6 100%);
            color: white;
            padding: 140px 1rem 80px;
            text-align: center;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 60%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem !important;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
            color: #ffffff;
            font-weight: 750;
            line-height: 1.2;
        }

        .hero-emoji {
            color: #fbbf24;
            display: inline-block;
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
        }

        /* Animated Code Lines */
        .code-animation {
            margin: 2rem auto;
            max-width: 600px;
            background: rgba(30, 41, 59, 0.6);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid rgba(167, 139, 250, 0.3);
            overflow: hidden;
            position: relative;
        }

        .code-line {
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            color: #a78bfa;
            margin: 0.5rem 0;
            opacity: 0;
            transform: translateX(-20px);
            white-space: nowrap;
            overflow: hidden;
        }

        .code-line:nth-child(1) {
            animation: typeIn 0.8s ease forwards 0.5s;
            color: #ec4899;
        }

        .code-line:nth-child(2) {
            animation: typeIn 0.8s ease forwards 1s;
            color: #8b5cf6;
        }

        .code-line:nth-child(3) {
            animation: typeIn 0.8s ease forwards 1.5s;
            color: #06b6d4;
        }

        .code-line:nth-child(4) {
            animation: typeIn 0.8s ease forwards 2s;
            color: #10b981;
        }

        @keyframes typeIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .code-cursor {
            display: inline-block;
            width: 2px;
            height: 1rem;
            background: #a78bfa;
            margin-left: 4px;
            animation: blink 1s step-end infinite;
        }

        @keyframes blink {
            50% {
                opacity: 0;
            }
        }

        /* Floating particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(167, 139, 250, 0.6);
            border-radius: 50%;
            animation: float 8s infinite ease-in-out;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 0.5s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 1.5s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 2.5s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 3s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 0.8s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 1.8s; }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-600px) translateX(50px);
                opacity: 0;
            }
        }

        .hero p {
            font-size: 1rem;
            margin-bottom: 2rem;
            color: rgba(229, 231, 235, 0.9);
            animation: fadeInUp 1.2s ease;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            color: #1e1b4b;
            border-radius: 50px;
            background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(167, 139, 250, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(167, 139, 250, 0.6);
            background: linear-gradient(135deg, #c4b5fd 0%, #ddd6fe 100%);
        }

        /* Mobile-First Courses Section */
        .courses {
            padding: 60px 1rem;
            background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #a78bfa, #c4b5fd, #e9d5ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        .section-title2{
            text-align: center;
        }
        .section-subtitle {
            text-align: center;
            font-size: 1rem;
            color: #9ca3af;
            margin-bottom: 2rem;
            padding: 0 1rem;
            line-height: 1.6;
        }

        .course-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .course-card {
            background: linear-gradient(135deg, #1e293b 0%, #312e81 100%);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.4s;
            border: 1px solid rgba(139, 92, 246, 0.2);
            position: relative;
            overflow: hidden;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #a78bfa, #c4b5fd, #e9d5ff);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .course-card:hover::before {
            transform: scaleX(2);
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0px 20px 50px rgba(139, 92, 246, 0.4);
            border-color: #a78bfa;
        }

        .course-icon {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .course-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #e9d5ff;
            line-height: 1.3;
        }

        .course-card p {
            color: #d1d5db;
            margin-bottom: 1rem;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .course-duration {
            display: inline-block;
            background: linear-gradient(135deg, #7c3aed, #8b5cf6);
            padding: 0.5rem 1.2rem ;
            border-radius: 25px;
            font-size: 0.85rem;
            color: white;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
            white-space: nowrap;    
        }

       


        /* Mobile-First Features Section */
        .features {
            background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
            padding: 60px 1rem;
        }

        .features-container {
            max-width: 100%;
        }

        .features-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #1e293b 0%, #2d1b69 100%);
            border-radius: 15px;
            transition: all 0.3s;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

    .instructor-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    position: relative;
    background: linear-gradient(135deg, #4c1d95, #7c3aed, #a78bfa);
    padding: 3px; 
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    filter: brightness(0.95);
    transition: all 0.3s ease;
}

.feature-item:hover .instructor-image img {
    filter: brightness(1.1);
    transform: scale(1.05); 
}


        .feature-item:hover {
            transform: translateY(-10px);
            border-color: #a590e4;
            /* border-color: yellow;; */
            box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
            background: linear-gradient(135deg, #2d1b69 0%, #1e293b 100%);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .feature-item h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #e9d5ff;
        }

        .feature-item p {
            color: #d1d5db;
            line-height: 1.6;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .feature-item ul {
            list-style: none;
            padding: 1rem 0;
            color: #c4b5fd;
            font-weight: 600;
        }

        .feature-item ul li {
            padding: 0.3rem 0;
            font-size: 0.9rem;
        }

        /* Mobile-First Contact Section */
        .contact {
            background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%);
            color: white;
            padding: 60px 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(167, 139, 250, 0.2) 0%, transparent 60%);
        }

        .contact-content {
            position: relative;
            z-index: 1;
        }

        .contact h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: white;
            font-weight: 800;
        }

        .contact p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: rgba(229, 231, 235, 0.9);
        }

        .contact-form {
            width: 100%;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(167, 139, 250, 0.3);
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: rgba(30, 27, 75, 0.5);
            color: white;
            transition: all 0.3s;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(209, 213, 219, 0.6);
        }


        /*  */
        .form-group input:focus,
            .form-group textarea:focus {
                outline: none;
                border: 2px solid transparent;
                background: rgba(30, 27, 75, 0.7);
                box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
                animation: borderGlow 3s ease-in-out infinite;
                background-image: 
                    linear-gradient(135deg, rgba(30,27,75,0.8), rgba(30,27,75,0.8)),
                    linear-gradient(135deg, #7c3aed, #a78bfa, #c084fc);
                background-origin: border-box;
                background-clip: padding-box, border-box;
            }

            @keyframes borderGlow {
            0% {
                box-shadow: 0 0 10px rgba(139, 92, 246, 0.4),
                            0 0 20px rgba(167, 139, 250, 0.3);
            }
            50% {
                box-shadow: 0 0 20px rgba(139, 92, 246, 0.6),
                            0 0 40px rgba(167, 139, 250, 0.5);
            }
            100% {
                box-shadow: 0 0 10px rgba(139, 92, 246, 0.4),
                            0 0 20px rgba(167, 139, 250, 0.3);
            }
            }

        /*  */


        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-button {
            background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
            color: #1e1b4b;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 30px rgba(167, 139, 250, 0.4);
            width: 100%;
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(167, 139, 250, 0.6);
            background: linear-gradient(135deg, #c4b5fd 0%, #ddd6fe 100%);
        }

        /* Footer */
        footer {
            background: #0f172a;
            color: #9ca3af;
            text-align: center;
            padding: 2rem 1rem;
            border-top: 1px solid rgba(139, 92, 246, 0.2);
        }

        footer p {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tablet and Up (min-width: 768px) */
        @media (min-width: 768px) {
            nav {
                flex-direction: row;
                justify-content: space-between;
                padding: 0 2rem;
            }

            .logo {
                font-size: 1.6rem;
            }

            .nav-links {
                gap: 1.5rem;
            }

            .nav-links a {
                font-size: 1rem;
            }

            .hero {
                padding: 160px 2rem 100px;
                margin-top: 70px;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .cta-button {
                padding: 1.1rem 2.5rem;
                font-size: 1.05rem;
            }

            .courses {
                padding: 80px 2rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
            }

            .course-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .features {
                padding: 80px 2rem;
            }

            .features-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }

            .contact {
                padding: 80px 2rem;
            }

            .contact h2 {
                font-size: 2.5rem;
            }

            .contact p {
                font-size: 1.2rem;
            }

            .contact-form {
                max-width: 600px;
                margin: 0 auto;
            }

            .submit-button {
                width: auto;
                padding: 1.2rem 3rem;
                font-size: 1.1rem;
            }
            .code-animation {
                padding: 2rem;
                font-size: 0.95rem;
            }

            .code-line {
                font-size: 0.9rem;
            }
        }

        /* Desktop and Up (min-width: 1024px) */
        @media (min-width: 1024px) {
            .logo {
                font-size: 1.8rem;
            }

            .nav-links {
                gap: 2rem;
            }

            .hero {
                padding: 180px 2rem 120px;
            }

            .hero h1 {
                font-size: 4rem;
            }

            .hero p {
                font-size: 1.4rem;
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
            }

            .cta-button {
                padding: 1.2rem 3rem;
                font-size: 1.1rem;
            }

            .code-animation {
                padding: 2.5rem;
                font-size: 1rem;
            }

            .code-line {
                font-size: 1rem;
            }

            .courses {
                padding: 100px 2rem;
                max-width: 1200px;
                margin: 0 auto;
            }

            .section-title {
                font-size: 3rem;
            }

            .section-subtitle {
                font-size: 1.2rem;
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 4rem;
            }

            .course-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }

            .course-card {
                padding: 2.5rem;
            }

            .course-icon {
                font-size: 3.5rem;
            }

            .course-card h3 {
                font-size: 1.8rem;
            }

            .course-card p {
                font-size: 1rem;
            }

            .features {
                padding: 100px 2rem;
            }

            .features-container {
                max-width: 1200px;
                margin: 0 auto;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
                margin-top: 4rem;
            }

            .feature-item {
                padding: 2.5rem;
            }

            .feature-icon {
                font-size: 4rem;
            }

            .feature-item h3 {
                font-size: 1.5rem;
            }

            .feature-item p {
                font-size: 1rem;
            }

            .contact {
                padding: 100px 2rem;
            }

            .contact h2 {
                font-size: 3rem;
            }

            .contact p {
                font-size: 1.3rem;
            }

            footer {
                padding: 3rem 2rem;
            }
        }



        h1, h2.section-title {
        font-family: 'Orbitron', sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        }
        
        #contact h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 750;
    letter-spacing: 2px; 
}


/* Large Desktop (min-width: 1440px) */
@media (min-width: 1440px) {
    .hero h1 {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

/* ===== Footer Section ===== */
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
  color: #d1d5db;
  padding: 60px 1rem 30px;
  position: relative;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  z-index: 10;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-section h2.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #a78bfa, #7c3aed, #5b21b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #c4b5fd;
}


 /*  */
 .social-icons {
  display: flex;
  justify-content: center; 
  align-items: center;      
  gap: 1.2rem;              
  margin: 1.5rem auto 0;    
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}

 /*  */

.social-icons a {
  color: #9ca3af;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #c4b5fd;
  transform: translateY(-3px);
  text-shadow: 0 0 15px rgba(167, 139, 250, 0.6);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
