/* --- HEADER STYLING --- */
.header-main {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 2000;
    transition: all 0.4s ease-in-out;
}


/* Scroll hone par sticky class add hogi JS se */
.header-main.sticky {
    padding: 12px 0;
    background: #000000;
    border-bottom: 2px solid #ffd700;
}

.brand-logo {
    font-size: 22px;
    font-weight: 900;
    color: #fff !important;
    text-decoration: none;
    letter-spacing: 1.5px;
    width: 50%;
}
.logoloutus{
    width: 30%;
}
.brand-logo span { color: #ffd700; }

.nav-links a {
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    margin: 0 15px;
    transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: #ffd700 !important; }

.btn-login-small {
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    margin-right: 20px;
}

.btn-neon-mini {
    background: #ffd700;
    color: #000 !important;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* --- MOBILE SIDEBAR --- */
.mobile-sidebar {
    position: fixed;
    top: 0; right: -300px; /* Suru me bahar rahega */
    width: 280px; height: 100vh;
    background: #000;
    z-index: 2100;
    padding: 30px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid #ffd700;
}
.mobile-sidebar.active { right: 0; } /* Click par andar aayega */

.sidebar-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 40px;
}
.close-btn { background: none; border: none; color: #ffd700; font-size: 24px; }

.sidebar-links a {
    display: block; color: #fff; text-decoration: none;
    padding: 15px 0; font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 2050;
    display: none;
}
.sidebar-overlay.active { display: block; }

.menu-btn { background: none; border: none; color: #ffd700; font-size: 22px; }


/* --- HERO SECTION SETUP --- */
.gaming-slider-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* Video Background Styling */
.video-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.1); /* Video ko dark karne ke liye */
}

.dark-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.8) 100%),
                linear-gradient(to right, rgba(0,0,0,0.9) 30%, transparent 100%);
    z-index: 2;
}

/* --- TYPOGRAPHY --- */
.live-tag {
    color: #ffd700;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pulsing-dot {
    height: 10px; width: 10px; background: #ff0000;
    border-radius: 50%; box-shadow: 0 0 10px #ff0000;
    animation: pulseRed 1.5s infinite;
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 5.2rem);
    font-weight: 900;
    line-height: 0.9;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.text-gold { color: #ffd700; text-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
.text-red {
    color: #ffd700;
    -webkit-text-stroke: 1px #ffd700;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 550px;
    margin-bottom: 40px;
}

/* --- BUTTONS --- */
.btn-primary-gaming {
    background: #ffd700;
    color: #fff;
    padding: 18px 45px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
    transition: 0.3s;
}

.btn-primary-gaming:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.5);
    color: #fff;
}

.btn-outline-gold {
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 16px 45px;
    font-weight: 800;
    text-decoration: none;
    margin-left: 20px;
    display: inline-block;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: #ffd700;
    color: #000;
}

/* --- STATS CARD (Glassmorphism) --- */
.premium-stats-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.stat-item .label { color: #aaa; font-size: 12px; letter-spacing: 2px; display: block; margin-bottom: 5px; }
.stat-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 25px 0; }

