@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@700;900&family=Roboto:wght@400;700&display=swap');

:root {
    --primary-yellow: #ffcc00;
    --bg-black: #0d0d0d;
    --panel-bg: rgba(20, 20, 20, 0.85);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg-black); font-family: 'Roboto', sans-serif; color: #fff; overflow-x: hidden; }

/* --- Navigation & Header --- */
.gaming-header { 
    background: #000; 
    border-bottom: 2px solid var(--primary-yellow); 
    position: sticky; top: 0; z-index: 1000; 
}

.navbar { 
    max-width: 1250px; margin: 0 auto; padding: 10px 20px; 
    display: flex; justify-content: space-between; align-items: center; 
}

.logo-img { height: 45px; width: auto; object-fit: contain; }

.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: #fff; font-weight: 700; font-size: 13px; transition: 0.3s; }
.nav-links a:hover { color: var(--primary-yellow); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.whatsapp-btn-top { 
    background: #25d366; color: #fff; padding: 8px 16px; border-radius: 4px; 
    text-decoration: none; font-size: 11px; font-weight: 800; 
    display: flex; align-items: center; gap: 6px; box-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
}

.menu-icon { display: none; font-size: 24px; color: #fff; cursor: pointer; }

/* --- Hero Section with Background Image --- */
.hero-wrapper { 
    position: relative;
    padding: 100px 20px; 
    /* Gaming Background Image */
    background: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex; align-items: center;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 30%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-container { 
    max-width: 1200px; margin: 0 auto; display: flex; align-items: center; 
    gap: 50px; position: relative; z-index: 2; 
}

.hero-left { flex: 1.2; }
.status-tag { color: var(--primary-yellow); font-size: 11px; font-weight: 700; display: flex; align-items: center; gap: 8px; margin-bottom: 15px; text-transform: uppercase; }
.dot { width: 8px; height: 8px; background: #25d366; border-radius: 50%; box-shadow: 0 0 8px #25d366; }

.hero-left h1 { font-family: 'Kanit', sans-serif; font-size: 4rem; line-height: 1.1; font-weight: 900; margin-bottom: 20px; }
.hero-left h1 span { color: var(--primary-yellow); -webkit-text-stroke: 1px var(--primary-yellow); }
.hero-left p { font-size: 1.1rem; color: #ccc; margin-bottom: 35px; max-width: 550px; line-height: 1.5; }

/* CTA Buttons */
.hero-actions { display: flex; gap: 15px; }
.main-cta { 
    background: var(--primary-yellow); color: #000; padding: 15px 30px; 
    text-decoration: none; border-radius: 5px; font-weight: 900; 
    display: flex; align-items: center; gap: 10px; transition: 0.3s; 
}
.sub-cta { 
    border: 2px solid #fff; color: #fff; padding: 15px 30px; 
    text-decoration: none; border-radius: 5px; font-weight: 800; transition: 0.3s; 
}
.main-cta:hover { transform: scale(1.05); box-shadow: 0 0 20px var(--primary-yellow); }

/* --- Right Side Animation --- */
.hero-right { flex: 0.8; display: flex; justify-content: center; }
.feature-card { 
    background: var(--panel-bg); padding: 45px 30px; border-radius: 20px; 
    text-align: center; border: 1px solid rgba(255, 204, 0, 0.2); 
    backdrop-filter: blur(10px); position: relative; 
}

.animated-float { animation: floating 3s infinite ease-in-out; }
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.icon-glow img { filter: drop-shadow(0 0 10px var(--primary-yellow)); margin-bottom: 15px; }
.feature-card h3 { color: var(--primary-yellow); margin-bottom: 10px; font-family: 'Kanit', sans-serif; }
.glow-line { position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--primary-yellow); box-shadow: 0 0 10px var(--primary-yellow); }

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; gap: 60px; }
    .hero-left h1 { font-size: 3rem; }
    .hero-left p { margin: 0 auto 30px; }
    .hero-actions { justify-content: center; flex-direction: column; width: 100%; }
    .hero-overlay { background: rgba(0,0,0,0.85); }
    .nav-links { display: none; position: absolute; top: 65px; left: 0; width: 100%; background: #111; padding: 20px; flex-direction: column; border-bottom: 2px solid var(--primary-yellow); }
    .nav-links.active { display: flex; }
    .menu-icon { display: block; }
}


:root {
    --primary-yellow: #ffcc00;
    --footer-bg: #000000;
    --text-gray: #aaaaaa;
    --border-color: #222222;
}

.gaming-footer {
    background-color: var(--footer-bg);
    padding: 60px 20px 30px;
    border-top: 2px solid var(--primary-yellow);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: #fff;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Compliance Section */
.footer-compliance {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gamble-aware {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}
.gamble-aware span { color: var(--primary-yellow); }

.compliance-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.compliance-icons img { height: 40px; }
.dmca-text {
    font-weight: 900;
    font-size: 1.5rem;
    color: #444;
    letter-spacing: 1px;
}

/* Links Grid */
.footer-links-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.footer-links-grid a {
    text-decoration: none;
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}
.footer-links-grid a:hover { text-shadow: 0 0 10px var(--primary-yellow); }

/* Warning & Text */
.footer-warning {
    color: var(--text-gray);
    font-size: 13px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Bottom Nav */
.footer-bottom-nav {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.footer-bottom-nav a {
    text-decoration: none;
    color: var(--primary-yellow);
    font-size: 13px;
    font-weight: 500;
}

.footer-copyright {
    color: #555;
    font-size: 12px;
    margin-top: 10px;
}
.footer-copyright span { color: var(--text-gray); }

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-compliance { flex-direction: column; gap: 20px; }
    .gamble-aware { font-size: 1.5rem; }
    .footer-bottom-nav { gap: 15px; }
}



:root {
    --primary-yellow: #ffcc00; /* Bright Yellow for headings */
    --accent-yellow: #ffdb00;  /* Slightly different yellow for highlights */
    --bg-black: #000000;
    --text-white: #ffffff;
}

.info-section {
    background-color: var(--bg-black);
    padding: 60px 20px;
    font-family: 'Arial', sans-serif; /* Standard clean font like screenshot */
    line-height: 1.6;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Headings Styling */
.main-heading {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-white);
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.main-heading span {
    color: var(--primary-yellow);
}

/* Paragraph and Item Styling */
.info-item {
    margin-bottom: 20px;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--text-white);
}

/* Numbered Step Color */
.step-num {
    color: var(--primary-yellow);
    font-weight: 700;
}

/* Highlighted Text */
.highlight {
    color: var(--primary-yellow);
    font-weight: 700;
}

/* Specific yellow for bottom links/tools */
.highlight-yellow {
    color: #ffdb00;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-heading {
        font-size: 1.5rem;
    }
    .info-item p {
        font-size: 1rem;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@700;900&family=Poppins:wght@400;600&display=swap');

:root {
    --gaming-yellow: #ffdb00;
    --dark-void: #050505;
    --glow-color: rgba(255, 219, 0, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.pro-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Online Background Image */
    background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
}

/* Overlay to make it look professional */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #000 20%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

/* Left Content Styling */
.hero-content-left { flex: 1; color: #fff; }

.tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gaming-yellow);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 10px #25d366;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-content-left h1 {
    font-family: 'Kanit', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.text-yellow { color: var(--gaming-yellow); text-shadow: 0 0 20px var(--glow-color); }

.hero-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 40px;
    border-left: 3px solid var(--gaming-yellow);
    padding-left: 15px;
}

.btn-yellow-gaming {
    background: var(--gaming-yellow);
    color: #000;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(255, 219, 0, 0.3);
    transition: 0.3s;
}

.btn-yellow-gaming:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--glow-color);
}

/* Right Side Graphic & Animation */
.hero-graphic-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
}

.main-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(255, 219, 0, 0.3);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.glow-ring {
    position: absolute;
    top: -10%; left: -10%; width: 120%; height: 120%;
    border: 1px solid var(--glow-color);
    border-radius: 20px;
    z-index: -1;
}

/* Floating Animation */
.floating-anim {
    animation: floatMove 4s infinite ease-in-out;
}

@keyframes floatMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content-left h1 { font-size: 3rem; }
    .hero-subtext { border: none; padding: 0; margin-bottom: 30px; }
    .image-wrapper { width: 300px; height: 300px; margin-top: 40px; }
}



/* Section Titles */
.section-title { text-align: center; margin-bottom: 50px; padding: 0 20px; }
.section-title h2 { font-family: 'Kanit', sans-serif; font-size: 2.5rem; color: #fff; text-transform: uppercase; }
.section-title h2 span { color: #ffdb00; }
.section-title p { color: #888; margin-top: 10px; }

/* --- Games Grid --- */
.games-grid-section { background: #080808; padding: 80px 0; }
.games-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.game-card { 
    background: #151515; border-radius: 15px; overflow: hidden; width: 350px;
    border: 1px solid #222; transition: 0.4s;
}
.game-card:hover { transform: translateY(-10px); border-color: #ffdb00; box-shadow: 0 10px 30px rgba(255, 219, 0, 0.2); }

.card-img { position: relative; height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.game-card:hover .card-img img { transform: scale(1.1); }

.live-tag { 
    position: absolute; top: 15px; left: 15px; background: #ff0000; color: #fff;
    padding: 4px 12px; border-radius: 4px; font-size: 10px; font-weight: 900;
    animation: blink 1s infinite;
}

@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

.card-info { padding: 25px; text-align: center; }
.card-info h3 { font-family: 'Kanit', sans-serif; margin-bottom: 10px; color: #ffdb00; }
.card-info p { color: #aaa; font-size: 14px; margin-bottom: 20px; }

.btn-play { 
    display: inline-block; background: #ffdb00; color: #000; padding: 10px 25px;
    border-radius: 5px; text-decoration: none; font-weight: 800; text-transform: uppercase;
}

/* --- Steps Section --- */
.how-it-works { background: #000; padding: 80px 0; }
.steps-container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.step-box { 
    background: #111; padding: 40px; border-radius: 20px; width: 350px; 
    text-align: center; position: relative; border-top: 4px solid #333; transition: 0.3s;
}
.step-box:hover, .active-step { border-top-color: #ffdb00; background: #181818; }

.step-icon { 
    width: 50px; height: 50px; background: #ffdb00; color: #000; 
    font-weight: 900; font-size: 24px; display: flex; align-items: center; 
    justify-content: center; border-radius: 50%; margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(255, 219, 0, 0.4);
}

.step-box h3 { margin-bottom: 15px; font-family: 'Kanit', sans-serif; }
.step-box p { color: #888; font-size: 14px; line-height: 1.6; }

/* Responsive */
@media (max-width: 768px) {
    .game-card, .step-box { width: 100%; }
}

/* Stats Section Styling */
.stats-container-main {
    background-color: #050505;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Live List CSS */
.live-card {
    flex: 1;
    background: #111;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #222;
    height: 350px;
    overflow: hidden;
}

.header-live {
    color: #ffdb00;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.dot-pulse {
    width: 10px; height: 10px;
    background: #25d366;
    border-radius: 50%;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.scroll-box { height: 260px; overflow: hidden; }

.scroll-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: scrollVertical 12s linear infinite; /* Scrolling Speed */
}

@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.list-item {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    border-left: 4px solid #ffdb00;
}

.status-tag { color: #25d366; font-weight: 800; font-size: 11px; }

/* Counter Cards CSS */
.counter-grid { flex: 1.2; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.c-card {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.c-card:hover { border-color: #ffdb00; transform: translateY(-5px); }
.c-card i { font-size: 35px; color: #ffdb00; margin-bottom: 10px; }
.c-card h2 { font-size: 2.5rem; margin: 5px 0; color: #fff; }
.c-card p { color: #888; font-size: 12px; text-transform: uppercase; }

.full-width { grid-column: span 2; }

/* Title Hero Section Styling */
.title-hero {
    position: relative;
    height: 60vh; /* Chhota height rakha hai jaisa aapne pucha */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Online Background Image */
    background: url('https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?q=80&w=1470&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

/* Dark Overlay for readability */
.title-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.title-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    width: 95%;
}

/* Glassmorphism Effect */
.glass-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 219, 0, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    animation: slideUp 1s ease-out; /* Load animation */
}

.mini-tag {
    color: #ffdb00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-heading {
    font-family: 'Kanit', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    margin: 15px 0;
    text-transform: uppercase;
}

.main-heading span {
    color: #ffdb00;
    text-shadow: 0 0 15px rgba(255, 219, 0, 0.5);
}

.glass-box p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.line-glow {
    width: 80px;
    height: 4px;
    background: #ffdb00;
    margin: 20px auto 0;
    border-radius: 10px;
    box-shadow: 0 0 10px #ffdb00;
}

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-heading { font-size: 2.2rem; }
    .glass-box { padding: 30px 20px; }
}

/* About Section Styling */
.about-section {
    background: #000;
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-content { flex: 1; min-width: 320px; }

.brand-tag {
    color: #ffdb00;
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 12px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 3.2rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.brand-highlight {
    color: #ffdb00;
    text-shadow: 0 0 20px rgba(255, 219, 0, 0.4);
    display: block;
    margin-top: 10px;
}

.about-description {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Feature Icons */
.feature-grid {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.f-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.f-item i {
    font-size: 24px;
    color: #ffdb00;
    background: rgba(255, 219, 0, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 219, 0, 0.3);
}

.btn-brand {
    display: inline-block;
    background: #ffdb00;
    color: #000;
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(255, 219, 0, 0.2);
    transition: 0.3s;
}

.btn-brand:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 219, 0, 0.4);
}

/* Visual Side */
.about-visual { flex: 1; min-width: 320px; position: relative; }

.image-wrapper {
    position: relative;
    z-index: 5;
    padding: 15px;
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(30%);
}

.neon-border {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 2px solid #ffdb00;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.animated-float { animation: float 4s infinite ease-in-out; }

/* Responsive */
@media (max-width: 992px) {
    .about-content h2 { font-size: 2.2rem; }
    .about-container { flex-direction: column; text-align: center; }
    .feature-grid { justify-content: center; }
}
.contact-section {
    background-color: #050505;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    background: #111;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
}

.contact-info { flex: 1; min-width: 300px; }
.sub-title { color: #ffdb00; font-weight: 800; font-size: 12px; letter-spacing: 2px; }
.contact-info h2 { font-family: 'Kanit', sans-serif; font-size: 2.5rem; color: #fff; margin: 15px 0; line-height: 1.1; }
.contact-info h2 span { color: #ffdb00; }
.contact-info p { color: #888; margin-bottom: 30px; }

.info-item { display: flex; align-items: center; gap: 15px; color: #fff; margin-bottom: 20px; }
.info-item i { 
    width: 45px; height: 45px; background: rgba(255, 219, 0, 0.1); 
    border: 1px solid #ffdb00; color: #ffdb00; display: flex; 
    align-items: center; justify-content: center; border-radius: 50%;
}

.contact-form-box { flex: 1; min-width: 300px; }
.input-group { margin-bottom: 15px; }

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    outline: none;
}

.input-group input:focus { border-color: #ffdb00; }

/* Existing Button Class */
.main-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffdb00;
    color: #000;
    width: 100%;
    padding: 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.main-cta:hover { background: #e6c500; transform: translateY(-3px); }

@media (max-width: 768px) {
    .contact-container { flex-direction: column; padding: 25px; }
}

/* Sabse pehle desktop par mobile image ko chupa do */
.img-mobile {
    display: none;
}

/* Desktop Image ki styling */
.img-desktop {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Media Query: Jab screen 768px se choti ho (Mobile/Tablet) */
@media (max-width: 768px) {
    
    /* Desktop image ko chupa do */
    .img-desktop {
        display: none !important;
    }

    /* Mobile image ko dikha do */
    .img-mobile {
        display: block !important;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* Extra Styling for Banner Content */
.responsive-banner {
    position: relative;
    width: 100%;
    background: #000;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 10;
}

.banner-text h1 {
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
}

.banner-text h1 span {
    color: #ffdb00;
}

@media (max-width: 768px) {
    .banner-text {
        left: 0;
        width: 100%;
        text-align: center;
    }
    .banner-text h1 {
        font-size: 1.8rem;
    }
}

/* Unique Container for Fixed Position */
.jb-fixed-wrapper-v9 {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 9999999;
    line-height: 0;
}

/* Your Requested Unique Class Name */
.whatsapvv9v9v.whatsapvv9v9v {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 65px !important;
    height: 65px !important;
    background-color: #25d366 !important; /* Original WhatsApp Green */
    border-radius: 50% !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5) !important;
    position: relative !important;
    transition: transform 0.3s ease-in-out !important;
    border: none !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent;
}

/* Icon Size Fix */
.jb-icon-v9 {
    font-size: 38px !important;
    position: relative;
    z-index: 5;
}

/* Hover Effect */
.whatsapvv9v9v:hover {
    transform: scale(1.1) rotate(8deg) !important;
}

/* Unique Pulse Animation Design */
.jb-ring-v9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.jb-ring-v9-1 {
    animation: jb-ping-v9 2.5s infinite;
}

.jb-ring-v9-2 {
    animation: jb-ping-v9 2.5s infinite 1.2s;
}

@keyframes jb-ping-v9 {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Mobile Fix - Bilkul Unique */
@media (max-width: 600px) {
    .jb-fixed-wrapper-v9 {
        bottom: 20px;
        right: 20px;
    }
    .whatsapvv9v9v.whatsapvv9v9v {
        width: 55px !important;
        height: 55px !important;
    }
    .jb-icon-v9 {
        font-size: 32px !important;
    }
}

/* Support Section Styling */
.jb-support-area {
    background: #050505;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.jb-container {
    max-width: 1100px;
    margin: 0 auto;
}

.jb-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.jb-section-title h2 {
    font-family: 'Kanit', sans-serif;
    color: #fff;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.jb-section-title h2 span {
    color: #ffdb00;
}

.jb-section-title p {
    color: #888;
    font-size: 15px;
}

/* Grid Layout: 1 Row, 3 Columns */
.jb-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Individual Card Styling */
.jb-support-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jb-support-card:hover {
    transform: translateY(-10px);
    border-color: #ffdb00;
    box-shadow: 0 10px 30px rgba(255, 219, 0, 0.1);
}

.jb-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 219, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.jb-icon-box i {
    font-size: 32px;
    color: #ffdb00;
}

.jb-support-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.jb-support-card p {
    color: #999;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.jb-btn-text {
    color: #ffdb00;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.jb-support-card:hover .jb-btn-text {
    border-bottom: 2px solid #ffdb00;
}

/* Responsive Design */
@media (max-width: 992px) {
    .jb-support-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet par 2 columns */
    }
}

@media (max-width: 650px) {
    .jb-support-grid {
        grid-template-columns: 1fr; /* Mobile par 1 column */
    }
    .jb-section-title h2 {
        font-size: 1.8rem;
    }
}