/* पेज को लेफ्ट-राइट भागने से रोकने का सबसे सेफ तरीका */
body {
    inline-size: 100%;
    overflow-x: clip; /* hidden की जगह clip इस्तेमाल करें, इससे sticky menu नहीं बिगड़ता */
    margin: 0;
}

/* अगर कोई चीज़ जबरदस्ती बाहर भाग रही है तो उसे रोकने के लिए */
.main-container, main, section { 
    max-width: 100%; !important;
    overflow-x: hidden;
}


html, body {
    overflow-x: hidden !important;
    position: relative !important;
    left: 0 !important;
}




/* पूरे पेज पर टेक्स्ट सिलेक्शन बंद */
body {
    -webkit-user-select: none;  /* Chrome, Safari, Opera */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE/Edge */
    user-select: none;          /* Standard */
}

/* इमेज को ड्रैग या सेव करने से रोकना */
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none; /* इमेज पर क्लिक भी नहीं होगा */
}

/* FONT FAMILY - CHANGE FROM INTER TO POPPINS */
/* GLOBAL FIX - PREVENT HORIZONTAL SCROLL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
   
    color: #1e293b;
    overflow-x: hidden;
    background: #ffffff;
}

/* Base and Typography (Ensure V124 variables are used) */
.pancard-ultimate-container { font-family: 'Poppins', sans-serif; color: var(--text-body-v124); overflow-x: hidden; }


    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --teal: #009688;
            --teal-dark: #00796b;
            --teal-deep: #004d40;
            --green: #67C949;
            --green-dark: #57b443;
            --yellow: #ffc107;
        }

        /* ANIMATIONS */
        @keyframes slideLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

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

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.05); opacity: 0.8; }
        }

        @keyframes bubbleFloat {
            0% { transform: translateY(0) scale(1); opacity: 0.3; }
            50% { opacity: 0.5; }
            100% { transform: translateY(-100vh) scale(1.2); opacity: 0; }
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        @keyframes cardFlip {
            0%, 100% { transform: rotateY(0deg); }
            50% { transform: rotateY(180deg); }
        }

        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(0,150,136,0.3); }
            50% { box-shadow: 0 0 40px rgba(0,150,136,0.6), 0 0 60px rgba(103,201,73,0.4); }
        }

        /* HERO */
        .hero-section {
            background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 50%, var(--teal) 100%);
            padding: 60px 0 50px;
            position: relative;
            overflow: hidden;
        }

        .bubble {
            position: absolute;
            bottom: -100px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            animation: bubbleFloat linear infinite;
        }
        .bubble:nth-child(1) { width: 50px; height: 50px; left: 10%; animation-duration: 12s; }
        .bubble:nth-child(2) { width: 40px; height: 40px; left: 30%; animation-duration: 10s; animation-delay: 2s; }
        .bubble:nth-child(3) { width: 60px; height: 60px; left: 60%; animation-duration: 15s; animation-delay: 4s; }
        .bubble:nth-child(4) { width: 45px; height: 45px; left: 80%; animation-duration: 11s; animation-delay: 1s; }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(103,201,73,0.15), transparent 70%);
            top: -200px;
            right: -150px;
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            animation: slideLeft 1s ease-out;
        }

        /* HERO BADGE - OFFICIAL PARTNER */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255,215,0,0.25), rgba(255,193,7,0.25));
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 15px;
    border: 2px solid rgba(255,215,0,0.4);
    box-shadow: 0 6px 20px rgba(255,215,0,0.3);
    animation: glow 2s ease-in-out infinite;
}

