:root {
    --primary: #e21a22;
    --dark: #0a0a0b;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark);
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Responsive Navbar --- */
.navbar {
    position: fixed;
    top: 0; width: 100%; height: 70px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.4rem; font-weight: 900; }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 25px; }
.nav-links a { color: #fff; text-decoration: none; font-size: 14px; opacity: 0.8; }

.btn-nav {
    background: var(--primary);
    color: #fff; border: none; padding: 8px 18px;
    border-radius: 4px; font-weight: 600; cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Minimum height for small screens */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px; /* Space for navbar */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../images/bg-banner.webp') center/cover no-repeat;
    z-index: -2;
    animation: zoomEffect 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, var(--dark) 10%, rgba(10,10,11,0.5) 50%, var(--dark) 90%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    width: 100%;
    max-width: 1000px;
}

.badge {
    display: inline-block;
    background: rgba(226, 26, 34, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(226, 26, 34, 0.2);
}

.hero-title {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight { color: var(--primary); }

.hero-p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto; margin-right: auto;
}

/* --- Buttons Responsive --- */
.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* Important for small screens */
}

.btn-wa, .btn-outline {
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
    display: flex; align-items: center; gap: 10px;
}

.btn-wa { background: #25D366; color: #fff; border: 1px solid #25D366; }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: #fff; }

.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2); }
.btn-outline:hover { background: #fff; color: #000; }

/* --- Trust Icons --- */
.trust-icons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.t-item { font-size: 12px; font-weight: 600; opacity: 0.6; }
.t-item span { color: var(--primary); }

/* --- Animations --- */
@keyframes zoomEffect { from { transform: scale(1); } to { transform: scale(1.1); } }

/* --- MEDIA QUERIES (The Secret Sauce) --- */

@media (max-width: 992px) {
    .nav-links { display: none; } /* Hide links on tablets/phones */
}

@media (max-width: 768px) {
    .hero { padding-top: 120px; }
    .hero-title { line-height: 1.2; }
    .hero-btns { flex-direction: column; align-items: center; width: 100%; }
    .btn-wa, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
    .trust-icons { gap: 15px; }
}

@media (max-width: 480px) {
    .navbar { height: 60px; }
    .logo { font-size: 1.2rem; }
    .hide-mobile { display: none; } /* Remove line breaks on mobile */
    .hero-title { font-size: 2.2rem; }
    .hero-p { font-size: 0.9rem; }
}


/* Beneficial Section Styling */
.beneficial-section {
    padding: 100px 0;
    background-color: #050505;
    overflow: hidden;
}

.beneficial-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* दो कॉलम: बायां छोटा, दायां बड़ा */
    gap: 60px;
    align-items: center;
}

/* Image Card Styling */
.beneficial-image .promo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.beneficial-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.beneficial-image:hover img {
    transform: scale(1.05); /* हल्का ज़ूम इफेक्ट */
}

/* Content Styling */
.beneficial-content .sub-tag {
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.beneficial-content .sub-tag:hover {
    background: #fff;
    color: #000;
}

.beneficial-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.beneficial-content p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.text-red {
    color: #e21a22;
    font-weight: 600;
}

.btn-primary-rect {
    display: inline-flex;
    align-items: center;
    background-color: #e21a22;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-primary-rect:hover {
    background-color: #b3141a;
    transform: translateX(5px);
}

/* --- Animations --- */
.anim-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s forwards ease-out;
}

.anim-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 1s forwards ease-out;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .beneficial-grid {
        grid-template-columns: 1fr; /* मोबाइल पर एक कॉलम */
        text-align: center;
        gap: 40px;
    }
    
    .beneficial-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .beneficial-content h2 {
        font-size: 1.8rem;
    }
}



