/* =========================================
   FULL WHMCS CUSTOM THEME CSS (Final Version)
   ========================================= */

/* 1. GLOBAL FONTS & BASICS */
body {
    font-family: 'Manrope', sans-serif !important;
}
a, a:hover, a:focus {
    text-decoration: none !important;
}

/* =========================================
   2. TOP NOTIFICATION BAR (Black Strip)
   ========================================= */
.top-notification-bar {
    background-color: #080808;
    color: #ffffff;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 100;
}
.btn-deal {
    background-color: #064e3b;
    color: #34d399;
    border: 1px solid #065f46;
    border-radius: 4px;
    padding: 2px 12px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: 0.3s;
    margin-left: 10px;
}
.btn-deal:hover {
    background-color: #10b981;
    color: #fff;
}

/* =========================================
   3. MAIN HEADER (White & Sticky)
   ========================================= */
.white-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #f3f4f6;
    box-shadow: none;
    position: relative;
    z-index: 90;
    height: 80px;
    display: flex;
    align-items: center;
}

/* Logo Styling */
.logo-text-gradient {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Desktop Actions (Help & Client Area) */
.help-link {
    color: #4b5563 !important;
    font-weight: 600;
}
.btn-client-area {
    background-color: #10b981;
    color: #ffffff !important;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
    transition: 0.3s;
}
.btn-client-area:hover {
    background-color: #059669;
    transform: translateY(-1px);
}

/* Grid Menu Button (Green 4-Squares) */
.custom-grid-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none !important;
    margin-left: 15px;
}
.custom-grid-btn svg rect {
    stroke: #10b981;
    transition: 0.3s;
}
.custom-grid-btn:hover svg rect {
    stroke: #059669;
}


/* =========================================
   4. MENU OVERLAY CONTAINER (Logic)
   ========================================= */

/* Base Styles (Hidden by default) */
.mobile-overlay-container {
    background: #ffffff !important;
    z-index: 2147483647 !important; /* Always on top */
    padding: 30px;
    display: block !important;
    overflow-y: auto;
    
    /* Animation Setup */
    transform: translateX(100%); /* Screen se bahar */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

/* Open State (Visible) */
.mobile-overlay-container.show {
    transform: translateX(0) !important;
}

/* MOBILE POSITION (< 1199px) -> Full Screen */
@media (max-width: 1199px) {
    .mobile-overlay-container {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }
    /* Animation Fix for Bootstrap */
    .mobile-overlay-container.collapsing {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: #fff; z-index: 99999;
        transform: translateX(100%); transition: transform 0.3s ease;
    }
}

/* DESKTOP POSITION (> 1200px) -> Right Side Drawer */
@media (min-width: 1200px) {
    .mobile-overlay-container {
        position: fixed !important;
        top: 0;
        right: 0; /* Right side se chipka hua */
        left: auto; /* Left position remove */
        width: 450px; /* Fixed width drawer */
        height: 100vh;
        border-left: 1px solid #f0f0f0;
    }
    /* Animation Fix for Bootstrap */
    .mobile-overlay-container.collapsing {
        position: fixed; top: 0; right: 0; width: 450px; height: 100vh;
        background: #fff; z-index: 99999;
        transform: translateX(100%); transition: transform 0.3s ease;
    }
}


/* =========================================
   5. MENU INTERNAL DESIGN (Consistent)
   ========================================= */

/* Header inside Menu (Logo + Cross) */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* THE CROSS ICON (Square Box Fix) */
.btn-close-menu {
    background: transparent;
    border: 2px solid #f3f4f6; /* Grey Border */
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #10b981; /* Green Icon */
    cursor: pointer;
    transition: 0.2s;
}
.btn-close-menu:hover {
    background: #f0fdf4;
    border-color: #10b981;
}

/* Search Bar (Grey Rounded) */
.menu-search-wrapper {
    background: #f3f4f6;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.menu-search-wrapper input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    color: #555;
    height: 30px;
    font-size: 0.95rem;
}
.search-icon { color: #9ca3af; }

/* Custom Menu List Container */
.custom-manual-nav { width: 100%; }
.list-unstyled { padding: 0; margin: 0; }

/* Menu Item Wrapper */
.manual-nav-item {
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    list-style: none;
}

/* Main Link Style (Text Left, Plus Right) */
.manual-nav-link {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 18px 5px !important;
    
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1f2937 !important; /* Dark Text */
    text-decoration: none !important;
    transition: 0.2s;
}
.manual-nav-link:hover {
    color: #000 !important;
}

/* The Plus (+) Box */
.custom-plus-box {
    width: 36px;
    height: 36px;
    background-color: #f3f4f6; /* Grey Box */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 20px;
    font-weight: 400;
    font-family: sans-serif;
    transition: 0.2s;
}
.manual-nav-link[aria-expanded="true"] .custom-plus-box {
    background-color: #10b981;
    color: #fff;
    transform: rotate(45deg); /* Optional: Rotate to X */
}

/* Submenu Styling */
.manual-submenu {
    background: #fafafa;
    padding: 0 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.manual-submenu a {
    display: block;
    padding: 12px 0;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px dashed #eee;
}
.manual-submenu a:last-child { border-bottom: none; }
.manual-submenu a:hover {
    color: #10b981;
    padding-left: 5px;
    transition: 0.2s;
}

/* Social Icons (Square Boxes) */
.menu-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
}
.menu-social a {
    width: 45px;
    height: 45px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}
.menu-social a:hover {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}





 /* =========================================
   PREMIUM HOSTING CARD DESIGN
   ========================================= */

/* 1. Main Container */
.pricing-container {
    padding: 50px 15px;
    background-color: #f9fafb;
    font-family: 'Manrope', sans-serif;
}

/* 2. Titles */
.pricing-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}
.pricing-subtitle { font-size: 1rem; color: #6b7280; margin-bottom: 40px; }

/* 3. THE CARD (Premium Look) */
.pricing-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    /* Top Green Border Strip */
    border-top: 5px solid #10b981; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft deep shadow */
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Hover Effect */
.pricing-card:hover {
    transform: translateY(-10px); /* Upar uthega */
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15); /* Green Glow Shadow */
}

/* 4. Card Content Padding */
.card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 5. Product Name */
.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
    text-align: center;
}
.text-muted { font-size: 0.9rem; margin-bottom: 15px; }

