/* ==========================================
   VIBECRAFTS – PALETTE & FONTS
   ========================================== */
:root {
    --navy: #0A174E;
    --gold: #D4AF38;
    --water: #4ECDC4;
    --cream: #F5F5F5;
    --charcoal: #2C2C2C;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px 0 rgba(10, 23, 78, 0.25);

    --font-header: "Lato", sans-serif;
    --font-body: "Lato", sans-serif;
}

/* ---------- Base ---------- */
body {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a6c 50%, #0A174E 100%);
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid rgb(154, 154, 154) !important;
}

.input-group .input-group-text {
    border-right: 0 !important;
    border-radius: 8px 0 0 8px !important;
    font-size: 14px;
}

.input-group .form-control {
    border-left: 0 !important;
    border-radius: 0 8px 8px 0 !important;
    font-size: 14px;
}

.input-group:focus-within .input-group-text,
.input-group:focus-within .form-control {
    border: 1px solid gray;
}

a {
    text-decoration: none !important;
    color: inherit;
}

.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* ---------- Navbar ---------- */

.navbar {
    background: rgba(10, 23, 78, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.navbar-brand {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: var(--white) !important;
}

.nav-link {
    font-weight: 500;
    color: #fff !important;
    transition: 0.2s;
}

.nav-link:hover {
    color: var(--water) !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar .dropdown-item:hover {
    background-color: var(--secondary);
    /* theme color */
    color: var(--water) !important;
}

.dropdown-menu {
    color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
    margin-top: 0;
    background-color: #fff;
}

/* Large screen hover effect */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        /* no gap */
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: all 0.3s ease-in-out;
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease-in-out;
    }

    .navbar .dropdown-item {
        transition: all 0.2s ease;
    }
}

/* Smooth border radius + focus style */
.form-control,
.form-select {
    border-radius: 10px;
}

.form-control:focus,
.form-select:focus {
    border-color: #0dcaf0;
    box-shadow: 0 0 0 0.2rem rgba(13, 202, 240, 0.25);
}

/* Browse Plans link inside input */
#amount+label {
    padding-right: 90px;
}

.btn-customClr {
    background-color: var(--secondary);
    color: #fff;
}

.btn-customClr:hover {
    background-color: #537d5d;
    color: #fff;
}

.logo-slider {
    position: relative;
    overflow: hidden;
}

/* Track (moving container) */
.logo-track {
    display: flex;
    justify-content: center;
}

/* Individual Logo Item */
.logo-item {
    width: 190px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.logo-item img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-item img:hover {
    transform: scale(1.1);
}

/* Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 🧠 Only enable horizontal scroll below 768px (mobile devices) */
@media (max-width: 768px) {
    .logo-slider {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        /* smooth scrolling on iOS */
        scrollbar-width: none;
        /* hide scrollbar (Firefox) */
    }

    .logo-slider::-webkit-scrollbar {
        display: none;
        /* hide scrollbar (Chrome/Safari) */
    }

    .logo-track {
        display: flex;
        gap: 15px;
        align-items: center;
        width: max-content;
        /* makes content scrollable horizontally */
    }

    .logo-item {
        flex: 0 0 auto;
        width: 80px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
}

/* ---------- Cart Badge ---------- */
.cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    font-size: 0.6rem;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
    background-color: #8b1e3f;
}

.footer-links a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-links li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-links li i {
    color: #ffc107;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-12px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-links li:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer-links li:hover a {
    color: #fff;
    transform: translateX(3px);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b53232;
    background-color: #fff;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icons a:hover {
    transform: translateY(-4px);
    background-color: #d64545;
    color: #fff;
}

.support-box {
    background: #222;
    color: #fff;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.support-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    background-color: #b34a66;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
}

.payment-icons img {
    height: 28px;
    width: auto;
    background: #fff;
    border-radius: 4px;
    padding: 3px 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.payment-icons img:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bg-surface {
    background: var(--surface);
}

.accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
}

.accordion-collapse {
    border: none !important;
    opacity: 0;
}

.accordion-collapse.show {
    opacity: 1;
}

.accordion-button {
    background: transparent !important;
    color: #333;
    font-weight: bold;
    border: none !important;
    padding: 15px;
}

.accordion-button:not(.collapsed) {
    color: #921a40;
    background: transparent !important;
}

.accordion-item {
    border: none !important;
    border-bottom: 1px solid #ddd !important;
}

.accordion-button::after {
    color: black;
}

.accordion-button:not(.collapsed)::after {
    color: black;
}

.accordion-collapse {
    border: none !important;
    transition: height 0.3s ease;
    /* ✅ smooth slide effect */
}

/* scrollbar css */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Main Content */
.main-content {
    flex-grow: 1;
    padding: 20px;
}

.content-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    font-size: 14px;
}