/* Reviews Section Base */
.reviews-section {
    padding: 80px 0;
    background-color: #0a0a0b;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Slider Logic */
.reviews-slider-container {
    width: 100%;
    overflow-x: auto; /* Horizontal scroll enable */
    padding-bottom: 30px;
    cursor: grab;
    scrollbar-width: none; /* Firefox के लिए स्क्रॉल बार छुपाएं */
}

/* Chrome, Safari, Edge के लिए स्क्रॉल बार छुपाएं */
.reviews-slider-container::-webkit-scrollbar {
    display: none;
}

.reviews-wrapper {
    display: flex;
    gap: 20px;
    /* Scroll Snapping ताकि कार्ड बीच में रुके */
    scroll-snap-type: x mandatory;
}

.review-card {
    flex: 0 0 calc(33.333% - 14px); /* डेस्कटॉप पर 3 कार्ड्स */
    min-width: 300px;
    background: #111112;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    scroll-snap-align: start; /* कार्ड के शुरू होने पर स्नैप होगा */
    transition: 0.3s;
}

.review-card:hover {
    border-color: #e21a22;
    transform: translateY(-5px);
}

/* Content Inside Cards */
.rating { color: #ffb400; margin-bottom: 15px; }
.review-card p { color: #ccc; font-size: 15px; line-height: 1.6; margin-bottom: 25px; min-height: 72px; }

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.user-img {
    width: 40px; height: 40px; background: #e21a22;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-weight: 700; color: #fff;
}

.scroll-hint {
    text-align: center;
    color: #555;
    font-size: 12px;
    margin-top: 10px;
    display: none; /* सिर्र्फ मोबाइल पर दिखाएंगे */
}

/* --- Responsive Layout --- */

@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 10px); /* टैबलेट पर 2 कार्ड्स */
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 85%; /* मोबाइल पर 1 पूरा कार्ड और अगले का थोड़ा हिस्सा */
    }
    .scroll-hint {
        display: block;
    }
}





/* Footer Base Styling */
.main-footer {
    background-color: #000;
    padding: 60px 0 30px;
    border-top: 2px solid #333;
    color: #fff;
}

.footer-title {
    text-align: center;
    color: #e21a22; /* इमेज जैसा पीला रंग */
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
}

/* Links Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

/* Arrow Icon before links */
.footer-col li::before {
    content: '❯';
    position: absolute;
    left: 0;
    color: #e21a22;
    font-size: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ffb400;
    padding-left: 5px;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 30px 0;
}

