  @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
 
 
 /* ===== RESET & BASE ===== */
        :root {
            --primary: #4F46E5;
            --primary-dark: #4338CA;
            --secondary: #10B981;
            --dark: #1E293B;
            --light: #F8FAFC;
            --gray: #64748B;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
            --border-radius: 12px;
        }

                /* ===== RESET & BASE ===== */
        :root {
            --primary: #4F46E5;
            --primary-dark: #4338CA;
            --primary-light: #C7D2FE;
            --secondary: #10B981;
            --secondary-dark: #059669;
            --accent: #F59E0B;
            --dark: #1E293B;
            --dark-2: #334155;
            --light: #F8FAFC;
            --light-2: #F1F5F9;
            --gray: #64748B;
            --gray-light: #CBD5E1;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
            --border-radius: 12px;
            --border-radius-lg: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
           font-family: "Raleway", sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--light);
        }

                .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary-light);
        }

        .btn-secondary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
        }

        .btn-accent {
            background: var(--accent);
            color: white;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
        }

        .btn-accent:hover {
            background: #D97706;
            transform: translateY(-2px);
        }

        

        /* ===== PREMIUM HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            background: transparent;
            padding: 1.25rem 0;
            backdrop-filter: blur(0px);
            -webkit-backdrop-filter: blur(0px);
            font-family: "Raleway", sans-serif;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-md);
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(226, 232, 240, 0.5);
        }

        .navbar {
            max-width: 1700px;
            margin: 0 auto;
            padding: 0 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: "Orbitron", sans-serif;
            font-family: "Raleway", sans-serif;
        }

        /* Logo Styling */
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: -0.5px;
            transition: var(--transition);
            z-index: 1002;
        }

        .header.scrolled .logo {
            color: var(--dark);
        }

        .logo-img {
            height: 62px;
            width: auto;
            transition: var(--transition);
        }

        .header.scrolled .logo-img {
            filter: brightness(0) saturate(100%) invert(14%) sepia(55%) saturate(2000%) hue-rotate(230deg) brightness(90%) contrast(90%);
        }

        .logo-text {
            font-weight: 700;
            background: linear-gradient(135deg, white 0%, rgba(255,255,255,0.9) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
  
        .header.scrolled .logo-text {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }


        /* Logo wrapper */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Logo text */
.logo h1 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    transition: all 0.3s ease;
}

/* Highlighted dot */
.logo .dot {
    color: white; /* primary brand color */
    font-weight: 900;
    position: relative;
}

/* Small glow effect */
.logo .dot::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(79, 70, 229, 0.8);
}

/* Hover effect */
.logo:hover h1 {
    letter-spacing: 0px;
}

/* Scrolled header (dark text) */
.header.scrolled .logo h1 {
    color: #1E293B;
}

.header.scrolled .logo .dot {
    color: orange;
}

