/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #00b74a;
    --secondary: #0066cc;
    --teal: #00bfa6;
    --dark: #0a192f;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --primary-green: #00b74a;
    --primary-blue: #0066cc;
    --secondary-teal: #00bfa6;
    --accent-purple: #8b5cf6;
    --accent-orange: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    --gradient-secondary: linear-gradient(135deg, #00bfa6 0%, #00b74a 100%);
    --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-ocean: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #48cae4 100%);

    /* Premium backgrounds */
    --bg-light: #ffffff;
    --bg-cream: #fefdfb;
    --bg-section: #f8fafc;
    --bg-glass: rgba(255, 255, 255, 0.8);
    --bg-glass-strong: rgba(255, 255, 255, 0.95);

    /* Text colors */
    --text-dark: #0f172a;
    --text-heading: #1e293b;
    --text-medium: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    /* Premium shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 15px 20px -10px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
    --shadow-2xl: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 20px 40px -10px rgba(0, 183, 74, 0.25);
    --shadow-blue: 0 20px 40px -10px rgba(0, 102, 204, 0.2);

    /* Borders */
    --border-color: rgba(0, 0, 0, 0.06);
    --border-strong: rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Updated Typography - Professional Inter + DM Sans */
    --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;


    --digibro-green: #00b74a;
    --digibro-blue: #0066cc;
    --digibro-teal: #00bfa6;
    --digibro-dark: #1a2332;
    --digibro-muted: #5a6c7d;
    --digibro-orange: #f97316;
    --digibro-red: #ef4444;
    --digibro-purple: #8b5cf6;
    --digibro-gold: #f59e0b;
}










/* ===== STANDARDIZED TYPOGRAPHY ===== */
.section-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.section-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

/* Responsive Typography */
@media (min-width: 992px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .testimonials-premium-header {
        margin-bottom: 40px;
    }

    .section-description {
        font-size: 1rem;
    }
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--gray-900);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Sans', sans-serif;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-teal {
    color: var(--teal) !important;
}

.text-muted {
    color: var(--gray-400) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-teal {
    background-color: var(--teal) !important;
}

.bg-gray {
    background-color: var(--secondary) !important;
}

.bg-success-light {
    background-color: rgba(0, 183, 74, 0.1);
}

.bg-info-light {
    background-color: rgba(0, 102, 204, 0.1);
}

.bg-teal-light {
    background-color: rgba(0, 191, 166, 0.1);
}

.max-width-7xl {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.icon-xs {
    font-size: 0.75rem;
}

.icon-small {
    font-size: 0.875rem;
}



/* ========================================
   PRELOADER - Premium Version
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-section) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 140px;
    height: 140px;
}

.loader-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-inner::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid transparent;
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

.loader-inner::after {
    content: "";
    position: absolute;
    top: 22px;
    left: 22px;
    right: 22px;
    bottom: 22px;
    border: 3px solid transparent;
    border-top-color: var(--secondary-teal);
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 55px;
    animation: pulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 183, 74, 0.3));
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}


/* ========================================
   NAVBAR
   ======================================== */



.navbar {
    padding: 20px 0;
    background: transparent;
    transition: 0.3s ease;
    position: relative;
}

/* Gradient border */
.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0 50px;
    margin: 0 auto;
}

.navbar.scrolled {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}


.navbar-brand img {
    height: 80px;
}

.brand-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-heading);
}

.brand-highlight {
    color: var(--primary-green);
}

.nav-link {
    color: var(--text-medium) !important;
    padding: 10px 20px !important;
    transition: var(--transition);
    font-weight: 500 !important;
    font-size: clamp(14px, 2vw, 18px) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green) !important;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.nav-btn-secondary {
    padding: 12px 34px;
    color: var(--text-heading);
    font-weight: 600;
    text-decoration: none;
    /* transition: var(--transition); */
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}


.nav-btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: 0.4s;
    z-index: -1;
}


.nav-btn-secondary:hover::before {
    left: 0;
}

.nav-btn-secondary:hover {
    border-color: transparent;
    color: white;
}

.nav-btn-primary {
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-green);
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 183, 74, 0.3);
    color: white;
}

/* ===== HERO SECTION ===== */
/* ===== PREMIUM HERO SECTION ===== */
.hero-premium-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 50%, #f8fafc 100%);
    overflow: hidden;
}

/* Animated Background Effects */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orb Float 25s ease-in-out infinite;
}


/* ===== NEW PAYMENT FEATURES GRID ===== */
.payment-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    max-width: 600px;
}

.payment-feature-card {
    background: white;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.payment-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 183, 74, 0.2);
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(0, 183, 74, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    /* margin-bottom: 4px; */
    font-family: 'DM Sans', sans-serif;
}

.feature-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    /* line-height: 1.4; */
}

/* Remove old CTA buttons */
.hero-cta-premium {
    display: none;
}

/* ===== RESPONSIVE DESIGN FOR NEW FEATURES ===== */

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .payment-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin: auto auto 36px;

    }



    .payment-feature-card {
        padding: 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .feature-content h4 {
        font-size: 0.9rem;
    }

    .feature-content p {
        font-size: 0.75rem;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .payment-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 32px;
    }

    .payment-feature-card {
        padding: 16px;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .feature-content h4 {
        font-size: 0.88rem;
    }

    .feature-content p {
        font-size: 0.73rem;
    }
}

/* Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .payment-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 28px;
    }


    .card-payment-features-grid {
        grid-template-columns: repeat(1, 1fr) !important;

    }

    .payment-feature-card {
        padding: 14px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        padding: 8px;
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .feature-content h4 {
        font-size: 0.85rem;
    }

    .feature-content p {
        font-size: 0.7rem;
    }

    /* Adjust spacing for the entire left section */
    .hero-content-left {
        margin-bottom: 10px !important;
    }
}


@media (max-width: 991px) {
    .hero-content-left {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

/* Ensure proper alignment with stats */
.hero-quick-stats {
    margin-top: 10px;
}


/* ===== HERO SERVICES - PERFECT LAYOUT ===== */
.hero-services-showcase {
    position: relative;
    width: 100%;
    padding: 20px;
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* BIG HIGHLIGHT CARD - Full Width */
.service-showcase-card {
    position: relative;
    background: white;
    padding: 28px 24px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.card-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 32px 28px;
    min-height: 220px;
}

.service-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Card Icon Badge */
.card-icon-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.bg-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.bg-green {
    background: linear-gradient(135deg, #00b74a 0%, #00d96f 100%);
}

.bg-blue {
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
}

.bg-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.bg-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

/* Quick Badge */
.quick-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    background: linear-gradient(135deg, #00b74a 0%, #00bfa6 100%);
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0, 183, 74, 0.3);
}

/* Service Content */
.service-card-content {
    position: relative;
    z-index: 2;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
}

.service-info {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Service Features */
.service-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* COMPACT CARDS */
.card-compact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    min-height: auto;
}

.card-compact .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    flex-shrink: 0;
}

.compact-text h4 {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
}

.compact-text p {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    margin: 0;
}

/* RIGHT SIDE VISUAL SVG - BIG CARDS */
.service-card-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 250px;
    z-index: 1;
    pointer-events: none;
}

.card-highlight .service-card-visual {
    width: 300px;
    height: 250px;
}

.service-decoration-svg {
    width: 100%;
    height: 100%;
}

/* RIGHT SIDE VISUAL SVG - SMALL CARDS */
.service-card-visual-small {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 120px;
    height: 120px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.small-decoration-svg {
    width: 100%;
    height: 100%;
}

.service-showcase-card:hover .service-card-visual,
.service-showcase-card:hover .service-card-visual-small {
    opacity: 0.7;
    transform: scale(1.05);
    transition: all 0.5s ease;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .services-grid-layout {
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .services-grid-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-highlight {
        grid-column: 1;
        padding: 24px 20px;
        min-height: 200px;
    }

    .service-showcase-card {
        padding: 24px 20px;
    }

    .service-name {
        font-size: 1.25rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .service-card-visual {
        width: 200px;
        height: 180px;
    }
}

@media (max-width: 575px) {
    .service-showcase-card {
        padding: 20px 18px;
    }

    .card-icon-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .service-name {
        font-size: 1.125rem;
    }

    .service-info {
        font-size: 0.875rem;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
    }

    .card-compact {
        padding: 18px 16px;
        gap: 14px;
    }

    .card-compact .icon-circle {
        width: 50px;
        height: 50px;
    }

    .compact-text h4 {
        font-size: 1rem;
    }

    .service-card-visual {
        width: 160px;
        height: 140px;
    }

    .service-card-visual-small {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 479px) {
    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .icon-circle svg {
        width: 26px;
        height: 26px;
    }

    .service-name {
        font-size: 1rem;
    }

    .quick-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .service-card-visual {
        display: none;
    }
}

.orb-green {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.3) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation-delay: 0s;
}

.orb-blue {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.25) 0%, transparent 70%);
    bottom: -10%;
    left: -8%;
    animation-delay: 8s;
}

.orb-teal {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.2) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: 16s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 40px) scale(0.95);
    }
}

.mesh-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, rgba(0, 183, 74, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
}

/* Content Center */
.hero-content-center {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    /* Match kar lo container-max se */
    margin: 0 auto;
    text-align: center;
    padding: 0 50px;
}

/* Premium Trust Badge */
.trust-badge-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(0, 183, 74, 0.15);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    margin-bottom: 32px;
    overflow: hidden;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

.badge-icon {
    width: 18px;
    height: 18px;
    color: #00b74a;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: -0.01em;
}

/* Premium Title */
.hero-title-premium {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 18px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.03em;
}

.text-gradient-animated {
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.text-gradient-animated::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00b74a, #0066cc);
    border-radius: 2px;
    animation: underlineExpand 3s ease-in-out infinite;
}

@keyframes underlineExpand {

    0%,
    100% {
        width: 70%;
        opacity: 0.8;
    }

    50% {
        width: 100%;
        opacity: 1;
    }
}

/* Subtitle */

/* Premium CTA Buttons */
.hero-cta-premium {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 64px;
    /* flex-wrap: wrap; */
}

.btn-premium-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 183, 74, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 25px 60px rgba(0, 183, 74, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: btnShine 4s ease-in-out infinite;
}

@keyframes btnShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 150%;
    }
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-premium-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-premium-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: white;
    color: #1e293b;
    border: 2px solid #e2e8f0;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-secondary:hover {
    border-color: #00b74a;
    background: rgba(0, 183, 74, 0.04);
    transform: translateY(-2px);
}

.btn-play-icon {
    width: 20px;
    height: 20px;
    color: #00b74a;
}

/* Premium Stats Bar */
.stats-bar-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 36px 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.stat-item-premium {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon-premium {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.stat-icon-green {
    background: linear-gradient(135deg, #00b74a 0%, #00d96f 100%);
    box-shadow: 0 12px 30px rgba(0, 183, 74, 0.35);
}

.stat-icon-blue {
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.35);
}

.stat-icon-teal {
    background: linear-gradient(135deg, #00bfa6 0%, #00e6c3 100%);
    box-shadow: 0 12px 30px rgba(0, 191, 166, 0.35);
}

.stat-icon-premium svg {
    width: 24px;
    height: 24px;
    color: white;
    position: relative;
    z-index: 1;
}

.stat-content-premium {
    text-align: left;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'DM Sans', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider-premium {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

/* 3D Card Stack - Improved */
.cards-3d-container {
    position: relative;
    height: 400px;
    margin-bottom: 100px;
    perspective: 2000px;
}

.card-3d {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 430px;
    height: 280px;
    border-radius: 24px;
    padding: 32px;
    color: white;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.card-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translate(-50%, -50%) rotate(-8deg) translateX(-350px) translateZ(0);
    z-index: 1;
    animation: card3DFloat1 6s ease-in-out infinite;
}

.card-green-main {
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    transform: translate(-50%, -50%) rotate(0deg) translateZ(20px);
    z-index: 3;
    animation: card3DFloat2 6s ease-in-out infinite 2s;
    box-shadow:
        0 50px 100px rgba(0, 183, 74, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.card-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transform: translate(-50%, -50%) rotate(8deg) translateX(350px) translateZ(0);
    z-index: 1;
    animation: card3DFloat3 6s ease-in-out infinite 4s;
}

@keyframes card3DFloat1 {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-8deg) translateX(-350px) translateY(0) translateZ(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-8deg) translateX(-350px) translateY(-25px) translateZ(10px);
    }
}

@keyframes card3DFloat2 {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg) translateY(0) translateZ(20px);
    }

    50% {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-30px) translateZ(40px);
    }
}

@keyframes card3DFloat3 {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(8deg) translateX(350px) translateY(0) translateZ(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(8deg) translateX(350px) translateY(-25px) translateZ(10px);
    }
}



.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.card-glow-purple {
    background: radial-gradient(circle, rgba(102, 126, 234, 0.8) 0%, transparent 70%);
}

.card-glow-green {
    background: radial-gradient(circle, rgba(0, 183, 74, 0.8) 0%, transparent 70%);
}

.card-glow-pink {
    background: radial-gradient(circle, rgba(240, 147, 251, 0.8) 0%, transparent 70%);
}

.card-3d:hover .card-glow {
    opacity: 1;
}

.card-content-3d {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-chip-3d {
    width: 64px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    align-self: flex-start;
}

.card-chip-3d::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.card-chip-3d::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px);
    border-radius: 4px;
}