/* Compliance Section (Icons) */
.footer-compliance {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.gamble-aware {
    font-size: 24px;
    font-weight: 700;
    color: #ffb400;
}

.gamble-aware span { color: #fff; }

.age-limit {
    border: 2px solid #e21a22;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 60px; height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}
.age-limit span { font-size: 8px; }

/* Bottom Section */
.footer-bottom {
    text-align: center;
}

.legal-links {
    margin-bottom: 15px;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    margin: 0 15px;
    font-size: 13px;
}

.copyright {
    font-size: 12px;
    color: #555;
}

.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px; /* साइज़ छोटा कर दिया गया है */
    border-radius: 50px; /* कैप्सूल शेप */
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-fixed img {
    width: 20px; /* आइकन का साइज़ छोटा */
    height: 20px;
}

.whatsapp-fixed:hover {
    background-color: #1eb954;
    transform: scale(1.05); /* हल्का सा ज़ूम इफेक्ट */
}

/* मोबाइल पर और भी छोटा करने के लिए */
@media (max-width: 480px) {
    .whatsapp-fixed {
        bottom: 20px;
        right: 20px;
        padding: 8px 12px;
        font-size: 12px;
    }
    .whatsapp-fixed span {
        display: none; /* मोबाइल पर सिर्फ आइकन दिखेगा अगर आप चाहें, या टेक्स्ट छोटा रहेगा */
    }
    .whatsapp-fixed {
        width: 45px;
        height: 45px;
        justify-content: center;
        padding: 0;
    }
    .whatsapp-fixed span { display: none; } /* मोबाइल पर सिर्फ गोल बटन दिखेगा */
}

/* Download Section Styling */
.download-section {
    background-color: #0d0d0d;
    padding: 80px 0;
    color: #fff;
}

.download-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.download-content {
    flex: 1;
    min-width: 300px;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-green {
    color: #e21a22; /* Image jaisa green color */
}

.download-content p {
    color: #888;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 12px;
    color: #666;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #333;
}

/* App Cards */
.download-cards {
    display: flex;
    gap: 20px;
}

.app-card {
    background: #1a1a1a;
    width: 240px;
    padding: 25px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: translateY(-10px);
}

.card-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.card-info span {
    font-size: 13px;
    color: #777;
    display: block;
    margin-bottom: 15px;
}

.btn-download {
    display: inline-block;
    background-color: #e21a22;
    color: #fff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 30px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.qr-code {
    width: 60px;
    height: 60px;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
}

.platform-icon {
    font-size: 40px;
    color: #333; /* Faded icon as seen in image */
    position: absolute;
    right: -5px;
    bottom: -5px;
    opacity: 0.5;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .download-flex {
        flex-direction: column;
        text-align: center;
    }
    .stats-row {
        justify-content: center;
    }
    .download-cards {
        justify-content: center;
        flex-wrap: wrap;
    }
}




.seo-long-content {
    background-color: #0d0d0d;
    color: #ffffff;
    padding: 30px 0;
    line-height: 1.9;
    font-family: 'Poppins', sans-serif;
}

.content-header {
    text-align: center;
    margin-bottom: 50px;
}

.content-header h1 {
    font-size: 2.5rem;
    margin-top: 15px;
    color: #fff;
    text-transform: capitalize;
}

.text-red {
    color: #e21a22; /* Bombay Book Red */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.content-text-area {
    max-width: 1000px;
    margin: 0 auto;
}

.content-text-area h3 {
    color: #e21a22;
    font-size: 18px;
    margin: 40px 0 20px 0;
    position: relative;
    padding-bottom: 10px;
}

.content-text-area h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #e21a22;
}

.content-text-area p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 30px;
    text-align: justify;
}

/* Bold tags ko alag color dena taaki wo standout karein */
.content-text-area strong {
    color: #ffffff;
    font-weight: 700;
    background: rgba(226, 26, 34, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-header h1 { font-size: 1.8rem; }
    .content-text-area p { font-size: 15px; text-align: left; }
}

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero-breadcrumb {
    position: relative;
    width: 100%;
    height: 350px; /* Desktop Height */
    background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

/* Gradient Overlay for better readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.breadcrumb-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.breadcrumb-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Breadcrumb Navigation Style */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    background: rgba(255, 255, 255, 0.1); /* Glassmorphism */
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #00d2ff; /* Sky Blue accent */
}

.breadcrumb-item.active {
    color: #00d2ff;
    font-weight: 600;
}

.separator {
    margin: 0 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item i {
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-breadcrumb {
        height: 250px; /* Mobile par height kam */
    }
    
    .breadcrumb-container h1 {
        font-size: 2rem;
    }

    .breadcrumb-nav {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .separator {
        margin: 0 8px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.gaming-breadcrumb {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?q=80&w=1471&auto=format&fit=crop'); /* Replace with your gaming bg */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Dark Gradient Overlay like your screenshot */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.7));
    z-index: 1;
}

.breadcrumb-wrap {
    position: relative;
    z-index: 2;
}

.sub-title {
    color: #e31e24; /* Red color from your theme */
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.breadcrumb-wrap h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

/* Navigation Links */
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 25px;
    border-radius: 5px;
    border-left: 3px solid #e31e24; /* Red accent line */
}

.breadcrumb-nav a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.breadcrumb-nav a:hover {
    color: #e31e24;
}

.breadcrumb-nav i {
    font-size: 13px;
    margin-right: 5px;
}

.slash {
    color: #555;
}

.current {
    color: #fff;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gaming-breadcrumb {
        padding: 60px 0;
    }
    .breadcrumb-wrap h2 {
        font-size: 28px;
    }
}


:root {
    --primary-red: #e21a22;
    --dark-bg: #0a0a0b;
    --card-bg: #161618;
    --text-gray: #b0b0b0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }


.container { max-width: 1200px; margin: 0 auto; padding: 50px 20px; }

/* Header Styling */
.contact-header { text-align: center; margin-bottom: 60px; }
.badge { color: var(--primary-red); font-weight: 700; letter-spacing: 2px; font-size: 14px; }
.contact-header h1 { font-size: 3rem; margin: 15px 0; }
.contact-header h1 strong { color: var(--primary-red); }
.contact-header p { color: var(--text-gray); max-width: 700px; margin: 0 auto; }

/* Wrapper Grid */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }

/* Info Cards */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { 
    background: var(--card-bg); 
    padding: 25px; 
    border-radius: 15px; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    border: 1px solid #222;
    transition: 0.3s;
}
.info-card:hover { border-color: var(--primary-red); transform: translateX(10px); }
.info-card i { font-size: 30px; color: var(--primary-red); width: 50px; }
.info-card h3 { font-size: 18px; margin-bottom: 5px; }
.info-card p { font-size: 14px; color: var(--text-gray); }
.info-card strong { font-size: 16px; color: #fff; }

.info-card.highlight { background: linear-gradient(90deg, #e21a22 0%, #8b1014 100%); border: none; }
.info-card.highlight i, .info-card.highlight p { color: #fff; }

/* Form Styling */
.contact-form-container { 
    background: var(--card-bg); 
    padding: 40px; 
    border-radius: 20px; 
    border: 1px solid #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; color: #fff; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #0d0d0f;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary-red); }

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}
.btn-submit:hover { background: #ff1f28; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(226, 26, 34, 0.4); }

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-header h1 { font-size: 2rem; }
}

.about-image-section {
    padding: 0px 0;
    background: #0d0d0f;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image Container Styling */
.about-img-container {
    position: relative;
    padding: 20px;
}

.main-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(226, 26, 34, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.main-about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.main-img-wrapper:hover .main-about-img {
    transform: scale(1.05);
}

/* Floating Cards Animation */
.floating-card {
    position: absolute;
    background: rgba(22, 22, 24, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    animation: float 4s ease-in-out infinite;
}

.card-1 { top: 10%; right: -30px; }
.card-2 { bottom: 10%; left: -30px; animation-delay: 2s; }

.floating-card i {
    font-size: 24px;
    color: #e21a22;
}

.floating-card h4 { font-size: 22px; color: #fff; }
.floating-card p { font-size: 12px; color: #b0b0b0; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Text Content Area */
.about-essence h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-essence p {
    color: #b0b0b0;
    margin-bottom: 30px;
    font-size: 17px;
}

.feature-list {
    margin-bottom: 40px;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
}

.f-item i { color: #e21a22; }

/* Responsive */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .floating-card { position: relative; right: 0; left: 0; margin: 10px auto; width: 200px; }
    .f-item { justify-content: center; }
}

.logo img{
    width: 40%;
}




/* Prefix: kvx- (King Vip Exch) */
.kvx-navbar {
    background-color: #0d0d0d; /* Premium Dark */
    height: 75px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    border-bottom: 2px solid #1a1a1a;
}

.kvx-container {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kvx-logo-img {
    height: 70px;
    width: auto;
}

.kvx-nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

.kvx-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.kvx-link:hover {
    color: #25d366;
}

/* Aapka Unique Neon WhatsApp Button */
.kvx-whatsapp-btn {
    background: #25d366 !important; /* Force green if server CSS fails */
    color: #000 !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
    transition: 0.3s ease-in-out;
    border: none;
}

.kvx-whatsapp-btn:hover {
    box-shadow: 0 0 25px #25d366;
    transform: scale(1.05);
}

/* Mobile Responsive */
.kvx-hamburger {
    display: none;
    cursor: pointer;
}

.kvx-bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px;
    background-color: #25d366;
    transition: 0.4s;
}

@media (max-width: 992px) {
    .kvx-hamburger { display: block; }

    .kvx-nav-menu {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #1a1a1a;
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }

    .kvx-nav-menu.kvx-active { right: 0; }

    .kvx-nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }

    .kvx-whatsapp-btn { width: 100%; justify-content: center; }
}

.footer-compliance img{
    width: 80%;
}

/*===========================*/


/* Unique Styles for 6-Box Grid */
.tve-grid-section {
    padding: 40px 20px;
    background-color: #f8fafc;
    font-family: 'Inter', -apple-system, sans-serif;
}

.tve-grid-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    /* 3 Columns in one row for Desktop */
    grid-template-columns: repeat(3, 1fr);
    gap: 15px; /* Compact spacing */
}

/* Compact Smooth Card */
.tve-item {
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.tve-item:hover {
    transform: translateY(-3px);
    border-color: #0ea5e9; /* Light Blue Accent */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Card Header */
.tve-item-top {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.tve-num {
    background: #0ea5e9;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 8px;
    text-transform: uppercase;
}

.tve-item-title {
    font-size: 15px;
    color: #0f172a;
    margin: 0;
    font-weight: 600;
}

/* Description Text */
.tve-item-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 12px 0;
    min-height: 36px; /* Consistency across boxes */
}

/* Link Button */
.tve-item-link {
    font-size: 12px;
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
}

.tve-item-link:hover {
    text-decoration: underline;
}

/* Tablet & Mobile Responsive */
@media (max-width: 900px) {
    .tve-grid-wrapper {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 600px) {
    .tve-grid-wrapper {
        grid-template-columns: 1fr; /* Stack vertically for mobile */
    }
}