/* 6. Price Section (Green & Big) */
.price-section {
    margin: 15px 0 25px 0;
    text-align: center;
    color: #10b981; /* Green Text */
}
.price {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}
.cycle {
    font-size: 0.95rem;
    color: #6b7280; /* Grey text for /mo */
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

/* 7. Order Button (Gradient Pill) */
.btn-order {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 50px; /* Pill Shape */
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
    transition: 0.3s;
    margin-bottom: 25px;
}
.btn-green {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%); /* Green Gradient */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    border: none;
}
.btn-green:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    transform: scale(1.02);
    color: #fff;
}

/* 8. Features List (Styled Area) */
.features-list {
    width: 100%;
    border-top: 1px dashed #e5e7eb; /* Dashed separator line */
    padding-top: 20px;
    margin-top: auto; /* Push to bottom */
}

/* Features Text Style */
.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Green Check Icon */
.features-list li::before {
    content: "\f00c"; /* FontAwesome Check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 5px;
    top: 3px;
    color: #10b981;
    font-size: 0.9rem;
    background: rgba(16, 185, 129, 0.1); /* Halka Green Circle */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* 9. Popular Badge (Top Right Corner) */
.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fef3c7;
    color: #d97706;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}





/* =========================================
   PREMIUM HOMEPAGE DESIGN (2.0)
   ========================================= */

/* 1. HERO SECTION (Pattern & Gradient) */
.hero-section {
    padding: 100px 0 80px 0;
    background-color: #ffffff;
    /* Dotted Pattern Background */
    background-image: radial-gradient(#e5e7eb 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    position: relative;
    overflow: hidden;
}
/* Fading out pattern at bottom */
.hero-bg-pattern {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100px;
    background: linear-gradient(to top, #fff, transparent);
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem; font-weight: 800; color: #111827;
    margin-bottom: 20px; line-height: 1.1; letter-spacing: -1px;
}
/* Gradient Text Effect */
.text-gradient {
    background: linear-gradient(90deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem; color: #4b5563; max-width: 650px; margin: 0 auto 40px auto;
}

.badge-pill-soft {
    background: #ecfdf5; color: #059669; padding: 8px 20px;
    border-radius: 50px; font-weight: 700; font-size: 0.85rem;
    display: inline-block; margin-bottom: 25px;
    border: 1px solid #d1fae5;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.1);
}

/* Floating Search Bar */
.domain-search-wrapper { max-width: 750px; margin: 0 auto; position: relative; z-index: 5; }
.search-box-inner {
    display: flex; align-items: center;
    background: #ffffff; 
    border: 1px solid #e5e7eb;
    border-radius: 60px; padding: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Deep Shadow */
    transition: 0.3s;
}
.search-box-inner:focus-within {
    border-color: #10b981; transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15);
}
.icon-part {
    width: 40px; text-align: center; color: #9ca3af; font-size: 1.1rem; padding-left: 10px;
}
.search-box-inner input {
    border: none; background: transparent; width: 100%;
    padding: 10px; font-size: 1.1rem; color: #111; outline: none;
}
.btn-green-hero {
    background: #10b981; color: #fff; border-radius: 50px;
    padding: 12px 35px; font-weight: 700; border: none; transition: 0.3s;
    font-size: 1rem;
}
.btn-green-hero:hover {
    background: #059669; box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.hero-features { font-size: 0.95rem; font-weight: 600; color: #4b5563; }
.hero-features span { margin: 0 15px; display: inline-block; }


/* 2. PREMIUM FEATURES BOXES */
.premium-feature-box {
    background: #fff; padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f3f4f6;
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.premium-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #10b981;
}
/* Icon styling */
.f-icon-box {
    width: 70px; height: 70px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 25px;
    transition: 0.3s;
}
.icon-rocket { background: #ecfdf5; color: #10b981; }
.icon-shield { background: #eff6ff; color: #3b82f6; }
.icon-support { background: #fff7ed; color: #f97316; }

.premium-feature-box:hover .f-icon-box { transform: scale(1.1); }

.premium-feature-box h3 { font-size: 1.3rem; font-weight: 800; color: #111; margin-bottom: 10px; }
.premium-feature-box p { color: #666; line-height: 1.6; }


/* 3. MODERN STATS SECTION */
.stats-section {
    background-color: #0f172a; /* Rich Black/Blue */
    padding: 70px 0; color: #fff;
    border-top: 1px solid #1e293b;
}
.stat-number {
    font-size: 3rem; font-weight: 800;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}
.stat-label {
    color: #10b981; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; font-size: 0.85rem;
}
/* Separator lines on desktop */
@media (min-width: 768px) {
    .border-right-dark { border-right: 1px solid rgba(255,255,255,0.1); }
}


/* 4. CTA SECTION (Green Glow) */
.cta-section {
    padding: 80px 0;
    background: #10b981; /* Green Background */
    position: relative;
    overflow: hidden;
}
.cta-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent);
}
.cta-section h2 { font-weight: 800; font-size: 2.5rem; }
.btn-light { color: #10b981 !important; } /* Green Text on Button */


/* Mobile Fixes */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .search-box-inner { flex-direction: column; border-radius: 20px; padding: 10px; }
    .search-box-inner input { text-align: center; padding: 10px; }
    .icon-part { display: none; }
    .btn-green-hero { width: 100%; margin-top: 10px; }
    .hero-features { display: flex; flex-direction: column; gap: 10px; }
    .border-right-dark { border-right: none; }
}




/* =========================================
   2. PRICING SECTION (NEW MODERN STYLE)
   ========================================= */

.pricing-section {
    padding: 100px 0;
    background-color: #f8fafc; /* Very light blue-grey bg */
}

.section-heading {
    font-weight: 800;
    font-size: 2.5rem;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.section-sub-heading {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 60px;
}

/* --- Card Base Structure --- */
.home-pricing-card {
    background: #ffffff;
    border: 1px solid transparent; /* Hidden border initially */
    border-radius: 24px; /* More rounded corners */
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08); /* Soft shadow */
    height: 100%;
}

.home-pricing-card .card-body {
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* --- Hover Effects (The Magic) --- */
.home-pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25); /* Green Glow Shadow */
    border-color: #10b981; /* Green Border appears */
}

/* --- Plan Name & Description --- */
.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.plan-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 500;
    min-height: 24px; /* Alignment fix */
}

/* --- Price Styling --- */
.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    line-height: 0.9;
}

.plan-price .currency {
    font-size: 1.8rem;
    margin-right: 4px;
    margin-top: 5px;
    color: #10b981; /* Green Currency Symbol */
}

.plan-price .cycle {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 600;
    align-self: flex-end;
    margin-bottom: 5px;
    margin-left: 5px;
}

/* --- Buttons --- */
.btn-outline-green, .btn-green-fill {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
    transition: 0.3s;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

/* Normal Button */
.btn-outline-green {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.home-pricing-card:hover .btn-outline-green {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}

/* Premium Button */
.btn-green-fill {
    background: #10b981;
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
    border: 1px solid #10b981;
}

.btn-green-fill:hover {
    background: #059669;
    transform: scale(1.02);
}

/* --- Features List --- */
.plan-features {
    border-top: 2px dashed #f1f5f9;
    padding-top: 30px;
    margin-top: auto; /* Pushes list to bottom */
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 10px 0;
    color: #475569;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.plan-features li strong {
    color: #0f172a;
    font-weight: 700;
    margin-right: 4px;
}

/* Green Check Icon */
.plan-features li::before {
    content: "\f00c"; /* FontAwesome Check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #10b981;
    background: #d1fae5;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    margin-right: 12px;
}

/* --- SPECIAL: Most Popular Card --- */
.home-pricing-card.popular-card {
    border: 2px solid #10b981;
    transform: scale(1.05); /* Slightly bigger */
    z-index: 5;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.2);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #10b981;
    color: #fff;
    text-align: center;
    padding: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Adjustment for content inside popular card because of tag */
.home-pricing-card.popular-card .card-body {
    padding-top: 60px; 
}

/* Mobile Fix */
@media (max-width: 991px) {
    .home-pricing-card.popular-card {
        transform: scale(1);
        margin: 20px 0;
    }
}







/* =========================================
   CLEAN LIGHT FOOTER DESIGN
   ========================================= */

/* Main Container */
.light-footer {
    background-color: #f8fafc; /* Very Light Grey */
    color: #475569; /* Dark Grey Text */
    padding: 80px 0 30px 0;
    font-family: 'Manrope', sans-serif;
    border-top: 4px solid #10b981; /* Green Top Line */
}

/* Brand */
.footer-logo {
    max-height: 40px;
    margin-bottom: 20px;
}
.footer-logo-text { color: #1e293b; }

/* Social Icons (Simple) */
.social-icons-simple a {
    color: #94a3b8;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s;
}
.social-icons-simple a:hover {
    color: #10b981; /* Green Hover */
    transform: translateY(-2px);
    display: inline-block;
}

/* Headings */
.footer-heading {
    color: #1e293b; /* Almost Black */
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Links */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s;
}
.footer-nav a:hover {
    color: #10b981;
    padding-left: 3px;
}

/* Subscribe Form (Minimal) */
.simple-subscribe {
    display: flex;
    position: relative;
}
.simple-subscribe input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    outline: none;
    transition: 0.3s;
}
.simple-subscribe input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.simple-subscribe button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 35px;
    height: 35px;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.simple-subscribe button:hover {
    background: #059669;
}

/* Copyright Bar */
.footer-copyright {
    border-top-color: #e2e8f0 !important;
}
.text-sm { font-size: 0.85rem; }





/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366; /* WhatsApp Green */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    
    /* Animation */
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e; /* Darker Green on Hover */
    color: #fff;
    transform: scale(1.1); /* Thoda bada hoga */
    text-decoration: none;
}

.whatsapp-float i {
    margin-top: 2px; /* Icon alignment fix */
}

/* Pulse Animation Keyframes */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Adjustment (Thoda chhota taaki screen na bhare) */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    
    
    
    
    /* =========================================
   DOMAIN REGISTRATION PAGE STYLING
   ========================================= */

/* Hero Section */
.domain-hero-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}
.domain-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}
.domain-hero-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 40px;
}

/* Search Box (Centered & Styled) */
.domain-search-box-large {
    max-width: 750px;
    margin: 0 auto;
}
.search-inner-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.search-inner-box:focus-within {
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}
.search-inner-box input {
    border: none;
    background: transparent;
    width: 100%;
    padding: 10px 15px 10px 45px;
    font-size: 1.1rem;
    color: #333;
    outline: none;
    box-shadow: none !important;
}
.search-inner-box .search-icon {
    position: absolute;
    left: 25px;
    color: #9ca3af;
}

/* TLD Pills */
.tld-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.tld-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 8px 20px;
    border-radius: 30px;
    color: #4b5563;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.tld-item strong {
    color: #10b981;
    font-weight: 800;
    margin-right: 5px;
}

/* Pricing Table */
.domain-pricing-section {
    padding: 60px 0;
    background: #fff;
}
.pricing-card-wrapper {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.custom-domain-table th {
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding-bottom: 20px;
}
.custom-domain-table td {
    vertical-align: middle;
    padding: 20px 10px;
    border-bottom: 1px solid #f9fafb;
    color: #1f2937;
    font-weight: 500;
}
.tld-badge {
    background: #ecfdf5;
    color: #10b981;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.9rem;
}

/* Features */
.domain-features-section {
    padding: 80px 0;
    background: #f9fafb;
}
.d-feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}
.d-feature-box:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.d-feature-box h4 {
    font-weight: 700;
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .domain-hero-title { font-size: 2.2rem; }
    .search-inner-box { flex-direction: column; border-radius: 20px; padding: 10px; }
    .search-inner-box input { text-align: center; padding: 10px; }
    .search-inner-box .search-icon { display: none; }
    .btn-green-hero { width: 100%; margin-top: 10px; }
    .pricing-card-wrapper { padding: 20px; }
}
}



/* =========================================
   DOMAIN CHECKER PREMIUM DESIGN
   ========================================= */

/* 1. Header */
.domain-header h1 {
    font-size: 2.2rem;
    color: #111827;
    margin-bottom: 10px;
}

/* 2. Option Cards (Grid) */
.domain-selection-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.domain-option-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    width: 140px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

/* Hide default radio */
.domain-option-card input { display: none; }

.domain-option-card .card-icon {
    font-size: 1.8rem;
    color: #9ca3af;
    margin-bottom: 8px;
    transition: 0.3s;
}
.domain-option-card .card-text {
    font-weight: 600;
    color: #4b5563;
    font-size: 0.9rem;
}

/* Active/Hover State */
.domain-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #10b981;
}
.domain-option-card.active {
    background: #f0fdf4; /* Light Green */
    border: 2px solid #10b981;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
}
.domain-option-card.active .card-icon { color: #10b981; transform: scale(1.1); }
.domain-option-card.active .card-text { color: #064e3b; font-weight: 700; }


/* 3. Big Input Group (Pill Shape) */
.big-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    max-width: 750px;
    margin: 0 auto;
}
.big-input-group:focus-within {
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

/* Inputs */
.big-input {
    border: none !important;
    background: transparent !important;
    height: 50px !important;
    padding-left: 25px !important;
    font-size: 1.1rem !important;
    color: #333 !important;
    box-shadow: none !important;
    flex: 2;
}
.big-select {
    border: none !important;
    background: #f9fafb !important;
    height: 50px !important;
    border-radius: 30px !important;
    margin: 0 5px !important;
    font-weight: 700 !important;
    color: #374151 !important;
    width: auto !important;
    box-shadow: none !important;
    cursor: pointer;
}

/* Check Button */
.btn-green-check {
    background: #10b981;
    color: #fff;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    transition: 0.3s;
}
.btn-green-check:hover {
    background: #059669;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* 4. Results Styling */
.alert-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;
    border-radius: 12px;
}
.alert-danger {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
    border-radius: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .big-input-group {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
    }
    .big-input {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee !important;
        margin-bottom: 10px;
    }
    .big-select {
        width: 100% !important;
        margin-bottom: 10px !important;
        text-align-last: center;
    }
    .btn-green-check {
        width: 100%;
    }
    .domain-selection-grid {
        gap: 10px;
    }
    .domain-option-card {
        width: 45%; /* 2 per row on mobile */
    }
}