.card-info-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-type-3d {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-logo-3d {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    opacity: 0.9;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.card-number-3d {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 5px;
    font-family: 'Courier New', monospace;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    margin: 20px 0;
}

.card-bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-holder-info {
    flex: 1;
}

.card-holder-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.card-holder-name-3d {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.card-validity {
    text-align: right;
}

.card-valid-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.card-expiry-3d {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: skewX(-25deg);
    animation: cardShine 8s ease-in-out infinite;
}

@keyframes cardShine {

    0%,
    100% {
        left: -50%;
        opacity: 0;
    }

    45%,
    55% {
        opacity: 1;
    }

    50% {
        left: 150%;
    }
}

/* Floating Badges */
.floating-badges-container {
    position: absolute;
    width: 100%;
    height: 350px;
    top: calc(50% + 80px);
    left: 0;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-success {
    top: -102%;
    right: 45%;
    animation-delay: 0s;
}

.badge-success svg {
    color: #00b74a;
}

.badge-growth {
    top: 50%;
    left: 8%;
    animation-delay: 1.5s;
}

.badge-growth svg {
    color: #0066cc;
}

.badge-secure {
    bottom: 40%;
    right: 10%;
    animation-delay: 3s;
}

.badge-secure svg {
    color: #00bfa6;
}

.badge-transactions {
    bottom: 10%;
    left: 12%;
    gap: 12px;
    animation-delay: 4.5s;
}

.badge-icon-circle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    border-radius: 50%;
    color: white;
}

.badge-text-content {
    text-align: left;
}

.badge-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 2px;
}

.badge-subtitle {
    font-size: 9px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.05em;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* ===== RESPONSIVE DESIGN ===== */
/* ========================================
   HERO SECTION - RESPONSIVE
   ======================================== */

/* Desktop Large (1400px+) */
@media (min-width: 1400px) {


    .hero-title-premium {
        font-size: 4.5rem;
    }

    .hero-subtitle-premium {
        font-size: 1.375rem;
    }

    .cards-3d-container {
        height: 450px;
        margin-bottom: 120px;
    }

    .card-3d {
        width: 460px;
        height: 300px;
        padding: 36px;
    }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-content-center {
        padding: 0 45px;
    }

    .hero-title-premium {
        font-size: 3.75rem;
    }

    .cards-3d-container {
        height: 420px;
    }

    .card-3d {
        width: 400px;
        height: 260px;
        padding: 30px;
    }

    .card-purple {
        transform: translate(-50%, -50%) rotate(-8deg) translateX(-320px);
    }

    .card-pink {
        transform: translate(-50%, -50%) rotate(8deg) translateX(320px);
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-premium-section {
        padding: 150px 20px 100px;
    }

    .hero-content-center {
        padding: 0 40px;
    }

    .hero-title-premium {
        font-size: 3.25rem !important;
    }

    .hero-subtitle-premium {
        font-size: 1.125rem;
        max-width: 800px;
    }

    .stats-bar-premium {
        gap: 36px;
        padding: 32px 40px;
        flex-wrap: wrap;
    }



    .stat-divider-premium:nth-of-type(2) {
        display: none;
    }

    .cards-3d-container {
        height: 380px;
        transform: scale(0.85);
    }

    .card-3d {
        width: 360px;
        height: 235px;
        padding: 28px;
    }

    .card-purple {
        transform: translate(-50%, -50%) rotate(-8deg) translateX(-280px);
    }

    .card-pink {
        transform: translate(-50%, -50%) rotate(8deg) translateX(280px);
    }

    .floating-badge {
        font-size: 13px;
        padding: 10px 18px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-premium-section {
        padding: 140px 20px 80px;
    }

    .hero-content-center {
        padding: 0 35px;
    }

    .trust-badge-premium {
        padding: 10px 24px;
        margin-bottom: 28px;
    }

    .badge-icon {
        width: 16px;
        height: 16px;
    }

    .badge-text {
        font-size: 13px;
    }

    .hero-title-premium {
        font-size: 2.75rem;
        margin-bottom: 16px;
    }

    .hero-subtitle-premium {
        font-size: 1.05rem;
        margin-bottom: 38px;
        max-width: 700px;
    }

    .hero-cta-premium {
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 54px;
    }

    .btn-premium-primary,
    .btn-premium-secondary {
        padding: 16px 36px;
        font-size: 15px;
    }

    .stats-bar-premium {
        flex-direction: column;
        gap: 28px;
        padding: 28px 32px;
        align-items: flex-start;
    }

    .stat-item-premium {
        width: 100%;
    }

    .stat-divider-premium {
        width: 100%;
        height: 1px;
    }

    .cards-3d-container {
        height: 340px;
        transform: scale(0.72);
        margin-bottom: 60px;
    }

    .card-3d {
        width: 340px;
        height: 222px;
        padding: 26px;
    }

    .card-purple {
        transform: translate(-50%, -50%) rotate(-8deg) translateX(-240px);
    }

    .card-pink {
        transform: translate(-50%, -50%) rotate(8deg) translateX(240px);
    }

    .card-number-3d {
        font-size: 26px;
        letter-spacing: 4.5px;
    }

    .floating-badge {
        font-size: 12px;
        padding: 9px 16px;
    }

    .badge-success {
        top: 2%;
        right: 3%;
    }

    .badge-growth {
        top: 52%;
        left: 5%;
    }

    .badge-secure {
        bottom: 38%;
        right: 8%;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-premium-section {
        padding: 130px 20px 70px;
    }

    .hero-content-center {
        padding: 0 30px;
    }

    .trust-badge-premium {
        padding: 9px 20px;
        margin-bottom: 24px;
    }

    .badge-icon {
        width: 15px;
        height: 15px;
    }

    .badge-text {
        font-size: 12px;
    }

    .hero-title-premium {
        font-size: 2.25rem;
        margin-bottom: 14px;
        line-height: 1.15;
    }

    .hero-subtitle-premium {
        font-size: 0.98rem;
        margin-bottom: 32px;
        line-height: 1.7;
    }

    .hero-cta-premium {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 44px;
        width: 100%;
    }

    .btn-premium-primary,
    .btn-premium-secondary {
        width: 100%;
        justify-content: center;
        padding: 15px 32px;
        font-size: 14px;
    }

    .stats-bar-premium {
        flex-direction: column;
        gap: 24px;
        padding: 24px 28px;
        align-items: flex-start;
    }

    .stat-icon-premium {
        width: 50px;
        height: 50px;
    }

    .stat-icon-premium svg {
        width: 22px;
        height: 22px;
    }

    .stat-number {
        font-size: 1.65rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-divider-premium {
        width: 100%;
        height: 1px;
    }

    .cards-3d-container {
        height: 300px;
        transform: scale(0.6);
        margin-bottom: 40px;
    }

    .card-3d {
        width: 320px;
        height: 208px;
        padding: 24px;
    }

    .card-purple {
        transform: translate(-50%, -50%) rotate(-8deg) translateX(-200px);
    }

    .card-pink {
        transform: translate(-50%, -50%) rotate(8deg) translateX(200px);
    }

    .card-chip-3d {
        width: 58px;
        height: 46px;
    }

    .card-number-3d {
        font-size: 24px;
        letter-spacing: 4px;
        margin: 18px 0;
    }

    .card-holder-name-3d,
    .card-expiry-3d {
        font-size: 13px;
    }

    .floating-badge {
        font-size: 11px;
        padding: 8px 14px;
    }

    .badge-success,
    .badge-growth,
    .badge-secure {
        display: none;
    }
}

/* Mobile Medium (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .hero-premium-section {
        padding: 120px 18px 60px;
    }

    .hero-content-center {
        padding: 0 25px;
    }

    .trust-badge-premium {
        padding: 8px 18px;
        margin-bottom: 20px;
    }

    .badge-text {
        font-size: 11px;
    }

    .hero-title-premium {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .hero-subtitle-premium {
        font-size: 0.92rem;
        margin-bottom: 28px;
    }

    .hero-cta-premium {
        gap: 10px;
        margin-bottom: 38px;
    }

    .btn-premium-primary,
    .btn-premium-secondary {
        padding: 14px 20px;
        font-size: 13px;
    }

    .stats-bar-premium {
        gap: 20px;
        padding: 22px 24px;
    }

    .stat-icon-premium {
        width: 46px;
        height: 46px;
    }

    .stat-icon-premium svg {
        width: 20px;
        height: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .cards-3d-container {
        height: 280px;
        transform: scale(0.52);
        margin-bottom: 30px;
    }

    .card-3d {
        width: 300px;
        height: 195px;
        padding: 22px;
    }

    .card-number-3d {
        font-size: 22px;
        letter-spacing: 3.5px;
    }

    .gradient-orb {
        filter: blur(80px);
    }
}

/* Mobile Small (max-width: 479px) */
@media (max-width: 479px) {
    .hero-premium-section {
        padding: 110px 15px 50px;
    }

    .hero-content-center {
        padding: 0 20px;
    }

    .trust-badge-premium {
        padding: 7px 16px;
        margin-bottom: 18px;
        gap: 8px;
    }

    .badge-icon {
        width: 14px;
        height: 14px;
    }

    .badge-text {
        font-size: 10px;
    }

    .hero-title-premium {
        font-size: 1.75rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .text-gradient-animated::after {
        height: 3px;
        bottom: -6px;
    }

    .hero-subtitle-premium {
        font-size: 0.88rem;
        margin-bottom: 24px;
        line-height: 1.65;
    }

    .hero-cta-premium {
        gap: 10px;
        margin-bottom: 32px;
    }

    .btn-premium-primary,
    .btn-premium-secondary {
        padding: 13px 10px;
        font-size: 12px;
    }

    .btn-arrow,
    .btn-play-icon {
        width: 16px;
        height: 16px;
    }

    .stats-bar-premium {
        gap: 18px;
        padding: 20px 20px;
        border-radius: 20px;
        justify-content: flex-start;
    }

    .stat-item-premium {
        gap: 12px;
    }

    .stat-icon-premium {
        width: 42px;
        height: 42px;
    }

    .stat-icon-premium svg {
        width: 18px;
        height: 18px;
    }

    .stat-number {
        font-size: 1.35rem;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .cards-3d-container {
        height: 260px;
        transform: scale(0.45);
        margin-bottom: 20px;
    }

    .card-3d {
        width: 280px;
        height: 182px;
        padding: 20px;
    }

    .card-purple {
        transform: translate(-50%, -50%) rotate(-8deg) translateX(-250px);
        animation: none;

    }

    .card-pink {
        transform: translate(-50%, -50%) rotate(8deg) translateX(250px);
        animation: none;
    }

    .card-chip-3d {
        width: 52px;
        height: 40px;
    }

    .card-type-3d {
        font-size: 11px;
    }

    .card-logo-3d {
        font-size: 10px;
        padding: 5px 12px;
    }

    .card-number-3d {
        font-size: 20px;
        letter-spacing: 3px;
        margin: 16px 0;
    }

    .card-holder-label,
    .card-valid-label {
        font-size: 8px;
    }

    .card-holder-name-3d,
    .card-expiry-3d {
        font-size: 12px;
    }

    .gradient-orb {
        filter: blur(70px);
        opacity: 0.2;
    }

    .orb-green {
        width: 450px;
        height: 450px;
    }

    .orb-blue {
        width: 380px;
        height: 380px;
    }

    .orb-teal {
        width: 350px;
        height: 350px;
    }
}

/* Extra Small Mobile (max-width: 374px) */
@media (max-width: 374px) {
    .hero-premium-section {
        padding: 100px 12px 40px;
    }

    .hero-content-center {
        padding: 0 18px;
    }

    .trust-badge-premium {
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .badge-text {
        font-size: 9px;
    }

    .hero-title-premium {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .hero-subtitle-premium {
        font-size: 0.82rem;
        margin-bottom: 20px;
    }

    .hero-cta-premium {
        margin-bottom: 28px;
    }

    .btn-premium-primary,
    .btn-premium-secondary {
        padding: 12px 10px;
        font-size: 11px;
    }

    .stats-bar-premium {
        gap: 16px;
        padding: 18px 16px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .cards-3d-container {
        height: 240px;
        transform: scale(0.4);
        margin-bottom: 15px;
    }
}






/* Content Layout */
.hero-content-left {
    position: relative;
    z-index: 10;
    padding-right: 30px;
}

/* Premium Title */
.hero-title-premium {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 24px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.03em;
}

.hero-subtitle-premium {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #475569;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 580px;
}

/* Quick Stats Mini */
.hero-quick-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.quick-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon-mini {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-green {
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.15), rgba(0, 183, 74, 0.08));
    color: #00b74a;
}

.stat-blue {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(0, 102, 204, 0.08));
    color: #0066cc;
}

.stat-teal {
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.15), rgba(0, 191, 166, 0.08));
    color: #00bfa6;
}

.stat-text-mini {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value-mini {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.stat-label-mini {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    /* letter-spacing: 0.05em; */
}

.stat-divider-mini {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

/* ========================================
   BBPS SERVICES VISUAL
   ======================================== */
/* ========================================
   HERO SERVICES SHOWCASE
======================================== */

.hero-services-showcase {
    position: relative;
    width: 100%;
    /* padding: 20px; */
}

/* Services Grid Layout */
.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Service Cards */
.service-showcase-card {
    background: white;
    padding: 28px 24px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Highlight Card (Electricity) */
.card-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* Card Icon Badge */
.card-icon-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bg-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.bg-green {
    background: linear-gradient(135deg, #00b74a 0%, #00d96f 100%);
}

.bg-blue {
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
}

.bg-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.bg-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.bg-teal {
    background: linear-gradient(135deg, #00bfa6 0%, #00e6c3 100%);
}

/* Quick Badge */
.quick-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    background: linear-gradient(135deg, #00b74a 0%, #00bfa6 100%);
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0, 183, 74, 0.3);
}

/* Service Content */
.service-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
}

.service-info {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Service Features */
.service-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Compact Cards */
.card-compact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.card-compact .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    flex-shrink: 0;
}

.compact-text h4 {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
}

.compact-text p {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   STATS INFO BAR
======================================== */

.stats-info-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px 32px;
    background: white;
    border-radius: 100px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #cbd5e1, transparent);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1199px) {
    .service-name {
        font-size: 1.375rem;
    }

    .icon-circle {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 991px) {
    .hero-services-showcase {
        margin-top: 50px;
    }

    .services-grid-layout {
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .services-grid-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-highlight {
        grid-column: 1;
    }

    .service-showcase-card {
        padding: 24px 20px;
    }

    .service-name {
        font-size: 1.25rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .stats-info-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 24px;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-services-showcase {
        padding: 15px;
    }

    .service-showcase-card {
        padding: 20px 18px;
    }

    .card-icon-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .service-name {
        font-size: 1.125rem;
    }

    .service-info {
        font-size: 0.875rem;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
    }

    .card-compact {
        padding: 18px 16px;
        gap: 14px;
    }

    .card-compact .icon-circle {
        width: 50px;
        height: 50px;
    }

    .compact-text h4 {
        font-size: 1rem;
    }

    .stats-info-bar {
        padding: 18px 20px;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 479px) {
    .service-showcase-card {
        padding: 18px 16px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .icon-circle svg {
        width: 26px;
        height: 26px;
    }

    .service-name {
        font-size: 1rem;
    }

    .quick-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .stat-value {
        font-size: 1.25rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 991px) {
    .hero-premium-section {
        padding: 140px 0 80px;
    }

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 60px;
        text-align: center;
    }

    .hero-title-premium {
        font-size: 3rem;
    }

    .hero-subtitle-premium {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-premium {
        justify-content: center;
    }

    .hero-quick-stats {
        justify-content: center;
        margin: 0 auto;
        max-width: 500px;
    }

    .bbps-services-visual {
        height: 520px;
    }

    .service-card-mini {
        width: 160px;
        padding: 16px;
    }
}


@media (min-width: 999px) and (max-width: 1045px) {
    .service-card-mini {
        width: auto !important;
    }


    .hero-premium-section {

        min-height: 70vh;

    }
}


@media (max-width: 767px) {
    .hero-premium-section {
        padding: 30px 0 60px;
    }

    .hero-title-premium {
        font-size: 2.25rem;
    }

    .hero-subtitle-premium {
        font-size: 1.05rem;
    }

    .hero-cta-premium {
        flex-direction: column;
        width: 100%;
    }

    .btn-premium-primary,
    .btn-premium-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-quick-stats {
        display: none;
    }

    .stat-divider-mini {
        width: 100%;
        height: 1px;
    }


    .service-card-mini {
        width: 140px;
        padding: 14px;
    }

    .service-icon-orbit {
        width: 48px;
        height: 48px;
    }

    .service-text-orbit h6 {
        font-size: 0.9rem;
    }

    .service-text-orbit p {
        font-size: 0.75rem;
    }
}

@media (max-width: 479px) {
    .hero-title-premium {
        font-size: 1.875rem;
    }

    .hero-subtitle-premium {
        font-size: 0.95rem;
    }


    .hub-core {
        width: 80px;
        height: 80px;
    }

    .hub-icon {
        width: 36px;
        height: 36px;
    }

    .service-card-mini {
        width: 130px;
        padding: 12px;
    }
}

/* hero section  css end */





/* agent instituition section css start */

/* ========================================
   AGENT INSTITUTION SECTION - PREMIUM CSS
   ======================================== */

/* ========================================
   AGENT PREMIUM UNIQUE SECTION - ULTRA CSS
   ======================================== */

.agent-premium-unique-section {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f8f9fc 100%);
    overflow: hidden;
}

/* Premium Background */
.agent-unique-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.unique-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.2;
}

.unique-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: uniqueOrbFloat 30s ease-in-out infinite;
}

.unique-orb-2 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.5) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation: uniqueOrbFloat 35s ease-in-out infinite reverse;
}

@keyframes uniqueOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(60px, -60px) scale(1.15);
    }
}

.unique-gradient-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 183, 74, 0.03) 0%, transparent 50%);
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #8b5cf6, #00b74a);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 20s ease-in-out infinite;
}

.particle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 35%;
    right: 15%;
    animation-delay: 4s;
}

.particle-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 8s;
}

.particle-4 {
    top: 60%;
    right: 25%;
    animation-delay: 12s;
}

.particle-5 {
    bottom: 15%;
    right: 10%;
    animation-delay: 16s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(30px, -30px);
    }

    50% {
        transform: translate(-20px, -50px);
    }

    75% {
        transform: translate(20px, -20px);
    }
}

/* ========================================
   UNIQUE HEADER
   ======================================== */

.agent-unique-header {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}


.header-badge-unique {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(0, 183, 74, 0.2);
    box-shadow: 0 4px 20px rgba(0, 183, 74, 0.1);
    margin-bottom: 24px;
}


.badge-unique-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    animation: badgeGlowPulse 3s ease-in-out infinite;
}

@keyframes badgeGlowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.badge-unique-icon {
    width: 18px;
    height: 18px;
    color: #00b74a;
}

.badge-unique-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #00b74a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-unique-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: badgeUniqueShine 4s ease-in-out infinite;
}

@keyframes badgeUniqueShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 200%;
    }
}

.unique-main-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.02em;
}

.gradient-text-unique {
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.unique-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #64748b;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   UNIQUE 3-COLUMN BENTO GRID
   ======================================== */

.agent-bento-unique-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 32px;
    max-width: 1600px;
    margin: 0 auto 80px;
}

.bento-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Feature Bento Cards */
.feature-bento-card {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px);
    border-radius: 32px;
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.feature-bento-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.bento-card-bg-glow {
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(80px);
}

.card-bento-purple:hover .bento-card-bg-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
}

.card-bento-green:hover .bento-card-bg-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.4) 0%, transparent 70%);
}

.card-bento-blue:hover .bento-card-bg-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.4) 0%, transparent 70%);
}

.card-bento-orange:hover .bento-card-bg-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 70%);
}

.bento-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.bento-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.icon-circle-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.icon-circle-green {
    background: linear-gradient(135deg, #00b74a 0%, #00d96f 100%);
}

.icon-circle-blue {
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
}

.icon-circle-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.bento-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    z-index: 1;
}

.bento-card-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.bento-card-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.stat-big {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #00b74a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.stat-small {
    font-size: 0.875rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   CENTRAL HEXAGONAL VISUAL
   ======================================== */

/* ========================================
   COMPLETELY NEW VISUAL - MODERN DESIGN
   ======================================== */

.central-visual-card-new {
    position: relative;
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    border-radius: 32px;
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 183, 74, 0.3);
}

/* Modern Hub Container */
.modern-hub-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rotating Rings */
.outer-ring-container,
.middle-ring-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rotating-ring {
    width: 200px;
    height: 200px;
    animation: rotateClockwise 20s linear infinite;
}

.rotating-ring-reverse {
    width: 160px;
    height: 160px;
    animation: rotateCounter 15s linear infinite;
}

@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateCounter {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* Center Agent Circle */
.center-agent-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.agent-circle-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.agent-icon-wrapper {
    margin-bottom: 8px;
}

.agent-icon-wrapper svg {
    color: #00b74a;
    filter: drop-shadow(0 4px 8px rgba(0, 183, 74, 0.3));
}

.agent-label {
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: #00b74a;
    border-radius: 50%;
    animation: pulseIndicator 2s ease-in-out infinite;
}

@keyframes pulseIndicator {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Floating Service Cards */
.floating-service-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: floatCard 4s ease-in-out infinite;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.floating-service-card:hover .service-card-icon {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.service-card-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Card Positions */
.service-card-1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.service-card-2 {
    top: 25%;
    right: 10px;
    animation-delay: 0.7s;
}

.service-card-3 {
    bottom: 25%;
    right: 10px;
    animation-delay: 1.4s;
}

.service-card-4 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2.1s;
}

.service-card-5 {
    bottom: 25%;
    left: 10px;
    animation-delay: 2.8s;
}

.service-card-6 {
    top: 25%;
    left: 10px;
    animation-delay: 3.5s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    50% {
        transform: translateY(-15px) translateX(-50%);
    }
}

.service-card-2,
.service-card-3,
.service-card-5,
.service-card-6 {
    animation: floatCardSide 4s ease-in-out infinite;
}

@keyframes floatCardSide {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Connection Lines */
.connection-lines-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
}

.connect-line {
    animation: lineFlow 3s ease-in-out infinite;
}

@keyframes lineFlow {

    0%,
    100% {
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dashoffset: 20;
    }
}

/* Bottom Label */
.central-card-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
}

.label-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.label-text {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 767px) {
    .modern-hub-container {
        width: 320px;
        height: 320px;
        transform: scale(0.85);
    }

    .central-visual-card-new {
        min-height: 450px;
        padding: 40px 24px;
    }
}

@media (max-width: 479px) {
    .modern-hub-container {
        transform: scale(0.7);
    }
}

/* ========================================
   BOTTOM SECTION - STATS & CTA
   ======================================== */

.agent-bottom-section {
    position: relative;
    z-index: 10;
}

/* Stats Glass Cards */
.stats-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.stat-glass-card {
    position: relative;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.stat-glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.stat-glass-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 183, 74, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.stat-glass-number {
    font-size: 1.35rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #00b74a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-glass-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Premium CTA */
.premium-cta-container {
    text-align: center;
}

.btn-premium-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 22px 50px;
    background: var(--gradient-primary);

    color: white;
    border: none;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(139, 92, 246, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 40px 90px rgba(139, 92, 246, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.btn-cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    animation: ctaBtnShine 5s ease-in-out infinite;
}

@keyframes ctaBtnShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 200%;
    }
}

.btn-cta-icon,
.btn-cta-arrow {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.btn-cta-text {
    position: relative;
    z-index: 1;
}

.btn-cta-arrow {
    transition: transform 0.4s ease;
}

.btn-premium-cta:hover .btn-cta-arrow {
    transform: translateX(6px);
}

.cta-subtext {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1199px) {
    .agent-bento-unique-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bento-column {
        flex-direction: row;
    }

    .central-visual-card {
        min-height: 500px;
    }
}

@media (max-width: 991px) {
    .agent-premium-unique-section {
        padding: 100px 0;
    }

    .unique-main-title {
        font-size: 3rem;
    }

    .stats-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .hexagon-hub-container {
        max-width: 350px;
        height: 350px;
    }
}

@media (max-width: 767px) {
    .agent-premium-unique-section {
        padding: 80px 0;
    }

    .unique-main-title {
        font-size: 2.25rem;
    }

    .unique-subtitle {
        font-size: 1.05rem;
    }

    .bento-column {
        flex-direction: column;
    }

    .stats-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .central-visual-card {
        min-height: 450px;
        padding: 40px 24px;
    }

    .hexagon-hub-container {
        max-width: 300px;
        height: 300px;
    }

    .btn-premium-cta {
        width: 100%;
        justify-content: center;
        padding: 20px 40px;
        font-size: 16px;
    }
}

@media (max-width: 479px) {
    .unique-main-title {
        font-size: 1.875rem;
    }

    .feature-bento-card {
        padding: 32px 24px;
    }

    .bento-icon-circle {
        width: 64px;
        height: 64px;
    }

    .stat-big {
        font-size: 2rem;
    }

    .hexagon-hub-container {
        transform: scale(0.85);
    }
}

/* agent instituition section css end */























/* digibro retailer section css start  */



/* ========================================
   DIGIBRO RETAILER SECTION - PREMIUM CSS
   ======================================== */


/* ========================================
   RETAILER PREMIUM SECTION
   ======================================== */
.retailer-premium-section {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 50%, #f8fafc 100%);
    overflow: hidden;
}

/* Premium Background */
.retailer-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.retailer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.25;
}

.retailer-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.5) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation: retailerOrbFloat 25s ease-in-out infinite;
}

