/* ----- GLOBAL & UTILITY ----- */
body, html {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    cursor: none;
}

/* ----- GLOBAL BACKGROUND IMAGE – FULL PAGE ----- */
body {
    /* background: url('/images/page.png') no-repeat center center fixed; */
    background-size: cover;
    position: relative;
    /* ----- PROFESSIONAL FADE-IN ANIMATION (INCREASED DURATION) ----- */
    animation: fadeInPage 1.8s ease-in-out;

}



/* ----- REDUCED MOTION PREFERENCE – DISABLE ANIMATION ----- */
@media (prefers-reduced-motion: reduce) {
    body {
        animation: none;
    }
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ----- NAVBAR ----- */
.navbar {
    position: fixed;
    top: 35px;
    width: 100%;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all .4s ease;
    /* backdrop-filter: blur(10px); */



  /* background-color: transparent;
  background-image: radial-gradient(#f0c27b 0.8px, transparent 0.8px);
  background-size: 18px 18px; */
}

.navbar.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

.logo img {
    height: 39px;
    cursor: pointer;
    margin-left: 95px;
    margin-top: 10px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-weight: 600;
}

.playstore-icon {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-right: 60px;

}

.playstore-icon img {
    height: 42px;
    width: auto;
    object-fit: contain;
    cursor: pointer;


}

.playstore-icon img:hover {
    transform: translateY(-2px);
}

/* ----- GLASS MENU ----- */
.glass-menu {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    border-radius: 12px;
    padding: 18px 150px;
    display: flex;
    gap: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.glass-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.glass-menu a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
}

.glass-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #41246e;
    transition: width 0.3s ease;
}

.glass-menu a:hover::after,
.glass-menu a.active::after {
    width: 100%;
}

.content {
    padding-top: 140px;
}

/* ----- CUSTOM CURSOR ----- */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: #41246e;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-circle {
    width: 36px;
    height: 36px;
    border: 2px solid #41246e;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: 0.15s ease-out;
}

.cursor-hover {
    transform: translate(-50%, -50%) scale(1.8);
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    .cursor-dot,
    .cursor-circle {
        display: none;
    }
    .nav-links {
        display: none;
    }
}

/* ===== HERO SECTION – NO BACKGROUND IMAGE, JUST GLASS BOX ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    padding-top: 30px;   /* reduce from 80px */

}

.hero-section .container {
    position: relative;
    z-index: 2;
    color: #2e2d2d;
    padding-left: 0px;
    margin-bottom: 100px;
}

/* ----- GLASS BOX – ONLY AROUND H1 ----- */
.hero-title-box {

    border-radius: 20px;
    padding: 30px 40px;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 30px;

}

/* ----- ORANGE TEXT ----- */
.orange-text {
    color: #41246e !important;
    font-weight: inherit;
}

/* ----- H1 STYLING ----- */
.hero-title-box h1 {
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    line-height: 1.3;
    margin-bottom: 0;
    margin-top: 0px;
    color: #2a2929;
}

/* ----- PARAGRAPH & BUTTON ----- */
.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #000;
    padding-left: 25px;
}

.hero-section .btn-primary {
    background-color: #41246e;
    margin-left: 25px;

}

.hero-section .btn-primary:hover {
    background-color: #6637ac;
    border-color: #d6d5d3;
}

