 /* heder css */
 
        :root {
            --primary:#1a335f;
            --secondary:#1dace3;
        }

        body { font-family:Poppins; }

        /* Transparent Header */
        #mainHeader{
            position:fixed;
            top:0; left:0; right:0;
            z-index:999;
            transition:.3s;
            background:transparent;
        }

        #mainHeader.scrolled{
            background:white;
            box-shadow:0 4px 20px rgba(0,0,0,0.1);
        }

        .logo-img{ height:3.3rem; transition:.3s; }
        #mainHeader.scrolled .logo-img{ height:2.7rem; }

        /* Desktop Color */
  
        .nav-links a:hover,
        .services-btn:hover {
            color:var(--secondary) !important;
        }
        .nav-links a.active{
            color:var(--secondary) !important;
            font-weight:600;
        }

        /* OLD SEXY DROPDOWN RESTORED */
        .services-container { position:relative; }
        .services-dropdown {
            position:absolute; left:0; top:110%;
            width:19rem;
            background:white;
            border-radius:18px;
            box-shadow:0 12px 30px rgba(0,0,0,0.15);
            opacity:0;
            visibility:hidden;
            transform:translateY(10px);
            transition:.25s ease;
            overflow:hidden;
            z-index:9000;
        }
        .services-container.open .services-dropdown {
            opacity:1;
            visibility:visible;
            transform:translateY(0);
        }
        .services-btn i{ transition:.25s; }
        .services-container.open .services-btn i{ transform:rotate(180deg); }

        /* OLD BUTTON RESTORED */
        .get-help-btn{
            background:linear-gradient(to right,#1a335f,#1dace3);
            color:white;
            padding:.7rem 1.3rem;
            border-radius:12px;
            font-weight:600;
            transition:.25s;
        }
        .get-help-btn:hover{ transform:translateY(-3px); opacity:.9; }

        /* MOBILE FIX */
        .nav-links-mobile{
            position:fixed;
            top:0; bottom:0;
            width:80%;
            max-width:330px;
            background:white;
            right:-100%;
            transition:right .35s;
            z-index:99999;
            padding-top:80px;
        }
        .nav-links-mobile.open{ right:0; }

        .mobile-menu-overlay{
            position:fixed;
            inset:0;
            background:rgba(0,0,0,.45);
            opacity:0;
            visibility:hidden;
            transition:.3s;
            z-index:99998;
        }
        .mobile-menu-overlay.open{
            opacity:1;
            visibility:visible;
        }

        .mobile-services-dropdown{
            max-height:0;
            overflow:hidden;
            transition:max-height .3s;
        }
        .mobile-services-dropdown.open{ max-height:650px; }

        @media(max-width:768px){
            .nav-links{ display:none!important; }
        }
        @media(min-width:769px){
            .nav-links-mobile,.mobile-menu-overlay{ display:none!important; }
        }

    

        /* end heder css */
 .primery-color{
    color: #1a335f !important;
 }
 .secondary-color{
    color: #1dace3 !important;
 }
 .animated-gradient-text {
    background: linear-gradient(
        90deg,
        #ff6b6b,
        #ffa500,
        #ffd700,
        #90ee90,
        #87ceeb,
        #9370db,
        #ff69b4
    );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

 
 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        }
        .section-gradient {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .btn-primary {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 60, 114, 0.4);
        }
        .btn-primary::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(30deg);
            transition: all 0.5s ease;
        }
        .btn-primary:hover::after {
            transform: rotate(30deg) translate(10%, 10%);
        }
        .btn-secondary {
            background: transparent;
            border: 2px solid white;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background: white;
            color: #1e3c72;
        }
        .hamburger {
            display: none;
            cursor: pointer;
        }
        .stats-bg {
            background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
        }
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                width: 100%;
                position: absolute;
                top: 70px;
                left: 0;
                background-color: white;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                z-index: 100;
            }
            .nav-links.active {
                display: flex;
                flex-direction: column;
            }
            .nav-links a {
                padding: 15px 20px;
                border-bottom: 1px solid #eee;
            }
        }
        section {
            transition: all 0.5s ease;
        }



        