.content-box h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.content-box .edit-link {
    color: #2874f0;
    font-size: 13px;
    cursor: pointer;
    margin-left: 10px;
}

.content-box label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.content-box input {
    width: 100%;
    border: 1px solid #ddd;
    padding: 8px;
    font-size: 14px;
    border-radius: 2px;
    background: #f5f5f5;
    margin-bottom: 15px;
}

.faq-section {
    font-size: 13px;
    margin-top: 20px;
}

.faq-section h6 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

.faq-section p {
    color: #555;
    margin-bottom: 12px;
}

.footer-banner {
    width: 100%;
    height: 120px;
    background: linear-gradient(to top right, #f7d100, #fff176);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 20px;
    margin-top: 20px;
}

/* Mobile: hide sidebar, show tab-bar */
/* Mobile view */
@media (max-width: 991px) {
    .sidebar {
        display: none !important;
    }

    .tab-bar {
        display: flex !important;
        position: sticky;
        top: 56px;
        /* navbar ke niche */
        z-index: 1000;
        background: #fff;
        border-bottom: 1px solid #ddd;
        overflow-x: auto;
        white-space: nowrap;
        height: 49px;
    }

    .tab-bar .tab-link {
        flex: 0 0 auto;
        font-size: 14px;
        padding: 10px 15px;
        cursor: pointer;
        color: #555;
    }

    .tab-bar .active {
        border-bottom: 2px solid #2874f0;
        color: #2874f0;
        font-weight: 600;
    }

    .main-content {
        margin: 0;
        padding: 15px;
        position: absolute;
        top: 23%;
    }

    .profileUser {
        display: none;
    }

    .cartBtn {
        display: none;
    }

    .recharge-section {
        flex-direction: column-reverse;
    }

    .mobile-cart,
    .mobile-profile {
        display: block !important;
    }
}

/* Footer accordion white arrow only on mobile */
@media (max-width: 767px) {
    .cartBtn {
        width: 100%;
    }

    .modal-dialog {
        margin: 0px;
    }
}

.mobile-cart,
.mobile-profile {
    display: none;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Logo & Social */
.footer-logo {
    text-align: left;
}

.footer-logo img {
    max-width: 185px;
}

.footer-social {
    margin: 15px 0;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #000;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #5a2d82;
}

.store-btns img {
    height: 45px;
    margin-right: 10px;
}

/* Quick Links & Products */
.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #444;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #5a2d82;
}

/* Reach Us */
.footer-contact p {
    margin: 8px 0;
    color: #fff;
}

.footer-contact i {
    margin-right: 8px;
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    background: #2f449e;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
}

.footer-col ul li a {
    position: relative;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    /* smooth effect */
}

.footer-col ul li a:hover {
    color: var(--water);
}

/* underline animation */
.footer-col ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--water);
    /* underline color */
    transition: width 0.3s ease;
}

.footer-col ul li a:hover::after {
    width: 100%;
    /* hover pe underline expand */
}

/* Responsive Logo */
.logo-img {
    max-width: 200px;
    /* Desktop max width */
    width: 100%;
    /* Shrinks naturally on smaller screens */
    height: auto;
    /* Maintain aspect ratio */
}

@media (max-width: 767px) {

    .footer-logo,
    .footer-bottom {
        justify-content: center;
    }

    .footer-social {
        align-items: center;
        text-align: center;
    }

    .logo-img {
        max-width: 110px;
        /* Slightly smaller on mobile */
    }
}