/* ----- RESPONSIVE (hero) ----- */
@media (max-width: 768px) {
    .hero-section .container {
        padding-left: 20px;
    }
    .hero-title-box {
        padding: 25px 30px;
    }
    .hero-title-box h1 {
        font-size: 2.2rem;
    }
    .hero-section .lead,
    .hero-section .btn-primary {
        padding-left: 20px;
        margin-left: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section .container {
        padding-left: 15px;
    }
    .hero-title-box {
        padding: 20px 25px;
    }
    .hero-title-box h1 {
        font-size: 1.8rem;
    }
    .hero-section .lead,
    .hero-section .btn-primary {
        padding-left: 15px;
        margin-left: 15px;
    }
}

/* ----- PROMO SECTION – TRANSPARENT BACKGROUND, GLASS CARDS ----- */
.promo-section {
    padding: 0;
    margin-top: -100px;
    margin-bottom: 50px;
    background: white;
}

/* Base glass card style */
.white-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.white-box:hover {
    transform: translateY(-5px);
}

/* Left side specific (big) */
.promo-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.promo-subtitle {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.highlight-orange {
    color: #ff6b35;
    font-weight: 600;
}

.store-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.store-icon {
    height: 55px;
    transition: transform 0.3s ease;
}

.store-icon:hover {
    transform: translateY(-3px);
}

/* ----- Right box – smaller padding, inline layout ----- */
.right-box {
    padding: 40px 30px !important;   /* Override default 90px – perfect for small card */
}

.get-app-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

/* Phone input – now used inside a flex row */
.phone-input {
    display: flex;
    align-items: center;
    background: rgba(248, 249, 250, 0.9);
    border-radius: 15px;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 0;               /* Remove bottom margin – important for row layout */
}

.phone-input:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.country-code {
    background: #e9ecef;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 600;
    color: #2c3e50;
    margin-right: 12px;
    white-space: nowrap;
}

.phone-input input {
    border: none;
    background: transparent;
    font-size: 1rem;
    width: 100%;
    outline: none;
}

/* Send button – icon only, compact */
.send-link-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 14px 18px;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    line-height: 1;
}

.send-link-btn i {
    font-size: 1.2rem;
    margin: 0;
}

.send-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Bootstrap 5 gap utility fallback – if not using Bootstrap, add this */
.gap-2 {
    gap: 0.75rem;
}

/* ----- RECHARGE / BILL / TRAVEL SECTIONS – TRANSPARENT, GLASS CARDS ----- */
.recharge-section {
    padding: 80px 0;
    background: white; /* was gradient */
    position: relative;
}

.recharge-box,
.billpay-box,
.travel-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 0;
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
    position: relative;
    min-height: 420px;
    border: 1px solid #41246e;
    box-shadow: 0 20px 50px rgba(74, 107, 255, 0.1);
    z-index: 1;
}

.recharge-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 992px) {
    .recharge-box {
        margin-left: 0;
        margin-right: auto;
        float: left;
        clear: left;
    }
    .billpay-box {
        margin-left: auto;
        margin-right: 0;
        float: right;
        clear: right;
    }
    .travel-box {
        margin-left: 0;
        margin-right: auto;
        float: left;
        clear: left;
    }
}

.billpay-header {
    text-align: center;
}

.recharge-header,
.billpay-header,
.travel-header {
    padding: 40px 40px 20px;
    color: black;
    position: relative;
}

.recharge-title,
.billpay-title,
.travel-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Marquee Container – inside glass cards */
.marquee-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 25px 0;
    position: relative;
    overflow: hidden;
    margin: 30px 40px;
    box-shadow: 0 10px 30px rgba(74, 107, 255, 0.05);
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,0.9) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 25px;
    animation: scrollMarquee 35s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    background: white;
    border-radius: 15px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(74, 107, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border: 2px solid #eef2ff;
}

.marquee-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(74, 107, 255, 0.15);
    border-color: #4a6bff;
}

.marquee-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}

.marquee-text {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(calc(-110px * 10 - 25px * 9));
    }
    100% {
        transform: translateX(0);
    }
}

.view-all-btn-container {
    position: absolute;
    right: 20%;
    bottom: 35px;
    z-index: 10;
}

.view-all-btn {
    background: rgba(255, 255, 255, 0.9);
    color: black;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
    border: 1px solid #41246e;
}

.view-all-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: #ffffff;
}

.view-all-btn i {
    font-size: 1.2rem;
}

.floating-app {
    position: absolute;
    right: 0;
    bottom: -425px;
    width: 650px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.billpay-floating-app {
    left: 0;
    right: auto;
}

.floating-app img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 1200px;
}

@media (min-width: 1400px) {
    .floating-app {
        width: 700px;
    }
}

@media (min-width: 1200px) {
    .floating-app {
        width: 600px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(-55%);
    }
}

/* ----- MODAL (Services) – unchanged ----- */
.services-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 30px;
    padding: 40px;
    max-width: 1000px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f4ff;
    position: relative;
}

.modal-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.modal-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.modal-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    background: linear-gradient(45deg, #4a6bff, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
}

.close-modal:hover {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.service-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(74, 107, 255, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #eef2ff;
    min-height: 120px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(74, 107, 255, 0.15);
    border-color: #4a6bff;
}

.service-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.service-name {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.billpay-section {
    padding: 80px 0;
    background: white; /* was gradient */
    position: relative;
}

.travel-section {
    padding: 80px 0;
    background: white; /* was gradient */
    position: relative;
}

.recharge-section::after,
.billpay-section::after,
.travel-section::after {
    content: '';
    display: table;
    clear: both;
}

/* ----- CASHBACK MARQUEE – TRANSPARENT, GLASS CARDS ----- */
.cashback-section {
    width: 100%;
    overflow: hidden;
    background: white; /* was white */
    padding: 40px 0;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.cashback-box {
    min-width: 320px;
    height: 150px;
    background: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    border: 1px solid rgb(240, 239, 236);
}

.cashback-section .marquee-track {
    background: white;
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-left-right 18s linear infinite;
}

@keyframes scroll-left-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0%);
    }
}

