/* navbar */
body{
   font-family: 'Outfit', sans-serif !important;
}
.header-main.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease-in-out; 
	
}

/* Smooth slide animation jab navbar sticky ho */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
    .footer-logo__img {
        max-height: 90px !important;
    }

.header-main.is-sticky {
   
}
/* --- TOP BAR DESIGN --- */
.top-bar {
    background: #002d21;
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    /* z-index: 1001; */
}
.top-bar-link {
    color: #ffffff !important;
    text-decoration: none !important;
    margin-right: 15px;
    display: inline-block;
}
.top-bar-link i {
    color: #ffb400;
}

/* Google Translate Styling inside Topbar */
#google_translate_element {
    display: inline-block;
}
.goog-te-gadget-simple {
    background-color: transparent !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
}
.goog-te-gadget-simple span {
    color: #ffffff !important;
    font-size: 11px !important;
}
.goog-te-menu-value img {
    display: none !important;
}

/* --- STICKY NAVBAR DESIGN --- */
.header-main {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 100%;
}
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

/* Logo */
.logo-img {
    max-height: 60px;
    width: auto;
}

/* Navigation Links */
.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
}
.nav-item-link {
    text-decoration: none !important;
    color: #333333;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    padding: 35px 12px; /* Header Height match */
    display: inline-block;
    transition: 0.3s;
}
.nav-item-link:hover {
    color: #ffb400;
}

/* Dropdown Menu */
.has-dropdown { position: relative; }
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.has-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}
.sub-menu a {
    display: block;
    padding: 10px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
}
.sub-menu a:hover {
    background: #f8f9fa;
    color: #ffb400;
}

/* Call Info */
.header-call {
    border-left: 1px solid #eeeeee;
    padding-left: 20px;
    margin-right: 20px;
    align-items: center;
}
.call-icon {
    font-size: 28px;
    color: #ffb400;
    margin-right: 10px;
}
.call-info {
    display: flex;
    flex-direction: column;
}
.call-sub {
    font-size: 10px;
    color: #777777;
    text-transform: uppercase;
    line-height: 1;
}
.call-main {
    font-size: 14px;
    color: #ffffff;
}

/* Yellow Donate Button (Screenshot Style) */
.donate-btn-main {
    background: #ffb400;
    color: #000000 !important;
    padding: 0 35px;
    height: 90px;
    line-height: 90px;
    display: flex;
    align-items: center;
    font-weight: 800;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: 0.4s;
    border: none;
}
.donate-btn-main:hover {
    background: #e09e00;
}


/* Mobile Toggle Button - Fixed to Right */
.mobile-toggle-btn {
    
    border: none;
    background: none;
    color: #ffffff !important;
    margin-right: 5px;

}

.mobile-toggle-btn:hover {
    background: #002d21;
    color: #ffb400;
}

.header-logo{
    margin-left: 5px !important;
}
/* Header Row Responsive Fix */
@media (max-width: 991px) {
    .header-main .row {
        display: flex;
        justify-content: space-between; /* Logo left, Toggle right */
        align-items: center;
        width: 100%;
    }
}


.button{
    margin-bottom: 20px !important;
}
.mobile-menu-drawer.open {
    right: 0;
}
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    border-bottom: 2px solid #ffb400;
    padding-bottom: 10px;
}
.close-drawer {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
}
.mobile-links {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.mobile-links li a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #eeeeee;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
}
.mobile-donate-link {
    background: #ffb400;
    color: #000000 !important;
    text-align: center;
    border-radius: 5px;
    margin-top: 15px;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    display: none;
}
.menu-overlay.active {
    display: block;
}


/* Jab drawer open ho */
.mobile-menu-drawer.open {
    right: 0;
}

/* Links ka background aur style */
.mobile-links {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    background: inherit; /* Jo drawer ka color hai wahi lega */
}

.mobile-links li a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 600;
    color: #333 !important; /* Text color saaf dikhna chahiye */
    text-decoration: none;
}