.retailer-orb-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.4) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: retailerOrbFloat 30s ease-in-out infinite reverse;
}

@keyframes retailerOrbFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, -40px);
    }
}

.retailer-mesh-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 183, 74, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 183, 74, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.retailer-light-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 183, 74, 0.03) 0%, transparent 60%);
}

.retailer-floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.retailer-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #00b74a, #0066cc);
    border-radius: 50%;
    opacity: 0.4;
    animation: retailerParticleFloat 20s ease-in-out infinite;
}

.retailer-particle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.retailer-particle-2 {
    top: 35%;
    right: 15%;
    animation-delay: 4s;
}

.retailer-particle-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 8s;
}

.retailer-particle-4 {
    top: 60%;
    right: 25%;
    animation-delay: 12s;
}

.retailer-particle-5 {
    bottom: 15%;
    right: 10%;
    animation-delay: 16s;
}

@keyframes retailerParticleFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(30px, -30px);
    }

    50% {
        transform: translate(-20px, -50px);
    }

    75% {
        transform: translate(20px, -20px);
    }
}

/* Content Wrapper */
.retailer-content-wrapper {
    position: relative;
    z-index: 10;
}

/* ===== Image Container ===== */
.retailer-image-container {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

.retailer-main-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.image-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.3) 0%, transparent 70%);
    animation: imageGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes imageGlowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.retailer-photo {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* Floating Badges */
.floating-success-badge,
.floating-commission-badge,
.floating-live-status {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 100px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-position-1 {
    top: 5%;
    right: -8%;
    animation-delay: 0s;
}

.badge-position-2 {
    bottom: 15%;
    left: -8%;
    animation-delay: 2s;
}

.badge-position-3 {
    top: 45%;
    right: -5%;
    animation-delay: 1s;
    padding: 12px 20px;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.success-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b74a 0%, #00d96f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 183, 74, 0.35);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 8px;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.commission-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.35);
}

.commission-text {
    display: flex;
    flex-direction: column;
}

.commission-percent {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 8px;
}

.commission-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

.live-pulse {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    position: relative;
}

.live-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ef4444;
    border-radius: 50%;
    animation: livePulse 2s ease-out infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.live-text {
    font-size: 0.875rem;
    font-weight: 800;
    color: #ef4444;
    letter-spacing: 0.1em;
}

/* Decorative Elements */
.retailer-decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.15;
}

.circle-1 {
    width: 300px;
    height: 300px;
    border-color: #00b74a;
    top: -10%;
    left: -10%;
    animation: decorRotate 30s linear infinite;
}

.circle-2 {
    width: 250px;
    height: 250px;
    border-color: #0066cc;
    bottom: -8%;
    right: -8%;
    animation: decorRotate 25s linear infinite reverse;
}

@keyframes decorRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.retailer-decoration-line {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00b74a, transparent);
    opacity: 0.3;
}

.line-1 {
    top: 20%;
    left: -5%;
    transform: rotate(45deg);
    animation: lineGlow 3s ease-in-out infinite;
}

.line-2 {
    bottom: 25%;
    right: -5%;
    transform: rotate(-45deg);
    animation: lineGlow 3s ease-in-out infinite 1.5s;
}

@keyframes lineGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* ===== Premium Content ===== */
.retailer-content-premium {
    position: relative;
    z-index: 10;
}

.retailer-header-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(0, 183, 74, 0.15);
    box-shadow: 0 4px 20px rgba(0, 183, 74, 0.1);
    margin-bottom: 24px;
    overflow: hidden;
}

.header-badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: headerBadgeShine 3s ease-in-out infinite;
}

@keyframes headerBadgeShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

.header-badge-icon {
    width: 18px;
    height: 18px;
    color: #00b74a;
}

.header-badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #00b74a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.retailer-main-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.02em;
}

.text-gradient-premium {
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.retailer-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 580px;
}

/* Features Grid */
.retailer-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.retailer-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.retailer-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.icon-green {
    background: linear-gradient(135deg, #00b74a 0%, #00d96f 100%);
}

.icon-blue {
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
}

.icon-teal {
    background: linear-gradient(135deg, #00bfa6 0%, #00e6c3 100%);
}

.icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.feature-text-content {
    flex: 1;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
}

.feature-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* CTA Section */
.retailer-cta-section {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-retailer-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 183, 74, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-retailer-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(0, 183, 74, 0.45);
}

.btn-retailer-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: btnRetailerShine 4s ease-in-out infinite;
}

@keyframes btnRetailerShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 150%;
    }
}

.btn-retailer-icon,
.btn-retailer-arrow {
    width: 20px;
    height: 20px;
}

.btn-retailer-arrow {
    transition: transform 0.3s ease;
}

.btn-retailer-primary:hover .btn-retailer-arrow {
    transform: translateX(4px);
}

.btn-retailer-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: white;
    color: #1e293b;
    border: 2px solid #e2e8f0;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-retailer-secondary:hover {
    border-color: #00b74a;
    background: rgba(0, 183, 74, 0.04);
    transform: translateY(-2px);
}

.btn-secondary-icon {
    width: 18px;
    height: 18px;
    color: #00b74a;
}

/* Trust Section */
.retailer-trust-section {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .retailer-premium-section {
        padding: 80px 0;
    }

    .retailer-main-heading {
        font-size: 2.5rem;
    }

    .retailer-description {
        font-size: 1.05rem;
    }

    .retailer-image-container {
        margin-bottom: 60px;
    }

    .badge-position-1,
    .badge-position-2,
    .badge-position-3 {
        position: static;
        margin: 16px auto;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .retailer-premium-section {
        padding: 60px 0;
    }

    .floating-live-status {
        display: none;
    }

    .retailer-main-heading {
        font-size: 2rem;
    }

    .retailer-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .retailer-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .retailer-cta-section {
        flex-direction: column;
        width: 100%;
    }

    .btn-retailer-primary,
    .btn-retailer-secondary {
        width: 100%;
        justify-content: center;
    }

    .retailer-trust-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .trust-divider {
        width: 100px;
        height: 1px;
    }

    .badge-position-1,
    .badge-position-2 {
        padding: 12px 20px;
        flex-direction: column;
        text-align: center;
    }

    .badge-number,
    .commission-percent {
        font-size: 1.25rem;
    }
}

@media (max-width: 479px) {
    .retailer-main-heading {
        font-size: 1.75rem;
    }

    .retailer-description {
        font-size: 0.95rem;
    }

    .retailer-feature-item {
        padding: 16px;
    }

    .feature-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 0.8rem;
    }

    .btn-retailer-primary,
    .btn-retailer-secondary {
        padding: 16px 32px;
        font-size: 14px;
    }
}

/* digibro rtailer section css end */









/* ========================================
   ABOUT US - ULTRA PREMIUM DESIGN
   ======================================== */

.about-us-ultra-premium {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 30%, #ffffff 70%, #f8fafc 100%);
    overflow: hidden;
}

/* Ultra Background */
.about-ultra-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ultra-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.18;
}

.ultra-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.6) 0%, transparent 70%);
    top: -12%;
    left: -8%;
    animation: ultraOrbFloat 30s ease-in-out infinite;
}

.ultra-orb-2 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.5) 0%, transparent 70%);
    bottom: -12%;
    right: -8%;
    animation: ultraOrbFloat 35s ease-in-out infinite reverse;
}

.ultra-orb-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    top: 40%;
    left: 45%;
    animation: ultraOrbFloat 40s ease-in-out infinite;
}

@keyframes ultraOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(80px, -80px) scale(1.2);
    }

    66% {
        transform: translate(-60px, 60px) scale(0.9);
    }
}

.ultra-grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 183, 74, 0.015) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 183, 74, 0.015) 2px, transparent 2px);
    background-size: 80px 80px;
    opacity: 0.6;
}

.ultra-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle-float {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #00b74a, #0066cc);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleUltraFloat 30s ease-in-out infinite;
}

.p-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.p-2 {
    top: 40%;
    right: 15%;
    animation-delay: 6s;
}

.p-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 12s;
}

.p-4 {
    top: 65%;
    right: 25%;
    animation-delay: 18s;
}

.p-5 {
    bottom: 15%;
    right: 10%;
    animation-delay: 24s;
}

@keyframes particleUltraFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(50px, -50px);
    }

    50% {
        transform: translate(-40px, -80px);
    }

    75% {
        transform: translate(40px, -40px);
    }
}

/* Header */
.about-ultra-header {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 950px;
    margin: 0 auto 100px;
}



/* ========================================
   ABOUT US - SPLIT LAYOUT FIX
   ======================================== */

.about-split-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

/* ============================================
   TRUST JOURNEY VISUAL - UNIQUE ABOUT US
   ============================================ */

.trust-journey-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg,
            #f0fdf4 0%,
            #e0f2fe 50%,
            #f0fdfa 100%);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

/* Central Trust Hub */
.central-trust-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.hub-pulse-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 3px solid rgba(0, 183, 74, 0.3);
    border-radius: 50%;
    animation: hubPulse 3s ease-out infinite;
}

@keyframes hubPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.hub-core {
    position: relative;
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow:
        0 20px 60px rgba(0, 183, 74, 0.25),
        0 0 0 8px rgba(255, 255, 255, 0.5);
    animation: hubRotate 20s linear infinite;
}

@keyframes hubRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hub-icon {
    animation: hubRotate 20s linear infinite reverse;
}

.hub-text {
    text-align: center;
    animation: hubRotate 20s linear infinite reverse;
}

.hub-title {
    font-size: 1.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00b74a, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'DM Sans', sans-serif;
}

.hub-title img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.hub-subtitle {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.05em;
}

/* Journey Path SVG */
.journey-path-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Milestone Cards */
.milestone-card {
    position: absolute;
    z-index: 10;
    animation: milestoneFloat 4s ease-in-out infinite;
}

.milestone-1 {
    top: 8%;
    left: 8%;
    animation-delay: 0s;
}

.milestone-2 {
    top: 8%;
    right: 8%;
    animation-delay: 1s;
}

.milestone-3 {
    bottom: 8%;
    left: 8%;
    animation-delay: 2s;
}

.milestone-4 {
    bottom: 8%;
    right: 8%;
    animation-delay: 3s;
}

@keyframes milestoneFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.milestone-connector {
    position: absolute;
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom,
            rgba(0, 183, 74, 0.4),
            transparent);
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.milestone-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.15), rgba(0, 102, 204, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b74a;
    margin: 0 auto 12px;
    box-shadow: 0 8px 24px rgba(0, 183, 74, 0.2);
    transition: all 0.4s ease;
}

.milestone-card:hover .milestone-badge {
    transform: scale(1.1) rotate(10deg);
}

.milestone-badge-blue {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(0, 183, 74, 0.15));
    color: #0066cc;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
}

.milestone-badge-teal {
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.15), rgba(0, 230, 195, 0.15));
    color: #00bfa6;
    box-shadow: 0 8px 24px rgba(0, 191, 166, 0.2);
}

.milestone-badge-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(0, 183, 74, 0.15));
    color: #8b5cf6;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.milestone-content {
    background: white;
    padding: 16px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    min-width: 140px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 183, 74, 0.1);
}

.milestone-card:hover .milestone-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 183, 74, 0.15);
}

.milestone-number {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00b74a, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
    margin-bottom: 6px;
}

.milestone-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.milestone-desc {
    font-size: 0.7rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 8px;
}

.milestone-year {
    font-size: 0.65rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 183, 74, 0.1);
}

/* Floating Features */
.floating-feature {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    animation: featureFloat 5s ease-in-out infinite;
    z-index: 5;
}

.feature-1 {
    top: 28%;
    left: 3%;
    animation-delay: 0s;
}

.feature-2 {
    top: 35%;
    right: 2%;
    animation-delay: 1.2s;
}

.feature-3 {
    bottom: 35%;
    left: 2%;
    animation-delay: 2.4s;
}

.feature-4 {
    bottom: 28%;
    right: 3%;
    animation-delay: 3.6s;
}

@keyframes featureFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.05);
    }
}

.feature-icon {
    font-size: 18px;
    line-height: 1;
}

/* Decorative Circles */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.06;
}

.deco-1 {
    width: 400px;
    height: 400px;
    border-color: #00b74a;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: decoRotate 40s linear infinite;
}

.deco-2 {
    width: 320px;
    height: 320px;
    border-color: #0066cc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: decoRotate 30s linear infinite reverse;
}

.deco-3 {
    width: 240px;
    height: 240px;
    border-color: #00bfa6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: decoRotate 50s linear infinite;
}

@keyframes decoRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
    .trust-journey-container {
        max-width: 500px;
        height: 500px;
    }

    .hub-core {
        width: 140px;
        height: 140px;
    }

    .milestone-badge {
        width: 56px;
        height: 56px;
    }

    .milestone-badge svg {
        width: 28px;
        height: 28px;
    }

    .milestone-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .about-visual-left {
        height: 450px;
    }

    .trust-journey-container {
        transform: scale(0.85);
    }

    .milestone-content {
        padding: 14px 16px;
        min-width: 120px;
    }

    .milestone-label {
        font-size: 0.75rem;
    }

    .floating-feature {
        padding: 8px 14px;
        font-size: 0.7rem;
    }
}

@media (max-width: 575px) {
    .trust-journey-container {
        transform: scale(0.72);
        height: 480px;
    }

    .hub-core {
        width: 120px;
        height: 120px;
    }

    .hub-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 479px) {
    .trust-journey-container {
        transform: scale(0.62);
    }

    .milestone-content {
        padding: 12px 14px;
        min-width: 110px;
    }
}

/* RIGHT: Feature Cards - Ensure Display */
.about-features-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    /* Ensure full width */
    position: relative;
    /* Ensure proper stacking */
    z-index: 5;
    /* Above marquee */
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
}

/* Feature Cards - Ensure Visibility */
.feature-card-ultra {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.09);
    width: 100%;
    /* Full width of grid cell */
    min-height: 300px;
    /* Minimum height */
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1199px) {
    .about-split-container {
        display: unset;

    }

    .about-visual-left {
        height: 500px;
        margin: 0 auto;
        max-width: 600px;
        margin-bottom: 80px !important;
    }

    .about-features-right {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .about-split-container {
        gap: 50px;
    }

    .about-visual-left {
        height: 450px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .marquee-item {
        width: 250px;
        height: 160px;
    }

    .marquee-container {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .about-visual-left {
        height: 400px;
    }

    .marquee-item {
        width: 220px;
        height: 140px;
    }

    .marquee-container {
        gap: 18px;
        padding: 15px 0;
    }

    .marquee-content {
        gap: 16px;
    }

    .feature-card-ultra {
        padding: 36px 28px;
        min-height: 280px;
    }
}

@media (max-width: 575px) {
    .about-visual-left {
        height: 350px;
    }

    .marquee-item {
        width: 200px;
        height: 130px;
    }

    .marquee-container {
        gap: 16px;
    }

    .marquee-content {
        gap: 14px;
    }
}

@media (max-width: 479px) {
    .about-visual-left {
        height: 320px;
    }

    .marquee-item {
        width: 180px;
        height: 120px;
    }

    .marquee-container {
        gap: 14px;
    }

    .marquee-content {
        gap: 12px;
    }

    .feature-card-ultra {
        padding: 32px 24px;
        min-height: 260px;
    }
}

/* RIGHT: Feature Cards Grid */
.about-features-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Feature Cards */
.feature-card-ultra {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 28px;
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

.feature-card-ultra:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.15);
}

/* Card Glow */
.card-ultra-glow {
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(90px);
}

.card-speed:hover .glow-green {
    opacity: 1;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.4) 0%, transparent 70%);
}

.card-security:hover .glow-blue {
    opacity: 1;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.4) 0%, transparent 70%);
}

.card-global:hover .glow-teal {
    opacity: 1;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.4) 0%, transparent 70%);
}

.card-support:hover .glow-purple {
    opacity: 1;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
}

/* Number Badge */
.card-number-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

/* Feature Icon */
.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.icon-green {
    background: linear-gradient(135deg, #00b74a 0%, #00d96f 100%);
    color: white;
}

.icon-blue {
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
    color: white;
}

.icon-teal {
    background: linear-gradient(135deg, #00bfa6 0%, #00e6c3 100%);
    color: white;
}

.icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
}

/* Feature Content */
.feature-ultra-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    z-index: 1;
}

.feature-ultra-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

/* Feature Metric */
.feature-metric {
    display: flex;
    align-items: baseline;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Bottom Stats */
.about-stats-premium {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 42px 55px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px);
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.12);
    flex-wrap: wrap;
}