.page-header {
    background: linear-gradient(135deg, #84b790, #537d5d);
    color: white;
    padding: 3rem 1rem;
    border-radius: 0 0 2rem 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease forwards;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.page-header p {
    font-size: 1.1rem;
}

.page-content {
    background: white;
    padding: 2rem;
    margin-top: -2rem;
    border-radius: 1rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease forwards;
}

.page-content h3 {
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.content-section ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #007bff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 1rem;
    border-left: 4px solid #007bff;
    padding-left: 10px;
}

/* New CSS Add */
/* Enhanced Glass Morphism Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10, 23, 78, 0.4);
    border-color: rgba(212, 175, 56, 0.3);
}

/* Premium Glass Effects */
.premium-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(10, 23, 78, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-glow {
    box-shadow:
        0 0 20px rgba(212, 175, 56, 0.3),
        0 8px 32px rgba(10, 23, 78, 0.3);
}

.water-glow {
    box-shadow:
        0 0 20px rgba(78, 205, 196, 0.3),
        0 8px 32px rgba(10, 23, 78, 0.3);
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Glass Buttons */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cream);
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 12px;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--gold), #E5C158);
    color: var(--navy);
    font-weight: 700;
    padding: 12px 24px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 56, 0.3);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #E5C158, var(--gold));
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 56, 0.4);
}

.btn-accent {
    background: rgba(78, 205, 196, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--cream);
    font-weight: 600;
    padding: 12px 24px;
    border: 1px solid var(--water);
    transition: all 0.3s;
    border-radius: 12px;
}

.btn-accent:hover {
    background: rgba(78, 205, 196, 0.25);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.2);
}

@media(max-width:767px) {

    .btn-group-lg>.btn,
    .btn-lg {
        font-size: 12px;
    }

    .recharge-section {
        padding: 20px 0;
        position: relative;
        overflow: hidden;
    }
}

.display-4 {
    line-height: 1.1;
}

/* Enhanced Floating Elements */
.floating-element {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
    animation: float 8s ease-in-out infinite;
    border: 1px solid rgba(212, 175, 56, 0.1);
}

.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(212, 175, 56, 0.08) 0%, rgba(78, 205, 196, 0.08) 100%);
    border-radius: 42% 56% 72% 28% / 42% 42% 56% 48%;
    animation: blob 12s linear infinite;
    z-index: -2;
    border: 1px solid rgba(212, 175, 56, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.gradient-text {
    background: linear-gradient(90deg, var(--gold), var(--water));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--gold);
    font-weight: bold;
}

.accent-highlight {
    color: var(--water);
    font-weight: bold;
}

/* Premium Glass Effects */
.premium-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(10, 23, 78, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-glow {
    box-shadow:
        0 0 20px rgba(212, 175, 56, 0.3),
        0 8px 32px rgba(10, 23, 78, 0.3);
}

.water-glow {
    box-shadow:
        0 0 20px rgba(78, 205, 196, 0.3),
        0 8px 32px rgba(10, 23, 78, 0.3);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--water));
    border-radius: 2px;
}

/* Elegant animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes blob {

    0%,
    100% {
        border-radius: 42% 56% 72% 28% / 42% 42% 56% 48%;
    }

    25% {
        border-radius: 72% 28% 48% 48% / 28% 28% 72% 72%;
    }

    50% {
        border-radius: 28% 72% 42% 58% / 72% 42% 58% 28%;
    }

    75% {
        border-radius: 58% 42% 28% 72% / 42% 58% 72% 28%;
    }
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 6px;
}

/* Scrollbar track (background area) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Scrollbar thumb (the moving handle) */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
    min-height: 60px;
}

/* Scrollbar thumb hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.profileUser .dropdown-menu {
    min-width: 120px;
    padding: 8px 16px;
    left: -50px !important;
}

/* Base colors */
.bg-navy {
    background-color: #101e59 !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-cream {
    color: var(--cream) !important;
}

/* Feature Grid (for image boxes) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: var(--glass-shadow);
    cursor: pointer;
    height: 150px;
}

.feature-box img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: transform 0.4s ease, filter 0.3s ease;
}

/* Hover animation */
.feature-box:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background: rgba(212, 175, 56, 0.1);
    box-shadow: 0 8px 20px rgba(212, 175, 56, 0.3);
}