/* --- ANIMATIONS --- */
@keyframes pulseRed { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.anim-left { animation: slideLeft 1s forwards; opacity: 0; }
.anim-up { animation: fadeIn 1s forwards 0.4s; opacity: 0; }
.anim-pop { animation: pop 0.6s forwards; opacity: 0; }
.anim-float { animation: floating 4s ease-in-out infinite; }

@keyframes slideLeft { from { transform: translateX(-60px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes pop { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes floating { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* --- MOBILE FIXES --- */
@media (max-width: 991px) {
    .gaming-slider-hero { height: auto; padding: 120px 0 80px; }
    .hero-main-box { text-align: center; }
    .hero-text { margin: 0 auto 30px; }
    .hero-actions { display: flex; flex-direction: column; gap: 15px; }
    .btn-outline-gold { margin-left: 0; }
}

.hero-main-box h1{
    font-size: 60px;
}

.hero-main-box{
    margin-top: 15% !important;
}

/* --- REVIEW SECTION SETUP --- */
.gaming-reviews {
    padding: 100px 0;
    background-color: #0f1012; /* Dark Navy/Black */
    position: relative;
    overflow: hidden;
}

/* Background Glow Effect (Dark Yellow) */
.gaming-reviews::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    top: 10%; right: -100px;
    z-index: 1;
}

.text-gold { color: #d4af37 !important; }

.main-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin: 15px 0;
}
.main-title span { color: #d4af37; }

.desc-text { color: #888; font-size: 15px; margin-bottom: 30px; }

/* Navigation Buttons */
.slider-nav { display: flex; gap: 10px; }
.nav-btn {
    width: 45px; height: 45px;
    background: #1a1b1e;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    transition: 0.3s;
}
.nav-btn:hover { background: #d4af37; color: #000; border-color: #d4af37; }

/* Review Card Design */
.review-card-pro {
    background: #16171a;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    height: 100%;
    transition: 0.4s;
    z-index: 5;
}

.review-card-pro:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 40px;
    color: rgba(255,255,255,0.1);
    position: absolute;
    top: 30px; left: 30px;
}

.review-msg {
    color: #bbb;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
}

.player-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.player-meta img {
    width: 50px; height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.player-meta .info h6 { color: #fff; margin: 0; font-weight: 700; }
.player-meta .info span { color: #d4af37; font-size: 12px; }
.rating { margin-left: auto; font-weight: 800; }

/* --- RESPONSIVE FIX --- */
@media (max-width: 991px) {
    .main-title { font-size: 30px; }
    .gaming-reviews { text-align: center; }
    .slider-nav { justify-content: center; }
}

/* --- ENROLL SECTION --- */
.enroll-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.enroll-card-wrapper {
    position: relative;
    padding-top: 30px;
}

/* Floating Badge Styling */
.enroll-badge {
    position: absolute;
    top: 0; right: -20px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    z-index: 10;
}
.enroll-badge img { width: 35px; }
.enroll-badge strong { display: block; font-size: 18px; color: #000; }
.enroll-badge span { font-size: 12px; color: #666; }

/* Form Box */
.enroll-form-box {
    background: #16171a;
    padding: 45px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.enroll-form-box h3 { color: #fff; font-weight: 800; margin-bottom: 5px; }
.enroll-form-box p { color: #888; margin-bottom: 30px; }

/* Input Fields */
.input-group-custom { margin-bottom: 20px; }
.input-group-custom input, .input-group-custom select {
    width: 100%;
    padding: 15px 20px;
    background: #1f2125;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.input-group-custom input:focus {
    border-color: #ffd700;
    background: #25282d;
}

/* Submit Button */
.btn-enroll-submit {
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #b8860b);
    border: none;
    padding: 15px;
    color: #000;
    font-weight: 900;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: 0.4s;
    margin-top: 10px;
}

.btn-enroll-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.features-list .feat { color: #ccc; margin-bottom: 10px; font-weight: 600; }

/* Animations */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.anim-float { animation: floating 3s ease-in-out infinite; }

/* Mobile Adjustment */
@media (max-width: 768px) {
    .enroll-badge { right: 10px; scale: 0.8; }
    .enroll-form-box { padding: 30px 20px; }
}

/* --- COLORS & BASICS --- */
:root { --gold: #ffd700; --dark-bg: #0a0a0a; --card-bg: #111; }
body { background: #000; font-family: 'Poppins', sans-serif; }
.text-gold { color: var(--gold) !important; }

/* --- STEPS SECTION --- */
.step-box {
    background: var(--card-bg); padding: 30px 20px; border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.4s;
}
.step-box:hover { border-color: var(--gold); transform: translateY(-8px); }
.icon-wrap {
    width: 70px; height: 70px; background: rgba(255,215,0,0.1);
    color: var(--gold); font-size: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.step-box h5 { color: #fff; font-weight: 700; margin-bottom: 10px; }
.step-box p { color: #888; font-size: 13px; line-height: 1.6; }

.step-arrow { position: absolute; top: 15%; width: 70px; opacity: 0.4; }
.step-arrow img { width: 100%; filter: invert(1) brightness(2); }

/* --- ENROLL SECTION --- */
.bg-dark-custom { background: #0f1012; border: 1px solid rgba(255,215,0,0.1); }
.bg-black-accent { background: #050505; }

.enroll-badge-mini {
    position: absolute; top: -15px; right: 25px;
    background: #fff; padding: 8px 15px; border-radius: 12px;
    display: flex; align-items: center; gap: 10px; z-index: 5;
    box-shadow: 0 10px 20px rgba(255,215,0,0.2);
}
.enroll-badge-mini img { width: 30px; }
.enroll-badge-mini strong { font-size: 14px; color: #000; }
.enroll-badge-mini span { font-size: 10px; color: #666; font-weight: 600; }

.custom-input {
    width: 100%; padding: 12px 15px; margin-bottom: 15px;
    background: #1a1b1e; border: 1px solid #333; color: #fff;
    border-radius: 8px; outline: none; font-size: 14px;
}
.custom-input:focus { border-color: var(--gold); }

.btn-yellow-sm {
    width: 100%; padding: 12px; background: var(--gold);
    color: #000; border: none; font-weight: 800; border-radius: 8px;
    transition: 0.3s; font-size: 14px;
}
.btn-yellow-sm:hover { background: #fff; transform: scale(1.02); }

/* --- ANIMATION --- */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.anim-float { animation: float 3s ease-in-out infinite; }

/* Responsive */
@media (max-width: 768px) {
    .enroll-badge-mini { top: -25px; right: 50%; transform: translateX(50%); }
    .step-arrow { display: none; }
}

/* --- ABOUT SECTION STYLES --- */
.about-gaming { background: #000; overflow: hidden; }

.about-img-wrapper { padding: 20px; }
.main-img { 
    border: 8px solid #111; 
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.1);
    transition: 0.5s;
}

/* Floating Badges */
.badge-float {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10;
}
.b-1 { top: 10%; left: -20px; }
.b-2 { bottom: 10%; right: -20px; }

.icon-play {
    width: 40px; height: 40px; background: #ffd700;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #000; font-size: 14px;
}

.badge-float strong { display: block; font-size: 16px; color: #000; }
.badge-float span { font-size: 11px; color: #666; }
.stars { color: #ffd700; font-size: 10px; }

/* Feature Boxes */
.feat-box-dark {
    background: #0a0a0a;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.4s;
}
.feat-box-dark:hover {
    border-color: #ffd700;
    background: #111;
    transform: translateX(5px);
}
.feat-box-dark i { font-size: 24px; color: #ffd700; }
.feat-box-dark h6 { color: #fff; margin: 0; font-weight: 700; font-size: 14px; }
.feat-box-dark span { color: #666; font-size: 11px; }

.btn-read-more {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}
.btn-read-more:hover { background: #fff; transform: translateY(-3px); }

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.anim-up-down { animation: upDown 4s ease-in-out infinite; }
.anim-float-side { animation: sideFloat 5s ease-in-out infinite; }

@keyframes upDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes sideFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(15px); }
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .badge-float { scale: 0.8; }
    .b-1 { left: 10px; }
    .b-2 { right: 10px; }
}

/* Color Palette */
:root {
    --yellow: #ff9d00;
    --black: #0d0d0d;
}

.gaming-hero {
    position: relative;
    padding: 100px 0;
    background: #000;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Video Background Styling */
.video-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}
.video-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.3); /* Video ko dark kiya taki text dikhe */
}
.overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 30%, transparent 100%);
}

/* Left Content */
.sub-tag {
    background: var(--yellow);
    color: #000;
    padding: 5px 15px;
    font-weight: 800;
    font-size: 12px;
    border-radius: 4px;
}
.main-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 900;
    margin: 25px 0;
    line-height: 1.1;
}
.text-yellow { color: var(--yellow); }

.desc-text {
    color: #cccccc;
    font-size: 16px;
    max-width: 450px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8); /* visibility fix */
}

.btn-contact {
    display: inline-block;
    background: var(--yellow);
    color: #000;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}
.btn-contact:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 157, 0, 0.4); }

/* Mini Player Badge */
.mini-player-badge {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    width: fit-content;
    margin-top: 50px;
}
.mini-player-badge img { width: 40px; border-radius: 50%; }
.mini-player-badge h6 { color: #000; font-weight: 800; }
.stars { color: #ff9d00; font-size: 10px; }

/* Right Side Visuals */
.visual-stack { position: relative; max-width: 500px; margin-left: auto; }
.image-frame {
    border: 3px solid var(--yellow);
    padding: 10px;
    border-radius: 20px;
    background: rgba(255, 157, 0, 0.1);
}

/* Floating Badges Styling */
.float-card {
    position: absolute;
    background: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.top-c { top: -20px; right: 20%; }
.mid-c { top: 50%; right: -30px; }

.icon-round {
    width: 35px; height: 35px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.bg-yellow { background: var(--yellow); color: #000; }
.info strong { display: block; font-size: 14px; color: #000; line-height: 1; }
.info span { font-size: 10px; color: #666; font-weight: 700; }

/* Animations */
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes floatX { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(15px); } }
.anim-float-y { animation: floatY 4s infinite ease-in-out; }
.anim-float-x { animation: floatX 5s infinite ease-in-out; }

/* Responsive */
@media (max-width: 991px) {
    .main-title { font-size: 2.5rem; }
    .gaming-hero { text-align: center; padding: 60px 0; }
    .desc-text { margin: 25px auto; }
    .visual-stack { margin: 50px auto 0; }
    .float-card { scale: 0.8; }
}











/* Lotus Theme Styles */
.lotus-support-section { background: #000; color: #fff; font-family: 'Poppins', sans-serif; padding-bottom: 50px; }
.text-yellow { color: #ffcc00 !important; font-weight: 700; }

/* Header Video Styling */
.header-video-box { position: relative; height: 100px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.video-src { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: brightness(0.4); }
.v-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2; }
.header-content { position: relative; z-index: 3; }

/* Sticky Sidebar Logic */
.support-sticky-menu { position: sticky; top: 25%; background: #111; padding: 25px; border-radius: 15px; border-left: 4px solid #ffcc00; box-shadow: 0 15px 35px rgba(0,0,0,0.5); }
.menu-title { font-size: 22px; letter-spacing: 2px; color: #ffcc00; margin-bottom: 20px; font-weight: 800; }
.support-sticky-menu a { display: block; color: #ccc; text-decoration: none; padding: 12px 0; border-bottom: 1px solid #222; transition: 0.3s; font-weight: 600; font-size: 14px; }
.support-sticky-menu a i { width: 25px; color: #ffcc00; }
.support-sticky-menu a:hover { color: #fff; padding-left: 10px; border-bottom-color: #ffcc00; }

/* Content Styling */
.support-main-content { background: rgba(255,255,255,0.03); padding: 40px; border-radius: 20px; backdrop-filter: blur(10px); }
.section-h { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; }
.content-block { margin-bottom: 50px; text-align: justify; line-height: 1.8; color: #ddd; }
.content-block p { margin-bottom: 15px; }

/* Smooth Scroll */
html { scroll-behavior: smooth; }
h2[id] { scroll-margin-top: 30px; }

@media (max-width: 991px) {
    .support-sticky-menu { position: static; margin-bottom: 30px; }
    .header-video-box { height: 250px; }
}


/* Default Style: Dono banners ko inline-block rakha hai */
        .desktop-banner, .mobile-banner {
            display: inline-block;
            max-width: 100%;
            height: auto;
        }

        /* --- Desktop View --- */
        /* Jab screen badi ho, to mobile banner ko gayab kar do */
        @media screen and (min-width: 769px) {
            .mobile-banner {
                display: none !important;
            }
            .desktop-banner {
                display: inline-block;
            }
        }

        /* --- Mobile View --- */
        /* Jab screen 768px ya usse choti ho, to desktop banner gayab */
        @media screen and (max-width: 768px) {
            .desktop-banner {
                display: none !important;
            }
            .mobile-banner {
                display: inline-block;
            }
        }



/* Fixed Positioning */
    .wa-fixed-icon-wrap {
        position: fixed;
        bottom: 100px;
        right: 20px;
        z-index: 99999;
    }

    /* WhatsApp Icon Styling */
    .wa-icon-only {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: #25d366 !important; /* Original WhatsApp Green */
        color: #fff !important;
        border-radius: 50% !important;
        text-decoration: none !important;
        font-size: 35px;
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
        position: relative;
        transition: transform 0.3s ease;
    }

    .wa-icon-only:hover {
        transform: scale(1.1) rotate(10deg);
    }

    /* Smooth Pulse Animation */
    .wa-icon-only::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #25d366;
        border-radius: 50%;
        z-index: -1;
        animation: wa-glow 2s infinite;
    }

    @keyframes wa-glow {
        0% { transform: scale(1); opacity: 0.7; }
        100% { transform: scale(1.6); opacity: 0; }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .wa-icon-only {
            width: 50px;
            height: 50px;
            font-size: 28px;
        }
        .wa-fixed-icon-wrap {
            bottom: 20px;
            right: 20px;
        }
    }






/* --- MAIN FOOTER STYLES --- */
.main-footer {
    background-color: #111111;
    color: #aaaaaa;
    padding-top: 80px;
    border-top: 2px solid #222;
    font-family: 'Poppins', sans-serif;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.brand-text {
    color: #fff;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
    font-size: 25px;
}

.brand-text span { color: #ff8a00; } /* Orange accent from screenshot */

.brand-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* App Download Box */
.app-download {
    background: #1a1a1a;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 5px;
}

.app-icon {
    font-size: 30px;
    color: #8dbb3c; /* Android Green */
}

.app-text span {
    display: block;
    font-size: 12px;
    color: #fff;
}

.app-text a {
    color: #ff8a00;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}

/* Links Styling */
.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 10px;
}

.footer-links a:hover {
    color: #ff8a00;
    padding-left: 5px;
}

/* Instagram Grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.insta-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 4px;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    cursor: pointer;
}

.insta-item:hover img {
    transform: scale(1.1);
}

/* Copyright Bar */
.copyright-bar {
    background: #000;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid #222;
}

.copyright-bar p {
    margin: 0;
    font-size: 13px;
}

.copyright-bar span { color: #ff8a00; }

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #ff8a00;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
}

/* Responsive */
@media (max-width: 768px) {
    .main-footer { text-align: center; }
    .footer-brand { justify-content: center; }
    .app-download { justify-content: center; }
    .footer-links a { justify-content: center; }
    .insta-grid { max-width: 300px; margin: 0 auto; }
}

@media (max-width: 350px){
    .btn-neon-mini{
        display: none;
    }
}

@media (max-width: 950px){
   .logoloutus {
    width: 100%;
}
}










/* All classes start with conv9v9vsj to avoid conflicts */

.conv9v9vsj-body {
    background-color: #000;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
}

.conv9v9vsj-main-wrapper {
    max-width: 1200px;
    margin: 1% auto;
    padding: 20px;
}

/* Feature Bar */
.conv9v9vsj-feature-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.conv9v9vsj-feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
}

.conv9v9vsj-feat-item i {
    font-size: 35px;
    color: #ffc107; /* Dark Yellow/Gold */
}

.conv9v9vsj-feat-item h3 { font-size: 18px; margin: 0; color: #fff; }
.conv9v9vsj-feat-item p { color: #fff; font-size: 13px; margin: 0; }

.conv9v9vsj-divider { border: 0; border-top: 1px solid #333; margin: 40px 0; }

/* Content Layout */
.conv9v9vsj-content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.conv9v9vsj-info-side { flex: 1.2; min-width: 320px; }
.conv9v9vsj-form-side { flex: 0.8; min-width: 320px; }

.conv9v9vsj-title { font-size: 36px; color: #fff; margin-bottom: 20px; }
.conv9v9vsj-lead-text { color: #fff; margin-bottom: 40px; }

.conv9v9vsj-loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.conv9v9vsj-badge { color: #666; font-size: 11px; font-weight: bold; }
.conv9v9vsj-loc-box h2 { font-size: 24px; margin: 10px 0; color: #fff; }
.conv9v9vsj-loc-box p { color: #aaa; font-size: 14px; margin: 4px 0; }
.conv9v9vsj-bold { font-weight: bold; color: #fff; }

/* Form Card */
.conv9v9vsj-form-card {
    background: #fffdf5; /* Off-white from image */
    padding: 40px;
    border-radius: 12px;
    color: #333;
}

.conv9v9vsj-form-card h2 { margin-bottom: 10px; }
.conv9v9vsj-form-card p { font-size: 14px; color: #666; margin-bottom: 25px; }

.conv9v9vsj-form-row { display: flex; gap: 15px; margin-bottom: 15px; }

.conv9v9vsj-group { flex: 1; margin-bottom: 15px; }
.conv9v9vsj-group label { display: block; font-size: 13px; font-weight: bold; margin-bottom: 8px; }
.conv9v9vsj-group input, .conv9v9vsj-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.conv9v9vsj-btn {
    background: #0056b3;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* Floating WhatsApp */
.conv9v9vsj-wa-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .conv9v9vsj-form-row { flex-direction: column; }
    .conv9v9vsj-content-grid { flex-direction: column; }
    .conv9v9vsj-loc-grid { grid-template-columns: 1fr; }
}

    .lotus-breadcrumb {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                    url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?q=80&w=1600&auto=format&fit=crop'); /* Cricket Stadium Background */
        background-size: cover;
        background-position: center;
        padding: 50px 0;
        text-align: center;
        border-bottom: 2px solid #ffc107;
    }

    .lotus-breadcrumb h2 {
        color: #fff;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 10px;
        font-size: 2rem;
    }

    .lotus-breadcrumb .breadcrumb {
        background: transparent;
        display: inline-flex;
        padding: 0;
        margin: 0;
    }

    .lotus-breadcrumb .breadcrumb-item {
        color: #fff;
        font-size: 1rem;
        font-weight: 500;
    }

    .lotus-breadcrumb .breadcrumb-item a {
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

    .lotus-breadcrumb .breadcrumb-item a:hover {
        color: #ffc107;
    }

    .lotus-breadcrumb .breadcrumb-item.active {
        color: #ffc107 !important;
    }

    .lotus-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        content: "\f105"; /* FontAwesome angle-right icon */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: #ffc107;
    }

    .text-yellow {
        color: #ffc107 !important;
    }

.idv90{
    left: 30%;
}


.boxrespoons{
    background: rgba(255,193,7,0.1); border: 1px solid #ffc107;
}