/* ==========================================
   VIBECRAFTS – PALETTE & FONTS
   ========================================== */
:root {
    /* --primary: #537d5d;
    --primary-dark: #537d5d;
    --secondary: #537d5d;
    --accent: #d9abab;
    --surface: #f4d9d0;
    --text: #222222;
    --white: #ffffff;
    --black: #000000; */
    --primary-light: #DDF2FD;
    --primary-mid: #9BBEC8;
    --primary-dark: #427D9D;
    --primary-darker: #164863;
    --white: #ffffff;
    --text: #333333;
    --light-bg: #f8f9fa;
    --border: #e0e0e0;

    --font-header: "Lato", sans-serif;
    --font-body: "Lato", sans-serif;
}

/* ---------- Base ---------- */
body {
    background-color: #427D9D;
    font-family: var(--font-header);
    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-color: var(--primary-darker);
}

.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: var(--white) !important;
    transition: 0.2s;
}

.nav-link:hover {
    color: var(--white) !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: #427D9D !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;
}

.profileUser .dropdown-menu {
    min-width: 155px;
    /* default Bootstrap width hoti hai 10rem (~160px), ise kam kar diya */
    padding: 8px 8px;
    left: -73px !important;
    /* thoda adjust karne ke liye */
}

/* 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;
        /* prevent Bootstrap default */
        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;
    /* space for Browse Plans link */
}

.btn-customClr {
    background-color: var(--secondary);
    color: #fff;
}

.btn-customClr:hover {
    background-color: #537d5d;
    color: #fff;
}

.logo-slider {
    position: relative;
    overflow: hidden;
    /* default - no scroll on desktop */
}

/* 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 {
    height: 24px;
    max-width: 200px;
}

.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: #427D9D;
    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: #427D9D;
}

/* underline animation */
.footer-col ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #427D9D;
    /* 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;
        height: 25px;
    }
}


/* .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 added for glass effect */

.glass-card {
    background: rgba(221, 242, 253, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(22, 72, 99, 0.25);
    transition: all 0.4s ease-in-out;
}

.glass-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(22, 72, 99, 0.35);
}

/* Button color */
.btn-customClr {
    background-color: var(--primary-dark);
    color: var(--white);
    border: none;
    transition: all 0.3s ease-in-out;
}

.btn-customClr:hover {
    background-color: var(--primary-darker);
}

/* Inputs & labels */
.form-control {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--primary-darker);
}

.form-control:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 0.25rem rgba(66, 125, 157, 0.25);
}

/* Dropdown */
.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Labels and Text */
label,
h5,
.form-check-label {
    color: var(--primary-darker);
}

/* Hide default radio circle */
.styled-radio {
    appearance: none;
    -webkit-appearance: none;
    display: none;
}

/* Glass button look for labels */
.styled-label {
    background: rgba(221, 242, 253, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-darker);
    padding: 8px 53px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(22, 72, 99, 0.15);
    user-select: none;
}

/* Hover */
.styled-label:hover {
    background: rgba(155, 190, 200, 0.6);
    color: var(--white);
    transform: scale(1.04);
}

/* Active (when radio is checked) */
.styled-radio:checked+.styled-label {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: 0 6px 15px rgba(66, 125, 157, 0.4);
    transform: scale(1.05);
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 0px !important;
    margin-bottom: .125rem;
}

/* ✅ Responsive adjustments */
@media (max-width: 992px) {
    .styled-label {
        padding: 8px 30px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .styled-label {
        padding: 8px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .styled-label {
        padding: 6px 20px;
        font-size: 13px;
        border-radius: 8px;
    }
}

@media (max-width: 400px) {
    .styled-label {
        padding: 6px 16px;
        font-size: 12px;
    }
}

.card-custom {
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-height: 250px;
}

/* Gradient Variables */
:root {
    /* Works perfectly over #427D9D background */
    --gradient-primary: linear-gradient(135deg, rgba(221, 242, 253, 0.35), rgba(155, 190, 200, 0.2));
    --gradient-secondary: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(155, 190, 200, 0.15));
    --gradient-accent: linear-gradient(135deg, rgba(89, 163, 202, 0.35), rgba(84, 161, 202, 0.25));
}

/* Responsive */
@media (max-width: 768px) {
    .card-custom {
        padding: 2rem !important;
        text-align: center;
    }

    .card-custom h3 {
        font-size: 1.25rem;
    }

    .card-custom p {
        font-size: 0.9rem;
    }

    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }
}