.feature-box:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* Right-side list */
#recharge-advantages ul li {
    font-size: 1rem;
    color: var(--cream);
    transition: color 0.3s ease;
}

#recharge-advantages ul li:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 767px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-box {
        height: 140px;
        padding: 1rem;
    }

    .feature-box img {
        max-height: 70px;
    }
}

.bg-navy {
    background-color: #101e59 !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-cream {
    color: var(--cream) !important;
}

/* Left Gradient Block */
.left-highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--water) 100%);
    box-shadow: 0 8px 24px rgba(10, 23, 78, 0.3);
    color: var(--navy);
    min-height: 100%;
}

.left-highlight h2 {
    font-size: 1.8rem;
    line-height: 1.4;
}

/* Info Cards */
.info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(212, 175, 56, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.info-card img {
    transition: transform 0.3s ease;
}

.info-card:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 767px) {
    .left-highlight {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .left-highlight h2 {
        font-size: 1.4rem;
    }

    .info-card {
        padding: 1.5rem;
    }
}

/* Section Base */
.recharge-experience {
    background: var(--navy);
    color: var(--cream);
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.recharge-experience::before {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(212, 175, 56, 0.25), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Content Area */
.recharge-experience .content {
    position: relative;
    z-index: 2;
}

.recharge-experience .content h2 {
    color: var(--gold);
    font-weight: 700;
}

.recharge-experience .content p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.recharge-experience .content ul {
    list-style: none;
    padding: 0;
}

.recharge-experience .content li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recharge-experience .content i {
    color: var(--gold);
    font-size: 1.3rem;
}

/* Floating Circular Cards */
.recharge-circles {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    z-index: 2;
}

.recharge-circle {
    background: var(--glass-bg);
    border-radius: 50%;
    width: 166px;
    height: 166px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

.recharge-circle:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 175, 56, 0.4);
    background: var(--gold);
    color: var(--navy);
}

.recharge-circle img {
    width: 45px;
    margin-bottom: 10px;
}

/* Layout Adjustments */
@media (max-width: 1200px) {
    .recharge-circle {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 991px) {
    .recharge-experience {
        padding: 60px 0;
    }

    .recharge-circles {
        justify-content: center;
        gap: 20px;
    }

    .recharge-circle {
        width: 158px;
        height: 158px;
    }

    .recharge-experience .content {
        text-align: left;
    }

    .recharge-experience .content ul {
        text-align: left;
        display: inline-block;
    }
}

/* ✅ Two circles per row on mobile */
@media (max-width: 767px) {
    .recharge-circles {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        justify-items: center;
    }

    .recharge-circle {
        width: 140px;
        height: 140px;
    }

    .recharge-experience .content {
        /* text-align: center; */
        margin-bottom: 30px;
    }

    .recharge-experience .content h2 {
        font-size: 1.6rem;
    }

    .recharge-experience .content p {
        font-size: 0.95rem;
    }
}

@media (min-width: 992px) {
    .glass-card {
        max-width: 420px !important;
    }
}

/* Section Styling */
.how-it-works {
    background-color: var(--bg-navy);
    color: var(--cream);
}

/* Title */
.text-gold {
    color: var(--gold) !important;
}

/* Process Cards */
.process-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(212, 175, 56, 0.35);
}

/* Icons */
.process-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 56, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 28px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}

/* Responsive Layout */
@media (max-width: 767px) {
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .process-card {
        padding: 1.5rem;
    }
}

.faq-section {
    background-color: #101f5a;
    /* Matches your site background */
    color: var(--cream);
}

.text-gold {
    color: var(--gold) !important;
}

/* FAQ Image */
.faq-image {
    max-height: 380px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Accordion Design */
.faq-accordion .accordion-item {
    background: transparent;
    border: none;
}

.glass-faq {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.glass-faq:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 22px rgba(212, 175, 56, 0.25);
}

/* Accordion Button */
.accordion-button {
    background: transparent;
    color: var(--cream);
    font-weight: 600;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(212, 175, 56, 0.1);
    color: var(--gold);
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    color: var(--cream);
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
    .faq-image {
        max-height: 300px;
        margin-bottom: 2rem;
    }

    .faq-section {
        text-align: center;
    }
}