.header.scrolled .logo .dot::after {
    background: orange;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.5rem;
    }
}

        /* Navigation Styling */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.25rem;
            margin: 0;
            padding: 0;
        }

        .nav-links > li > a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .header.scrolled .nav-links > li > a {
            color: var(--dark);
        }

        .nav-links > li > a:hover {
            color: var(--primary);
        }

        .header.scrolled .nav-links > li > a:hover {
            color: var(--primary);
        }

        .nav-links > li > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
            transition: var(--transition);
        }

        .nav-links > li > a:hover::after {
            width: 100%;
        }

        .nav-links > li > a.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav-links > li > a.active::after {
            width: 100%;
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
            text-decoration: none;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.25rem;
          
        }

        .dropdown-arrow {
            font-size: 0.75rem;
            transition: var(--transition);
        }

        .dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 50%;
            transform: translateX(-50%) translateY(5px);
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            min-width: 220px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            padding: 0.5rem 0;
            z-index: 100;
            border: 1px solid rgba(226, 232, 240, 0.5);
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: white;
            transform: rotate(45deg);
            border-left: 1px solid rgba(226, 232, 240, 0.5);
            border-top: 1px solid rgba(226, 232, 240, 0.5);
        }
        .dropdown-menu li {
            list-style: none;
            /* text-decoration: none; */
        }
        .dropdown-item {
            padding: 0.75rem 1.5rem;
            display: block;
            color: var(--dark);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .dropdown-item:hover {
            background: linear-gradient(90deg, rgba(79, 70, 229, 0.08), rgba(16, 185, 129, 0.08));
            color: var(--primary);
            padding-left: 1.75rem;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            transform: translateX(-100%);
            transition: var(--transition);
        }

        .dropdown-item:hover::before {
            transform: translateX(0);
        }

        /* CTA Button */
        .cta-button {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
            color: white;
            padding: 0.875rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            display: inline-block;
            letter-spacing: 0.3px;
            font-size: 0.95rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .header.scrolled .cta-button {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
        }

        .header.scrolled .cta-button:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
        }

        /* Mobile Toggle */
        .mobile-nav-toggle {
            display: none;
            background: transparent;
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            color: white;
            font-size: 1.5rem;
            position: relative;
            z-index: 1001;
        }

        .header.scrolled .mobile-nav-toggle {
            color: var(--dark);
        }

        .mobile-nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .header.scrolled .mobile-nav-toggle:hover {
            background: rgba(226, 232, 240, 0.5);
        }

        /* Utility Classes */
        .badge {
            background: linear-gradient(135deg, var(--secondary), #34D399);
            color: white;
            font-size: 0.7rem;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            margin-left: 0.5rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            
            .navbar {
                padding: 0 1.5rem;
                
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 6rem 2rem 2rem;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: var(--shadow-lg);
                z-index: 1000;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-links {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            .nav-links > li {
                width: 100%;
                border-bottom: 1px solid rgba(226, 232, 240, 0.5);
            }

            .nav-links > li > a {
                color: var(--dark);
                padding: 1rem 0;
                font-size: 1.1rem;
                width: 100%;
            }

            .header.scrolled .nav-links > li > a {
                color: var(--dark);
            }

            .dropdown-menu {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                border: none;
                padding-left: 1.5rem;
                display: none;
                background: rgba(248, 250, 252, 0.5);
                margin: 0.5rem 0;
                border-radius: 8px;
            }

            .dropdown-menu::before {
                display: none;
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .mobile-nav-toggle {
                display: flex;
            }

            .cta-button {
                margin-top: 2rem;
                width: 100%;
                text-align: center;
                background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
                color: white;
                border: none;
            }
        }

/* ===== HERO SECTION ===== */
/*         .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
              background: 
                linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.2) 100%),
                url("img/2.jpg"); 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            color: white;
            text-align: center;
            position: relative;
            z-index: 2;
        }
 */
 

 .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* ===== BACKGROUND SLIDESHOW ===== */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Each background image */
.hero-bg span {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 24s infinite;
}

/* Gradient overlay */
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.85),
        rgba(118, 75, 162, 0.2)
    );
    z-index: 1;
}

/* Image timing */
.hero-bg span:nth-child(1) { animation-delay: 0s; }
.hero-bg span:nth-child(2) { animation-delay: 6s; }
.hero-bg span:nth-child(3) { animation-delay: 12s; }
.hero-bg span:nth-child(4) { animation-delay: 18s; }

/* Fade animation */
@keyframes heroFade {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    25%  { opacity: 1; }
    35%  { opacity: 0; }
    100% { opacity: 0; }
}

/* ===== HERO CONTENT ===== */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.25rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

       /*  .hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 5rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, white, #E2E8F0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.8;
            margin-top: 0.5rem;
            color: white;
        }
        span.stat-label{
            color: white;
        }
 */
 .hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    /* Gradient fallback for browsers that don't support gradient text */
    color: white;
    /* Gradient for supported browsers */
    background: linear-gradient(135deg, white, #E2E8F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Fallback for browsers that don't support gradient text */
.stat-number.no-gradient {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    color: white;
}

span.stat-label {
    color: white;
}

/* Animation keyframes for counting */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animating {
    animation: countUp 0.5s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {


            .hero h1 {
                font-size: 3.5rem;
            }


        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }



            .hero-stats {
                gap: 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }


            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* Animation Classes */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }



/* ===== ABOUT SECTION ===== */
.about {
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;

    /* FULL SECTION SVG BACKGROUND (FIXED) */
/*     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230099ff' fill-opacity='1' d='M0,256L1440,32L1440,0L0,0Z'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat; */
}

/* CONTENT WRAPPER */
.about-content {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* TEXT */
.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* FEATURES */
.about-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.about-feature {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(226,232,240,0.5);
    backdrop-filter: blur(10px);
}
.about-feature:hover { 
    transform: translateY(-5px);
     box-shadow: var(--shadow-md); 
     border-color: var(--primary-light); }
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

/* STATS */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(226,232,240,0.5);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray);
}

/* CTA */
.about-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
}

/* IMAGE */
.about-img {
   /*  max-width: 520px; */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.about-img img {
    width: 100%;
    /* height: 520px; */
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 6rem 1.5rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-cta {
        flex-direction: column;
    }

    .about-img img {
        height: 360px;
    }
}