/* ----- REFER SECTION – TRANSPARENT, GLASS CARDS ----- */
.refer-section {
    padding: 80px 0;
    background: white; /* was white */
}

.refer-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 90px;   /* increase space here */
    align-items: stretch;
}

.refer-card {
    flex: 1.6;
    background: linear-gradient(180deg, #3e00a6, #914fff, #e8e8e8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 60px 65px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 165, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.refer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.2);
}

.refer-header {

    display: flex;
    align-items: center;
    gap: 8px;   /* reduce gap (was 14px) */
    margin-bottom: 16px;
}



.refer-icon {
    width: 50px;   /* increase horizontal size */
    background-color: white;
    border-radius: 10px;
}


.refer-title {
    font-size: 32px;
    line-height: 1.25;
    margin-left: 30px;
    font-weight: 800;
    color: white;
}

.refer-subtitle {
    font-size: 20px;
    color: white;
    margin-bottom: 24px;
    margin-left: 90px;
}

.refer-steps {
    display: flex;
    gap: 48px;
    font-size: 16px;
    margin-bottom: 26px;
    margin-left: 90px;
}

.highlight {
    color: white;
    font-weight: 700;
}

.store-buttons {
    display: flex;
    gap: 16px;
    margin-left: 90px;
}

.store-buttons img {
    height: 44px;
}

.right-boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 64px;
    justify-content: space-between;
}

.offer-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 32px 30px;
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
    border: 1px solid rgba(255, 165, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;

    /* Square Dot Pattern */
    background-image:
        linear-gradient(#e6e6e6 1px, transparent 1px),
        linear-gradient(90deg, #e6e6e6 1px, transparent 1px);

    background-size: 16px 16px;
}
.offer-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(0,0,0,0.18);
}

.offer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
    color: #222;
}

.offer-row img {
    width: 32px;
}

.offer-box p {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 165, 0, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    font-size: 15px;
    font-weight: 500;
    color: #222;
}

.offer-box .highlight {
    color: #41246e;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}












/* ----- OFFERS SECTION – TRANSPARENT BACKGROUND, CARDS KEEP THEIR GRADIENTS ----- */
.offers-section {
    padding: 80px 20px;
    background: white; /* was white */
    text-align: center;
}

.offers-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: black; /* unchanged */
}

.offers-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

.offers-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Cards keep their original gradient backgrounds – they will overlay the body image */
.offer-card {
    border-radius: 22px;
    padding: 30px 24px;
    color: #fff;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.2);
}

.offer-card h3 {
    font-size: 40px;
    margin: 0 0 10px;
}

.big-text {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
}