.hero-badge::before {
    content: '👑';
    font-size: 16px;
    animation: float 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(255,215,0,0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255,215,0,0.5), 0 0 40px rgba(255,215,0,0.3);
    }
}


        .hero-content h1 {
            color: white;
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .hero-content h1 .highlight {
            color: var(--yellow);
        }

        .hero-content .lead {
            color: rgba(255,255,255,0.9);
            font-size: 1.2rem;
            margin-bottom: 25px;
            line-height: 1.7;
			max-width: 900px;
			font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .btn-hero {
            padding: 12px 30px;
            font-size: 0.95rem;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary-hero {
            background: white;
            color: var(--teal);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        .btn-primary-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
        }

        .btn-outline-hero {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.4);
        }

        .btn-outline-hero:hover {
            background: rgba(255,255,255,0.15);
            border-color: white;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .stat-mini {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }

        .stat-mini:hover {
            background: rgba(255,255,255,0.18);
            transform: translateY(-3px);
        }

        .stat-mini h3 {
            color: var(--green);
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0;
        }

        .stat-mini p {
            color: white;
            font-size: 0.8rem;
            margin: 3px 0 0 0;
            opacity: 0.95;
        }

        /* HERO VISUAL - BIGGER & FASTER ROTATION */
.hero-visual {
    position: relative;
    z-index: 10;
    animation: slideRight 1s ease-out;
    display: flex;
    justify-content: flex-end;
    padding-left: 40px;
}

.pan-card-container {
    position: relative;
    animation: float 4s ease-in-out infinite;
    width: 100%;
    max-width: 480px;
}

.pan-card-3d {
    width: 100%;
    max-width: 480px;
    height: 300px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    animation: cardFlip 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

/* FAST CARD FLIP ANIMATION */
@keyframes cardFlip {
    0%, 100% { transform: rotateY(0deg) scale(1); }
    25% { transform: rotateY(180deg) scale(1.02); }
    50% { transform: rotateY(360deg) scale(1); }
    75% { transform: rotateY(540deg) scale(1.02); }
}

.pan-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.pan-chip {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 50px;
    height: 42px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.pan-logo {
    font-size: 11px;
    color: #ffd700;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.pan-number {
    font-size: 28px;
    font-weight: 900;
    color: white;
    letter-spacing: 5px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pan-name {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    font-weight: 700;
    margin-bottom: 10px;
}

.pan-dob {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-visual {
        padding-left: 20px;
    }
    
    .pan-card-container {
        max-width: 400px;
    }
    
    .pan-card-3d {
        max-width: 400px;
        height: 250px;
        padding: 25px;
    }
    
    .pan-number {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        justify-content: center;
        padding-left: 0;
    }
    
    .pan-card-container {
        max-width: 340px;
    }
    
    .pan-card-3d {
        max-width: 340px;
        height: 220px;
        padding: 20px;
    }
    
    .pan-number {
        font-size: 22px;
        letter-spacing: 3px;
    }
    
    .pan-name {
        font-size: 16px;
    }
}


        /* INTRO SECTION */
        .intro-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .intro-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(0,150,136,0.03) 0%, transparent 70%);
            animation: gradient-shift 15s ease infinite;
            background-size: 200% 200%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 10;
        }

        .section-tag {
            display: inline-block;
            background: linear-gradient(135deg, rgba(0,150,136,0.1), rgba(103,201,73,0.1));
            color: var(--teal);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 12px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid rgba(0,150,136,0.2);
            animation: glow 3s ease-in-out infinite;
        }

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--teal-deep), var(--teal), var(--green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .section-header .subtitle {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 500;
        }

        .intro-main-card {
            background: white;
            border-radius: 30px;
            padding: 0;
            box-shadow: 0 20px 60px rgba(0,150,136,0.12);
            border: 2px solid #e2e8f0;
            overflow: hidden;
            position: relative;
            animation: slideUp 0.8s ease-out;
        }

        .intro-main-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--teal), var(--green), var(--teal));
            background-size: 200% 100%;
            animation: gradient-shift 3s ease infinite;
        }

        .intro-header-section {
            background: linear-gradient(135deg, rgba(0,150,136,0.05), rgba(103,201,73,0.05));
            padding: 45px 50px;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
        }

        .intro-header-section::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--teal), transparent);
        }

        .intro-title {
            font-size: 2rem;
            font-weight: 900;
            color: var(--teal-deep);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .intro-title-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--teal), var(--green));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            box-shadow: 0 10px 30px rgba(0,150,136,0.3);
            animation: float 3s ease-in-out infinite;
        }

        .intro-description {
            font-size: 1.05rem;
            color: #475569;
            line-height: 1.9;
            margin-bottom: 0;
        }

        .intro-body {
            padding: 50px;
        }

        .intro-body p {
            font-size: 1rem;
            color: #475569;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .intro-body strong {
            color: var(--teal-deep);
            font-weight: 700;
        }

        .premium-highlight {
            background: linear-gradient(135deg, rgba(0,150,136,0.08), rgba(103,201,73,0.08));
            border-left: 4px solid var(--green);
            padding: 25px 30px;
            border-radius: 16px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .premium-highlight::before {
            content: '💰';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 60px;
            opacity: 0.1;
        }

        .premium-highlight p {
            margin: 0;
            font-weight: 600;
            color: var(--teal-deep);
            font-size: 1rem;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

        /* WHO CAN USE - FULL COLOR BOXES */
.who-can-use {
    margin: 40px 0;
}

.who-can-use h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--teal-deep);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.who-can-use h3 i {
    color: var(--green);
    font-size: 24px;
}

.user-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.user-type-card {
    border: none;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ODD CARDS - TEAL BACKGROUND */
.user-type-card:nth-child(odd) {
    background: linear-gradient(135deg, #009688, #00796b);
}

/* EVEN CARDS - GREEN BACKGROUND */
.user-type-card:nth-child(even) {
    background: linear-gradient(135deg, #67C949, #57b443);
}

/* HOVER - WHITE */
.user-type-card:hover {
    background: white !important;
    border: 2px solid var(--teal);
    box-shadow: 0 15px 40px rgba(0,150,136,0.25);
    transform: translateY(-8px);
}

.user-type-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.user-type-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

/* ICON ON HOVER */
.user-type-card:nth-child(odd):hover .user-type-icon {
    background: linear-gradient(135deg, #009688, #00796b);
    border-color: #009688;
}

.user-type-card:nth-child(even):hover .user-type-icon {
    background: linear-gradient(135deg, #67C949, #57b443);
    border-color: #67C949;
}

.user-type-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* HEADING ON HOVER */
.user-type-card:hover h4 {
    color: var(--teal-deep);
}

.user-type-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    margin: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* TEXT ON HOVER */
.user-type-card:hover p {
    color: #64748b;
}

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

 /* FEATURES - CENTERED HEADING */
.features-showcase {
    margin: 40px 0;
}

.features-showcase h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--teal-deep);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.features-showcase h3 i {
    color: var(--green);
    font-size: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-mini-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-mini-card:hover::before {
    transform: scaleX(1);
}

.feature-mini-card:nth-child(odd):hover {
    background: linear-gradient(135deg, rgba(0,150,136,0.05), rgba(0,150,136,0.08));
    border-color: var(--teal);
}

.feature-mini-card:nth-child(even):hover {
    background: linear-gradient(135deg, rgba(103,201,73,0.05), rgba(103,201,73,0.08));
    border-color: var(--green);
}

.feature-mini-card:hover {
    box-shadow: 0 12px 35px rgba(0,150,136,0.12);
    transform: translateY(-8px);
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0,150,136,0.1), rgba(103,201,73,0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 32px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.feature-mini-card:nth-child(1) .feature-icon-circle {
    color: var(--teal);
}

.feature-mini-card:nth-child(2) .feature-icon-circle {
    color: var(--green);
}

.feature-mini-card:nth-child(3) .feature-icon-circle {
    color: var(--teal);
}

.feature-mini-card:nth-child(4) .feature-icon-circle {
    color: var(--green);
}

.feature-mini-card:nth-child(5) .feature-icon-circle {
    color: var(--teal);
}

.feature-mini-card:nth-child(6) .feature-icon-circle {
    color: var(--green);
}

.feature-icon-circle::after {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: 900;
    border: 3px solid white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.feature-mini-card:hover .feature-icon-circle::after {
    opacity: 1;
    transform: scale(1);
}

.feature-mini-card:nth-child(odd):hover .feature-icon-circle {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0,150,136,0.3);
}

.feature-mini-card:nth-child(even):hover .feature-icon-circle {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(103,201,73,0.3);
}

.feature-mini-card h5 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--teal-deep);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.feature-mini-card:hover h5 {
    color: var(--teal);
}

.feature-mini-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.feature-mini-card:hover p {
    color: #475569;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .feature-mini-card {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}


        /* STATS BANNER */
        .stats-banner {
            background: linear-gradient(135deg, var(--teal), var(--green));
            border-radius: 20px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 15px 40px rgba(0,150,136,0.3);
            position: relative;
            overflow: hidden;
        }

        .stats-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
            border-radius: 50%;
        }

        .stats-banner-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .stat-banner-item {
            text-align: center;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .stat-banner-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .stat-banner-item h4 {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            margin: 0 0 8px 0;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .stat-banner-item p {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.95);
            margin: 0;
            font-weight: 600;
        }

        .closing-text {
            background: linear-gradient(135deg, rgba(0,150,136,0.03), rgba(103,201,73,0.03));
            padding: 30px;
            border-radius: 16px;
            border: 2px dashed var(--teal);
            text-align: center;
            margin-top: 40px;
        }

        .closing-text p {
            font-size: 1.05rem;
            color: #475569;
            line-height: 1.8;
            margin: 0;
        }

        .closing-text strong {
            color: var(--teal);
        }

       /* WHY PAYSARAL - FULL COLOR BOXES */
.why-paysaral-section {
    padding: 60px 0;
    background: white;
    overflow: hidden;
}

.why-content {
    animation: slideLeft 0.8s ease-out;
}

.why-content h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--teal-deep);
    margin-bottom: 18px;
    line-height: 1.3;
}

.why-content p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.why-stat-box {
    padding: 18px;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border: none;
}

/* BOX 1 - TEAL */
.why-stat-box:nth-child(1) {
    background: linear-gradient(135deg, #009688, #00796b);
}

/* BOX 2 - GREEN */
.why-stat-box:nth-child(2) {
    background: linear-gradient(135deg, #67C949, #57b443);
}

/* BOX 3 - TEAL */
.why-stat-box:nth-child(3) {
    background: linear-gradient(135deg, #67C949, #57b443);
}

/* BOX 4 - GREEN */
.why-stat-box:nth-child(4) {
    background: linear-gradient(135deg, #009688, #00796b);
}

/* HOVER - WHITE */
.why-stat-box:hover {
    background: white !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,150,136,0.2);
    border: 2px solid var(--teal);
}

.why-stat-box h4 {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    margin: 0 0 5px 0;
    transition: all 0.4s ease;
}

/* HEADING ON HOVER */
.why-stat-box:hover h4 {
    color: var(--teal);
}

.why-stat-box p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.95);
    margin: 0;
    font-weight: 600;
    transition: all 0.4s ease;
}

/* TEXT ON HOVER */
.why-stat-box:hover p {
    color: #64748b;
}

.why-image {
    animation: slideRight 0.8s ease-out;
}

.pan-cards-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pan-card-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,150,136,0.15);
    transition: all 0.4s ease;
}

.pan-card-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,150,136,0.25);
}

.pan-card-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.image-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, rgba(0,150,136,0.95), rgba(103,201,73,0.95));
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.image-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 6px 18px rgba(103,201,73,0.4);
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 6px;
}

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


        /* SERVICES */
        .services-section {
            padding: 60px 0;
            background: #f8fafc;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .service-box {
            border: 2px solid rgba(0,150,136,0.2);
            border-radius: 18px;
            padding: 30px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-box:nth-child(odd) {
            background: linear-gradient(135deg, rgba(0,150,136,0.08), rgba(0,150,136,0.12));
            border-color: rgba(0,150,136,0.3);
        }

        .service-box:nth-child(even) {
            background: linear-gradient(135deg, rgba(103,201,73,0.08), rgba(103,201,73,0.12));
            border-color: rgba(103,201,73,0.3);
        }

        .service-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--teal), var(--green));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-box:hover::before {
            transform: scaleX(1);
        }

        .service-box:hover {
            background: white;
            border-color: var(--teal);
            box-shadow: 0 15px 40px rgba(0,150,136,0.12);
            transform: translateY(-6px);
        }

        .service-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .service-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--teal), var(--green));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: white;
            box-shadow: 0 6px 15px rgba(0,150,136,0.3);
        }

        .service-tag {
            background: var(--green);
            color: white;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .service-box h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--teal-deep);
            margin-bottom: 12px;
        }

        .service-box p {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .feature-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .feature-tag {
            background: rgba(255,255,255,0.8);
            color: var(--teal-deep);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            border: 1px solid rgba(0,150,136,0.2);
        }

        .feature-tag i {
            color: var(--green);
            font-size: 12px;
        }

        /* PROCESS - FULL COLOR FILLED BOXES */
        .process-section {
            padding: 60px 0;
            background: white;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 45px;
        }

        .step-box {
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border: none;
            position: relative;
            transition: all 0.4s ease;
        }

        /* BOX 1 - SOLID TEAL */
        .step-box:nth-child(1) {
            background: linear-gradient(135deg, #009688, #00796b);
        }

        /* BOX 2 - SOLID GREEN */
        .step-box:nth-child(2) {
            background: linear-gradient(135deg, #67C949, #57b443);
        }

        /* BOX 3 - SOLID TEAL */
        .step-box:nth-child(3) {
            background: linear-gradient(135deg, #009688, #00796b);
        }

        /* BOX 4 - SOLID GREEN */
        .step-box:nth-child(4) {
            background: linear-gradient(135deg, #67C949, #57b443);
        }

        /* HOVER - WHITE */
        .step-box:hover {
            background: white !important;
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,150,136,0.25);
            border: 2px solid var(--teal);
        }

        .step-box::after {
            content: '→';
            position: absolute;
            top: 50%;
            right: -22px;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--teal);
            font-weight: 900;
        }

        .step-box:last-child::after {
            display: none;
        }

        .step-num {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.25);
            backdrop-filter: blur(10px);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            margin: 0 auto 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.4s ease;
        }

        /* NUMBER ON HOVER */
        .step-box:nth-child(1):hover .step-num {
            background: linear-gradient(135deg, #009688, #00796b);
            border-color: #009688;
        }

        .step-box:nth-child(2):hover .step-num {
            background: linear-gradient(135deg, #67C949, #57b443);
            border-color: #67C949;
        }

        .step-box:nth-child(3):hover .step-num {
            background: linear-gradient(135deg, #009688, #00796b);
            border-color: #009688;
        }

        .step-box:nth-child(4):hover .step-num {
            background: linear-gradient(135deg, #67C949, #57b443);
            border-color: #67C949;
        }

        .step-box h4 {
            font-size: 1.1rem;
            font-weight: 800;
            color: white;
            margin-bottom: 10px;
            transition: all 0.4s ease;
        }

        .step-box:hover h4 {
            color: var(--teal-deep);
        }

        .step-box p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.95);
            line-height: 1.5;
            margin: 0;
            transition: all 0.4s ease;
        }

        .step-box:hover p {
            color: #64748b;
        }

        /* BENEFITS */
        .benefits-section {
            padding: 60px 0;
            background: #f8fafc;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 45px;
        }

        .benefit-card {
            border: 2px solid rgba(0,150,136,0.2);
            border-radius: 16px;
            padding: 30px 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-card:nth-child(odd) {
            background: linear-gradient(135deg, rgba(0,150,136,0.08), rgba(0,150,136,0.12));
            border-color: rgba(0,150,136,0.3);
        }

        .benefit-card:nth-child(even) {
            background: linear-gradient(135deg, rgba(103,201,73,0.08), rgba(103,201,73,0.12));
            border-color: rgba(103,201,73,0.3);
        }

        .benefit-card:hover {
            background: white;
            border-color: var(--teal);
            box-shadow: 0 10px 30px rgba(0,150,136,0.12);
            transform: translateY(-6px);
        }

        .benefit-card-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, rgba(0,150,136,0.15), rgba(103,201,73,0.15));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: var(--teal);
            transition: all 0.3s ease;
        }

        .benefit-card:hover .benefit-card-icon {
            background: linear-gradient(135deg, var(--teal), var(--green));
            color: white;
            transform: scale(1.1);
        }

        .benefit-card h4 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--teal-deep);
            margin-bottom: 12px;
        }

        .benefit-card p {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }



/* REQUIREMENTS - TREE/PED DESIGN */
.requirements-section {
    padding: 60px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.requirements-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 70%;
    background: linear-gradient(180deg, var(--teal), var(--green));
    border-radius: 10px;
    opacity: 0.2;
    z-index: 1;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 45px;
    position: relative;
    z-index: 2;
}

.req-card {
    border-radius: 20px;
    padding: 25px 28px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* BRANCH LINE EFFECT */
.req-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
    z-index: 0;
}

.req-card:nth-child(1)::before {
    left: -50px;
}

.req-card:nth-child(2)::before {
    right: -50px;
    background: linear-gradient(-90deg, transparent, rgba(255,255,255,0.3));
}

/* CARD 1 - TEAL */
.req-card:nth-child(1) {
    background: linear-gradient(135deg, #009688 0%, #00796b 100%);
}

.req-card:nth-child(1)::after {
    content: '🌿';
    position: absolute;
    font-size: 80px;
    opacity: 0.1;
    top: -10px;
    right: 10px;
    transform: rotate(25deg);
}

/* CARD 2 - GREEN */
.req-card:nth-child(2) {
    background: linear-gradient(135deg, #67C949 0%, #57b443 100%);
}

.req-card:nth-child(2)::after {
    content: '🍃';
    position: absolute;
    font-size: 80px;
    opacity: 0.1;
    top: -10px;
    right: 10px;
    transform: rotate(-25deg);
}

/* HOVER EFFECT */
.req-card:hover {
    background: white !important;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,150,136,0.2);
}

.req-card:hover::after {
    opacity: 0.03;
}

/* COMPACT HEADER */
.req-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.req-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.req-card:nth-child(1):hover .req-icon {
    background: linear-gradient(135deg, #009688, #00796b);
    border-color: #009688;
    transform: rotate(360deg) scale(1.15);
}

.req-card:nth-child(2):hover .req-icon {
    background: linear-gradient(135deg, #67C949, #57b443);
    border-color: #67C949;
    transform: rotate(360deg) scale(1.15);
}

.req-card h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    margin: 0;
    transition: all 0.4s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.req-card:hover h3 {
    color: var(--teal-deep);
    text-shadow: none;
}

/* COMPACT LIST */
.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.req-list li {
    padding: 10px 0;
    display: flex;
    align-items: start;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.req-list li:last-child {
    border-bottom: none;
}

.req-card:hover .req-list li {
    border-bottom-color: rgba(0,150,136,0.08);
}

/* COMPACT CHECK ICONS */
.req-list li i {
    color: white;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
}

.req-card:hover .req-list li i {
    color: white;
    background: var(--green);
    transform: scale(1.15);
}

.req-list li span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    transition: all 0.3s ease;
    font-weight: 500;
}

.req-card:hover .req-list li span {
    color: #475569;
    font-weight: 600;
}

/* COMPACT BADGE */
.req-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    z-index: 3;
}

.req-card:hover .req-badge {
    background: var(--green);
    border-color: var(--green);
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .requirements-section::before {
        display: none;
    }
    
    .req-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .req-card::before {
        display: none;
    }
}

/* FAQ - SIMPLE & ELEGANT DESIGN */
.faq-section {
    padding: 60px 0;
    background: #f8fafc;
}

.faq-list {
    max-width: 900px;
    margin: 45px auto 0;
}

.faq-box {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 2px solid transparent;
}

/* ALTERNATING LEFT BORDER */
.faq-box:nth-child(odd) {
    border-left: 4px solid var(--teal);
}

.faq-box:nth-child(even) {
    border-left: 4px solid var(--green);
}

.faq-box:hover {
    box-shadow: 0 8px 25px rgba(0,150,136,0.1);
    transform: translateY(-2px);
}

.faq-box.active {
    box-shadow: 0 8px 25px rgba(0,150,136,0.12);
    border-color: var(--teal);
}

/* QUESTION BUTTON */
.faq-q {
    width: 100%;
    padding: 20px 70px 20px 25px;
    background: transparent;
    border: none;
    text-align: left;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--teal-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-q:hover {
    color: var(--teal);
}

/* TOGGLE BUTTON */
.faq-toggle {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--teal), var(--green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,150,136,0.2);
}

.faq-toggle i {
    color: white;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-q.active .faq-toggle {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    transform: rotate(180deg);
}

/* ANSWER */
.faq-a {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-a.show {
    padding: 0 25px 20px 25px;
    max-height: 400px;
}

.faq-a-content {
    padding: 20px;
    background: linear-gradient(135deg, rgba(0,150,136,0.02), rgba(103,201,73,0.02));
    border-radius: 12px;
    border-left: 3px solid var(--green);
}

.faq-a p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-a p:last-child {
    margin-bottom: 0;
}

.faq-a strong {
    color: var(--teal);
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-q {
        padding: 18px 60px 18px 20px;
        font-size: 0.9rem;
    }
    
    .faq-toggle {
        width: 36px;
        height: 36px;
    }
}


        /* CTA */
        .cta-banner {
            padding: 70px 0;
            background: linear-gradient(135deg, var(--teal-deep), var(--teal), var(--green));
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
            top: -250px;
            right: -250px;
            border-radius: 50%;
        }

        .cta-banner-content {
            position: relative;
            z-index: 10;
        }

        .cta-banner h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 18px;
        }

        .cta-banner p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .btn-cta-big {
            padding: 16px 50px;
            background: white;
            color: var(--teal);
            border: none;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-cta-big:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.4);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .services-grid, .req-grid, .why-stats, .user-types-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .step-box::after {
                display: none;
            }

            .stats-banner-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .pan-card-3d {
                max-width: 320px;
                height: 200px;
            }

            .hero-stats, .benefits-grid, .steps-grid, .features-grid, .stats-banner-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2, .intro-title {
                font-size: 1.8rem;
            }

            .cta-banner h2 {
                font-size: 1.8rem;
            }

            .intro-header-section, .intro-body {
                padding: 30px 25px;
            }

            .image-label {
                font-size: 0.75rem;
                padding: 6px 12px;
            }
            
            .image-badge {
                font-size: 0.7rem;
                padding: 6px 12px;
            }
        }
		
		
		
	/* TESTIMONIALS SLIDER - SUPER COMPACT */
.testimonials-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-swiper {
    padding: 35px 0px 55px;
    overflow: visible;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.testimonial-3d-wrapper {
    background: white;
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #e2e8f0;
    border-top: 3px solid var(--teal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover .testimonial-3d-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,150,136,0.12);
    border-color: var(--teal);
}

.location-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, rgba(0,150,136,0.1), rgba(103,201,73,0.1));
    color: var(--teal-deep);
    padding: 3px 9px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    border: 1px solid rgba(0,150,136,0.2);
    display: flex;
    align-items: center;
    gap: 3px;
}

.location-badge i {
    color: var(--green);
    font-size: 8px;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 18px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--teal), var(--green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,150,136,0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-card:hover .quote-icon {
    transform: scale(1.05);
}

.testimonial-content {
    margin-top: 18px;
    margin-bottom: 14px;
    flex: 1;
}

.testimonial-text {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 12px;
    font-weight: 500;
    position: relative;
    padding-left: 10px;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--teal), var(--green));
    border-radius: 2px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ffc107;
    font-size: 13px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--teal);
    box-shadow: 0 3px 12px rgba(0,150,136,0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.05);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--teal-deep);
    margin: 0 0 3px 0;
}