.stat-premium-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.stat-icon-premium {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.stat-icon-green {
    background: linear-gradient(135deg, #00b74a 0%, #00d96f 100%);
    color: white;
}

.stat-icon-blue {
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
    color: white;
}

.stat-icon-teal {
    background: linear-gradient(135deg, #00bfa6 0%, #00e6c3 100%);
    color: white;
}

.stat-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
}

.stat-content-premium {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number-premium {
    font-size: 1.35rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.stat-label-premium {
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider-premium {
    width: 1.5px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.12), transparent);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1199px) {


    .globe-3d-container {
        transform: scale(0.9);
    }
}

@media (max-width: 991px) {
    .about-us-ultra-premium {
        padding: 100px 0;
    }

    .about-ultra-header {
        margin-bottom: 70px;
    }

    .about-split-container {
        margin-bottom: 70px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-stats-premium {
        gap: 32px;
        padding: 36px 40px;
    }
}

@media (max-width: 767px) {
    .about-us-ultra-premium {
        padding: 80px 0;
    }

    .about-ultra-header {
        margin-bottom: 50px;
    }

    .about-split-container {
        margin-bottom: 50px;
    }

    .globe-3d-container {
        width: 350px;
        height: 350px;
        transform: scale(0.8);
    }

    .feature-label-float {
        display: none;
    }

    .feature-card-ultra {
        padding: 36px 28px;
    }

    .feature-icon-circle {
        width: 70px;
        height: 70px;
    }

    .feature-ultra-title {
        font-size: 1.35rem;
    }

    .about-stats-premium {
        display: none !important;
    }

    .stat-divider-premium {
        width: 100px;
        height: 1px;
    }
}

@media (max-width: 479px) {
    .globe-3d-container {
        width: 300px;
        height: 300px;
        transform: scale(0.7);
    }

    .feature-card-ultra {
        padding: 32px 24px;
    }

    .feature-icon-circle {
        width: 64px;
        height: 64px;
    }

    .feature-ultra-title {
        font-size: 1.2rem;
    }

    .stat-number-premium {
        font-size: 1.75rem;
    }
}

/* why choose us section css end */


/* footer sections start  */

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--text-dark);
    color: white;
}

.footer-top {
    padding: 90px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 50px;
}

.footer-logo-wrap {
    margin-bottom: 25px;
}

.footer-logo-text {
    font-size: 32px;
    font-weight: 800;
    color: white;
}

.footer-logo-text span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 28px;
}

.footer-brand img {
    height: 80px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--shadow-green);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 28px;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
    padding-left: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-contact i {
    color: var(--primary-green);
    margin-top: 4px;
    font-size: 16px;
}

.footer-bottom {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 500;
}

.footer-bottom i.fa-heart {
    color: #ef4444;
}

.payment-partners {
    display: flex;
    gap: 18px;
}

.payment-partners img {
    height: 32px;
    opacity: 0.6;
    transition: var(--transition);
}

.payment-partners img:hover {
    opacity: 1;
}

/* footer sections end   */

/* ===== RESPONSIVE UTILITIES ===== */
/* ========================================
   RESPONSIVE DESIGN - COMPREHENSIVE
   ======================================== */

/* ===== EXTRA LARGE SCREENS (1400px+) ===== */
@media (min-width: 1400px) {
    .container-fluid {
        padding: 0 60px;
    }


    .section-title {
        font-size: 3.5rem;
    }
}

/* ===== LARGE SCREENS (1200px - 1399px) ===== */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container-fluid {
        padding: 0 50px;
    }


    .section-title {
        font-size: 3rem;
    }
}