.small-text {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.card-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.code-btn {
    background: rgba(255,255,255,0.2);
    border: 1px dashed #fff;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.use-btn {
    background: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.card-1 {
    background: linear-gradient(135deg, #41246e, #ffb347);
}

.card-2 {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.card-3 {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}

.card-4 {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

/* ----- FAQ – TRANSPARENT, GLASS CARDS + FLOATING STICKERS ----- */
        .faq-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 20px;
            background: white;
            font-family: system-ui, 'Segoe UI', Roboto, sans-serif;
            position: relative; /* anchor for absolute stickers */
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 5; /* above background stickers? we keep stickers behind or in front? */
        }

        /* ---------- STICKER STYLE (organic, playful) ---------- */
        .faq-sticker {
            width: 32px;
            height: 32px;
            object-fit: cover;
            transition: transform 0.2s ease;
            vertical-align: middle;
        }

        .faq-sticker:hover {
            transform: rotate(12deg) scale(1.15);
        }

        /* title sticker – slightly bigger, inline after text */
        .faq-title .faq-sticker {
            width: 86px;
            height: 86px;
            margin-left: 12px;
            border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
        }

        /* ----- FLOATING STICKERS (4 pieces) – placed around the section ----- */
        .sticker-float {
            position: absolute;
            z-index: 10;        /* visible above cards, but does not block clicks */
            pointer-events: none; /* so they don’t interfere with buttons */
        }

        .sticker-1 {
            top: 82%;
            left: 15%;
            width: 84px;
            height: 84px;
            transform: rotate(-6deg);
        }

        .sticker-2 {
            bottom: 43%;
            right: 10%;
            width: 48px;
            height: 48px;
            transform: rotate(10deg);
        }

        .sticker-3 {
            top: 85%;
            right: 12%;
            width: 78px;
            height: 78px;
            transform: rotate(-15deg);
        }

        .sticker-4 {
            bottom: 50%;
            left: 10%;
            width: 62px;
            height: 62px;
            transform: rotate(10deg);
        }

        /* optional sticker inside container but still floating style */

        /* ---------- FAQ TITLE ---------- */
        .faq-title {
            text-align: center;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 50px;
            color: black;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px;
            position: relative;
            z-index: 20;
        }

        /* ---------- GLASS CARD STYLES (unchanged) ---------- */
        .faq-item {
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            margin-bottom: 15px;
            border: 1px solid rgba(0,0,0,0.2);
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: box-shadow 0.25s;
            position: relative;
            z-index: 15;
        }

        .faq-item:hover {
            box-shadow: 0 12px 28px rgba(0,0,0,0.12);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 22px;
            text-align: left;
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            color: black;
            line-height: 1.4;
        }

        /* plus/minus on the right - no sticker inside button now */
        .faq-question::after {
            content: "+";
            position: absolute;
            right: 22px;
            font-size: 26px;
            font-weight: 300;
            transition: transform 0.3s ease;
            color: black;
            top: 50%;
            transform: translateY(-50%);
        }

        .faq-item.active .faq-question::after {
            content: "−";
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 22px;
            font-size: 18px;
            color: #444;
            line-height: 1.6;
            transition: max-height 0.35s ease, padding 0.35s ease;
            background: rgba(255,255,255,0.3);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 22px 20px;
        }

        /* responsive */
        @media (max-width: 600px) {
            .faq-title { font-size: 28px; }
            .faq-question { font-size: 18px; padding-right: 50px; }
            .sticker-float { width: 32px; height: 32px; }
        }

/* ----- FOOTER – TRANSPARENT, GLASS ----- */
hr {
    margin: 8px 0;
    border: none;
    height: 1px;
    background: rgba(128, 125, 125, 0.5);
}

.upay-footer {
    background: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: black;
    padding: 30px 20px 20px;
}

.footer-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 30px;
}

.footer-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 18px;
    margin-left: 10px;
}

.footer-title {
    color: #41246e;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    transition: 0.3s;
}

.footer-col ul li:hover {
    color: #41246e;
    cursor: pointer;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #41246e;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #41246e;
    color: #111;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    font-size: 15px;
    color: black;
}

/* ----- RESPONSIVE (additional) – unchanged ----- */
@media (max-width: 1400px) {
    .recharge-container {
        max-width: 1200px;
        padding: 0 40px;
    }
    .floating-app {
        width: 550px;
    }
    .billpay-floating-app {
        width: 550px;
    }
}

@media (max-width: 1200px) {
    .recharge-container {
        padding: 0 30px;
    }
    .floating-app {
        width: 500px;
    }
    .billpay-floating-app {
        width: 500px;
    }
    .view-all-btn-container {
        left: 30px;
        bottom: 30px;
    }
}

@media (max-width: 992px) {
    .recharge-container {
        padding: 0 20px;
    }
    .recharge-box,
    .billpay-box,
    .travel-box {
        max-width: 600px;
        margin: 0 auto !important;
        float: none !important;
    }
    .floating-app,
    .billpay-floating-app {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        width: 500px !important;
        max-width: 100% !important;
        margin: 30px auto 0 !important;
        display: block !important;
        animation: none !important;
    }
    .view-all-btn-container {
        position: relative;
        left: auto;
        bottom: auto;
        text-align: center;
        margin: 30px auto 0;
        width: 100%;
        z-index: 3;
    }
    .view-all-btn {
        margin: 0 auto;
    }
    .recharge-header,
    .billpay-header,
    .travel-header {
        padding: 30px 30px 20px;
    }
    .marquee-container {
        margin: 25px 30px;
    }
}

@media (max-width: 768px) {
    .recharge-section,
    .billpay-section,
    .travel-section {
        padding: 60px 0;
    }
    .recharge-container {
        padding: 0 15px;
    }
    .recharge-box,
    .billpay-box,
    .travel-box {
        max-width: 100%;
    }
    .recharge-header,
    .billpay-header,
    .travel-header {
        padding: 25px 20px 15px;
    }
    .marquee-container {
        margin: 20px;
        padding: 20px 0;
    }
    .marquee-item {
        width: 80px;
        height: 80px;
        padding: 15px;
    }
    .marquee-img {
        width: 35px;
        height: 35px;
    }
    .recharge-title,
    .billpay-title,
    .travel-title {
        font-size: 1.8rem;
    }
    .view-all-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    .floating-app,
    .billpay-floating-app {
        width: 400px !important;
        margin-top: 20px !important;
    }
    .modal-content {
        padding: 30px 20px;
    }
    .modal-main-title {
        font-size: 1.8rem;
    }
    .modal-subtitle {
        font-size: 1rem;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 15px;
    }
    .white-box {
        padding: 25px;
    }
    .promo-title {
        font-size: 1.5rem;
    }
    .promo-subtitle {
        font-size: 1rem;
    }
    .store-icon {
        height: 50px;
    }
    .get-app-title {
        font-size: 1.3rem;
    }
    .footer-wrap {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .recharge-container {
        padding: 0 10px;
    }
    .marquee-item {
        width: 75px;
        height: 75px;
        padding: 12px;
    }
    .marquee-img {
        width: 32px;
        height: 32px;
    }
    .view-all-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .floating-app,
    .billpay-floating-app {
        width: 320px !important;
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .service-item {
        padding: 15px 10px;
        min-height: 100px;
    }
    .service-icon {
        width: 45px;
        height: 45px;
    }
    .service-name {
        font-size: 0.85rem;
    }
    .white-box {
        padding: 20px;
        margin-bottom: 20px;
    }
    .store-icons {
        justify-content: center;
    }
    .phone-input {
        padding: 12px;
    }
}

@media (max-width: 400px) {
    .marquee-track {
        gap: 20px;
    }
    .marquee-item {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .floating-app,
    .billpay-floating-app {
        width: 280px !important;
    }
    .modal-logo {
        width: 60px;
        height: 60px;
    }
    .modal-main-title {
        font-size: 1.5rem;
    }
    .footer-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}









.contact-section {
  padding: 80px 20px;
  background: white;
  border: 5px solid #41246e;
}

.contact-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.contact-subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: #666;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.contact-info i {
  font-size: 20px;
  color: #41246e;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
}


.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-btn {
  background: #41246e;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #512d86;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}















.feature-section {
    padding: 70px 0;
    background: white;
}

.feature-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    position: relative;
}

.feature-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.feature-scroll {
    display: flex;
    gap: 25px;
    width: max-content;
    padding-left: 8%;
    padding-right: 8%;
}

.feature-box {
    min-width: 270px;
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    flex-shrink: 0;
    margin-top: 30px;
}

.feature-icon {
    width: 40px;
    margin-bottom: 15px;
}

/* Scrollbar outer container */
.custom-scrollbar {
    width: 100%;
    height: 14px;
    margin-top: 20px;

    display: flex;
    justify-content: center;   /* always center */
    align-items: center;

    position: relative;
}

/* Background track (increase vertical height only) */
.custom-track {
    width: 4cm;          /* keep same width */
    height: 26px;        /* increase vertical height */
    background: #e5e5e5;
    border-radius: 50px;

    position: relative;
    display: flex;
    align-items: center;
}

/* Keep thumb normal and vertically centered */
.custom-thumb {
    width: 2cm;
    height: 14px;
    background: #41246e;
    border-radius: 50px;

    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);   /* center inside track */

    cursor: pointer;
}







/* Section */
.scan-download-app-section {
    background: white;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/* Card */
.scan-download-app-card {
    position: relative;
    background: white;
    padding: 70px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    max-width: 1300px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

/* Title */
.scan-download-app-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
}

/* Store buttons */
.scan-store-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;

}

/* Store images */
.playstore-btn,
.appstore-btn {
    height: 50px;
}

/* Sticker common */
.scan-sticker {
    position: absolute;
    width: 90px;
}

/* Left sticker */
.sticker-left {
    left: 0px;
    bottom: 0px;
    width: 200px;
}

/* Right sticker base */
.sticker-right {
    right: 180px;
    width: 150px;
}

/* Right sticker positions */
.sticker-right-1 {
    bottom: 0px;
    right: 0px;
}

.sticker-right-2 {
    bottom: 0px;
    right: 0px;
    width: 80px;
}



/* Mobile */
@media(max-width:600px){

    .scan-download-app-title{
        font-size:24px;
    }

    .playstore-btn,
    .appstore-btn{
        height:60px;
    }

    .scan-sticker{
        width:60px;
    }

}









/* =========================================================
   🎯 RESPONSIVE FIXES – SYSTEMATIC ORGANIZATION v3.0
   📱 ALL DEVICES: MOBILE · TABLET · iPAD · DESKTOP
   ========================================================= */

/* ---------- 1. NAVBAR & HEADER ---------- */
@media (max-width: 992px) {
  .navbar {
    padding: 12px 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  .logo img {
    margin-left: 0 !important;
    height: 24px !important;
  }
  .playstore-icon {
    margin-right: 0 !important;
    gap: 8px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  .playstore-icon img {
    height: 28px !important;
    width: auto !important;
  }
}
/* iPad portrait (768px – 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar {
    padding: 14px 30px !important;
  }
  .logo img {
    height: 38px !important;
  }
  .playstore-icon {
    gap: 10px !important;
  }
  .playstore-icon img {
    height: 28px !important;
  }
}
/* iPad Pro landscape (1025px – 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .navbar {
    padding: 16px 40px !important;
  }
  .logo img {
    margin-left: 20px !important;
    height: 34px !important;
  }
  .playstore-icon {
    margin-right: 20px !important;
    gap: 8px !important;
  }
  .playstore-icon img {
    height: 33px !important;
  }
}

/* ---------- 2. GLASS MENU ---------- */
@media (max-width: 1200px) {
  .glass-menu {
    padding: 18px 40px !important;
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .glass-menu {
    top: 70px !important;
    width: 92% !important;
    left: 4% !important;
    transform: none !important;
    padding: 12px 20px !important;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .glass-menu a {
    font-size: 15px;
    padding: 6px 0;
  }
}
@media (max-width: 576px) {
  .glass-menu {
    width: 94% !important;
    left: 3% !important;
    padding: 10px 16px !important;
    gap: 16px;
  }
  .glass-menu a {
    font-size: 14px;
  }
}
/* iPad portrait – refined position */
@media (min-width: 768px) and (max-width: 1024px) {
  .glass-menu {
    top: 80px !important;
    padding: 14px 30px !important;
    width: auto !important;
    max-width: 90% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    gap: 30px;
  }
  .glass-menu a {
    font-size: 16px;
    padding: 6px 0;
  }
}

/* ---------- 3. HERO SECTION ---------- */
@media (max-width: 992px) {
  .hero-section .container {
    margin-bottom: 60px !important;
    padding-left: 20px !important;
  }
  .hero-title-box {
    padding: 25px 30px !important;
  }
  .hero-section .lead,
  .hero-section .btn-primary {
    margin-left: 20px !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .hero-section .container {
    margin-bottom: 40px !important;
    padding-left: 16px !important;
  }
  .hero-title-box {
    padding: 20px 24px !important;
  }
  .hero-title-box h1 {
    font-size: 1.8rem !important;
  }
  .hero-section .lead {
    font-size: 1.1rem !important;
  }
}
@media (max-width: 360px) {
  .hero-title-box {
    padding: 16px 18px !important;
  }
  .hero-title-box h1 {
    font-size: 1.5rem !important;
  }
}

/* ---------- 4. RECHARGE / BILL / TRAVEL (MARQUEE) ---------- */
@media (max-width: 992px) {
  .recharge-box, .billpay-box, .travel-box {
    max-width: 100% !important;
  }
  .recharge-header, .billpay-header, .travel-header {
    padding: 30px 25px 20px !important;
  }
  .recharge-title, .billpay-title, .travel-title {
    font-size: 1.8rem !important;
  }
  .marquee-container {
    margin: 20px 25px !important;
    padding: 20px 0 !important;
  }
  .marquee-item {
    width: 80px !important;
    height: 80px !important;
    padding: 14px !important;
  }
  .marquee-img {
    width: 35px !important;
    height: 35px !important;
    margin-bottom: 8px !important;
  }
  .marquee-text {
    font-size: 0.8rem !important;
  }
}
@media (max-width: 768px) {
  .recharge-header, .billpay-header, .travel-header {
    padding: 25px 20px 15px !important;
  }
  .marquee-container {
    margin: 15px 20px !important;
    padding: 18px 0 !important;
  }
  .marquee-item {
    width: 75px !important;
    height: 75px !important;
    padding: 12px !important;
  }
  .marquee-img {
    width: 32px !important;
    height: 32px !important;
  }
}
@media (max-width: 576px) {
  .marquee-container {
    margin: 12px 16px !important;
    padding: 16px 0 !important;
  }
  .marquee-item {
    width: 70px !important;
    height: 70px !important;
    padding: 10px !important;
  }
  .marquee-img {
    width: 30px !important;
    height: 30px !important;
  }
  .marquee-text {
    font-size: 0.75rem !important;
  }
  .recharge-title, .billpay-title, .travel-title {
    font-size: 1.6rem !important;
  }
}
@media (max-width: 400px) {
  .marquee-item {
    width: 65px !important;
    height: 65px !important;
    padding: 8px !important;
  }
  .marquee-img {
    width: 28px !important;
    height: 28px !important;
  }
}

/* ---------- 5. FLOATING APP IMAGES ---------- */
@media (max-width: 992px) {
  .floating-app, .billpay-floating-app {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 80% !important;
    max-width: 450px !important;
    margin: 30px auto 0 !important;
    display: block !important;
  }
}
@media (max-width: 768px) {
  .floating-app, .billpay-floating-app {
    width: 90% !important;
    max-width: 380px !important;
  }
}
@media (max-width: 576px) {
  .floating-app, .billpay-floating-app {
    max-width: 300px !important;
  }
}

/* ---------- 6. VIEW ALL BUTTON ---------- */
@media (max-width: 992px) {
  .view-all-btn-container {
    position: relative !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    text-align: center !important;
    margin: 25px auto 20px !important;
  }
  .view-all-btn {
    margin: 0 auto !important;
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
  }
}
@media (max-width: 576px) {
  .view-all-btn {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }
}

/* ---------- 7. CASHBACK MARQUEE ---------- */
@media (max-width: 768px) {
  .cashback-box {
    min-width: 280px !important;
    padding: 18px 22px !important;
  }
}
@media (max-width: 576px) {
  .cashback-box {
    min-width: 260px !important;
    padding: 16px 18px !important;
    gap: 10px !important;
  }
  .icon-img {
    width: 28px !important;
    height: 28px !important;
  }
  .cashback-box p {
    font-size: 0.85rem !important;
    white-space: normal !important;
    line-height: 1.4 !important;
  }
}
@media (max-width: 400px) {
  .cashback-box {
    min-width: 240px !important;
    padding: 14px 16px !important;
  }
}

/* ---------- 8. REFER & EARN ---------- */
@media (max-width: 992px) {
  .refer-container {
    flex-direction: column !important;
    gap: 28px !important;
  }
  .refer-card {
    padding: 32px 28px !important;
  }
  .refer-title {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }
  .refer-subtitle,
  .refer-steps,
  .store-buttons {
    margin-left: 0 !important;
  }
  .refer-steps {
    gap: 20px !important;
    flex-wrap: wrap !important;
  }
  .store-buttons img {
    height: 42px !important;
  }
}
@media (max-width: 768px) {
  .refer-card {
    padding: 28px 24px !important;
  }
  .refer-title {
    font-size: 26px !important;
  }
  .refer-icon {
    width: 42px !important;
  }
}
@media (max-width: 576px) {
  .refer-card {
    padding: 24px 20px !important;
  }
  .refer-title {
    font-size: 24px !important;
  }
  .refer-icon {
    width: 38px !important;
  }
  .refer-subtitle {
    font-size: 14px !important;
  }
  .refer-steps {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .store-buttons {
    gap: 12px !important;
  }
  .store-buttons img {
    height: 38px !important;
  }
}
@media (max-width: 400px) {
  .refer-card {
    padding: 20px 16px !important;
  }
  .refer-title {
    font-size: 22px !important;
  }
  .refer-icon {
    width: 34px !important;
  }
  .store-buttons {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
}

/* ---------- 9. OFFERS GRID ---------- */
@media (max-width: 992px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}
@media (max-width: 576px) {
  .offers-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .offer-card {
    padding: 25px 20px !important;
  }
  .offer-card h3 {
    font-size: 36px !important;
  }
  .big-text {
    font-size: 16px !important;
  }
  .small-text {
    font-size: 13px !important;
  }
}

/* ---------- 10. FAQ ---------- */
@media (max-width: 768px) {
  .sticker-1, .sticker-2, .sticker-3, .sticker-4 {
    display: none !important;
  }
  .faq-title .faq-sticker {
    width: 60px !important;
    height: 60px !important;
  }
}
@media (max-width: 576px) {
  .faq-title {
    font-size: 28px !important;
  }
  .faq-title .faq-sticker {
    width: 50px !important;
    height: 50px !important;
  }
  .faq-question {
    font-size: 18px !important;
    padding: 18px 50px 18px 20px !important;
  }
  .faq-answer {
    font-size: 16px !important;
  }
}

/* ---------- 11. TRY UPAY ---------- */
@media (max-width: 992px) {
  .try-upay-text h2 {
    font-size: 34px !important;
    white-space: normal !important;
  }
}
@media (max-width: 768px) {
  .try-upay-section {
    padding: 60px 20px !important;
  }
  .try-upay-text h2 {
    font-size: 28px !important;
  }
  .try-subtitle {
    font-size: 16px !important;
  }
  .try-sticker {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .try-upay-text h2 {
    font-size: 24px !important;
  }
  .try-features li {
    font-size: 15px !important;
  }
  .store-btn {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
}

/* ---------- 12. CONTACT SECTION ---------- */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
@media (max-width: 576px) {
  .contact-section {
    border-width: 2px !important;
    padding: 50px 16px !important;
  }
  .contact-title {
    font-size: 28px !important;
  }
  .contact-subtitle {
    font-size: 15px !important;
    margin-bottom: 30px !important;
  }
  .contact-info .info-item {
    font-size: 15px !important;
  }
}

/* ---------- 13. FOOTER ---------- */
/* Mobile & Tablet (up to 992px) – flex column, centered */
@media (max-width: 992px) {
  .upay-footer .footer-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer-col {
    width: 100% !important;
    max-width: 400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-col ul {
    padding-left: 0 !important;
  }
  .footer-logo {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
  .footer-subtitle {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center !important;
  }
  .footer-social {
    justify-content: center !important;
  }
  .footer-bottom {
    justify-content: center !important;
    text-align: center !important;
  }
}
/* iPad portrait – slightly wider columns */
@media (min-width: 768px) and (max-width: 1024px) {
  .footer-col {
    max-width: 450px !important;
  }
}
/* Small mobile – extra spacing & font size */
@media (max-width: 576px) {
  .footer-wrap {
    gap: 28px !important;
  }
  .footer-title {
    margin-bottom: 20px !important;
  }
  .footer-bottom {
    font-size: 13px !important;
  }
}
/* iPad Pro landscape – restore grid layout */
@media (min-width: 1025px) and (max-width: 1199px) {
  .upay-footer .footer-wrap {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
    gap: 30px !important;
  }
  .footer-col:first-child {
    text-align: left !important;
  }
  .footer-logo {
    margin-left: 0 !important;
  }
  .footer-subtitle {
    margin-left: 0 !important;
    text-align: left !important;
  }
  .footer-social {
    justify-content: flex-start !important;
  }
  .footer-bottom {
    justify-content: center !important;
  }
}

/* ---------- 14. MODAL ---------- */
@media (max-width: 768px) {
  .modal-content {
    padding: 30px 20px !important;
    width: 95% !important;
  }
  .modal-main-title {
    font-size: 1.8rem !important;
  }
  .modal-subtitle {
    font-size: 1rem !important;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)) !important;
    gap: 15px !important;
  }
}
@media (max-width: 576px) {
  .modal-content {
    padding: 25px 16px !important;
  }
  .modal-main-title {
    font-size: 1.6rem !important;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }
  .service-item {
    padding: 15px 10px !important;
    min-height: 100px !important;
  }
  .service-icon {
    width: 45px !important;
    height: 45px !important;
  }
  .service-name {
    font-size: 0.8rem !important;
  }
}
@media (max-width: 400px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .service-item {
    padding: 12px 8px !important;
  }
}

/* ---------- 15. TOUCH TARGETS – 44x44 min size ---------- */
@media (max-width: 992px) {
  .nav-links a,
  .glass-menu a,
  .view-all-btn,
  .store-buttons a,
  .store-buttons img,
  .offer-card .use-btn,
  .offer-card .code-btn,
  .faq-question,
  .contact-btn,
  .store-btn,
  .send-link-btn,
  .playstore-icon a {
    min-height: 44px !important;
    min-width: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}




/* Hero background image centering on mobile */
@media (max-width: 768px) {
    .hero-bg {
        left: 40% !important;
        transform: translateX(-50%) !important;
        width: 15% !important;
        top: 6% !important;
    }
}

@media (max-width: 576px) {
    .hero-bg {
        width: 20% !important;
        top: 3% !important;
    }
}

@media (max-width: 360px) {
    .hero-bg {
        width: 25% !important;
    }
}