.author-info p {
    font-size: 0.72rem;
    color: #64748b;
    margin: 0 0 5px 0;
}

.author-info .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal), var(--green));
    color: white;
    padding: 2px 9px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
}

/* SWIPER BUTTONS */
.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 18px rgba(0,150,136,0.15);
    transition: all 0.3s ease;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 16px;
    font-weight: 900;
    color: var(--teal);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: linear-gradient(135deg, var(--teal), var(--green));
    transform: scale(1.05);
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    color: white;
}

/* SWIPER PAGINATION */
.swiper-pagination {
    bottom: 12px !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--teal), var(--green));
    width: 22px;
    border-radius: 4px;
}

/* STATS BANNER - SUPER COMPACT */
.testimonial-stats-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding: 28px;
    background: linear-gradient(135deg, var(--teal), var(--green));
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,150,136,0.3);
    position: relative;
    overflow: hidden;
}

.testimonial-stats-banner::before {
    content: '⭐';
    position: absolute;
    font-size: 150px;
    opacity: 0.08;
    top: -35px;
    right: -25px;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item h3 {
    font-size: 1.9rem;
    font-weight: 900;
    color: white;
    margin: 0 0 6px 0;
    text-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

.stat-item p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.95);
    margin: 0;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .testimonial-stats-banner {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 22px;
    }
    
    .stat-item h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .testimonial-3d-wrapper {
        padding: 18px 15px;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.78rem;
        line-height: 1.5;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
}


/* VALUE ADDED SERVICES MARQUEE SECTION */
.recharge-value-added-v343 {
    background: linear-gradient(135deg, rgba(0,150,136,0.03), rgba(103,201,73,0.03));
    position: relative;
    overflow: hidden;
}

.bg-light-recharge-v142 {
    background: #f8fafc;
}

.heading-highlight-box-v355 {
    max-width: 700px;
}

.value-title-v343 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--teal-deep);
    margin-bottom: 15px;
}

