/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* --- Variables --- */
:root {
    --primary-color: #0f172a; /* Deep Navy */
    --accent-color: #06b6d4;  /* Tech Cyan */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --transition: all 0.3s ease;
}


/* =========================================
   POPUP OVERLAY & CONTENT STYLES
   ========================================= */
.popup-overlay {
    display: none; /* By default chupa rahega */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85); /* Dark semi-transparent background */
    backdrop-filter: blur(5px);
    z-index: 9999; /* Sabse upar dikhega */
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    color: white;
    border: 1px solid #2a375a;
    animation: popupFadeIn 0.5s ease-out;
}

@keyframes popupFadeIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
}

.close-popup:hover {
    color: #e60000;
}

.pricing-info-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.old-price-popup {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.2rem;
}

.new-price-popup {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.btn-join-popup {
    display: block;
    background: #e60000;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
}

.btn-join-popup:hover {
    background: #cc0000;
    transform: translateY(-3px);
}
/* --- Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Header & Navbar --- */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ==========================================
   🌟 OIVAS TECH LOGO ANIMATIONS
   ========================================== */

/* 1. Logo Icon: Side se aane wala animation (Slide In Left) */
.logo-icon {
    animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    0% { 
        transform: translateX(-50px); 
        opacity: 0; 
    }
    100% { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

/* 2. Logo Text: Upar se aakar bounce karne wala animation (Bounce In Top) */
.logo-text {
    animation: bounceInTop 1s ease-out forwards;
    animation-delay: 0.2s; /* Icon ke thoda sa baad aayega jisse effect mast lagega */
    opacity: 0; /* Shuru mein hide rakhne ke liye */
}

@keyframes bounceInTop {
    0% { 
        transform: translateY(-50px); 
        opacity: 0; 
    }
    60% { 
        transform: translateY(15px); /* Thoda niche tak jayega */
        opacity: 1; 
    }
    80% { 
        transform: translateY(-5px); /* Wapas thoda upar aayega (Bounce) */
    }
    100% { 
        transform: translateY(0); /* Apni original jagah par ruk jayega */
        opacity: 1; 
    }
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 250px;
    display: none;
    border-radius: 4px;
    padding: 10px 0;
}

.nav-links li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
}

/* Mobile Menu Button */
/* Mobile Menu Button */
.hamburger {
    display: none; /* Desktop par hide rahega */
    cursor: pointer;
    font-size: 1.5rem;
    
    /* 🌟 CSS MAGIC: Isko sabse last mein bhejne ke liye 🌟 */
    order: 99; 
    margin-left: 15px; /* Cart/Login button se thoda gap dene ke liye */
}

/* Mobile view mein isko dikhane ke liye (Agar aapne pehle se nahi lagaya hai toh) */
@media (max-width: 768px) {
    .hamburger {
        display: block; /* Ya 'flex' agar uske andar lines span se banayi hain */
    }
}

/* --- Hero Section --- */
.hero-content {
    width: 100%;
    max-width: 1200px; /* Isse aapke box ko failne ki jagah mil jayegi */
    margin: 0 auto;
}

/* Aapka purana code waisa hi rahega: */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #cbd5e1;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    margin-right: 10px;
}

.btn-primary:hover {
    background: #0891b2;
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* --- Sections Generic --- */
.section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-bg {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-light);
}

/* --- Services Grid (Home) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* --- About Page & Content --- */
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- Forms --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* --- Blog Cards --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.blog-img {
    height: 200px;
    background: #e2e8f0;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

/* --- Footer --- */
footer {
    background: var(--primary-color);
    color: #94a3b8;
    padding: 60px 5% 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #334155;
}


/* --- Pricing/Packages Table CSS --- */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.pricing-card.popular {
    border: 2px solid var(--accent-color);
}

.badge {
    background: var(--accent-color);
    color: white;
    padding: 5px 20px;
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    width: 120px;
    font-weight: bold;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.tech-specs ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tech-specs ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.tech-specs ul li::before {
    content: "✔";
    color: var(--accent-color);
    margin-right: 10px;
    font-weight: bold;
}

/* --- Navbar Actions (Cart & Login) --- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    font-size: 1.5rem;
    position: relative;
    text-decoration: none;
    color: #0f172a;
    transition: transform 0.3s ease;
}

.cart-btn:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e60000;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
}


/* =========================================
   VIP MEMBERSHIP BANNER STYLES
   ========================================= */
.membership-banner {
    padding: 40px 5%;
    background-color: #f8fafc; /* Light background to make banner pop */
}

.membership-container {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); /* Dark Blue Gradient */
    border-radius: 15px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

/* Subtle Red Glow Effect in Background */
.membership-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(230,0,0,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.membership-content {
    flex: 1;
    padding-right: 40px;
    position: relative;
    z-index: 1;
}

.discount-badge {
    background: #e60000;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.membership-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.membership-content p {
    color: #cbd5e1;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.pricing-info {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 5px;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.2rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.new-price span {
    font-size: 1rem;
    font-weight: normal;
    color: #cbd5e1;
}

.offer-text {
    color: #e60000 !important;
    font-weight: 600;
    font-size: 1.1rem !important;
    margin-bottom: 0;
}

.membership-action {
    text-align: center;
    position: relative;
    z-index: 1;
    min-width: 250px;
}

.btn-join {
    display: inline-block;
    background: #e60000;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
    width: 100%;
}

.btn-join:hover {
    background: #cc0000;
    transform: translateY(-3px);
}

.guarantee {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .membership-container {
        flex-direction: column;
        text-align: center;
        padding: 35px 20px;
    }
    .membership-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .pricing-info {
        justify-content: center;
    }
    .membership-action {
        width: 100%;
    }
}

/* =========================================
   MOBILE RESPONSIVE FIXES
   ========================================= */
@media (max-width: 768px) {
    /* Top Bar alignment for Mobile */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 15px;
        padding-right: 15px;
    }
    
    /* Ensure Cart and Profile are always visible */
    .nav-actions {
        display: flex !important;
    }

    /* Menu Links formatting for Mobile Dropdown */
    .nav-links {
        position: absolute;
        top: 75px; /* Navbar height */
        left: 0;
        width: 100%;
        background-color: #1a233a;
        flex-direction: column;
        display: none; /* Hidden by default */
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding-bottom: 20px;
    }

    .nav-links.active {
        display: flex; /* Show when hamburger is clicked */
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }

    .nav-links a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid #2a375a;
    }

    /* Keep the logo size manageable on mobile */
    .logo-container {
        padding: 0 15px;
        border-radius: 0 25px 25px 0;
    }
    .brand-logo, .logo-link img {
        height: 35px !important;
    }
}
/* --- Mobile vs Desktop Visibility --- */
/* Default (Desktop) */
.mobile-only {
    display: none !important;
}
.desktop-only {
    display: flex;
}

/* Mobile View (Max width 768px) */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important; /* Header top se hide ho jayega */
    }
    .mobile-only {
        display: block !important; /* Menu ke andar show hoga */
    }
}
/* Mobile Responsive for Nav Actions */
@media (max-width: 768px) {
    .nav-actions {
        display: none; /* Hide from main bar on mobile */
    }
    .nav-links.active {
        padding-bottom: 20px;
    }
    /* Move to bottom of mobile menu */
    .nav-links::after {
        content: '';
        display: block;
        margin-top: 20px;
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        color: var(--primary-color);
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        gap: 0;
        border-top: 1px solid #e2e8f0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .nav-links.active {
        max-height: 1000px; /* Adjust based on content */
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding-bottom: 100px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: #f1f5f9;
        display: none; /* JS will toggle this on mobile */
    }
    
    .nav-links li:hover .dropdown-menu {
        display: none; /* Disable hover on mobile */
    }

    .nav-links li.active-dropdown .dropdown-menu {
        display: block; /* Enable click on mobile */
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}


/* Membership Form Grid for Desktop & Mobile */
.form-grid input {
    background: #1e293b;
    color: white;
    border: 1px solid #334155 !important;
}
.form-grid input:focus {
    outline: none;
    border-color: #e60000 !important;
}
@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr !important; /* Mobile me ek ke neeche ek aayega */
    }
}