/* Overlay Fix */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* Thoda dark overlay */
    z-index: 9999;
    display: none;
}
.menu-overlay.active {
    display: block;
}
@media screen  and (min-width:300px)  and (max-width:768px) {
	.donate-btn-main{
		display:none !important;
	}
	
}
.modern-hero {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
   
}

.hero-slide {
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ff6b2b; /* Tagline Orange */
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    color: #fff; /* Main text White */
}

.hero-title span {
    color: #fff; /* Highlighted text also White for clean look */
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff; /* Elegant Hollow Effect */
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary-custom {
    background: #ff6b2b;
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s all ease;
    box-shadow: 0 10px 20px rgba(255, 107, 43, 0.3);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary-custom:hover {
    background: #fff;
    color: #ff6b2b;
    transform: translateY(-5px);
}

.btn-video-popup {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.btn-video-popup i {
    width: 55px;
    height: 55px;
    line-height: 52px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-video-popup:hover i {
    background: #ff6b2b;
    border-color: #ff6b2b;
    transform: scale(1.1);
}

/* Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    z-index: 100;
    pointer-events: none;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: auto;
}

.prev-btn:hover, .next-btn:hover {
    background: #ff6b2b;
    border-color: #ff6b2b;
}

/* Slick Animations */
.slick-active .hero-tagline { animation: fadeInUp 0.8s both; }
.slick-active .hero-title { animation: fadeInUp 0.8s both 0.2s; }
.slick-active .hero-description { animation: fadeInUp 0.8s both 0.4s; }
.slick-active .hero-actions { animation: fadeInUp 0.8s both 0.6s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-actions { display: flex; flex-direction: column; gap: 20px; align-items: center; }
    .btn-video-popup { margin-left: 0; }
    .slider-controls { display: none; } /* Hide arrows on mobile for cleaner look */
}

.premium-ticker-box {
    width: 100%;
    height: 65px;
    background: linear-gradient(90deg, #8e0000 0%, #f91101 50%, #8e0000 100%);
    background-size: 200% auto;
    animation: gradientMove 5s linear infinite; /* Background moving effect */
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(249, 11, 1, 0.4);

    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #ffde00; /* Bottom gold line */
}

/* Background Animation */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Glowing Badge */
.ticker-badge {
    background: #000;
    color: #fff;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    z-index: 10;
    position: relative;
    box-shadow: 10px 0 20px rgba(0,0,0,0.3);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

/* Pulsing Live Icon */
.pulse-icon {
    width: 10px;
    height: 10px;
    background: #ff1100;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 0 rgba(255, 17, 0, 0.4);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 17, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 17, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 17, 0, 0); }
}

.ticker-main {
    flex: 1;
    overflow: hidden;
}

.marquee-content-flex {
    display: flex;
    align-items: center;
}

.t-text {
    color: #fff;
    font-size: 22px;
    padding: 0 40px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-text i {
    font-size: 18px;
    color: #ffde00; /* Icons in Gold */
}

/* Highlighted Phone Number */
.highlight-yellow {
    color: #ffde00;
    font-weight: 700;
}

.highlight-yellow .num {
    background: #fff;
    color: #f91101;
    padding: 2px 10px;
    border-radius: 4px;
    margin-left: 5px;
}

.t-sep {
    opacity: 0.5;
}

/* Mobile Styling */
@media (max-width: 768px) {
    .ticker-badge { padding: 0 15px; font-size: 12px; }
    .t-text { font-size: 18px; padding: 0 20px; }
        .premium-ticker-box {
        height: 55px;
        margin-bottom: 30px;
    }
}

/* about us */

	.about_section {
		padding:20px;
	}
    /* Desktop Styles (Default) */
    .about-img-wrapper {
        position: relative;
        padding-bottom: 50px;
    }

    .img-box img {
        width: 100%;
        border-radius: 20px;
        object-fit: cover;
        display: block;
    }

    .img-1 { width: 45%; margin-bottom: 20px; }
    .img-2 { 
        width: 50%; 
        position: absolute; 
        top: 0; 
        right: 0; 
    }
	/* Lead text jo bold aur bada tha */
.about-lead-text {
    color: #212529; /* text-dark equivalent */
    font-weight: 700; /* fw-bold equivalent */
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Normal descriptive text */
.about-text {
    color: #6c757d; /* text-muted equivalent */
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Quote ke andar ka italic text */
.quote-text {
    font-style: italic;
    margin-bottom: 0;
    color: #444;
}

/* Organization name highlight karne ke liye (Optional) */
.org-name {
    color: #006837; /* Green color to match your theme */
}
    .img-3 { 
        width: 80%; 
        margin-left: 10%; 
        margin-top: 30px; 
    }

    .floating-card {
        position: absolute;
       top: 45%;
    right: -30%;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 10px 10px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 1px solid #eee;
        z-index: 10;
    }
/* service */
/* Section Padding */

/* skiillsection */

	/* --- Section Base --- */
.skill-training-section {
    background: #fcfdfd;
    padding: 50px 0;
}
.skill-training-section h2{
    font-size: 40px !important;
}

/* --- Image Grid Styling --- */
.img-wrapper {
    transition: all 0.4s ease;
    border: 3px solid #fff;
    height: 100%;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    
    transition: transform 0.5s ease;
}

.img-wrapper:hover img {
    transform: scale(1.1);
}

.main-img-box {
    height: 280px; /* Badi image ki height */
}

/* Floating Badge */
.floating-stats-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #198754;
    padding: 15px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(25, 135, 84, 0.3);
}

/* --- Modern Checklist Styling --- */
.modern-checklist .checklist-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.modern-checklist .checklist-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important;
}

.icon-circle-bg {
    width: 45px;
    height: 45px;
    background: rgba(25, 135, 84, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;    margin-right: 10px;
}

.bg-warning-light {
    background: rgba(255, 193, 7, 0.1);
}

/* --- Premium Button --- */
.premium-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #000;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.premium-btn:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-3px);
}
.about_section h2{
    font-size: 40px;
}
.ultra-modern-services h2{
    font-size: 40px;
    font-weight: bold;
}
/* Typography Helper */
.ls-2 { letter-spacing: 2px; }


/* modern impact section */
 :root {
            --primary-gold: #ffc107;
            --dark-bg: #020617;
            --card-glass: rgba(255, 255, 255, 0.03);
            --text-muted: #94a3b8;
        }

        /* Global Section Styling */

    .services-section { 
        padding: 50px 0; 
              background: radial-gradient(circle at 50% -20%, #1e293b, #0f172a, #020617);
        color: #fff; 
        font-family: 'Inter', sans-serif !important;
        
    }
    /* Global Section Styling */
    .services-section .col-md-4{
        margin-bottom:10px;
    }
    /* Glassmorphism Card Style */
    .service-card {
        background: rgba(255, 255, 255, 0.03); /* Translucent background */
        backdrop-filter: blur(12px); /* Blur effect */
        -webkit-backdrop-filter: blur(12px);
        padding: 20px 15px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle white border */
        text-align: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    /* Card ke upar ek subtle glow effect ke liye */
    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), transparent);
        opacity: 0;
        transition: 0.4s;
    }

    /* Hover: Card Lift and Border Glow */
    .service-card:hover {
        /* transform: translateY(-12px); */
        border-color: rgba(255, 193, 7, 0.5);
        background: rgba(255, 255, 255, 0.07);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 193, 7, 0.1);
    }

    .service-card:hover::before {
        opacity: 1;
    }

    /* Icon Styling */
    .icon-box {
        width: 85px;
        height: 85px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 193, 7, 0.1); /* Subtle yellow circle */
        border-radius: 50%;
        transition: 0.4s;
    }

    .service-card:hover .icon-box {
        background: #ffc107;
        /* transform: scale(1.1) rotate(5deg); */
    }

    .icon-box img {
        width: 45px;
        height: auto;
        transition: 0.4s;
    }

    .service-card:hover .icon-box img {
        filter: brightness(0) saturate(100%) invert(0%); /* Darker icon on yellow bg */
    }

    /* Typography */
    .service-card h5 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #fff; /* White title by default */
        transition: 0.3s;
    }

    .service-card:hover h5 {
        color: #ffc107;
    }

    .service-card p {
        color: rgba(255, 255, 255, 0.7); /* Muted white text */
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    /* Button Styling */
    .btn-simple {
        color: #ffc107;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 5px;
        transition: 0.3s;
    }

    .btn-simple::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #ffc107;
        transition: 0.3s;
    }

    .btn-simple:hover::after {
        width: 100%;
    }

    /* Section Header */
    .section-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        color:white !important;
    }

    .title-line {
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #ffc107, transparent);
        margin: 15px auto;
        border-radius: 2px;
    }

        .modern-impact-section {
            background: radial-gradient(circle at 50% -20%, #1e293b, #0f172a, #020617);
            padding: 50px 0;
            color: #f8fafc;
     
            overflow: hidden;
        }

        /* --- Typography Excellence --- */
        .section-subtitle {
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 5px;
            font-size: 0.75rem;
            display: inline-block;
            margin-bottom: 20px;
            color: var(--primary-gold);
            border-bottom: 1px solid rgba(255, 193, 7, 0.3);
            padding-bottom: 5px;
        }

       

        .text-gradient {
            background: linear-gradient(180deg, #fff 40%, var(--text-muted) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .custom-hr {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), transparent);
            border-radius: 50px;
            margin: 20px auto;
        }

        /* --- Impact Card Design --- */
        .impact-card {
            background: transparent;
            position: relative;
            margin-bottom: 10px;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .impact-img-box {
            position: relative;
            z-index: 2;
            margin: 0 15px;
            border-radius: 28px;
            overflow: hidden;
            height: 240px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            transition: transform 0.6s ease;
        }

        .impact-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease;
        }

        .impact-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(10px);
            color: var(--primary-gold);
            font-size: 10px;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 12px;
            border: 1px solid rgba(255, 193, 7, 0.2);
            text-transform: uppercase;
        }

        /* Content Glassmorphism */
        .impact-content {
            background: var(--card-glass);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            padding: 100px 30px 40px 30px;
            margin-top: -90px;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            transition: 0.5s;
        }

        .impact-icon-float {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.03);
            color: var(--primary-gold);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin: 0 auto 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: 0.5s ease;
        }

        .impact-content h4 {
           
            font-weight: 700;
            font-size: 1.4rem;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .impact-content p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
            font-weight: 400;
        }

        /* --- Hover States --- */
        .impact-card:hover {
            transform: translateY(-15px);
        }

        .impact-card:hover .impact-img-box {
            transform: scale(1.02);
            border-color: rgba(255, 193, 7, 0.4);
        }

        .impact-card:hover .impact-img-box img {
            transform: scale(1.15);
        }

        .impact-card:hover .impact-content {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 40px 80px rgba(0,0,0,0.4);
        }

        .impact-card:hover .impact-icon-float {
            background: var(--primary-gold);
            color: #000;
            transform: rotateY(180deg);
            box-shadow: 0 0 25px rgba(255, 193, 7, 0.3);
        }

        /* Link Typography */
        .impact-link {
            text-decoration: none;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            color: var(--primary-gold);
            letter-spacing: 2px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            transition: 0.3s;
        }
        .modern-impact-section h2{
            font-size:40px;
        }

        .impact-link:hover {
            color: #ffffff;
            gap: 15px;
        }
        .manrega{

        }
        .promo-primary__description span{
               font-family: 'Poppins', sans-serif;
  font-weight: 800;
           font-size: 80px !important;
           line-height: 100px;
    text-transform: uppercase;
        }
        .promo-primary__pre-title{
             font-family: 'Poppins', sans-serif !important;
        }
.manrega {
    color: rgb(255, 35, 35) !important;
    font-size: 16px !important;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    text-align: center;
    font-weight: 800;
    padding-left: 0px;
    
    /* Letter spacing yahan add ki gayi hai */
    letter-spacing: 2px; 

    /* Text stroke effect */
    text-shadow:
        -1px -1px 0 white,
         1px -1px 0 white,
        -1px  1px 0 white,
         1px  1px 0 white;
}
        .manrega2 span{
          color: rgb(255, 35, 35) !important; /* text color */
   
    font-family: 'Poppins', sans-serif;
    font-style: italic;   /* cursive jaisa effect */
    text-align: center;
    font-weight: 800;
    padding-left: 20px;

    /* Text stroke effect behind */
    text-shadow:
        -1px -1px 0 white,
         1px -1px 0 white,
        -1px  1px 0 white,
         1px  1px 0 white;
    font-size: 20px !important;
        line-height: 25px;
        }
        .floating-card h3 {
    font-size: 23px !important;
    font-weight: 800;
}
.span1,.span2{
    font-size: 20px;
}
.mobile-banner{
    display: none;
}


/* footer */

.slick-slide{
    height: none !important;
}
.navlinks{
    gap: 20px;
    display: flex;
    align-items: center;
}

        @media (max-width: 768px) {
            .display-5 { font-size: 2.2rem !important; }
            .impact-content { padding-top: 110px; }
            .modern-impact-section { padding: 60px 0; }
        }

/* Responsive */
@media (max-width: 768px) {
    .main-img-box { height: 200px; }
  .skill-training-section {
        padding: 10px 0;
    }
    .mobile-banner{
    display: block;
}
      .manrega2 span{
        display: none;
      }
    .skill-training-section h2 { font-size: 25px !important; }
    .ultra-modern-services {
    padding: 20px 0px;
    }
    .modern-hero{
        height: 70vh !important;
    }
    .hero-slide{
                height: 70vh !important;
    }
    .ultra-modern-services h2{
   font-size: 25px !important;
    }
    .img-1{
        margin-top: 15px !important;
    }
    .top-bar .phone,  .top-bar .email    {
        display: none !important;
    }
    .no-gutters > .col, .no-gutters > [class*="col-"]{
         padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .top-bar-link span {
        font-size: 13px;
    }
    .registration-card {
    padding: 0px !important;
    }
    .form-title {
    font-size: 30px;
    }
   .promo-primary__description span {
        font-size: 65px !important;
        line-height: 94px !important;
    }
}
    /* Responsive Mobile Styles */
    @media (max-width: 576px) {
		.about_section {
			padding:0px 0px;
		}
		.about_section h2 {
			font-size:25px;
		}
		.about-lead-text {
		}
        .about-img-wrapper { 
            height: auto; 
            padding-bottom: 0;
            display: flex;
            flex-direction: column; 
            gap: 0px;
                    margin-bottom: -205px;
        }

        /* Sabhi images ko full width karne ke liye */
        .img-1, .img-2, .img-3 { 
            width: 100% !important; 
            position: relative !important; 
            top: 0 !important;
            right: 0 !important;
            margin-left: 0 !important;
            margin-top: 0 !important;
        }

        /* Floating card ko mobile par adjust karna */
        .floating-card {
                     position: relative !important;
     top: -337px;
        right: -172px;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 10px 10px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid #eee;
        z-index: 10;
        display: inline-block;
        /* margin: auto; */
        text-align: center;
    }
        }
        .modern-impact-section h2{
            font-size: 25px !important;
        }
        .about-content{
            margin-top:20px;
        }
        section.section {
        padding: 15px 0px;
        }

    @media (max-width: 1200px) {
    
 .modern-hero {
    position: relative;
    height: 40vh;
    width: 100%;
    overflow: hidden;
}
.hero-slide {
    height: 40vh;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
      .footerlogos{
        gap: 70px !important;
      }
     
      .top-bar-link {
    gap: 0px !important;  
    }
    .goog-te-gadget-simple{
        display: none !important;
    }
}
@media (max-width: 1400px) {
 

}

    @media (max-width: 1400px) {
.floating-card{
    right: -29% !important;
}
    }