.value-subtitle-v343 {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.value-marquee-container-v343 {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    width: 100%;
    margin: 0 auto;
}

.value-services-wrapper-v343 {
    display: flex;
    gap: 20px;
    animation: scrollLeft 12s linear infinite;
    will-change: transform;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.service-item-v343 {
    background: white;
    border: 2px solid rgba(0,150,136,0.2);
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teal-deep);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,150,136,0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-item-v343:hover {
    background: var(--green);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(103,201,73,0.3);
}

.service-item-v343 i {
    font-size: 18px;
    color: var(--green);
    transition: all 0.3s ease;
}

.service-item-v343:hover i {
    color: white;
}

/* RESPONSIVE - MOBILE FIX */
@media (max-width: 768px) {
    .value-title-v343 {
        font-size: 1.5rem;
        padding: 0 15px;
    }
    
    .value-subtitle-v343 {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .service-item-v343 {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .value-marquee-container-v343 {
        margin: 0;
        padding: 15px 0;
        overflow-x: hidden;
        width: 100%;
    }
    
    .value-services-wrapper-v343 {
        animation: scrollLeftMobile 6s linear infinite;
        gap: 15px;
    }
    
    /* CONTAINER FIX */
    .recharge-value-added-v343 .container {
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden;
    }
}

/* MOBILE ANIMATION */
@keyframes scrollLeftMobile {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {
    .value-title-v343 {
        font-size: 1.3rem;
    }
    
    .service-item-v343 {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .service-item-v343 i {
        font-size: 16px;
    }
}