/* ===== DESKTOP (992px - 1199px) ===== */
@media (min-width: 992px) and (max-width: 1199px) {
    .container-fluid {
        padding: 0 40px;
    }

    .navbar-brand img {
        height: 70px;
    }

    .nav-link {
        padding: 10px 15px !important;
        font-size: 15px;
    }

    .nav-btn-secondary,
    .nav-btn-primary {
        padding: 10px 24px;
        font-size: 14px;
    }

    .hero-section {
        padding-top: 8rem;
        padding-bottom: 6rem;
    }



    .hero-description {
        font-size: 1rem;
    }

    .phone-mockup-container {
        margin-left: -2rem;
        transform: scale(1);
    }

    .phone-device {
        width: 260px;
        height: 460px;
    }

    .floating-card.spotify-card {
        width: 170px;
        right: -40px;
    }

    .floating-card.netflix-card {
        width: 160px;
        left: -70px;
    }

    .floating-card.spend-card {
        width: 190px;
        right: -50px;
    }

    .credit-card {
        width: 200px;
        height: 130px;
        padding: 1rem;
    }

    .credit-card-2 {
        width: 200px;
        height: 130px;
        padding: 1rem;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .dashboard-card {
        width: 220px;
        height: 390px;
    }

    .card-2 {
        margin-left: -70px;
        margin-top: 60px;
    }

    .service-card {
        flex: 0 0 360px;
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1.8fr repeat(4, 1fr);
        gap: 40px;
    }
}

/* ===== TABLET LANDSCAPE (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
    .container-fluid {
        padding: 0 30px;
    }

    .testimonials-premium-header {
        margin-bottom: 60px;
    }

    /* Navbar */
    .navbar {
        padding: 15px 0;
    }

    .navbar-brand img {
        height: 60px;
    }

    .navbar-collapse {
        background-color: white;
        padding: 25px;
        border-radius: 20px;
        margin-top: 20px;
        box-shadow: var(--shadow-lg);
    }

    .navbar-nav {
        gap: 10px;
    }

    .nav-link {
        padding: 12px 20px !important;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(0, 183, 74, 0.1);
    }

    .nav-actions {
        flex-direction: row;
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--gray-200);
    }

    .nav-btn-secondary,
    .nav-btn-primary {
        flex: 1;
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 7rem;
        padding-bottom: 5rem;
    }



    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 12px;
    }

    .btn-gradient,
    .btn-outline-custom {
        padding: 14px 28px;
        font-size: 15px;
    }

    .hero-features {
        flex-direction: row;
        gap: 2rem;
    }

    .phone-mockup-container {
        margin-left: 0;
        margin-top: 3rem;
        transform: scale(0.95);
    }

    .phone-device {
        width: 270px;
        height: 480px;
    }

    .floating-card.spotify-card {
        width: 180px;
        right: -45px;
        top: -20px;
    }

    .floating-card.netflix-card {
        width: 165px;
        left: -75px;
    }

    .floating-card.spend-card {
        width: 195px;
        right: -55px;
    }

    .credit-card {
        width: 210px;
        height: 135px;
    }

    .credit-card-2 {
        width: 210px;
        height: 135px;
    }

    /* Partners Section */
    .partner-logo {
        height: 28px;
    }

    .partner-text {
        font-size: 1.75rem;
    }

    /* Control Section */
    .control-section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .dashboard-mockup {
        margin-top: 3rem;
        justify-content: center;
    }

    .dashboard-card {
        width: 210px;
        height: 380px;
    }

    .card-1 {
        margin-right: -60px;
    }

    .card-2 {
        margin-left: 0;
        margin-top: 70px;
    }

    .features-list {
        gap: 1.25rem;
    }

    /* Services Section */
    .services-section {
        padding: 5rem 0;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .service-card {
        flex: 0 0 340px;
        padding: 2rem;
    }

    .service-title {
        font-size: 1.375rem;
    }

    /* Roadmap Section */
    .roadmap-section {
        padding: 5rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .spending-card {
        transform: scale(0.95);
        margin-top: 3rem;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 5rem 0;
    }

    .testimonial-image {
        min-height: 350px;
    }

    .testimonial-quote {
        font-size: 1.5rem;
    }

    .testimonial-content {
        padding: 2.5rem;
    }

    /* Cards Section */
    .cards-section {
        padding: 5rem 0;
    }

    .cards-display {
        height: 450px;
        margin-top: 3rem;
    }

    .cards-circle-outer {
        width: 360px;
        height: 360px;
    }

    .cards-circle-middle {
        width: 270px;
        height: 270px;
    }

    .cards-stack {
        transform: scale(0.9);
    }

    .debit-card {
        width: 290px;
        height: 190px;
    }

    /* CTA Section */
    .cta-section {
        padding: 5rem 1rem;
    }

    .cta-box {
        padding: 3.5rem 2.5rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    /* Footer */
    .footer-top {
        padding: 70px 0 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ===== TABLET PORTRAIT (576px - 767px) ===== */
@media (min-width: 576px) and (max-width: 767px) {
    .container-fluid {
        padding: 0 25px;
    }

    /* Navbar */
    .navbar {
        padding: 12px 0;
    }

    .navbar-brand img {
        height: 55px;
    }

    .navbar-collapse {
        /* backdrop-filter: blur(20px); */
        backdrop-filter: blur(20px);

        padding: 20px;
        border-radius: 18px;
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
    }

    .nav-link {
        padding: 12px 18px !important;
        font-size: 15px;
    }

    .nav-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--gray-200);
    }

    .nav-btn-secondary,
    .nav-btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .user-badge {
        padding: 0.5rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-gradient,
    .btn-outline-custom {
        width: 100%;
        padding: 16px 32px;
        font-size: 16px;
        text-align: center;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 1.25rem;
        align-items: flex-start;
    }

    .phone-mockup-container {
        margin-top: 3rem;
        transform: scale(0.85);
    }

    .phone-device {
        width: 260px;
        height: 460px;
    }

    .floating-card.spotify-card {
        width: 165px;
        right: -35px;
        top: -15px;
    }

    .floating-card.netflix-card {
        width: 150px;
        left: -60px;
    }

    .floating-card.spend-card {
        width: 180px;
        right: -45px;
        bottom: 40px;
    }

    .credit-card {
        width: 190px;
        height: 125px;
        padding: 1rem;
    }


    .credit-card-2 {
        width: 190px;
        height: 125px;
        padding: 1rem;
    }



    /* Control Section */
    .control-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.25rem;
        line-height: 1.25;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .dashboard-mockup {
        flex-direction: column;
        align-items: center;
        margin-top: 2.5rem;
    }

    .dashboard-card {
        width: 100%;
        max-width: 240px;
        height: auto;
        min-height: 380px;
    }

    .card-1 {
        margin-right: 0;
    }

    .card-2 {
        margin-left: 0;
        margin-top: 1.5rem;
    }

    .features-list {
        margin-top: 2.5rem;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
    }

    /* Services Section */
    .services-section {
        padding: 4rem 0;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .services-scroll {
        flex-direction: column;
        overflow-x: visible;
    }

    .service-card {
        flex: 0 0 100%;
        width: 100%;
        padding: 2rem;
    }

    .service-icon {
        width: 52px;
        height: 52px;
    }

    .service-title {
        font-size: 1.35rem;
    }

    /* Roadmap Section */
    .roadmap-section {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .spending-card {
        transform: scale(1);
        margin-top: 2.5rem;
        padding: 1.75rem;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonial-image {
        min-height: 300px;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .testimonial-quote {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    /* Cards Section */
    .cards-section {
        padding: 4rem 0;
    }

    .cards-display {
        height: 400px;
        margin-top: 2.5rem;
    }

    .cards-circle-outer {
        width: 320px;
        height: 320px;
    }

    .cards-circle-middle {
        width: 240px;
        height: 240px;
    }

    .cards-stack {
        flex-direction: column;
        gap: 1rem;
        transform: scale(0.8);
    }

    .debit-card {
        width: 100%;
        max-width: 300px;
        height: 195px;
        transform: rotate(0deg) !important;
        margin-right: 0 !important;
    }

    /* CTA Section */
    .cta-section {
        padding: 4rem 1rem;
    }

    .cta-box {
        padding: 3rem 2rem;
        border-radius: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }

    .btn-gradient-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

    /* Footer */
    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand p {
        font-size: 16px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .payment-partners {
        justify-content: center;
    }
}

/* ===== MOBILE LARGE (480px - 575px) ===== */
@media (min-width: 480px) and (max-width: 575px) {
    .container-fluid {
        padding: 0 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    /* Navbar */
    .navbar-brand img {
        height: 50px;
    }

    .navbar-collapse {
        padding: 18px;
        background-color: white;


        border-radius: 16px;
        margin-top: 12px;
    }

    .nav-link {
        padding: 10px 16px !important;
        font-size: 14px;
    }

    .nav-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 12px;
        padding-top: 12px;
    }

    .nav-btn-secondary,
    .nav-btn-primary {
        width: 100%;
        padding: 13px 20px;
        font-size: 14px;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .user-badge {
        padding: 0.45rem 1rem;
        margin-bottom: 1.25rem;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-bottom: 2rem;
    }

    .btn-gradient,
    .btn-outline-custom {
        width: 100%;
        padding: 14px 28px;
        font-size: 15px;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-value {
        font-size: 1.125rem;
    }

    .feature-label {
        font-size: 0.8rem;
    }

    .phone-mockup-container {
        transform: scale(0.75);
        margin-top: 2rem;
    }

    .phone-device {
        width: 250px;
        height: 440px;
    }

    .floating-card.spotify-card {
        width: 155px;
        right: -30px;
        top: -12px;
    }

    .floating-card.netflix-card {
        width: 140px;
        left: -50px;
    }

    .floating-card.spend-card {
        width: 170px;
        right: -40px;
    }

    .credit-card {
        width: 180px;
        height: 118px;
    }


    .credit-card-2 {
        width: 180px;
        height: 118px;
    }

    .card-number {
        font-size: 0.7rem;
    }



    /* Control Section */
    .control-section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .dashboard-mockup {
        flex-direction: column;
        margin-top: 2rem;
    }

    .dashboard-card {
        width: 100%;
        max-width: 280px;
        min-height: 360px;
    }

    .card-2 {
        margin-top: 1.25rem;
    }

    .features-list {
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 0.85rem;
    }

    /* Services Section */
    .services-section {
        padding: 3.5rem 0;
    }

    .services-header {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .services-scroll {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
        padding: 1.75rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-desc {
        font-size: 0.9rem;
    }

    /* Roadmap Section */
    .roadmap-section {
        padding: 3.5rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .stat-value {
        font-size: 1.65rem;
    }

    .spending-card {
        padding: 1.5rem;
        margin-top: 2rem;
        border-radius: 2.5rem;
    }

    .spending-boxes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 3.5rem 0;
    }

    .testimonial-badge {
        font-size: 0.7rem;
    }

    .testimonial-image {
        min-height: 280px;
    }

    .testimonial-content {
        padding: 1.75rem;
    }

    .testimonial-quote {
        font-size: 1.25rem;
        line-height: 1.5;
    }

    .client-name {
        font-size: 1.125rem;
    }

    .client-title {
        font-size: 0.8rem;
    }

    /* Cards Section */
    .cards-section {
        padding: 3.5rem 0;
    }

    .cards-display {
        height: 380px;
    }

    .cards-circle-outer {
        width: 300px;
        height: 300px;
    }

    .cards-circle-middle {
        width: 220px;
        height: 220px;
    }

    .circle-icon {
        font-size: 2rem;
    }

    .circle-text {
        font-size: 0.7rem;
    }

    .cards-stack {
        flex-direction: column;
        transform: scale(0.75);
    }

    .debit-card {
        width: 100%;
        max-width: 280px;
        height: 185px;
    }

    /* CTA Section */
    .cta-box {
        padding: 2.5rem 1.75rem;
        border-radius: 2rem;
    }

    .cta-title {
        font-size: 1.85rem;
        margin-bottom: 1.25rem;
    }

    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .btn-gradient-large {
        padding: 13px 28px;
        font-size: 0.95rem;
    }

    .cta-decoration {
        width: 70px;
        height: 70px;
    }

    /* Footer */
    .footer-top {
        padding: 50px 0 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo-text {
        font-size: 28px;
    }

    .footer-brand p {
        font-size: 15px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 18px;
    }

    .footer-bottom {
        padding: 22px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 18px;
    }

    .footer-bottom p {
        font-size: 13px;
        text-align: center;
    }

    .payment-partners img {
        height: 28px;
    }
}

/* ===== MOBILE MEDIUM (375px - 479px) ===== */
@media (min-width: 275px) and (max-width: 479px) {
    .container-fluid {
        padding: 0 18px;
    }

    /* Navbar */
    .navbar {
        padding: 10px 0;
    }

    .navbar-brand img {
        height: 45px;
    }

    .navbar-collapse {
        padding: 16px;
        border-radius: 14px;
        margin-top: 10px;
        background-color: white;

    }

    .nav-link {
        padding: 9px 14px !important;
        font-size: 13px;
    }

    .nav-actions {
        flex-direction: column;
        gap: 8px;
        margin-top: 10px;
        padding-top: 10px;
    }

    .nav-btn-secondary,
    .nav-btn-primary {
        width: 100%;
        padding: 12px 18px;
        font-size: 13px;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 4.5rem;
        padding-bottom: 2.5rem;
    }

    .user-badge {
        padding: 0.4rem 0.9rem;
        margin-bottom: 1rem;
    }

    .avatar {
        width: 20px;
        height: 20px;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 0.875rem;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 1.75rem;
    }

    .btn-gradient,
    .btn-outline-custom {
        width: 100%;
        padding: 13px 24px;
        font-size: 14px;
    }

    .hero-features {
        justify-content: center;
        align-items: center;
    }

    .feature-value {
        font-size: 1.05rem;
    }

    .feature-label {
        font-size: 0.75rem;
    }

    .phone-mockup-container {
        transform: scale(0.68);
        margin-top: 1.5rem;
        margin-bottom: -2rem;
    }

    .phone-device {
        width: 240px;
        height: 420px;
        padding: 10px;
    }

    .floating-card.spotify-card {
        width: 145px;
        right: -25px;
        top: -10px;
        padding: 0.65rem;
    }

    .floating-card.netflix-card {
        width: 130px;
        left: -45px;
        padding: 0.65rem;
    }

    .floating-card.spend-card {
        width: 160px;
        right: -35px;
        padding: 0.85rem;
    }

    .credit-card {
        width: 170px;
        height: 112px;
        padding: 0.875rem;
        left: -101px;
    }

    .credit-card-2 {
        width: 170px;
        height: 112px;
        padding: 0.875rem;
        right: -101px;

    }



    /* Control Section */
    .control-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.85rem;
        line-height: 1.3;
        margin-bottom: 0.875rem;
    }

    .section-description {
        font-size: 0.875rem;
        margin-bottom: 1.75rem;
    }

    .dashboard-mockup {
        margin-top: 1.75rem;
    }

    .dashboard-card {
        width: 100%;
        max-width: 260px;
        min-height: 340px;
        padding: 0.875rem;
    }

    .card-2 {
        margin-top: 1rem;
    }

    .features-list {
        gap: 1.125rem;
        margin-top: 1.75rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 0.95rem;
    }

    .feature-desc {
        font-size: 0.8rem;
    }

    /* Services Section */
    .services-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .services-header {
        margin-bottom: 1.75rem;
    }

    .nav-arrows {
        gap: 0.625rem;
    }

    .arrow-btn {
        width: 42px;
        height: 42px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1.25rem;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 0.875rem;
    }

    .service-desc {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .service-arrow {
        width: 42px;
        height: 42px;
    }

    /* Roadmap Section */
    .roadmap-section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .spending-card {
        padding: 1.35rem;
        margin-top: 1.75rem;
        border-radius: 2rem;
    }

    .spending-header {
        margin-bottom: 1.5rem;
    }

    .spending-title {
        font-size: 0.7rem;
    }

    .spending-boxes {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .box-label,
    .box-label-white {
        font-size: 0.6rem;
    }

    .box-value,
    .box-value-white {
        font-size: 1.05rem;
    }

    .spending-list {
        gap: 0.875rem;
    }

    .btn-learn-more-full {
        padding: 0.875rem;
        margin-top: 1.5rem;
        font-size: 0.8rem;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonial-badge {
        font-size: 0.65rem;
        margin-bottom: 0.375rem;
    }

    .section-title {
        font-size: 1.85rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-card-wrapper {
        border-radius: 2rem;
    }

    .testimonial-image {
        min-height: 260px;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-label {
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
    }

    .testimonial-quote {
        font-size: 1.15rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .client-name {
        font-size: 1.05rem;
    }

    .client-title {
        font-size: 0.75rem;
    }

    .testimonial-nav-btn {
        width: 42px;
        height: 42px;
    }

    /* Cards Section */
    .cards-section {
        padding: 3rem 0;
    }

    .section-description {
        font-size: 0.875rem;
    }

    .learn-link {
        font-size: 0.875rem;
    }

    .cards-display {
        height: 360px;
        margin-top: 2rem;
    }

    .cards-circle-outer {
        width: 280px;
        height: 280px;
    }

    .cards-circle-middle {
        width: 200px;
        height: 200px;
    }

    .circle-icon {
        font-size: 1.875rem;
    }

    .circle-text {
        font-size: 0.65rem;
    }

    .cards-stack {
        transform: scale(0.88);
    }

    .debit-card {
        width: 100%;
        max-width: 260px;
        height: 175px;
        padding: 1.25rem;
    }

    .card-number-display {
        font-size: 1rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-box {
        padding: 2.25rem 1.5rem;
        border-radius: 1.75rem;
    }

    .cta-title {
        font-size: 1.7rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 0.875rem;
        margin-bottom: 1.75rem;
    }

    .btn-gradient-large {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .cta-decoration {
        width: 60px;
        height: 60px;
    }

    .decoration-1 {
        top: 30px;
        left: 30px;
    }

    .decoration-2 {
        bottom: 30px;
        right: 30px;
    }

    /* Footer */
    .footer-top {
        padding: 45px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-logo-wrap {
        margin-bottom: 20px;
    }

    .footer-brand img {
        height: 70px;
    }

    .footer-logo-text {
        font-size: 26px;
    }

    .footer-brand p {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 17px;
        margin-bottom: 22px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .payment-partners {
        gap: 14px;
    }

    .payment-partners img {
        height: 26px;
    }
}

/* ===== MOBILE SMALL (320px - 374px) ===== */
@media (max-width: 374px) {
    .container-fluid {
        padding: 0 15px;
    }

    /* Navbar */
    .navbar {
        padding: 8px 0;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-collapse {
        padding: 14px;
        border-radius: 12px;
        margin-top: 8px;
    }

    .nav-link {
        padding: 8px 12px !important;
        font-size: 12px;
    }

    .nav-actions {
        gap: 8px;
        margin-top: 8px;
        padding-top: 8px;
    }

    .nav-btn-secondary,
    .nav-btn-primary {
        padding: 11px 16px;
        font-size: 12px;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }

    .user-badge {
        padding: 0.35rem 0.8rem;
    }

    .avatar {
        width: 18px;
        height: 18px;
    }

    .badge-text {
        font-size: 0.6rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.55;
        margin-bottom: 1.25rem;
    }

    .hero-buttons {
        gap: 8px;
        margin-bottom: 1.5rem;
    }

    .btn-gradient,
    .btn-outline-custom {
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-features {
        gap: 0.75rem;
    }

    .feature-value {
        font-size: 1rem;
    }

    .feature-label {
        font-size: 0.7rem;
    }

    .phone-mockup-container {
        transform: scale(0.6);
        margin-top: 1rem;
        margin-bottom: -3rem;
    }

    .phone-device {
        width: 230px;
        height: 400px;
    }

    .floating-card.spotify-card {
        width: 135px;
        right: -22px;
        top: -8px;
        padding: 0.6rem;
    }

    .floating-card.netflix-card {
        width: 120px;
        left: -40px;
        padding: 0.6rem;
    }

    .floating-card.spend-card {
        width: 150px;
        right: -30px;
        padding: 0.75rem;
    }

    .credit-card {
        width: 160px;
        height: 105px;
        padding: 0.75rem;
    }

    .credit-card-2 {
        width: 160px;
        height: 105px;
        padding: 0.75rem;
    }



    /* Control Section */
    .control-section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.65rem;
        line-height: 1.35;
        margin-bottom: 0.75rem;
    }

    .section-description {
        font-size: 0.825rem;
        margin-bottom: 1.5rem;
    }

    .dashboard-mockup {
        margin-top: 1.5rem;
    }

    .dashboard-card {
        max-width: 240px;
        min-height: 320px;
        padding: 0.75rem;
    }

    .card-2 {
        margin-top: 0.875rem;
    }

    .features-list {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
    }

    .feature-title {
        font-size: 0.9rem;
    }

    .feature-desc {
        font-size: 0.75rem;
    }

    /* Services Section */
    .services-section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .services-header {
        margin-bottom: 1.5rem;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
    }

    .service-card {
        padding: 1.35rem;
    }

    .service-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .service-desc {
        font-size: 0.825rem;
        margin-bottom: 1.25rem;
    }

    .service-arrow {
        width: 40px;
        height: 40px;
    }

    /* Roadmap Section */
    .roadmap-section {
        padding: 2.5rem 0;
    }

    .stats-grid {
        gap: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .stat-value {
        font-size: 1.35rem;
    }

    .stat-label {
        font-size: 0.55rem;
    }

    .spending-card {
        padding: 1.2rem;
        margin-top: 1.5rem;
        border-radius: 1.75rem;
    }

    .spending-header {
        margin-bottom: 1.25rem;
    }

    .back-icon {
        width: 36px;
        height: 36px;
    }

    .spending-title {
        font-size: 0.65rem;
    }

    .spending-boxes {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .spending-box-left,
    .spending-box-right {
        padding: 0.875rem;
    }

    .box-value,
    .box-value-white {
        font-size: 1rem;
    }

    .spending-list {
        gap: 0.75rem;
    }

    .spending-item {
        padding: 0.65rem;
    }

    .spending-name,
    .spending-amount {
        font-size: 0.6rem;
    }

    .btn-learn-more-full {
        padding: 0.8rem;
        margin-top: 1.25rem;
        font-size: 0.75rem;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 2.5rem 0;
    }

    .testimonial-badge {
        font-size: 0.6rem;
    }

    .section-title {
        font-size: 1.65rem;
        margin-bottom: 1.25rem;
    }

    .testimonial-card-wrapper {
        border-radius: 1.75rem;
    }

    .testimonial-image {
        min-height: 240px;
    }

    .testimonial-content {
        padding: 1.35rem;
    }

    .testimonial-label {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .testimonial-quote {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .testimonial-footer {
        gap: 1rem;
    }

    .client-name {
        font-size: 1rem;
    }

    .client-title {
        font-size: 0.7rem;
    }

    .testimonial-nav {
        gap: 0.75rem;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
    }

    /* Cards Section */
    .cards-section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .section-description {
        font-size: 0.825rem;
    }

    .learn-link {
        font-size: 0.825rem;
        padding-bottom: 0.2rem;
    }

    .cards-display {
        height: 340px;
        margin-top: 1.75rem;
    }

    .cards-circle-outer {
        width: 260px;
        height: 260px;
    }

    .cards-circle-middle {
        width: 180px;
        height: 180px;
    }

    .circle-icon {
        font-size: 1.75rem;
    }

    .circle-text {
        font-size: 0.6rem;
    }

    .cards-stack {
        transform: scale(0.6);
    }

    .debit-card {
        max-width: 240px;
        height: 165px;
        padding: 1.125rem;
    }

    .card-type,
    .card-brand-small {
        font-size: 0.65rem;
    }

    .card-number-display {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }

    .card-holder-name,
    .card-expiry-small {
        font-size: 0.55rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 2.5rem 0.75rem;
    }

    .cta-box {
        padding: 2rem 1.35rem;
        border-radius: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
        line-height: 1.35;
        margin-bottom: 0.875rem;
    }

    .cta-description {
        font-size: 0.825rem;
        margin-bottom: 1.5rem;
    }

    .btn-gradient-large {
        padding: 11px 22px;
        font-size: 0.85rem;
    }

    .cta-decoration {
        width: 55px;
        height: 55px;
    }

    .decoration-1 {
        top: 25px;
        left: 25px;
    }

    .decoration-2 {
        bottom: 25px;
        right: 25px;
    }

    .cta-blur {
        width: 130px;
        height: 130px;
    }

    /* Footer */
    .footer-top {
        padding: 40px 0 25px;
    }

    .footer-grid {
        gap: 22px;
    }

    .footer-logo-wrap {
        margin-bottom: 18px;
    }

    .footer-brand img {
        height: 65px;
    }

    .footer-logo-text {
        font-size: 24px;
    }

    .footer-brand p {
        font-size: 13px;
        line-height: 1.75;
        margin-bottom: 20px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-radius: 12px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        width: 30px;
        height: 2.5px;
        bottom: -10px;
    }

    .footer-links li,
    .footer-contact li {
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-contact li {
        font-size: 13px;
        gap: 12px;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .footer-bottom-content {
        gap: 14px;
    }

    .footer-bottom p {
        font-size: 11px;
        line-height: 1.6;
    }

    .payment-partners {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-partners img {
        height: 24px;
    }
}

/* ===== ULTRA SMALL MOBILE (Below 320px) ===== */
@media (max-width: 319px) {
    .container-fluid {
        padding: 0 12px;
    }

    .navbar-brand img {
        height: 36px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .phone-mockup-container {
        transform: scale(0.5);
    }

    .cards-stack {
        transform: scale(0.5);
    }

    .cta-title {
        font-size: 1.35rem;
    }

    .footer-brand img {
        height: 60px;
    }
}

/* ===== LANDSCAPE ORIENTATION FIXES ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .phone-mockup-container {
        transform: scale(0.7);
    }

    .dashboard-mockup {
        transform: scale(0.85);
    }

    .cards-display {
        height: 380px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {

    .navbar,
    .nav-actions,
    .hero-buttons,
    .nav-arrows,
    .testimonial-nav,
    .cta-section,
    .footer {
        display: none !important;
    }

    .hero-section,
    .control-section,
    .services-section,
    .roadmap-section,
    .testimonials-section,
    .cards-section {
        page-break-inside: avoid;
    }
}

/* ===== ACCESSIBILITY - REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee-content {
        animation: none;
    }

    .floating-card.spotify-card {
        animation: none;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {

    .nav-link,
    .section-title,
    .hero-title {
        font-weight: 700;
    }

    .btn-gradient,
    .btn-outline-custom {
        border: 2px solid currentColor;
    }
}

















/* ========================================
   AGENT SECTION - FIXED LAYOUT
   ======================================== */

.agent-premium-unique-section {
    position: relative;
    padding: 3rem 0;

    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f8f9fc 100%);
    overflow: hidden;
}

/* FIXED: Header matching other sections */
.agent-unique-header {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

/* FIXED: 3-Column Visual Layout */
.agent-visual-content-row {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

/* Left & Right Feature Columns */
.agent-features-left,
.agent-features-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* FIXED: Center Visual Container */
.agent-visual-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-visual-card {
    position: relative;
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    border-radius: 32px;
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 183, 74, 0.3);
}

/* FIXED: Hexagon Hub Container */
.hexagon-hub-container {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto 30px;
}

/* FIXED: Rotating Hexagons */
.hexagon-rotate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.hexagon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hex-outer {
    width: 250px;
    height: 250px;
    animation: hexRotate 40s linear infinite;
}

.hex-middle {
    width: 180px;
    height: 180px;
    animation: hexRotate 30s linear infinite reverse;
}

.hex-side {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

@keyframes hexRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* FIXED: Center Hub */
.hex-center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.hub-agent-icon {
    width: 48px;
    height: 48px;
    color: #00b74a;
}

.hub-label-text {
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.1em;
}

/* FIXED: Service Orbit Icons - Proper Positioning */
.service-orbit-icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: orbitIconFloat 4s ease-in-out infinite;
}

.orbit-icon-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-icon-2 {
    top: 20%;
    right: 0;
}

.orbit-icon-3 {
    bottom: 20%;
    right: 0;
}

.orbit-icon-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-icon-5 {
    bottom: 20%;
    left: 0;
}

.orbit-icon-6 {
    top: 20%;
    left: 0;
}

.service-orbit-icon>svg {
    width: 48px;
    height: 48px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
}

.service-orbit-icon:hover>svg {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.35);
}

.orbit-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes orbitIconFloat {

    0%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    50% {
        transform: translateY(-15px) translateX(-50%);
    }
}

/* Pulse Rings */
.hub-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: hubPulseRing 3s ease-out infinite;
}

.ring-2 {
    animation-delay: 1.5s;
}

@keyframes hubPulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .agent-visual-content-row {
        grid-template-columns: 1fr;
        gap: 60px;
        justify-content: center;
    }

    .central-visual-card {
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .agent-premium-unique-section {
        padding: 60px 0;
    }

    .agent-unique-header {
        margin-bottom: 40px;
    }

    .hexagon-hub-container {
        width: 300px;
        height: 300px;
        transform: scale(0.85);
    }
}

















/* digibro regular services section css start  */




/* ========================================
   BBPS ULTRA PREMIUM SHOWCASE - CSS
   ======================================== */

.digibro-bbps-showcase-ultimate {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 30%, #ffffff 70%, #f8fafc 100%);
    overflow: hidden;
}

/* ===== ANIMATED ATMOSPHERE ===== */
.bbps-showcase-atmosphere {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.atmosphere-orb-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.18;
}

.orb-primary-green {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.6) 0%, transparent 70%);
    top: -12%;
    left: -8%;
    animation: orbMegaFloat 30s ease-in-out infinite;
}

.orb-secondary-blue {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.5) 0%, transparent 70%);
    bottom: -12%;
    right: -8%;
    animation: orbMegaFloat 35s ease-in-out infinite reverse;
}

.orb-accent-teal {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.4) 0%, transparent 70%);
    top: 40%;
    left: 45%;
    animation: orbMegaFloat 40s ease-in-out infinite;
}

@keyframes orbMegaFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(70px, -70px) scale(1.15);
    }

    66% {
        transform: translate(-50px, 50px) scale(0.95);
    }
}

.atmosphere-particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #00b74a, #0066cc);
    border-radius: 50%;
    opacity: 0.35;
    animation: particleMegaFloat 25s ease-in-out infinite;
}

.fp-1 {
    top: 12%;
    left: 8%;
    animation-delay: 0s;
}

.fp-2 {
    top: 38%;
    right: 12%;
    animation-delay: 5s;
}

.fp-3 {
    bottom: 22%;
    left: 18%;
    animation-delay: 10s;
}

.fp-4 {
    top: 65%;
    right: 22%;
    animation-delay: 15s;
}

.fp-5 {
    bottom: 12%;
    right: 8%;
    animation-delay: 20s;
}

@keyframes particleMegaFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(40px, -40px);
    }

    50% {
        transform: translate(-30px, -60px);
    }

    75% {
        transform: translate(30px, -30px);
    }
}

.atmosphere-grid-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 183, 74, 0.015) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(0, 183, 74, 0.015) 1.5px, transparent 1.5px);
    background-size: 70px 70px;
    opacity: 0.7;
}

.atmosphere-radial-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 183, 74, 0.025) 0%, transparent 65%);
}

/* ===== MASTHEAD HEADER ===== */
.bbps-showcase-masthead {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 950px;
    margin: 0 auto 100px;
}

.masthead-badge-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 100px;
    border: 1px solid rgba(0, 183, 74, 0.18);
    box-shadow: 0 6px 24px rgba(0, 183, 74, 0.12);
    margin-bottom: 32px;
    overflow: hidden;
}

.badge-shimmer-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    animation: badgeMegaShimmer 3.5s ease-in-out infinite;
}

@keyframes badgeMegaShimmer {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 200%;
    }
}

.badge-star-icon {
    color: #00b74a;
    position: relative;
    z-index: 1;
}

.badge-text-premium {
    font-size: 0.8rem;
    font-weight: 800;
    color: #00b74a;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
}

.masthead-title-ultra {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 24px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.03em;
}

.title-gradient-animated {
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.masthead-description-premium {
    font-size: 1.2rem;
    line-height: 1.75;
    color: #64748b;
    font-weight: 500;
    max-width: 750px;
    margin: 0 auto;
}

/* ===== REVOLUTIONARY BENTO GRID ===== */
.bbps-revolutionary-bento {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 100px;
}

.bento-row-layout {
    display: grid;
    gap: 32px;
}

.bento-row-first {
    grid-template-columns: 1.5fr 1fr 1fr;
}

.bento-row-second {
    grid-template-columns: 1.8fr repeat(3, 1fr);
}

.bento-row-third {
    grid-template-columns: 1fr 1.5fr;
}

/* ===== MEGA HERO CARD ===== */
.bento-mega-card {
    position: relative;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(217, 119, 6, 0.04));
    backdrop-filter: blur(35px);
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 20px 35px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 65px rgba(0, 0, 0, 0.1);
    min-height: 520px;
}

.bento-mega-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
}

.mega-card-aurora {
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(90px);
}

.bento-mega-card:hover .mega-card-aurora {
    opacity: 1;
}

.mega-card-content-wrapper {
    position: relative;
    z-index: 1;
}

.mega-icon-container {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 40px;
}

.icon-orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2.5px solid;
    opacity: 0.25;
}

.ring-outer {
    width: 130px;
    height: 130px;
    border-color: #f59e0b;
    animation: ringMegaRotate 25s linear infinite;
}

.ring-middle {
    width: 100px;
    height: 100px;
    border-color: #d97706;
    animation: ringMegaRotate 18s linear infinite reverse;
}

.ring-inner {
    width: 70px;
    height: 70px;
    border-color: #b45309;
    animation: ringMegaRotate 30s linear infinite;
}

@keyframes ringMegaRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.mega-icon-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 50px rgba(245, 158, 11, 0.6);
    animation: iconCorePulse 3.5s ease-in-out infinite;
}

@keyframes iconCorePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.12);
    }
}

.mega-text-block {
    text-align: center;
    margin-bottom: 35px;
}

.mega-title {
    font-size: 2rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 14px;
    font-family: 'DM Sans', sans-serif;
}

.mega-description {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 450px;
    margin: 0 auto;
}

.mega-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.mega-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-green {
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.15), rgba(0, 183, 74, 0.08));
}

.stat-blue {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(0, 102, 204, 0.08));
}

.stat-text-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value-big {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.stat-label-small {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mega-stat-divider {
    width: 1.5px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.12), transparent);
}

.mega-floating-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.8rem;
    font-weight: 800;
    animation: badgeMegaFloat 4.5s ease-in-out infinite;
}

.badge-trending svg {
    color: #f59e0b;
}