.animated-gradient-text {
    background: linear-gradient(
        90deg,
        #ff6b6b,
        #ffa500,
        #ffd700,
        #90ee90,
        #87ceeb,
        #9370db,
        #ff69b4
    );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}       .course-card {
            transition: all 0.5s ease;
            min-width: calc(25% - 24px);
        }

        .course-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .dot.active {
            background-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }

        .carousel-container {
            overflow: hidden;
            position: relative;
        }

        .carousel-track {
            display: flex;
            transition: transform 1s ease-in-out;
        }

        .carousel-wrapper {
            position: relative;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-btn.prev {
            left: 10px;
        }

        .nav-btn.next {
            right: 10px;
        }

 /* Desktop: 4 cards */
.course-card {
    min-width: calc(25% - 24px);
    transition: all .5s;
}

/* Tablet: 2 cards */
@media (max-width: 768px) {
    .course-card {
        min-width: 60%;
        margin: 0 auto;
    }
}

/* Mobile: 1 card */
@media (max-width: 640px) {
    .course-card {
        min-width: 95%;
        margin: 0 auto;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
} @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        .animate-scroll {
            animation: scroll 30s linear infinite;
            display: flex;
            width: max-content;
        }

        /* Pause animation on hover */
        .animate-scroll:hover {
            animation-play-state: paused;
        }

/* our service  */
@media (max-width: 768px) {

    .carousel-track {
        display: flex;
        width: 100%;
        gap: 1rem;
    }

    .course-card {
        min-width: 95%;
        max-width: 95%;
        margin: 0 auto;
    }
}
/* Infinite Logo Slider */
.logo-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.logo-scroll-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: logo-scroll 12s linear infinite; /* Desktop speed */
}

/* SPEED CHANGE BY SCREEN SIZE */
@media (max-width: 1024px) {
    .logo-scroll-content {
        animation: logo-scroll 10s linear infinite; /* Tablet faster */
    }
}

@media (max-width: 640px) {
    .logo-scroll-content {
        animation: logo-scroll 7s linear infinite; /* Mobile FAST */
    }
}

.logo-scroll-content img {
    width: 130px;
    height: auto;
    object-fit: contain;
    filter: brightness(0.95);
    transition: 0.3s ease;
}

.logo-scroll-content img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Keyframes for Infinite Loop */
@keyframes logo-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}




/* MOBILE MENU FIXES */
body { -webkit-tap-highlight-color: transparent; } /* smooth touch */

.nav-links-mobile{
    position:fixed;
    top:0;
    right:-100%;
    height:100vh;                 /* full viewport height */
    width:80%;
    max-width:360px;
    background:white;
    z-index:99999;
    padding-top:72px;            /* less top space so content starts near top */
    overflow-y:auto;             /* important: menu itself scrolls */
    -webkit-overflow-scrolling: touch;
    transition: right .32s cubic-bezier(.2,.9,.2,1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.12);
}

.nav-links-mobile.open{
    right:0;
}

/* Close button (X) */
.mobile-close{
    position: absolute;
    top:12px;
    right:12px;
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    background: white;
    border: 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    z-index:100001;
    cursor:pointer;
}

/* make overlay clickable and visible */
.mobile-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition: opacity .25s ease;
    z-index:99998;
}

.mobile-menu-overlay.open{
    opacity:1;
    visibility:visible;
}

/* reduce default padding so menu not half-screen with big gap */
.nav-links-mobile .p-6 { padding-top: 14px; padding-bottom: 28px; }

/* Ensure dropdown inside mobile can expand vertically */
.mobile-services-dropdown{
    max-height:0;
    overflow:hidden;
    transition:max-height .28s ease;
}

.mobile-services-dropdown.open{ max-height: 600px; }

/* Optional: small tweak so body never horizontally scrolls */
html, body { overflow-x: hidden; }



/* Get Help Button Styling */
.get-help-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.get-help-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

/* Modal Responsive Fixes */
@media (max-width: 767px) {
    #helpModal > div {
        margin: 20px;
        width: calc(100% - 40px);
    }
}

@media (min-width: 768px) {
    #helpModal > div {
        animation: slideIn 0.3s ease-out;
    }
    
    @keyframes slideIn {
        from {
            transform: translateX(-20px);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
}

/* Form Input Focus */
#quickHelpForm input:focus,
#quickHelpForm select:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Add to your CSS */
.hidden {
    display: none;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Contact form after submission */

/* Contact Form Specific Styles */
.contact-form-container {
    position: relative;
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-5px);
}

.form-input {
    transition: all 0.3s ease;
    border: 1px solid #d1d5db;
}

.form-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Spinner Animation */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Message Animations */
#contactMessage {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Map Styling */
.map-container iframe {
    border-radius: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 1rem;
    }
    
    .form-input {
        padding: 0.75rem;
    }
}