/* =========================================
   PAYMENT CHECKOUT UI STYLES
   ========================================= */
/* =========================================
   PAYMENT CHECKOUT UI STYLES
   ========================================= */
.stripe-btn {
    width: 100%;
    background: #635BFF; /* Stripe's official purple-blue color */
    color: white;
    border: none;
    padding: 14px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px; /* Matches PayPal's default border-radius */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.stripe-btn:hover {
    background: #5449e6; /* Darker hover effect */
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.stripe-btn:active {
    transform: translateY(1px);
}

/* 🌟 INDIA HERO SECTION CSS 🌟 */
.hero-india {
    /* Background me dark blue overlay aur peeche image */
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('images/hero-bg.jpg') center/cover no-repeat;
    padding: 120px 5%;
    text-align: center;
    color: white;
    position: relative;
}

.hero-india h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

/* 'Grow' word ko red karne ke liye */
.hero-india h1 span {
    color: #e60000; 
}

.hero-india p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Buttons ka layout */
.hero-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary Button (Red) */
.hero-btn-primary {
    background: #e60000;
    color: white;
    padding: 12px 35px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
    border: 2px solid #e60000;
}

.hero-btn-primary:hover {
    background: #cc0000;
    border-color: #cc0000;
    transform: translateY(-3px);
}

/* Secondary Button (Transparent with White Border) */
.hero-btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 35px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
    border: 2px solid white;
}

.hero-btn-secondary:hover {
    background: white;
    color: #0f172a;
    transform: translateY(-3px);
}

/* 📱 Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-india { padding: 80px 5%; }
    .hero-india h1 { font-size: 2.5rem; }
    .hero-india p { font-size: 1rem; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; text-align: center; }
}

/* 🌟 PRIVACY POLICY SPECIFIC CSS 🌟 */
.page-header { background: #0f172a; padding: 60px 5%;  margin: 60px ;text-align: center; color: white; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px ; font-family: 'Segoe UI', sans-serif; }
.page-header p { color: #cbd5e1; font-size: 1.1rem; }

.legal-content { max-width: 900px; margin: 50px auto; padding: 0 20px; background: white; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.03); border: 1px solid #e2e8f0; padding: 40px; font-family: 'Segoe UI', sans-serif; line-height: 1.6; }
.legal-content h2 { color: #0f172a; font-size: 1.5rem; margin-top: 40px; margin-bottom: 15px; padding-bottom: 8px; border-bottom: 2px solid #f1f5f9; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { color: #0f172a; font-size: 1.2rem; margin-top: 25px; margin-bottom: 10px; }
.legal-content p { color: #475569; margin-bottom: 15px; font-size: 1.05rem; }
.legal-content ul { margin-bottom: 20px; padding-left: 20px; color: #475569; font-size: 1.05rem; }
.legal-content li { margin-bottom: 8px; }

.contact-box { background: #f8fafc; padding: 25px; border-radius: 8px; border-left: 4px solid #e60000; margin-top: 20px; }
.contact-box p { margin-bottom: 5px; color: #0f172a; font-weight: 500; }
.contact-box a { color: #e60000; text-decoration: none; }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .legal-content { padding: 20px; margin: 30px 15px; }
    .page-header h1 { font-size: 2rem; }
}

/* ==========================================
/* ==========================================
   📱 100% WORKING MOBILE BOTTOM NAVIGATION 
   ========================================== */
@media (max-width: 768px) {
    body {
        padding-bottom: 120px !important;
    }

    /* Seedha ID ko pakda, koi :has() nahi */
    #mobile-bottom-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: white !important;
        padding: 12px 20px !important;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1) !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        z-index: 9999 !important;
        margin: 0 !important;
        border-top: 1px solid #e2e8f0 !important;
    }

    /* Cart Icon Design */
    #mobile-bottom-bar a[href="cart.html"] {
        font-size: 1.5rem !important;
        background: #f8fafc !important;
        padding: 8px 25px !important;
        border-radius: 8px !important;
        border: 1px solid #e2e8f0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Login Button Design */
    #mobile-bottom-bar .btn-login {
        flex-grow: 1 !important;
        text-align: center !important;
        padding: 12px !important;
        margin-left: 15px !important;
        font-size: 1.1rem !important;
        border-radius: 8px !important;
    }
}


/* ==========================================
   🌍 COUNTRY DROPDOWN CSS
   ========================================== */
/* Dropdown Main Container */
.country-dropdown {
    position: relative;
    display: inline-block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-left: auto; /* Right align karne ke liye */
    margin-right: 02px;
}

/* Main Button Design */
.dropdown-btn {
    background: #1e293b; 
    color: white;
    padding: 8px 15px;
    font-size: 0.95rem;
    border: 1px solid #334155;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.dropdown-btn:hover {
    background: #334155;
    border-color: #cbd5e1;
}

/* Hidden Menu Box */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0; /* Menu left ki taraf khulega taaki screen se bahar na jaye */
    background-color: #0f172a;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    border: 1px solid #1e293b;
    border-radius: 8px;
    z-index: 1000;
    margin-top: 5px;
    overflow: hidden;
}

/* Links inside Menu */
.dropdown-content a {
    color: #cbd5e1;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: 0.2s;
}
.dropdown-content a:hover {
    background-color: #1e293b;
    color: white;
}

/* Highlight the current active page */
.dropdown-content a.active {
    border-left: 3px solid #e60000; /* Oivas Tech Red */
    background-color: rgba(230, 0, 0, 0.1);
    color: white;
    font-weight: bold;
}

/* CSS class to show dropdown via JS */
.show-dropdown {
    display: block;
}



/* 🌟 NEW: Custom Flag Image Style 🌟 */
.custom-flag {
    width: 24px;         /* Flag ki width set kari hai */
    height: 16px;        /* Flag ki height set kari hai */
    object-fit: cover;   /* Image stretch nahi hogi, ekdum perfect fit aayegi */
    border-radius: 2px;  /* Kinare halke se smooth karne ke liye */
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2); /* Flag ke peeche halka sa shadow jisse wo ubhar kar aaye */
}


/* ==========================================
   🌐 DOMAIN MODAL CSS
   ========================================== */
.modal-overlay {
    display: none; /* Default hidden */
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(5px);
    z-index: 999999; align-items: center; justify-content: center;
}

.modal-content {
    background: white; width: 90%; max-width: 650px;
    border-radius: 12px; padding: 25px; position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #f1f5f9; padding-bottom: 15px; margin-bottom: 20px; }
.modal-header h2 { color: #0f172a; font-size: 1.5rem; margin: 0; }
.close-btn { font-size: 2rem; color: #64748b; cursor: pointer; line-height: 1; }
.close-btn:hover { color: #e60000; }

/* View Switching */
.view-section { display: none; }
.active-view { display: block; }

/* Category Cards */
.category-cards { display: flex; gap: 20px; }
.domain-cat-card {
    flex: 1; padding: 30px 20px; text-align: center; border-radius: 10px; cursor: pointer; transition: 0.3s; border: 2px solid transparent;
}
.gold-card { background: #fffbeb; border-color: #fde68a; }
.gold-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2); border-color: #fbbf24; }
.diamond-card { background: #f0f9ff; border-color: #bae6fd; }
.diamond-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2); border-color: #38bdf8; }

.cat-icon { font-size: 3rem; margin-bottom: 10px; }
.domain-cat-card h3 { color: #0f172a; margin-bottom: 5px; }
.domain-cat-card p { color: #64748b; font-size: 0.9rem; margin-bottom: 15px; }
.price-range { background: white; padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: bold; color: #0f172a; }

/* Domain List Items */
.back-btn { background: none; border: none; color: #64748b; cursor: pointer; font-size: 1rem; margin-bottom: 15px; padding: 0; font-weight: bold; }
.back-btn:hover { color: #e60000; }

.domain-item { display: flex; justify-content: space-between; align-items: center; padding: 15px; border: 1px solid #e2e8f0; border-radius: 8px; margin-bottom: 10px; background: #f8fafc; }
.domain-name { font-size: 1.1rem; font-weight: bold; color: #0f172a; }
.domain-price { color: #10b981; font-weight: bold; font-size: 1.1rem; margin-right: 15px; }
.domain-actions { display: flex; gap: 10px; }
.domain-actions button { padding: 8px 12px; border-radius: 6px; cursor: pointer; font-weight: bold; border: none; transition: 0.2s; }
.btn-cart-sm { background: transparent; border: 1px solid #e60000 !important; color: #e60000; }
.btn-cart-sm:hover { background: #e60000; color: white; }
.btn-buy-sm { background: #e60000; color: white; }
.btn-buy-sm:hover { background: #cc0000; }

@media (max-width: 600px) {
    .category-cards { flex-direction: column; }
    .domain-item { flex-direction: column; align-items: flex-start; gap: 10px; }
    .domain-actions { width: 100%; display: flex; }
    .domain-actions button { flex: 1; }
}


/* 📱 SIRF MOBILE KE LIYE WALLET ANIMATION */
@media (max-width: 768px) {
    .wallet-anim {
        /* 2 seconds ka smooth animation jo lagatar chalta rahega */
        animation: moveLeftRight 2s infinite ease-in-out;
    }
}

/* 🏃‍♂️ Left se Right move hone ka logic */
@keyframes moveLeftRight {
    0%   { transform: translateX(0px); }
    25%  { transform: translateX(-3px); } /* Thoda Left gaya */
    50%  { transform: translateX(0px); }  /* Wapas center */
    75%  { transform: translateX(3px); }  /* Thoda Right gaya */
    100% { transform: translateX(0px); }  /* Wapas center */
}

/* 📱 MOBILE WALLET ANIMATION & SIZE INCREASE */
@media (max-width: 768px) {
    .wallet-anim {
        /* Your existing animation */
        animation: moveLeftRight 2s infinite ease-in-out;
        
        /* New lines to make it bigger (change 38px to whatever looks best) */
        width: 38px !important;
        height: 38px !important;
    }
}



        /* =======================================
           💳 MEMBERSHIP PLANS (BLACK & GOLD THEME)
           ======================================= */
        .membership-section {
            padding: 80px 20px;
            background: #f8fafc;
            text-align: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .membership-header h2 {
            font-size: 2.5rem;
            color: #0f172a;
            margin: 0 0 10px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .membership-header p {
            color: #64748b;
            font-size: 1.1rem;
            margin: 0;
        }

        .membership-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            max-width: 900px;
            margin: 40px auto 0;
            flex-wrap: wrap;
        }

        /* 💳 Credit Card Size */
        .credit-card {
            width: 340px;
            height: 215px; 
            border-radius: 16px;
            padding: 25px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            text-align: left;
        }
        .credit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 45px rgba(0,0,0,0.15);
        }

        /* ⚫ BASIC CARD (BLACK THEME) */
        .card-basic {
            background: linear-gradient(135deg, #1e293b 0%, #000000 100%);
            border: 1px solid #334155;
            color: #ffffff;
        }
        .card-basic .card-chip {
            background: linear-gradient(135deg, #94a3b8, #cbd5e1); /* Silver Chip */
        }
        .card-basic .card-discount { background: #e60000; color: white; }
        .card-basic .old-price { color: #94a3b8; }
        .card-basic .price-duration { color: #cbd5e1; }
        .card-basic .btn-claim {
            background: #ffffff;
            color: #000000;
        }
        .card-basic .btn-claim:hover { background: #f1f5f9; }

        /* 🟡 PREMIUM CARD (GOLD THEME) */
        .card-premium {
            background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
            border: 1px solid #d97706;
            color: #451a03; /* Dark brown/black text for gold contrast */
            transform: scale(1.05); 
        }
        .card-premium:hover {
            transform: scale(1.05) translateY(-10px);
        }
        .card-premium .card-chip {
            background: linear-gradient(135deg, #fef3c7, #fde68a); /* Light Gold Chip */
        }
        .card-premium .card-discount { background: #451a03; color: #fbbf24; } /* Dark badge on gold */
        .card-premium .old-price { color: #78350f; opacity: 0.8; }
        .card-premium .price-duration { color: #78350f; font-weight: 500; }
        .card-premium .btn-claim {
            background: #451a03;
            color: #ffffff;
        }
        .card-premium .btn-claim:hover { background: #290f02; box-shadow: 0 5px 15px rgba(69, 26, 3, 0.4); }

        /* Common Card Elements */
        .card-chip {
            width: 40px;
            height: 28px;
            border-radius: 6px;
            margin-bottom: 5px;
        }
        .card-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        .card-title {
            font-size: 1.1rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
            opacity: 0.9;
        }
        .card-discount {
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
        }
        .card-price-box { margin-top: 5px; }
        .old-price {
            text-decoration: line-through;
            font-size: 1rem;
            margin-right: 8px;
        }
        .new-price {
            font-size: 2.2rem;
            font-weight: bold;
            margin: 0;
        }
        .price-duration { font-size: 0.9rem; }
        
        .btn-claim {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: none;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        @media (max-width: 768px) {
            .card-premium { transform: scale(1); }
            .card-premium:hover { transform: translateY(-5px); }
            .membership-grid { gap: 20px; }
        }
   

   


        /* === HERO SECTION === */
.page-header {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px; /* Aapke navbar ke hisaab se adjust kar lena */
}
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}
.hero-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
}

/* === SUPPORT CARDS GRID === */
.support-section {
    padding: 80px 20px;
    background-color: #f8fafc;
    font-family: 'Poppins', sans-serif;
}
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.support-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-top: 4px solid #e60000; /* Oivas Tech Red */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.support-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.support-card h3 {
    color: #0f172a; /* Oivas Tech Dark Blue */
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}
.support-detail {
    margin-bottom: 15px;
}
.support-detail span {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.support-detail a, .support-detail p {
    color: #e60000; /* Red Links */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.3s;
    margin: 0;
}
.support-detail a:hover {
    color: #0f172a;
}


/* this is header css  */ 

/* ==========================================
   🚀 HEADER GLOBALS & MOBILE RESPONSIVE
   ========================================== */
.nav-right-wrapper {
    display: flex;
    align-items: center;
    gap: 35px; 
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px !important; 
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: nowrap !important;
        padding: 10px 2% !important; 
    }
    .nav-right-wrapper {
        gap: 15px !important; 
        flex-wrap: nowrap !important;
        justify-content: flex-end;
    }
    .nav-actions {
        gap: 15px !important;
        flex-wrap: nowrap !important;
    }
    .login-btn {
        white-space: nowrap !important;
        padding: 6px 12px !important;
        font-size: 0.85rem !important;
    }
}