.badge-trending span {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes badgeMegaFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.mega-card-visual-effects {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    pointer-events: none;
    opacity: 0.08;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid #f59e0b;
}

.vc-1 {
    width: 220px;
    height: 220px;
    top: 18%;
    right: -60px;
    animation: visualMegaFloat 8s ease-in-out infinite;
}

.vc-2 {
    width: 170px;
    height: 170px;
    bottom: 18%;
    right: 60px;
    animation: visualMegaFloat 10s ease-in-out infinite reverse;
}

@keyframes visualMegaFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

.visual-line {
    position: absolute;
    width: 3px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #f59e0b, transparent);
}

.vl-1 {
    top: 22%;
    right: 28%;
    transform: rotate(30deg);
    animation: lineMegaGlow 4s ease-in-out infinite;
}

.vl-2 {
    bottom: 22%;
    right: 65%;
    transform: rotate(-30deg);
    animation: lineMegaGlow 4s ease-in-out infinite 2s;
}

@keyframes lineMegaGlow {

    0%,
    100% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.55;
    }
}

/* ===== STANDARD CARDS ===== */
.bento-standard-card {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.09);
}

.bento-standard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.14);
}

.standard-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(70px);
}

.bento-mobile-card:hover .standard-card-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.35) 0%, transparent 70%);
}

.bento-dth-card:hover .standard-card-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
}

.bento-insurance-card:hover .standard-card-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, transparent 70%);
}

.standard-card-inner {
    position: relative;
    z-index: 1;
    padding: 42px 36px;
}

.standard-icon-box {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.icon-mobile {
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.12), rgba(0, 183, 74, 0.06));
    color: #00b74a;
}

.icon-dth {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.06));
    color: #8b5cf6;
}

.icon-insurance {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.06));
    color: #10b981;
}

.icon-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    animation: iconMegaPulse 3.5s ease-in-out infinite;
}

@keyframes iconMegaPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.7;
    }
}

.standard-title {
    font-size: 1.65rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 14px;
    font-family: 'DM Sans', sans-serif;
}

.standard-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 28px;
}

.standard-features-list {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    font-weight: 700;
    color: #475569;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(0, 183, 74, 0.08);
    border-color: rgba(0, 183, 74, 0.15);
}

.pill-icon {
    font-size: 1.05rem;
}

.standard-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 800;
    color: #00b74a;
    cursor: pointer;
    transition: gap 0.3s ease;
}

.standard-cta-link:hover {
    gap: 14px;
}

.standard-cta-link svg {
    transition: transform 0.3s ease;
}

.standard-cta-link:hover svg {
    transform: translateX(4px);
}

/* ===== WIDE CARDS ===== */
.bento-wide-card {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.09);
}

.bento-wide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.14);
}

.wide-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(70px);
}

.bento-fastag-wide:hover .wide-card-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, transparent 70%);
}

.bento-education-wide:hover .wide-card-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.35) 0%, transparent 70%);
}

.wide-card-split {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 42px 36px;
}

.wide-icon-section {
    flex-shrink: 0;
}

.wide-icon-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-fastag-wide .wide-icon-wrapper {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.06));
    color: #f59e0b;
}

.bento-education-wide .wide-icon-wrapper {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(236, 72, 153, 0.06));
    color: #ec4899;
}

.wide-content-section {
    flex: 1;
}

.wide-title {
    font-size: 1.65rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
}

.wide-description {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 22px;
}

.wide-badge-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid;
}

.badge-instant {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.badge-secure {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.badge-verified {
    background: rgba(0, 102, 204, 0.08);
    border-color: rgba(0, 102, 204, 0.15);
    color: #0066cc;
}

.badge-schools {
    background: rgba(236, 72, 153, 0.08);
    border-color: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.badge-emi {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

/* ===== COMPACT CARDS ===== */
.bento-compact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(30px);
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 38px 32px;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.09);
}

.bento-compact-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.14);
}

.compact-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(70px);
}

.bento-water-compact:hover .compact-card-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.35) 0%, transparent 70%);
}

.bento-gas-compact:hover .compact-card-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.35) 0%, transparent 70%);
}

.bento-broadband-compact:hover .compact-card-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.35) 0%, transparent 70%);
}

.compact-icon-minimal {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.bento-water-compact .compact-icon-minimal {
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.12), rgba(0, 191, 166, 0.06));
    color: #00bfa6;
}

.bento-gas-compact .compact-icon-minimal {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.06));
    color: #ef4444;
}

.bento-broadband-compact .compact-icon-minimal {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.12), rgba(0, 102, 204, 0.06));
    color: #0066cc;
}

.compact-title {
    position: relative;
    z-index: 1;
    font-size: 1.35rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
}

.compact-mini-desc {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 600;
    margin: 0;
}

/* ===== STATS SHOWCASE ===== */
.bbps-stats-showcase-premium {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 42px 55px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px);
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.12);
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.showcase-stat-block {
    display: flex;
    align-items: center;
    gap: 18px;
}

.stat-icon-premium {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.stat-success {
    background: linear-gradient(135deg, #00b74a 0%, #00d96f 100%);
    color: white;
}

.stat-users {
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
    color: white;
}

.stat-transactions {
    background: linear-gradient(135deg, #00bfa6 0%, #00e6c3 100%);
    color: white;
}

.stat-uptime {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
}

.stat-data-premium {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number-premium {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.stat-label-premium {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.showcase-stat-divider {
    width: 1.5px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.12), transparent);
}



/* ===== RESPONSIVE ===== */
@media (max-width: 1399px) {
    .bento-row-first {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .bento-row-second {
        grid-template-columns: 1.6fr repeat(3, 1fr);
    }
}

@media (max-width: 1199px) {
    .digibro-bbps-showcase-ultimate {
        padding: 100px 0;
    }

    .bbps-showcase-masthead {
        margin-bottom: 80px;
    }

    .masthead-title-ultra {
        font-size: 3rem;
    }

    .bento-row-first,
    .bento-row-second,
    .bento-row-third {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bbps-revolutionary-bento {
        gap: 28px;
        margin-bottom: 80px;
    }

    .mega-icon-container {
        width: 110px;
        height: 110px;
        margin-bottom: 32px;
    }

    .mega-icon-core {
        width: 75px;
        height: 75px;
    }

    .mega-stats-bar {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .digibro-bbps-showcase-ultimate {
        padding: 80px 0;
    }

    .bbps-showcase-masthead {
        margin-bottom: 60px;
    }

    .masthead-title-ultra {
        font-size: 2.5rem;
    }

    .masthead-description-premium {
        font-size: 1.1rem;
    }

    .bbps-revolutionary-bento {
        margin-bottom: 60px;
    }

    .bento-mega-card {
        min-height: 450px;
        padding: 42px 38px;
    }

    .bbps-stats-showcase-premium {
        gap: 32px;
        padding: 36px 40px;
        margin-bottom: 70px;
    }

    .showcase-stat-block {
        flex-direction: column;
        text-align: center;
    }

    .showcase-stat-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .digibro-bbps-showcase-ultimate {
        padding: 60px 0;
    }

    .bbps-showcase-masthead {
        margin-bottom: 40px;
    }


    .mega-floating-badge {
        display: none;
    }


    .masthead-badge-premium {
        padding: 12px 26px;
    }

    .badge-text-premium {
        font-size: 0.7rem;
    }

    .masthead-title-ultra {
        font-size: 2rem;
    }

    .masthead-description-premium {
        font-size: 1rem;
    }

    .bbps-revolutionary-bento {
        gap: 24px;
        margin-bottom: 50px;
    }

    .bento-mega-card {
        min-height: 400px;
        padding: 36px 32px;
    }

    .mega-icon-container {
        width: 95px;
        height: 95px;
    }

    .mega-icon-core {
        width: 65px;
        height: 65px;
    }

    .mega-title {
        font-size: 1.75rem;
    }

    .mega-description {
        font-size: 1rem;
    }

    .mega-stats-bar {
        padding: 22px 24px;
    }

    .standard-card-inner {
        padding: 36px 30px;
    }

    .standard-icon-box {
        width: 76px;
        height: 76px;
    }

    .standard-title {
        font-size: 1.45rem;
    }

    .standard-desc {
        font-size: 0.98rem;
    }

    .wide-card-split {
        flex-direction: column;
        padding: 36px 30px;
        text-align: center;
    }

    .wide-icon-wrapper {
        margin: 0 auto 24px;
    }

    .compact-icon-minimal {
        width: 64px;
        height: 64px;
    }

    .compact-title {
        font-size: 1.2rem;
    }

    .bbps-stats-showcase-premium {
        flex-direction: column;
        gap: 28px;
        padding: 32px 28px;
        margin-bottom: 50px;
    }

    .stat-icon-premium {
        width: 56px;
        height: 56px;
    }

    .stat-number-premium {
        font-size: 1.75rem;
    }


}

@media (max-width: 479px) {
    .digibro-bbps-showcase-ultimate {
        padding: 50px 0;
    }

    .masthead-title-ultra {
        font-size: 1.75rem;
    }

    .masthead-description-premium {
        font-size: 0.95rem;
    }

    .bento-mega-card {
        min-height: 360px;
        padding: 32px 26px;
    }

    .mega-icon-container {
        width: 85px;
        height: 85px;
    }

    .mega-icon-core {
        width: 58px;
        height: 58px;
    }

    .mega-title {
        font-size: 1.5rem;
    }

    .standard-card-inner {
        padding: 30px 24px;
    }

    .standard-icon-box {
        width: 68px;
        height: 68px;
    }

    .standard-title {
        font-size: 1.3rem;
    }

    .wide-card-split {
        padding: 30px 24px;
    }

    .compact-icon-minimal {
        width: 58px;
        height: 58px;
    }

    .bbps-stats-showcase-premium {
        padding: 28px 22px;
    }

    .stat-number-premium {
        font-size: 1.5rem;
    }

    .ultimate-cta-headline {
        font-size: 1.65rem;
    }

    .btn-ultimate-cta {
        padding: 18px 32px;
        font-size: 15px;
    }
}



/* ========================================
   EMPTY CARDS ENHANCEMENT - CSS
   ======================================== */

/* Education Fee Payment Card - Enhanced */
.bento-education-wide {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.09);
}

.bento-education-wide:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.14);
}

.wide-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(70px);
}

.bento-education-wide:hover .wide-card-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.35) 0%, transparent 70%);
}

.wide-card-split {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 42px 36px;
}

.wide-icon-section {
    flex-shrink: 0;
}

.wide-icon-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.12), rgba(147, 51, 234, 0.06));
    color: #9333ea;
}

.wide-content-section {
    flex: 1;
}

.wide-title {
    font-size: 1.65rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
}

.wide-description {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 22px;
}

.wide-badge-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid;
}

.badge-schools {
    background: rgba(147, 51, 234, 0.08);
    border-color: rgba(147, 51, 234, 0.15);
    color: #9333ea;
}

.badge-emi {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.badge-instant {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.education-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.25);
}

.education-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.35);
    gap: 14px;
}

/* PAN Card & LPG Gas Cards - Enhanced */
.bento-compact-card-enhanced {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(30px);
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 42px 32px;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.09);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-compact-card-enhanced:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.14);
}

.compact-card-glow-enhanced {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(70px);
}

.bento-pan-card:hover .compact-card-glow-enhanced {
    opacity: 1;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
}

.bento-lpg-gas:hover .compact-card-glow-enhanced {
    opacity: 1;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.35) 0%, transparent 70%);
}

.compact-icon-enhanced {
    position: relative;
    z-index: 1;
    width: 88px;
    height: 88px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.bento-pan-card .compact-icon-enhanced {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.06));
    color: #3b82f6;
}

.bento-lpg-gas .compact-icon-enhanced {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.06));
    color: #ef4444;
}

.compact-title-enhanced {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
}

.compact-description-enhanced {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.compact-badge-enhanced {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 24px;
}

.compact-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    z-index: 1;
}

.bento-pan-card .compact-cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.25);
}

.bento-lpg-gas .compact-cta-button {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.25);
}

.compact-cta-button:hover {
    transform: translateY(-3px);
    gap: 14px;
}

.bento-pan-card .compact-cta-button:hover {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.35);
}

.bento-lpg-gas .compact-cta-button:hover {
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.35);
}

/* Compact Card Icon Animation */
.icon-pulse-ring-enhanced {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    animation: iconMegaPulse 3.5s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .wide-card-split {
        flex-direction: column;
        padding: 36px 30px;
        text-align: center;
    }

    .wide-icon-wrapper {
        margin: 0 auto 24px;
    }

    .bento-compact-card-enhanced {
        padding: 36px 28px;
        min-height: 260px;
    }

    .compact-icon-enhanced {
        width: 76px;
        height: 76px;
    }

    .compact-title-enhanced {
        font-size: 1.35rem;
    }

    .compact-description-enhanced {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .education-cta-button,
    .compact-cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 479px) {
    .bento-compact-card-enhanced {
        padding: 32px 24px;
        min-height: 240px;
    }

    .compact-icon-enhanced {
        width: 68px;
        height: 68px;
        margin-bottom: 20px;
    }

    .compact-title-enhanced {
        font-size: 1.25rem;
    }

    .compact-description-enhanced {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .wide-badge-group {
        justify-content: center;
    }
}


/* Cable TV Card Specific Styles */
.bento-cable-tv:hover .compact-card-glow-enhanced {
    opacity: 1;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, transparent 70%);
}

.bento-cable-tv .compact-icon-enhanced {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.06));
    color: #f59e0b;
}

.bento-cable-tv .compact-cta-button {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.25);
}

.bento-cable-tv .compact-cta-button:hover {
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.35);
}

.bento-cable-tv .compact-badge-enhanced {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}



/* Education Card Extra Stats Styling */
.education-stats-row {
    display: flex;
    gap: 20px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.education-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.stat-number-edu {
    font-size: 1.25rem;
    font-weight: 900;
    color: #9333ea;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.stat-label-edu {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

/* Education Card Unique Visual Effects */
.education-card-visual-effects {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    opacity: 0.06;
    overflow: hidden;
}

/* Graduation Cap */
.education-visual-cap {
    position: absolute;
    top: 8%;
    right: -10px;
    color: #9333ea;
    animation: educationCapFloat 6s ease-in-out infinite;
}

@keyframes educationCapFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Books Stack */
.education-visual-books {
    position: absolute;
    bottom: 15%;
    right: 12%;
    color: #7c3aed;
    animation: educationBooksFloat 7s ease-in-out infinite;
}

@keyframes educationBooksFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-3deg);
    }
}

/* Pencil */
.education-visual-pencil {
    position: absolute;
    top: 40%;
    right: 5%;
    color: #a855f7;
    animation: educationPencilFloat 5s ease-in-out infinite;
}

@keyframes educationPencilFloat {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-18px) rotate(50deg);
    }
}

/* A+ Grade */
.education-visual-grade {
    position: absolute;
    top: 25%;
    right: 18%;
    font-size: 3.5rem;
    font-weight: 900;
    color: #9333ea;
    font-family: 'DM Sans', sans-serif;
    animation: educationGradeFloat 8s ease-in-out infinite;
}

@keyframes educationGradeFloat {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.06;
    }

    50% {
        transform: scale(1.1) rotate(-5deg);
        opacity: 0.1;
    }
}

/* Certificate */
.education-visual-certificate {
    position: absolute;
    bottom: 35%;
    right: 25%;
    color: #8b5cf6;
    animation: educationCertFloat 9s ease-in-out infinite;
}

@keyframes educationCertFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-12px) rotate(-5deg);
    }
}

/* Decorative Dots */
.education-visual-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.education-visual-dots span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #9333ea;
    border-radius: 50%;
    opacity: 1;
}

.education-visual-dots span:nth-child(1) {
    top: 15%;
    right: 30%;
    animation: educationDotFloat 4s ease-in-out infinite;
}

.education-visual-dots span:nth-child(2) {
    top: 50%;
    right: 8%;
    animation: educationDotFloat 5s ease-in-out infinite 1s;
}

.education-visual-dots span:nth-child(3) {
    bottom: 25%;
    right: 35%;
    animation: educationDotFloat 6s ease-in-out infinite 2s;
}

.education-visual-dots span:nth-child(4) {
    top: 35%;
    right: 45%;
    animation: educationDotFloat 7s ease-in-out infinite 3s;
}

@keyframes educationDotFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* Responsive for Education Stats */
@media (max-width: 767px) {
    .education-stats-row {
        justify-content: center;
    }

    .education-card-visual-effects {
        opacity: 0.04;
    }

    .education-visual-grade {
        font-size: 2.5rem;
    }
}

/* digibro regular services section css end  */














/* android app section css start  */

.digibro-app-download-ultra-section {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
    overflow: hidden;
}

/* Premium Background */
.app-download-ultra-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.app-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.2;
}

.app-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.6) 0%, transparent 70%);
    top: -15%;
    left: -10%;
    animation: appOrbFloat 30s ease-in-out infinite;
}

.app-orb-2 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.5) 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation: appOrbFloat 35s ease-in-out infinite reverse;
}

.app-orb-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.4) 0%, transparent 70%);
    top: 40%;
    left: 45%;
    animation: appOrbFloat 40s ease-in-out infinite;
}

@keyframes appOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(70px, -70px) scale(1.15);
    }

    66% {
        transform: translate(-50px, 50px) scale(0.95);
    }
}

.app-mesh-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 183, 74, 0.015) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(0, 183, 74, 0.015) 1.5px, transparent 1.5px);
    background-size: 70px 70px;
}

.app-radial-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 183, 74, 0.025) 0%, transparent 65%);
}

.app-floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.app-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #00b74a, #0066cc);
    border-radius: 50%;
    opacity: 0.35;
    animation: appParticleFloat 25s ease-in-out infinite;
}

.app-particle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.app-particle-2 {
    top: 40%;
    right: 15%;
    animation-delay: 5s;
}

.app-particle-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 10s;
}

.app-particle-4 {
    top: 65%;
    right: 25%;
    animation-delay: 15s;
}

.app-particle-5 {
    bottom: 15%;
    right: 10%;
    animation-delay: 20s;
}

@keyframes appParticleFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(40px, -40px);
    }

    50% {
        transform: translate(-30px, -60px);
    }

    75% {
        transform: translate(30px, -30px);
    }
}

/* Content Sections */
.app-download-row {
    position: relative;
    z-index: 10;
}

.app-download-left {
    padding-right: 40px;
}

/* Premium Badge */
.app-premium-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 100px;
    border: 1px solid rgba(0, 183, 74, 0.18);
    box-shadow: 0 6px 24px rgba(0, 183, 74, 0.12);
    margin-bottom: 32px;
    overflow: hidden;
}

.badge-app-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    animation: appBadgeShimmer 3.5s ease-in-out infinite;
}

@keyframes appBadgeShimmer {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 200%;
    }
}

.badge-app-icon {
    color: #00b74a;
    position: relative;
    z-index: 1;
}