/* Glassmorphism background */
.glass-gradient {
    background: rgba(221, 242, 253, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(22, 72, 99, 0.2);
    overflow: hidden;
    position: relative;
}

/* Infinite logo track */
.logo-track {
    display: flex;
    width: max-content;
    /* Adjusts dynamically */
    animation: scroll-logos 40s linear infinite;
}

/* Each logo box */
.logo-item {
    flex: 0 0 auto;
    width: 180px;
    margin: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logos themselves */
.logo-item img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

.logo-item img:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Infinite scroll animation */
@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Optional pause on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-item {
        width: 120px;
        margin: 0 10px;
    }

    .logo-item img {
        height: 45px;
    }
}

.wave-section {
    /* background: linear-gradient(135deg, #427D9D, #164863); */
    position: relative;
    z-index: 1;
}

.wave-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 0;
    overflow: hidden;
}

.wave {
    width: 100%;
    height: 100%;
}

.feature-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease;
    z-index: 2;
    position: relative;
}

.feature-box:hover {
    transform: scale(1.05);
}

/* SECTION BACKGROUND */
.recharge-feature-section {
    background-color: var(--base-blue);
    position: relative;
    overflow: hidden;
}

/* GLOW BACKGROUND */
.glow-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-teal), transparent 70%);
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    opacity: 0.5;
    animation: glowMove 8s ease-in-out infinite alternate;
}

@keyframes glowMove {
    0% {
        transform: translate(-60%, -45%) scale(1);
        opacity: 0.4;
    }

    100% {
        transform: translate(-40%, -60%) scale(1.2);
        opacity: 0.7;
    }
}

/* FLOATING CARD GRID */
.floating-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 160px);
    gap: 25px;
    transform: rotate(-4deg);
    position: relative;
}

.feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    text-align: center;
    padding: 20px 10px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    animation: floatWave 6s ease-in-out infinite;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.feature-card img {
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.feature-card h5 {
    font-weight: 700;
    color: var(--light-glow);
}

.feature-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.fc1 {
    animation-delay: 0s;
}

.fc2 {
    animation-delay: 1s;
}

.fc3 {
    animation-delay: 2s;
}

.fc4 {
    animation-delay: 3s;
}

@keyframes floatWave {

    0%,
    100% {
        transform: translateY(0px) rotate(-2deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

/* TEXT AREA */
.gradient-text {
    background: linear-gradient(90deg, #CDE8E5, #9BBEC8, #D2E9E9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
}

.styled-list i {
    font-size: 1.3rem;
    margin-right: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .floating-card-grid {
        grid-template-columns: repeat(2, 130px);
        transform: none;
    }

    .content-area {
        text-align: center;
    }

    .glow-circle {
        width: 200px;
        height: 200px;
        left: 50%;
    }
}

.recharge-highlights-section {
    background-color: #427D9D;
    position: relative;
    overflow: hidden;
}

.faq-section {
    background-color: #427D9D;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.gradient-text {
    background: linear-gradient(135deg, #DDF2FD, #9BBEC8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.glass-accordion .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.glass-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    box-shadow: none;
}

.glass-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.25);
    color: #164863;
}

.glass-accordion .accordion-body {
    color: #f0f0f0;
    font-size: 0.95rem;
    text-align: left;
}

/* Decorative Blur Shapes */
.blur-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(221, 242, 253, 0.6), rgba(155, 190, 200, 0.1));
    filter: blur(60px);
    z-index: 0;
}

.blur-shape.top-left {
    top: -50px;
    left: -50px;
}

.blur-shape.bottom-right {
    bottom: -50px;
    right: -50px;
}

@media (max-width: 768px) {
    .faq-section {
        text-align: center;
    }

    .accordion-button {
        font-size: 0.95rem;
    }
}

.accordion-button::after {
    transform: scale(0.7);
    /* smaller arrow */
    filter: invert(1);
    /* makes the default dark arrow white */
    opacity: 0.9;
    /* softens it a bit */
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg) scale(0.7);
    /* rotate + small */
    filter: invert(1);
    opacity: 0.9;
}

/* Recharge section skew effect */
/* .recharge-section-skew {
    position: relative;
    overflow: hidden;
} */

/* .recharge-section-skew .recharge-skew-divider {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #5a8eaa;
    transform: skewY(-3deg);
    transform-origin: top left;
} */

/* Optional: smoother transition look */
/* .recharge-section-skew::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
} */

/* V Shape Bottom Divider */
.recharge-vshape {
    position: relative;
    overflow: hidden;
}

.recharge-vshape-divider {
    position: absolute;
    top: 470px;
    /* bottom ki jagah top se */
    left: 0;
    width: 100%;
    height: 100px;
    background: #5a8eaa;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    /* ulta V shape */
}

.recharge-vshape-divider::before {
    content: "";
    position: absolute;
    bottom: -10px;
    /* top ki jagah bottom */
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.4), transparent);
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

/* 🔹 Hide on Mobile */
@media (max-width: 768px) {
    .recharge-vshape-divider {
        display: none;
    }
}

/* Chrome, Edge, Safari ke liye */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-track {
    background: transparent;
}

/* Firefox ke liye */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}