.badge-app-text {
    font-size: 0.8rem;
    font-weight: 800;
    color: #00b74a;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
}

/* Main Title */
.app-download-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 24px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.03em;
}

.app-gradient-text {
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.app-download-description {
    font-size: 1.2rem;
    line-height: 1.75;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 580px;
}

/* Feature Pills */
.app-features-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.app-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    transition: all 0.3s ease;
}

.app-feature-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Download Buttons */
.app-download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-app-download {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-app-android {
    background: linear-gradient(135deg, #3DDC84 0%, #28B869 100%);
    color: white;
}

.btn-app-ios {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
}

.btn-app-download:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.btn-app-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: appBtnShine 4s ease-in-out infinite;
}

@keyframes appBtnShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 200%;
    }
}

.btn-app-icon {
    flex-shrink: 0;
}

.btn-app-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-app-label {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-app-store {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* Stats Row */
.app-stats-row {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.app-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.app-stat-stars {
    font-size: 1.125rem;
}

.app-stat-icon svg {
    width: 32px;
    height: 32px;
}

.app-stat-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.app-stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.app-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.app-stat-divider {
    width: 1.5px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* ===== RIGHT: PHONE SHOWCASE ===== */
.app-phone-showcase {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-phone-main {
    position: relative;
    width: 380px;
    height: 600px;
}

/* Rotating Rings */
.app-phone-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.15;
}

.app-ring-1 {
    width: 500px;
    height: 500px;
    border-color: #00b74a;
    animation: appRingRotate 30s linear infinite;
}

.app-ring-2 {
    width: 600px;
    height: 600px;
    border-color: #0066cc;
    animation: appRingRotate 40s linear infinite reverse;
}

@keyframes appRingRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Phone Device */
.app-phone-device {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 50px;
    padding: 16px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset;
    z-index: 2;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
}

.phone-app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Phone Glow */
.app-phone-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.4) 0%, transparent 70%);
    animation: appPhoneGlow 4s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes appPhoneGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* Floating UI Elements */
.app-floating-ui {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 100px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: appFloatUI 4s ease-in-out infinite;
}

.floating-ui-1 {
    top: 10%;
    right: -5px;
    animation-delay: 0s;
}

.floating-ui-2 {
    bottom: 45%;
    left: -10px;
    animation-delay: 1.5s;
}

.floating-ui-3 {
    bottom: 10%;
    right: 10px;
    animation-delay: 3s;
}

@keyframes appFloatUI {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-ui-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-ui-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ui-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ui-value {
    font-size: 1.125rem;
    font-weight: 900;
    color: #0f172a;
    font-family: 'DM Sans', sans-serif;
}

/* Decorative Elements */
.app-deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.1;
}

.app-deco-1 {
    width: 250px;
    height: 250px;
    border-color: #00b74a;
    top: -50px;
    left: -80px;
    animation: appDecoRotate 35s linear infinite;
}

.app-deco-2 {
    width: 200px;
    height: 200px;
    border-color: #0066cc;
    bottom: -40px;
    right: -70px;
    animation: appDecoRotate 30s linear infinite reverse;
}

@keyframes appDecoRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.app-deco-line {
    position: absolute;
    width: 3px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #00b74a, transparent);
    opacity: 0.15;
}

.app-line-1 {
    top: 20%;
    left: -40px;
    transform: rotate(30deg);
    animation: appLineGlow 4s ease-in-out infinite;
}

.app-line-2 {
    bottom: 25%;
    right: -50px;
    transform: rotate(-30deg);
    animation: appLineGlow 4s ease-in-out infinite 2s;
}

@keyframes appLineGlow {

    0%,
    100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.4;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .app-download-title {
        font-size: 3rem;
    }

    .app-phone-showcase {
        height: 600px;
    }

    .app-phone-main {
        width: 340px;
        height: 580px;
    }
}

@media (max-width: 991px) {
    .digibro-app-download-ultra-section {
        padding: 100px 0;
    }

    .app-download-left {
        padding-right: 0;
        margin-bottom: 60px;
        text-align: center;
    }

    .app-premium-badge {
        margin: 0 auto 28px;
    }

    .app-download-title {
        font-size: 2.75rem;
    }

    .app-download-description {
        margin: 0 auto 36px;
    }

    .app-features-grid {
        justify-content: center;
    }

    .app-download-buttons {
        justify-content: center;
    }

    .app-stats-row {
        max-width: 500px;
        margin: 0 auto;
    }

    .app-phone-showcase {
        height: 550px;
    }
}

@media (max-width: 767px) {
    .digibro-app-download-ultra-section {
        padding: 80px 0;
    }

    .app-download-title {
        font-size: 2.25rem;
    }

    .app-download-description {
        font-size: 1.05rem;
    }

    .app-download-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-app-download {
        width: 100%;
        justify-content: center;
    }

    .app-stats-row {
        flex-direction: column;
        gap: 20px;
        padding: 20px 24px;
    }

    .app-stat-divider {
        width: 100px;
        height: 1px;
    }

    .app-phone-showcase {
        height: 500px;
        transform: scale(0.85);
    }

    .floating-ui-1,
    .floating-ui-2,
    .floating-ui-3 {
        display: none;
    }
}

@media (max-width: 479px) {
    .app-download-title {
        font-size: 1.875rem;
    }

    .app-download-description {
        font-size: 0.95rem;
    }

    .app-features-grid {
        gap: 10px;
    }

    .app-feature-pill {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .btn-app-download {
        padding: 16px 24px;
    }

    .btn-app-store {
        font-size: 1rem;
    }

    .app-phone-showcase {
        transform: scale(0.7);
    }

    .app-stat-value {
        font-size: 1.35rem;
    }
}

/* android app section css end  */



/* premium services section css start  */
/* ========================================
   DIAGONAL PREMIUM SERVICES - UNIQUE DESIGN
   ======================================== */

.premium-services-diagonal-section {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f0f9ff 100%);
    overflow: hidden;
}

/* Wave Background */
.diagonal-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.wave-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




@keyframes waveFloat1 {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(2%) translateY(-3%);
    }
}

@keyframes waveFloat2 {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-2%) translateY(3%);
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.6), transparent);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    top: 15%;
    left: 70%;
    animation-delay: 12s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-80px) scale(1.5);
        opacity: 0.8;
    }
}

/* Header */
.diagonal-section-header {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 950px;
    margin: 0 auto 100px;
}

/* Diagonal Services Container */
.diagonal-services-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1600px;
    margin: 0 auto;
    perspective: 2000px;
}

/* Service Item */
.diagonal-service-item {
    position: relative;
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    padding: 60px 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    transform-style: preserve-3d;
}

/* Center Item Elevation */
.item-center {
    transform: translateY(-40px) scale(1.08);
    z-index: 5;
}

.diagonal-service-item:hover {
    transform: translateY(-20px) rotateY(5deg) scale(1.05);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.25);
}

.item-center:hover {
    transform: translateY(-55px) scale(1.12);
}

/* Diagonal Background */
.service-diagonal-bg {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 150%;
    height: 200%;
    transform: rotate(-15deg);
    opacity: 0.08;
    transition: all 0.7s ease;
}

.diagonal-bg-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.diagonal-bg-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.diagonal-bg-green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.diagonal-service-item:hover .service-diagonal-bg {
    opacity: 0.15;
    transform: rotate(-12deg) scale(1.1);
}

/* ========== VISUAL GRAPHICS ========== */

.service-visual-graphic {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    transform-style: preserve-3d;
}

.graphic-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.glow-pink {
    background: radial-gradient(circle, #ec4899, transparent);
}

.glow-orange {
    background: radial-gradient(circle, #f59e0b, transparent);
}

.glow-green {
    background: radial-gradient(circle, #10b981, transparent);
}

/* === ISOMETRIC CARD (Education) === */
.isometric-card {
    position: relative;
    width: 240px;
    height: 150px;
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: rotateX(20deg) rotateY(-20deg) translateY(0);
    }

    50% {
        transform: rotateX(25deg) rotateY(-15deg) translateY(-15px);
    }
}

.card-face {
    position: absolute;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    border-radius: 16px;
}

.card-front {
    width: 240px;
    height: 150px;
    transform: translateZ(8px);
    padding: 20px;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.4);
}

.card-top {
    width: 240px;
    height: 16px;
    background: linear-gradient(to bottom, #f472b6, #ec4899);
    transform: rotateX(90deg) translateY(-8px);
    transform-origin: top;
}

.card-right {
    width: 16px;
    height: 150px;
    background: linear-gradient(to right, #ec4899, #db2777);
    transform: rotateY(90deg) translateX(120px);
    transform-origin: right;
}

.card-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 6px;
    margin-bottom: 15px;
}

.card-wave {
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.3) 10px,
            transparent 10px,
            transparent 20px);
    margin-bottom: 20px;
}

.card-logo {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card-number {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    letter-spacing: 2px;
}

/* === ISOMETRIC TOLL BOOTH (FASTag) === */
.isometric-toll {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: tollFloat 7s ease-in-out infinite;
}

@keyframes tollFloat {

    0%,
    100% {
        transform: rotateX(25deg) rotateY(15deg) translateY(0);
    }

    50% {
        transform: rotateX(30deg) rotateY(20deg) translateY(-20px);
    }
}

.toll-booth {
    position: relative;
    width: 100px;
    height: 120px;
    margin: 0 auto;
    transform-style: preserve-3d;
}

.booth-roof {
    width: 120px;
    height: 15px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 8px 8px 0 0;
    transform: translateZ(60px) translateX(-10px);
    box-shadow: 0 -5px 20px rgba(245, 158, 11, 0.4);
}

.booth-body {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 0 0 12px 12px;
    transform: translateZ(50px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.5);
}

.booth-window {
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.booth-sign {
    font-size: 0.75rem;
    font-weight: 900;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.toll-signal {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: signalBlink 2s ease-in-out infinite;
}

.signal-green {
    background: radial-gradient(circle, #10b981, #059669);
    box-shadow: 0 0 30px #10b981;
}

@keyframes signalBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.toll-road {
    position: absolute;
    bottom: -20px;
    width: 200px;
    height: 8px;
    background: repeating-linear-gradient(90deg,
            #64748b,
            #64748b 15px,
            white 15px,
            white 20px);
    border-radius: 4px;
    opacity: 0.3;
}

/* === ISOMETRIC SHIELD (Insurance) === */
.isometric-shield {
    position: relative;
    width: 180px;
    height: 200px;
    transform-style: preserve-3d;
    animation: shieldFloat 8s ease-in-out infinite;
}

@keyframes shieldFloat {

    0%,
    100% {
        transform: rotateX(-20deg) rotateY(20deg) translateY(0);
    }

    50% {
        transform: rotateX(-15deg) rotateY(25deg) translateY(-25px);
    }
}

.shield-body {
    position: relative;
    width: 140px;
    height: 160px;
    background: linear-gradient(135deg, #10b981, #34d399);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(20px);
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.5);
}

.shield-emblem {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.shield-emblem svg {
    width: 30px;
    height: 30px;
}

.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-2 {
    width: 120px;
    height: 120px;
    animation: ringPulse 3s ease-in-out infinite 0.5s;
}

.ring-3 {
    width: 140px;
    height: 140px;
    animation: ringPulse 3s ease-in-out infinite 1s;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.2;
    }
}

/* ========== CONTENT ========== */

.service-diagonal-content {
    position: relative;
    z-index: 2;
}

/* Category Tag */
.service-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.tag-education {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
    border: 2px solid rgba(236, 72, 153, 0.3);
}

.tag-fastag {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.tag-insurance {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.tag-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.tag-education .tag-dot {
    background: #ec4899;
}

.tag-fastag .tag-dot {
    background: #f59e0b;
}

.tag-insurance .tag-dot {
    background: #10b981;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

/* Title & Description */
.service-diagonal-title {
    font-size: 2rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 18px;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.2;
}

.service-diagonal-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Features List */
.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 183, 74, 0.05);
    border-color: rgba(0, 183, 74, 0.15);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #475569;
}

/* Button */
.service-diagonal-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 36px;
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 900;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.btn-education {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.btn-fastag {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.btn-insurance {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.service-diagonal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.service-diagonal-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    animation: btnGlowSlide 5s ease-in-out infinite;
}

@keyframes btnGlowSlide {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 150%;
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1399px) {
    .diagonal-services-container {
        gap: 35px;
    }

    .service-visual-graphic {
        height: 240px;
    }
}

@media (max-width: 1199px) {
    .diagonal-services-container {
        flex-direction: column;
        gap: 60px;
    }

    .item-center {
        transform: translateY(0) scale(1);
    }

    .diagonal-service-item {
        max-width: 600px;
        width: 100%;
    }

    .service-visual-graphic {
        height: 260px;
    }
}

@media (max-width: 991px) {
    .premium-services-diagonal-section {
        padding: 100px 0;
    }

    .diagonal-section-header {
        margin-bottom: 70px;
    }

    .diagonal-service-item {
        padding: 50px 35px;
    }

    .service-diagonal-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .premium-services-diagonal-section {
        padding: 80px 0;
    }

    .diagonal-section-header {
        margin-bottom: 50px;
    }

    .diagonal-services-container {
        gap: 40px;
    }

    .diagonal-service-item {
        padding: 45px 30px;
    }

    .service-visual-graphic {
        height: 220px;
    }

    .isometric-card {
        width: 200px;
        height: 125px;
        transform: scale(0.9);
    }

    .isometric-toll {
        transform: scale(0.85);
    }

    .isometric-shield {
        transform: scale(0.85);
    }

    .service-diagonal-title {
        font-size: 1.6rem;
    }

    .service-diagonal-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 479px) {
    .diagonal-service-item {
        padding: 40px 25px;
    }

    .service-visual-graphic {
        height: 200px;
    }

    .service-diagonal-title {
        font-size: 1.45rem;
    }

    .service-diagonal-desc {
        font-size: 0.9rem;
    }

    .feature-text {
        font-size: 0.85rem;
    }

    .service-diagonal-btn {
        padding: 16px 28px;
        font-size: 0.9rem;
    }
}

/* premium serivces section css end  */







/* cards section  */



/* ========================================
   CARD PAYMENT SECTION - ULTRA PREMIUM CSS
   ======================================== */

.digibro-card-payment-ultra-section {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
    overflow: hidden;
}

/* Premium Background */
.card-payment-ultra-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.card-payment-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.15;
}

.card-payment-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 183, 74, 0.6) 0%, transparent 70%);
    top: -15%;
    left: -10%;
    animation: cardOrbFloat 30s ease-in-out infinite;
}

.card-payment-orb-2 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.5) 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation: cardOrbFloat 35s ease-in-out infinite reverse;
}

.card-payment-orb-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 70%);
    top: 40%;
    left: 45%;
    animation: cardOrbFloat 40s ease-in-out infinite;
}

@keyframes cardOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(60px, -60px) scale(1.15);
    }

    66% {
        transform: translate(-50px, 50px) scale(0.95);
    }
}

.card-payment-mesh-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 183, 74, 0.015) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(0, 183, 74, 0.015) 1.5px, transparent 1.5px);
    background-size: 70px 70px;
}

.card-payment-radial-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 183, 74, 0.02) 0%, transparent 65%);
}

.card-payment-floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.card-payment-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #00b74a, #0066cc);
    border-radius: 50%;
    opacity: 0.3;
    animation: cardParticleFloat 25s ease-in-out infinite;
}

.card-payment-particle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.card-payment-particle-2 {
    top: 40%;
    right: 15%;
    animation-delay: 5s;
}

.card-payment-particle-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 10s;
}

.card-payment-particle-4 {
    top: 65%;
    right: 25%;
    animation-delay: 15s;
}

.card-payment-particle-5 {
    bottom: 15%;
    right: 10%;
    animation-delay: 20s;
}

@keyframes cardParticleFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(40px, -40px);
    }

    50% {
        transform: translate(-30px, -60px);
    }

    75% {
        transform: translate(30px, -30px);
    }
}

/* Header */
.card-payment-ultra-header {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 950px;
    margin: 0 auto 100px;
}

.card-payment-badge-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 100px;
    border: 1px solid rgba(0, 183, 74, 0.18);
    box-shadow: 0 6px 24px rgba(0, 183, 74, 0.12);
    margin-bottom: 32px;
    overflow: hidden;
}

.card-payment-badge-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    animation: cardBadgeShimmer 3.5s ease-in-out infinite;
}

@keyframes cardBadgeShimmer {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 200%;
    }
}

.card-payment-badge-text {
    font-size: 0.8rem;
    font-weight: 800;
    color: #00b74a;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
}

/* Visual Container */


/* Central Hub */
.card-payment-central-hub {
    position: relative;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(0, 183, 74, 0.4);
    z-index: 10;
}

.hub-glow-ring {
    position: absolute;
    width: 220px;
    height: 220px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: hubGlowPulse 3s ease-in-out infinite;
}

@keyframes hubGlowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.hub-pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: hubPulseEffect 3s ease-out infinite;
}

@keyframes hubPulseEffect {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Floating Cards */
.floating-card-element {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: cardElementFloat 4s ease-in-out infinite;
}

.card-element-1 {
    top: 5%;
    left: 20%;
    animation-delay: 0s;
}

.card-element-2 {
    top: 5%;
    right: 20%;
    animation-delay: 0.7s;
}

.card-element-3 {
    top: 45%;
    right: 5%;
    animation-delay: 1.4s;
}

.card-element-4 {
    bottom: 5%;
    right: 20%;
    animation-delay: 2.1s;
}

.card-element-5 {
    bottom: 5%;
    left: 20%;
    animation-delay: 2.8s;
}

.card-element-6 {
    top: 45%;
    left: 5%;
    animation-delay: 3.5s;
}

@keyframes cardElementFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Mini Cards */
.card-mini {
    width: 180px;
    height: 110px;
    border-radius: 16px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.card-mini:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.visa-card {
    background: linear-gradient(135deg, #1a1f71 0%, #2e3a8c 100%);
}

.mastercard-card {
    background: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
}

.rupay-card {
    background: linear-gradient(135deg, #00529c 0%, #007cc3 100%);
}

.amex-card {
    background: linear-gradient(135deg, #006fcf 0%, #0090d4 100%);
}

.discover-card {
    background: linear-gradient(135deg, #ff6000 0%, #ff8800 100%);
}

.diners-card {
    background: linear-gradient(135deg, #0079be 0%, #009bdf 100%);
}

.card-mini-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card-mini-chip::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}

.card-mini-logo {
    position: absolute;
    top: 16px;
    right: 16px;
}

.card-mini-circles {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: -8px;
}

.circle-red,
.circle-yellow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.circle-red {
    background: #eb001b;
}

.circle-yellow {
    background: #f79e1b;
    margin-left: -8px;
}

.card-mini-number {
    font-size: 14px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin: 8px 0;
    font-family: 'Courier New', monospace;
}

.card-mini-name {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Card Element Badge */
.card-element-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
}

/* Connection Lines */
.card-connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.5;
}

.connect-line-card {
    animation: lineCardFlow 3s ease-in-out infinite;
}

@keyframes lineCardFlow {

    0%,
    100% {
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dashoffset: 20;
    }
}

/* Features Grid */
.card-payment-features-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-payment-feature-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.09);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-payment-feature-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.14);
}

.feature-box-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #00b74a 0%, #00d96f 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 183, 74, 0.35);
}

.card-payment-feature-box h4 {
    font-size: 1.35rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
}

.card-payment-feature-box p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
    .card-payment-visual-container {
        height: 650px;
        transform: scale(0.9);
    }

    .card-payment-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 991px) {
    .digibro-card-payment-ultra-section {
        padding: 100px 0;
    }

    .card-payment-ultra-header {
        margin-bottom: 80px;
    }

    .card-payment-visual-container {
        height: 600px;
        transform: scale(0.8);
        margin-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .digibro-card-payment-ultra-section {
        padding: 80px 0;
    }

    .card-payment-visual-container {
        height: 750px !important;
    }

    .card-payment-ultra-header {
        margin-bottom: 60px;
    }

    .card-payment-visual-container {
        transform: scale(0.7);
        margin-bottom: 60px;
        margin-top: -190px !important;
    }

    .card-payment-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card-element-1,
    .card-element-2,
    .card-element-3,
    .card-element-4,
    .card-element-5,
    .card-element-6 {
        display: none;
    }

    .card-element-1,
    .card-element-2,
    .card-element-3 {
        display: flex;
    }

    .card-element-1 {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
    }

    .card-element-2 {
        top: 50%;
        right: 5%;
    }

    .card-element-3 {
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 479px) {
    .card-payment-visual-container {
        transform: scale(0.6);
        height: 500px;
    }

    .card-mini {
        width: 160px;
        height: 100px;
        padding: 14px;
    }

    .card-mini-chip {
        width: 35px;
        height: 26px;
    }

    .card-mini-number {
        font-size: 12px;
    }

    .card-mini-name {
        font-size: 8px;
    }
}



/* ========================================
   CARD PAYMENT VISUAL CONTAINER - ENHANCED WITH SIDE CONTENT
   ======================================== */

.card-payment-visual-container {
    position: relative;
    width: 100%;
    max-width: 1800px;
    height: 700px;
    margin: 0 auto 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left and Right Side Columns */
.visual-side-left,
.visual-side-right {
    width: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 5;
}

/* Center Visual - Existing code */
.visual-center-main {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium Side Cards - Hero Section Style */
.premium-side-card {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px);
    border-radius: 28px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.premium-side-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 183, 74, 0.2);
}

/* Glow Effect - Hero Section Style */
.card-side-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(80px);
    pointer-events: none;
}

.premium-side-card:hover .card-side-glow {
    opacity: 1;
}

.card-left-glow {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
}

.card-right-glow {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, transparent 70%);
}

/* Card Header - Hero Style */
.card-side-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-side-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.icon-left-card {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.icon-right-card {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.card-side-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.2;
}

/* Stats Display - Hero Style */
.card-side-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.side-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.side-stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #00b74a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.side-stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Feature List - Hero Style */
.side-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.side-feature-item:hover {
    background: rgba(0, 183, 74, 0.05);
    border-color: rgba(0, 183, 74, 0.15);
    transform: translateX(5px);
}

.feature-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(0, 183, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b74a;
    flex-shrink: 0;
}

.feature-item-text {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 600;
    line-height: 1.4;
}

/* CTA Button - Hero Style */
.card-side-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    margin-top: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(0, 183, 74, 0.25);
}

.card-side-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(0, 183, 74, 0.35);
}

.cta-side-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: sideBtnShine 4s ease-in-out infinite;
}

@keyframes sideBtnShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 200%;
    }
}

/* Floating Badge - Hero Style */
.side-floating-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 2;
    animation: badgeFloatSide 3s ease-in-out infinite;
}

@keyframes badgeFloatSide {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Progress Indicator */
.side-progress-container {
    margin: 20px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.progress-label span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.progress-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00b74a, #0066cc);
    border-radius: 4px;
    position: relative;
    width: 85%;
    animation: progressLoad 1.5s ease-out;
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }

    100% {
        width: 85%;
    }
}

/* Responsive Design */
@media (max-width: 1399px) {

    .visual-side-left,
    .visual-side-right {
        width: 280px;
    }
}

@media (max-width: 1199px) {
    .card-payment-visual-container {
        flex-direction: column;
        height: auto;
        gap: 60px;
    }

    .visual-side-left,
    .visual-side-right {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

    .premium-side-card {
        width: 48%;
        min-height: 400px;
    }

    .visual-center-main {
        order: 1;
        height: 600px;
        width: 100%;
    }

    .visual-side-left {
        order: 2;
    }

    .visual-side-right {
        order: 3;
    }
}

@media (max-width: 991px) {
    .card-payment-visual-container {
        margin-bottom: 60px;
    }

    .premium-side-card {
        padding: 25px;
    }

    .card-side-title {
        font-size: 1.35rem;
    }

    .side-stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {

    .visual-side-left,
    .visual-side-right {
        flex-direction: column;
    }

    .premium-side-card {
        width: 100%;
        max-width: 400px;
    }

    .visual-center-main {
        display: none;
    }
}

@media (max-width: 479px) {
    .premium-side-card {
        padding: 20px;
    }

    .card-side-icon {
        width: 48px;
        height: 48px;
    }

    .card-side-title {
        font-size: 1.2rem;
    }

    .side-stat-number {
        font-size: 1.5rem;
    }

    .feature-item-text {
        font-size: 0.85rem;
    }
}



/* SVG Specific Styles */
.card-chip-svg {
    position: absolute;
    top: 24px;
    left: 24px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.contactless-icon {
    animation: contactlessPulse 3s ease-in-out infinite;
}

@keyframes contactlessPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.toll-booth-svg {
    filter: drop-shadow(0 8px 20px rgba(245, 158, 11, 0.4));
}

.shield-svg {
    animation: shieldFloat 8s ease-in-out infinite;
}

@keyframes shieldFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.03);
    }
}

/* cards section end */


/* ============================================
   NETWORK FLOW VISUAL - UNIQUE ABOUT US
   ============================================ */

.network-flow-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg,
            rgba(240, 253, 244, 0.8) 0%,
            rgba(224, 242, 254, 0.8) 50%,
            rgba(240, 253, 250, 0.8) 100%);
    border-radius: 40px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 183, 74, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Background Network Grid */
.network-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 183, 74, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 183, 74, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

/* Central Brand Hub */
.brand-central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.hub-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
            rgba(0, 183, 74, 0.25) 0%,
            rgba(0, 102, 204, 0.15) 50%,
            transparent 70%);
    border-radius: 50%;
    animation: hubGlowPulse 3s ease-in-out infinite;
}

@keyframes hubGlowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.hub-content {
    position: relative;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow:
        0 25px 60px rgba(0, 183, 74, 0.3),
        0 0 0 6px rgba(255, 255, 255, 0.5),
        0 0 0 12px rgba(0, 183, 74, 0.1);
}

.hub-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.hub-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(0, 183, 74, 0.1);
    border-radius: 20px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #00b74a;
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hub-status span {
    font-size: 0.65rem;
    font-weight: 700;
    color: #00b74a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Network Nodes */
.network-node {
    position: absolute;
    z-index: 15;
    animation: nodeFloat 4s ease-in-out infinite;
}

.node-1 {
    top: 8%;
    left: 15%;
    animation-delay: 0s;
}

.node-2 {
    top: 8%;
    right: 15%;
    animation-delay: 0.6s;
}

.node-3 {
    top: 40%;
    left: 5%;
    animation-delay: 1.2s;
}

.node-4 {
    top: 40%;
    right: 5%;
    animation-delay: 1.8s;
}

.node-5 {
    bottom: 8%;
    left: 15%;
    animation-delay: 2.4s;
}

.node-6 {
    bottom: 8%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes nodeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.node-inner {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 35px rgba(0, 183, 74, 0.25),
        0 0 0 3px rgba(0, 183, 74, 0.1);
    margin: 0 auto 10px;
    transition: all 0.4s ease;
    position: relative;
}

.node-inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b74a, #0066cc);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.network-node:hover .node-inner {
    transform: scale(1.15);
    box-shadow: 0 18px 45px rgba(0, 183, 74, 0.4);
}

.network-node:hover .node-inner::before {
    opacity: 0.15;
}

.node-inner svg {
    color: #00b74a;
    position: relative;
    z-index: 1;
}

.node-1 .node-inner svg {
    color: #00b74a;
}

.node-2 .node-inner svg {
    color: #0066cc;
}

.node-3 .node-inner svg {
    color: #00bfa6;
}

.node-4 .node-inner svg {
    color: #8b5cf6;
}

.node-5 .node-inner svg {
    color: #00b74a;
}

.node-6 .node-inner svg {
    color: #0066cc;
}

.node-label {
    text-align: center;
    background: white;
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    min-width: 80px;
}

.label-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00b74a, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.2;
}

.label-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.connect-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: lineAnimate 3s ease-in-out infinite;
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 0.5s;
}

.line-3 {
    animation-delay: 1s;
}

.line-4 {
    animation-delay: 1.5s;
}

.line-5 {
    animation-delay: 2s;
}

.line-6 {
    animation-delay: 2.5s;
}

@keyframes lineAnimate {

    0%,
    100% {
        stroke-dashoffset: 300;
        opacity: 0.2;
    }

    50% {
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
}

/* Data Flow Particles */
.data-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #00b74a, #0066cc);
    border-radius: 50%;
    opacity: 0;
    z-index: 10;
}

.dp-1 {
    top: 20%;
    left: 30%;
    animation: particleFlow1 5s ease-in-out infinite;
}

.dp-2 {
    top: 20%;
    right: 30%;
    animation: particleFlow2 5s ease-in-out infinite 1s;
}

.dp-3 {
    top: 50%;
    left: 20%;
    animation: particleFlow3 5s ease-in-out infinite 2s;
}

.dp-4 {
    top: 50%;
    right: 20%;
    animation: particleFlow4 5s ease-in-out infinite 3s;
}

.dp-5 {
    bottom: 20%;
    left: 30%;
    animation: particleFlow5 5s ease-in-out infinite 4s;
}

.dp-6 {
    bottom: 20%;
    right: 30%;
    animation: particleFlow6 5s ease-in-out infinite 0.5s;
}

@keyframes particleFlow1 {

    0%,
    100% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }

    50% {
        opacity: 1;
        transform: translate(100px, 80px) scale(1);
    }
}

@keyframes particleFlow2 {

    0%,
    100% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }

    50% {
        opacity: 1;
        transform: translate(-100px, 80px) scale(1);
    }
}

@keyframes particleFlow3 {

    0%,
    100% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }

    50% {
        opacity: 1;
        transform: translate(80px, 0) scale(1);
    }
}

@keyframes particleFlow4 {

    0%,
    100% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }

    50% {
        opacity: 1;
        transform: translate(-80px, 0) scale(1);
    }
}

@keyframes particleFlow5 {

    0%,
    100% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }

    50% {
        opacity: 1;
        transform: translate(100px, -80px) scale(1);
    }
}

@keyframes particleFlow6 {

    0%,
    100% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }

    50% {
        opacity: 1;
        transform: translate(-100px, -80px) scale(1);
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1199px) {
    .network-flow-container {
        max-width: 550px;
        height: 550px;
    }

    .hub-content {
        width: 130px;
        height: 130px;
    }

    .hub-logo {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 991px) {
    .network-flow-container {
        max-width: 500px;
        height: 500px;
    }

    .hub-content {
        width: 120px;
        height: 120px;
    }

    .hub-logo {
        width: 60px;
        height: 60px;
    }

    .node-inner {
        width: 50px;
        height: 50px;
    }

    .node-inner svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 767px) {
    .network-flow-container {
        max-width: 450px;
        height: 450px;
        transform: scale(0.95);
    }

    .node-label {
        padding: 6px 12px;
        min-width: 70px;
    }

    .label-number {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .network-flow-container {
        transform: scale(0.85);
    }

    .hub-content {
        width: 110px;
        height: 110px;
    }

    .hub-logo {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 479px) {
    .network-flow-container {
        transform: scale(0.75);
    }

    .node-inner {
        width: 46px;
        height: 46px;
    }

    .node-label {
        padding: 5px 10px;
        min-width: 65px;
    }

    .label-number {
        font-size: 0.9rem;
    }

    .label-text {
        font-size: 0.65rem;
    }
}









/* ============================================
   PREMIUM IMAGE SHOWCASE VISUAL
   ============================================ */

.about-visual-left {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-showcase-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    margin: 0 auto;
}

/* Background Gradient */
.showcase-bg-gradient {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 30% 40%,
            rgba(0, 183, 74, 0.08) 0%,
            rgba(0, 102, 204, 0.06) 40%,
            transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

/* Floating Dots */
.showcase-floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #00b74a, #0066cc);
    border-radius: 50%;
    opacity: 0.4;
}

.dot-1 {
    top: 10%;
    left: 15%;
    animation: dotFloat 6s ease-in-out infinite;
}

.dot-2 {
    top: 25%;
    right: 10%;
    animation: dotFloat 7s ease-in-out infinite 1s;
}

.dot-3 {
    bottom: 20%;
    left: 10%;
    animation: dotFloat 8s ease-in-out infinite 2s;
}

.dot-4 {
    bottom: 15%;
    right: 20%;
    animation: dotFloat 6.5s ease-in-out infinite 1.5s;
}

@keyframes dotFloat {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }

    50% {
        transform: translate(20px, -20px);
        opacity: 0.8;
    }
}

/* Main Image Wrapper */
.main-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 320px;
    z-index: 5;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    clip-path: polygon(0% 8%,
            8% 0%,
            100% 0%,
            100% 92%,
            92% 100%,
            0% 100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image-wrapper:hover .image-frame {
    transform: scale(1.02);
    box-shadow:
        0 40px 100px rgba(0, 183, 74, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

.main-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-image-wrapper:hover .main-showcase-img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 183, 74, 0.1) 0%,
            rgba(0, 102, 204, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.main-image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* Corner Accents */
.corner-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #00b74a;
    transition: all 0.6s ease;
}

.corner-tl {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.corner-br {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

.main-image-wrapper:hover .corner-tl {
    top: 10px;
    left: 10px;
    border-color: #0066cc;
}

.main-image-wrapper:hover .corner-br {
    bottom: 10px;
    right: 10px;
    border-color: #0066cc;
}

/* Floating Stats Badge */
.floating-stats-badge {
    position: absolute;
    bottom: -150px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: white;
    border-radius: 50px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 4px rgba(0, 183, 74, 0.1);
    z-index: 10;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}



.badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-number {
    font-size: 1.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00b74a, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Small Image 1 - Top Right */
.small-img-1 {
    position: absolute;
    top: 8%;
    right: 5%;
    width: 180px;
    height: 140px;
    z-index: 8;
    animation: smallImageFloat1 5s ease-in-out infinite;
}

@keyframes smallImageFloat1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-8px, -8px) rotate(2deg);
    }
}

.small-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    clip-path: polygon(0% 10%,
            10% 0%,
            100% 0%,
            100% 90%,
            90% 100%,
            0% 100%);
    transition: all 0.5s ease;
}

.small-image-wrapper:hover .small-image-frame {
    transform: scale(1.05);
    box-shadow:
        0 25px 60px rgba(0, 102, 204, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

.small-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.small-image-wrapper:hover .small-showcase-img {
    transform: scale(1.1);
}

.small-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 183, 74, 0.15) 0%,
            rgba(0, 102, 204, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.small-image-wrapper:hover .small-overlay {
    opacity: 1;
}

/* Small Image 2 - Bottom Left */
.small-img-2 {
    position: absolute;
    bottom: 8%;
    left: 5%;
    width: 180px;
    height: 140px;
    z-index: 8;
    animation: smallImageFloat2 5s ease-in-out infinite 1s;
}

@keyframes smallImageFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(8px, 8px) rotate(-2deg);
    }
}

/* Small Image Labels */
.small-image-label {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    transition: all 0.4s ease;
}

.small-image-wrapper:hover .small-image-label {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 183, 74, 0.2);
}

.small-image-label svg {
    color: #00b74a;
}

.small-img-2 .small-image-label svg {
    color: #0066cc;
}

/* Decorative Lines */
.decorative-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.deco-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: lineFlow 4s ease-in-out infinite;
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 2s;
}

@keyframes lineFlow {

    0%,
    100% {
        stroke-dashoffset: 200;
        opacity: 0.3;
    }

    50% {
        stroke-dashoffset: 0;
        opacity: 0.7;
    }
}

/* Trust Indicators */
.trust-indicators {
    position: absolute;
    top: 20px;
    left: 30%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}


.trust-indicators-2 {
    position: absolute;
    bottom: 20px;
    left: 70%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    animation: trustFloat 3s ease-in-out infinite;
}

.trust-item:nth-child(2) {
    animation-delay: 1s;
}

@keyframes trustFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.trust-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 102, 204, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b74a;
}

.trust-item:nth-child(2) .trust-icon {
    color: #0066cc;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1199px) {
    .image-showcase-container {
        max-width: 550px;
        height: 550px;
    }

    .main-image-wrapper {
        width: 380px;
        height: 290px;
    }

    .small-img-1,
    .small-img-2 {
        width: 160px;
        height: 125px;
    }
}

@media (max-width: 991px) {
    .about-visual-left {
        height: 500px;
        margin-bottom: 60px;
    }

    .image-showcase-container {
        max-width: 500px;
        height: 500px;
    }

    .main-image-wrapper {
        width: 350px;
        height: 270px;
    }

    .small-img-1,
    .small-img-2 {
        width: 150px;
        height: 115px;
    }

    .floating-stats-badge {
        padding: 14px 20px;
    }

    .badge-number {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .about-visual-left {
        height: 450px;
    }

    .image-showcase-container {
        transform: scale(0.9);
    }

    .trust-indicators {
        flex-direction: column;
        gap: 12px;
        top: -50px;
    }
}

@media (max-width: 575px) {
    .image-showcase-container {
        transform: scale(0.8);
    }

    .main-image-wrapper {
        width: 320px;
        height: 240px;
    }

    .small-img-1,
    .small-img-2 {
        width: 140px;
        height: 105px;
    }

    .small-image-label {
        font-size: 0.7rem;
        padding: 8px 14px;
    }
}

@media (max-width: 479px) {
    .image-showcase-container {
        transform: scale(0.7);
    }

    .trust-indicators {
        top: -60px;
    }

    .floating-stats-badge {
        bottom: -15px;
        right: -15px;
        padding: 12px 18px;
    }
}