/* पेज को लेफ्ट-राइट भागने से रोकने का सबसे सेफ तरीका */
body {
    inline-size: 100%;
    overflow-x: clip; /* hidden की जगह clip इस्तेमाल करें, इससे sticky menu नहीं बिगड़ता */
    margin: 0;
}

/* अगर कोई चीज़ जबरदस्ती बाहर भाग रही है तो उसे रोकने के लिए */
.main-container, main, section { 
    max-width: 100vw;
    overflow-x: hidden;
}




/* पूरे पेज पर टेक्स्ट सिलेक्शन बंद */
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; /* इमेज पर क्लिक भी नहीं होगा */
}



/* ============================================================
   CASH DEPOSIT HERO - FULL PREMIUM STYLES
   ============================================================ */

/* 1. Main Hero Wrapper */
.cd-hero-v2-fixed {
    background-color: #004d40 !important;
    background-image: linear-gradient(145deg, #004d40 0%, #002d26 100%) !important;
    padding: 50px 0 !important; /* Proper vertical spacing */
    min-height: 500px !important;
    width: 100% !important;
    position: relative !important;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* 2. Heading / Title Styling */
.cd-hero-title-text {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 3.8rem !important; /* Bold & Large */
    line-height: 1.3 !important; /* Increased gap between lines */
    letter-spacing: 0.5px !important;
    margin-bottom: 25px !important; /* Space below heading */
}

/* 3. Paragraph / Subtext Styling */
.cd-hero-para {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.15rem !important;
    line-height: 1.8 !important; /* Extra breathing space for text */
    margin-bottom: 40px !important; /* Space below paragraph */
    max-width: 600px;
}

/* 4. Button Group Spacing */
.cd-btn-center {
    display: flex;
    gap: 20px !important; /* Gap between buttons */
    flex-wrap: wrap;
}

/* Main Action Button */
.btn-cd-main {
    background-color: #67C949 !important;
    color: #ffffff !important;
    padding: 12px 35px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: 0.3s ease-in-out;
    border: none !important;
}

.btn-cd-main:hover {
    background-color: #009688 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(103, 201, 73, 0.3);
}

/* Outline/Tutorial Button */
.btn-cd-outline {
    background: transparent !important;
    color: #ffffff !important;
    padding: 10px 30px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    text-decoration: none !important;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-cd-outline:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* 5. Image Size & Floating Animation */
.ps-hero-img-control {
    max-width: 190px !important; /* Adjusted image size */
    width: 100%;
    height: auto !important;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    animation: cdBounce 4s ease-in-out infinite;
}

@keyframes cdBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* 6. Mobile & Tablet Responsiveness */
@media (max-width: 991px) {
    .cd-hero-v2-fixed {
        padding: 60px 15px !important;
        text-align: center !important;
    }
    .cd-hero-title-text {
        font-size: 2.5rem !important; /* Smaller on mobile */
        line-height: 1.3 !important;
    }
    .cd-hero-para {
        margin: 0 auto 30px auto !important;
        line-height: 1.7 !important;
    }
    .cd-btn-center {
        justify-content: center !important;
    }
    .ps-hero-img-control {
        max-width: 160px !important;
        margin-top: 40px;
    }
}


/* ============================================================
   WHAT IS CASH DEPOSIT SECTION - PROPER NORMAL SIZE
   ============================================================ */

.cd-what-proper-section {
    padding: 60px 0 !important;
    background: #ffffff;
}

/* Content */
.content-proper {
    padding-right: 20px;
}

.tag-proper {
    display: inline-block;
    background: rgba(103, 201, 73, 0.1);
    color: #67C949;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.heading-proper {
    font-size: 36px;
    font-weight: 900;
    color: #002d26;
    line-height: 1.3;
    margin-bottom: 20px;
}

.text-highlight {
    background: linear-gradient(135deg, #009688, #67C949);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.line-proper {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #009688, #67C949);
    border-radius: 10px;
    margin-bottom: 20px;
}

.desc-proper {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.feature-tags-proper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.tag-item-proper {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    background: rgba(0, 150, 136, 0.08);
    color: #009688;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.tag-item-proper i {
    color: #67C949;
    font-size: 14px;
}

/* Visual */
.visual-proper {
    text-align: center;
}

.app-img-proper {
    max-width: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: floatProper 3s ease-in-out infinite;
}

@keyframes floatProper {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Steps Section */
.steps-proper-section {
    margin-top: 10px;
    padding: 20px 0;
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.03), rgba(103, 201, 73, 0.03));
    border-radius: 20px;
}

.badge-proper {
    display: inline-block;
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    color: #ff9800;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 15px;
}

.step-heading-proper {
    font-size: 32px;
    font-weight: 900;
    color: #002d26;
    margin-bottom: 0;
}

.step-box-proper {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    text-align: center;
    position: relative;
    transition: 0.3s;
    height: 100%;
}

.step-box-proper:hover {
    transform: translateY(-10px);
    border-color: #67C949;
    box-shadow: 0 20px 40px rgba(103, 201, 73, 0.15);
}

.step-number-proper {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #67C949, #4caf50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 8px 16px rgba(103, 201, 73, 0.3);
}

.step-icon-proper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.step-box-proper:hover .step-icon-proper {
    transform: scale(1.1) rotate(-5deg);
}

.bg-teal {
    background: linear-gradient(135deg, #009688, #00796b);
}

.bg-green {
    background: linear-gradient(135deg, #67C949, #4caf50);
}

.bg-blue {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.bg-orange {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.step-box-proper h5 {
    font-size: 18px;
    font-weight: 800;
    color: #002d26;
    margin-bottom: 12px;
}

.step-box-proper p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}


/* Trust Banner - Properly Centered & Width Fixed */
.trust-banner-beautiful {
    margin-top: -20px;
	margin-bottom: 70px;
    background: linear-gradient(135deg, #009688, #00796b);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 150, 136, 0.25);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.trust-banner-beautiful::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: rotateBackground 10s linear infinite;
    z-index: 0;
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.trust-content-beautiful {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.trust-icons-beautiful {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.trust-icon-item {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    animation: iconBounce 2s ease-in-out infinite;
    flex-shrink: 0;
}

.trust-icon-item:nth-child(2) {
    animation-delay: 0.3s;
}

.trust-icon-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.trust-text-beautiful {
    flex: 1;
    text-align: center;
}

.trust-text-beautiful h5 {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.trust-text-beautiful p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .trust-content-beautiful {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .trust-banner-beautiful {
        padding: 10px 5px;
    }
}

@media (max-width: 767px) {
    .trust-banner-beautiful {
        padding: 30px 20px;
    }
    
    .trust-icons-beautiful {
        gap: 12px;
    }
    
    .trust-icon-item {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .trust-text-beautiful h5 {
        font-size: 20px;
    }
    
    .trust-text-beautiful p {
        font-size: 14px;
    }
}




/* ============================================================
   BENEFITS SECTION - COMPACT & ATTRACTIVE DESIGN
   ============================================================ */

.cd-benefits-premium-section {
    padding: 70px 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

/* Section Header Styles */
.cd-section-header {
    margin-bottom: 20px;
}

.cd-sub-badge {
    display: inline-block;
    background: rgba(103, 201, 73, 0.1);
    color: #67C949;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.cd-section-main-title {
    font-size: 36px !important;
    font-weight: 900 !important;
    color: #002d26 !important;
    margin-bottom: 15px;
    line-height: 1.2;
}

.text-highlight-green {
    color: #67C949 !important;
}

.cd-title-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #009688, #67C949);
    margin: 12px auto;
    border-radius: 10px;
}

.cd-section-desc {
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Compact Benefit Cards */
.benefit-card-compact {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #009688, #67C949);
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.3s;
}

.benefit-card-compact:hover::before {
    transform: scaleY(1);
}

.benefit-card-compact:hover {
    transform: translateY(-8px);
    border-color: #67C949;
    box-shadow: 0 15px 35px rgba(0, 150, 136, 0.12);
}

/* Icon Compact */
.benefit-icon-compact {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: 0.3s;
}

.benefit-card-compact:hover .benefit-icon-compact {
    transform: scale(1.1) rotate(-5deg);
}

.icon-teal {
    background: linear-gradient(135deg, #009688, #00796b);
    box-shadow: 0 8px 16px rgba(0, 150, 136, 0.25);
}

.icon-green {
    background: linear-gradient(135deg, #67C949, #4caf50);
    box-shadow: 0 8px 16px rgba(103, 201, 73, 0.25);
}

.icon-blue {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    box-shadow: 0 8px 16px rgba(33, 150, 243, 0.25);
}

.icon-orange {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    box-shadow: 0 8px 16px rgba(255, 152, 0, 0.25);
}

.icon-purple {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    box-shadow: 0 8px 16px rgba(156, 39, 176, 0.25);
}

.icon-red {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    box-shadow: 0 8px 16px rgba(244, 67, 54, 0.25);
}

/* Content Compact */
.benefit-content-compact {
    flex: 1;
}

.benefit-title-compact {
    font-size: 1.15rem;
    font-weight: 800;
    color: #002d26;
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-desc-compact {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Arrow Icon */
.benefit-arrow {
    width: 30px;
    height: 30px;
    background: rgba(103, 201, 73, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #67C949;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: 0.3s;
    opacity: 0;
}

.benefit-card-compact:hover .benefit-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .cd-section-main-title {
        font-size: 30px !important;
    }
    
    .benefit-card-compact {
        padding: 22px 18px;
    }
}

@media (max-width: 767px) {
    .cd-section-main-title {
        font-size: 26px !important;
    }
    
    .benefit-icon-compact {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .benefit-title-compact {
        font-size: 1.05rem;
    }
    
    .benefit-desc-compact {
        font-size: 0.85rem;
    }
    
    .benefit-arrow {
        display: none;
    }
}



/* ============================================================
   SECTION 1: HOW IT WORKS - 4 IN 1 ROW (FIXED)
   ============================================================ */

.how-compact-section {
    padding: 50px 0;
    background: #f8f9fa;
}

/* Section Header */
.compact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF3E0;
    color: #F57C00;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #FFE0B2;
}

.compact-heading {
    font-size: 36px;
    font-weight: 900;
    color: #002d26;
    margin: 15px 0 10px;
}

.text-green {
    color: #67C949;
}

.text-teal {
    color: #009688;
}

.compact-desc {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Step Compact Box */
.step-compact-box {
    background: #ffffff;
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    padding: 25px 20px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.step-compact-box:hover {
    border-color: #009688;
    box-shadow: 0 10px 30px rgba(0, 150, 136, 0.15);
    transform: translateY(-5px);
}

/* Step Top (Number) */
.step-compact-top {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.step-compact-number {
    width: 50px;
    height: 50px;
    background: #009688;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
}

.step-compact-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.bg-teal { background: #009688; }
.bg-blue { background: #2196F3; }
.bg-green { background: #67C949; }
.bg-orange { background: #FF9800; }
.bg-purple { background: #9C27B0; }
.bg-red { background: #F44336; }

.step-compact-box h4 {
    font-size: 19px;
    font-weight: 800;
    color: #002d26;
    margin-bottom: 12px;
}

.step-compact-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
    min-height: 65px;
}

/* Step Chips - BIGGER SIZE */
.step-compact-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-compact-chips span {
    background: #F5F5F5;
    color: #555;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #E0E0E0;
    transition: 0.3s;
}

.step-compact-chips span:hover {
    background: #E8F5E9;
    border-color: #009688;
}

.step-compact-chips span i {
    color: #009688;
    font-size: 14px;
}

/* ============================================================
   SECTION 4: DOCUMENTS REQUIRED - COMPACT
   ============================================================ */

.doc-compact-section {
    padding: 50px 0;
    background: #ffffff;
}

/* Document Compact Box */
.doc-compact-box {
    background: #ffffff;
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.doc-compact-box:hover {
    border-color: #009688;
    box-shadow: 0 10px 30px rgba(0, 150, 136, 0.15);
    transform: translateY(-5px);
}

.doc-compact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff;
    margin: 0 auto 18px;
}

.doc-compact-box h5 {
    font-size: 19px;
    font-weight: 800;
    color: #002d26;
    margin-bottom: 10px;
}

.doc-compact-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    min-height: 40px;
}

/* Document Badge - BIGGER */
.doc-badge-req {
    display: inline-block;
    background: #FF5252;
    color: #ffffff;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Help Box */
.doc-help-compact {
    background: #E3F2FD;
    border: 2px solid #90CAF9;
    border-radius: 12px;
    padding: 20px 28px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

.doc-help-compact i {
    font-size: 26px;
    color: #2196F3;
}

.doc-help-compact span {
    font-size: 15px;
    color: #555;
}

.doc-help-compact strong {
    color: #2196F3;
    font-weight: 800;
}

/* ============================================================
   SECTION 6: WHY CHOOSE US - COMPACT TABLE
   ============================================================ */

.why-compact-section {
    padding: 50px 0;
    background: #f8f9fa;
}

/* Section Header - TEAL BADGE */
.compact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E0F2F1;
    color: #009688;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #B2DFDB;
}


/* Comparison Table */
.why-table-compact {
    width: 100%;
    background: #ffffff;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-table-compact thead {
    background: #009688;
}

.why-table-compact th {
    padding: 22px 20px;
    text-align: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 17px;
    border-bottom: 3px solid #ffffff;
}

.why-table-compact th:first-child {
    text-align: left;
}

.highlight-col {
    background: rgba(255, 255, 255, 0.15);
}

.best-tag {
    display: block;
    background: #FFC107;
    color: #002d26;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    margin-top: 8px;
}

.why-table-compact tbody tr {
    border-bottom: 2px solid #F5F5F5;
    transition: 0.2s;
}

.why-table-compact tbody tr:hover {
    background: #F9F9F9;
}

.why-table-compact td {
    padding: 20px;
    text-align: center;
    font-size: 15px;
    color: #555;
}

.why-table-compact td:first-child {
    text-align: left;
    font-weight: 700;
    color: #002d26;
}

.why-table-compact td:first-child i {
    color: #009688;
    margin-right: 10px;
    font-size: 18px;
}

.why-table-compact .highlight-col {
    background: #F1F8F6;
    font-weight: 700;
    color: #009688;
}


.text-danger {
    color: #F44336 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1199px) {
    .step-compact-box h4 {
        font-size: 18px;
    }
    
    .step-compact-box p {
        font-size: 13px;
        min-height: 70px;
    }

    .step-compact-chips span {
        font-size: 12px;
        padding: 8px 16px;
    }
}

@media (max-width: 991px) {
    .compact-heading {
        font-size: 32px;
    }

    .step-compact-box,
    .doc-compact-box {
        padding: 22px 18px;
    }

    .step-compact-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .doc-compact-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .how-compact-section,
    .doc-compact-section,
    .why-compact-section {
        padding: 40px 0;
    }

    .compact-heading {
        font-size: 28px;
    }

    .compact-desc {
        font-size: 14px;
    }

    .step-compact-box h4 {
        font-size: 17px;
    }

    .step-compact-box p {
        font-size: 13px;
        min-height: auto;
    }

    .step-compact-chips span {
        font-size: 12px;
        padding: 7px 14px;
    }

    .doc-compact-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .doc-help-compact {
        flex-direction: column;
        text-align: center;
    }

    .why-table-compact th,
    .why-table-compact td {
        padding: 16px 14px;
        font-size: 14px;
    }

    .best-tag {
        font-size: 11px;
        padding: 4px 12px;
    }
}

@media (max-width: 576px) {
    .compact-heading {
        font-size: 24px;
    }

    .compact-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .step-compact-chips {
        gap: 8px;
    }

    .step-compact-chips span {
        font-size: 11px;
        padding: 6px 12px;
    }

    .why-table-compact th:first-child,
    .why-table-compact td:first-child {
        font-size: 12px;
    }

    .why-table-compact td:first-child i {
        font-size: 14px;
        margin-right: 6px;
    }
}



/* ============================================================
   FAQ ACCORDION SECTION
   ============================================================ */

.faq-accordion-section {
    padding: 80px 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f9fffe 100%);
}

/* Section Header */
.section-badge-faq {
    display: inline-block;
    background: rgba(103, 201, 73, 0.1);
    color: #67C949;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid rgba(103, 201, 73, 0.2);
    margin-bottom: 20px;
}

.section-title-faq {
    font-size: 42px;
    font-weight: 900;
    color: #002d26;
    margin-bottom: 15px;
    line-height: 1.2;
}

.gradient-text-faq {
    background: linear-gradient(135deg, #009688, #67C949);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-faq {
    font-size: 17px;
    color: #666;
    margin: 0 auto 50px;
    max-width: 600px;
}

/* FAQ Accordion Wrapper */
.faq-accordion-wrapper {
    margin-top: 40px;
}

/* FAQ Accordion Item */
.faq-accordion-item {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: #67C949;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.faq-accordion-item.active {
    border-color: #009688;
    box-shadow: 0 12px 30px rgba(0, 150, 136, 0.12);
}

/* FAQ Question */
.faq-accordion-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.faq-accordion-question:hover {
    background: rgba(0, 150, 136, 0.02);
}

.faq-accordion-question h5 {
    font-size: 16px;
    font-weight: 600;
    color: #002d26;
    margin: 0;
    padding-right: 20px;
    line-height: 1.5;
}

.faq-accordion-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 150, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.faq-accordion-icon i {
    font-size: 16px;
    color: #009688;
    transition: 0.3s;
}

.faq-accordion-item.active .faq-accordion-icon {
    background: linear-gradient(135deg, #009688, #67C949);
    transform: rotate(180deg);
}

.faq-accordion-item.active .faq-accordion-icon i {
    color: #ffffff;
}

/* FAQ Answer */
.faq-accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-accordion-answer p {
    padding: 0 30px 25px 30px;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* FAQ Help Box */
.faq-help-box {
    margin-top: 20px;
    background: linear-gradient(135deg, #009688, #00796b);
    padding: 40px 45px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(0, 150, 136, 0.25);
}

.faq-help-icon {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #ffffff;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    animation: helpIconPulse 2.5s ease-in-out infinite;
}

@keyframes helpIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.faq-help-content {
    flex: 1;
}

.faq-help-content h4 {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
}

.faq-help-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-faq-help {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #009688;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.btn-faq-help:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    color: #009688;
    gap: 16px;
}

.btn-faq-help i {
    font-size: 16px;
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 991px) {
    .faq-accordion-section {
        padding: 60px 0 !important;
    }

    .section-title-faq {
        font-size: 36px;
    }
    
    .faq-help-box {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
    }
}

@media (max-width: 767px) {
    .section-title-faq {
        font-size: 30px;
    }
    
    .section-subtitle-faq {
        font-size: 15px;
    }
    
    .faq-accordion-question {
        padding: 20px;
    }
    
    .faq-accordion-question h5 {
        font-size: 16px;
    }
    
    .faq-accordion-icon {
        width: 35px;
        height: 35px;
    }
    
    .faq-accordion-icon i {
        font-size: 14px;
    }
    
    .faq-accordion-answer p {
        padding: 0 20px 20px 20px;
        font-size: 15px;
    }
    
    .faq-help-box {
        padding: 30px 25px;
    }
    
    .faq-help-icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
    }
    
    .faq-help-content h4 {
        font-size: 22px;
    }
    
    .faq-help-content p {
        font-size: 14px;
    }
}




/* ============================================================
   TESTIMONIALS INFINITE SLIDER - ENHANCED & ATTRACTIVE
   ============================================================ */

.testimonials-infinite-section {
    padding: 45px 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f0fff8 50%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.testimonials-infinite-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(103, 201, 73, 0.05), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 150, 136, 0.05), transparent 50%);
    pointer-events: none;
}

/* Animated Header */
.animate-header {
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulsing Badge - TEAL COLOR */
.pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.1), rgba(0, 172, 193, 0.1));
    color: #009688;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 2px solid rgba(0, 150, 136, 0.3);
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 150, 136, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 150, 136, 0);
    }
}

.pulse-badge i {
    animation: bounce 1.5s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.testimonial-heading {
    font-size: 32px;
    font-weight: 900;
    color: #002d26;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* GREEN COLOR for "Retailers Say" */
.testimonial-gradient {
    color: #67C949;
}

.sparkle {
    display: inline-block;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

.testimonial-subheading {
    font-size: 14px;
    color: #666;
    margin: 0 0 30px;
}

.testimonial-subheading strong {
    color: #009688;
    font-weight: 800;
}

/* Infinite Slider Wrapper */
.testimonial-infinite-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-infinite-wrapper:hover .testimonial-infinite-track {
    animation-play-state: paused;
}

/* Infinite Track */
.testimonial-infinite-track {
    display: flex;
    gap: 18px;
    animation: infiniteScroll 45s linear infinite;
    width: max-content;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Infinite Card with Shine Effect */
.testimonial-infinite-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 18px 22px;
    width: 360px;
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: 0.5s;
}

.testimonial-infinite-card:hover .card-shine {
    left: 100%;
}

.testimonial-infinite-card:hover {
    border-color: rgba(0, 150, 136, 0.4);
    box-shadow: 0 12px 35px rgba(0, 150, 136, 0.15);
    transform: translateY(-6px) scale(1.02);
}

/* Quote Icon Mini */
.quote-icon-mini {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 36px;
    height: 36px;
    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;
    font-size: 15px;
    color: #009688;
    transition: 0.3s;
}

.testimonial-infinite-card:hover .quote-icon-mini {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #009688, #67C949);
    color: #ffffff;
}

/* Rating Stars Mini */
.rating-stars-mini {
    display: flex;
    gap: 3px;
    align-items: center;
    margin-bottom: 10px;
}

.rating-stars-mini i {
    font-size: 12px;
    color: #FFB800;
    animation: starGlow 2s ease-in-out infinite;
}

.rating-stars-mini i:nth-child(1) { animation-delay: 0s; }
.rating-stars-mini i:nth-child(2) { animation-delay: 0.1s; }
.rating-stars-mini i:nth-child(3) { animation-delay: 0.2s; }
.rating-stars-mini i:nth-child(4) { animation-delay: 0.3s; }
.rating-stars-mini i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starGlow {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.15); filter: brightness(1.3); }
}

.rating-text {
    font-size: 11px;
    font-weight: 700;
    color: #009688;
    margin-left: 5px;
}

/* Review Text Mini */
.review-text-mini {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
    min-height: 70px;
}

/* Reviewer Info Mini */
.reviewer-info-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 2px solid #f0f0f0;
}

.reviewer-info-mini img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(0, 150, 136, 0.3);
    flex-shrink: 0;
    transition: 0.3s;
}

.testimonial-infinite-card:hover .reviewer-info-mini img {
    transform: scale(1.1);
    border-color: #009688;
    box-shadow: 0 0 15px rgba(0, 150, 136, 0.3);
}

.reviewer-info-mini h5 {
    font-size: 14px;
    font-weight: 800;
    color: #002d26;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-badge {
    color: #009688;
    font-size: 13px;
}

.reviewer-info-mini p {
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
}

.reviewer-info-mini p i {
    margin-right: 3px;
    color: #009688;
}

.earning-mini {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, #009688, #67C949);
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(0, 150, 136, 0.3);
}

/* Trust Stats Animated */
.trust-stats-animated {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item-animated {
    text-align: center;
    transition: 0.3s;
}

.stat-item-animated:hover {
    transform: translateY(-5px);
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #009688, #67C949);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 24px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 150, 136, 0.25);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.stat-item-animated:nth-child(1) .stat-icon-box { animation-delay: 0s; }
.stat-item-animated:nth-child(2) .stat-icon-box { animation-delay: 0.2s; }
.stat-item-animated:nth-child(3) .stat-icon-box { animation-delay: 0.4s; }
.stat-item-animated:nth-child(4) .stat-icon-box { animation-delay: 0.6s; }

.trust-stats-animated h4 {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, #009688, #67C949);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3px;
}

.trust-stats-animated p {
    font-size: 12px;
    color: #666;
    margin: 0;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .testimonials-infinite-section {
        padding: 40px 0 !important;
    }

    .testimonial-heading {
        font-size: 28px;
    }
    
    .testimonial-infinite-card {
        width: 340px;
    }
}

@media (max-width: 767px) {
    .testimonials-infinite-section {
        padding: 35px 0 !important;
    }

    .testimonial-heading {
        font-size: 24px;
    }
    
    .testimonial-subheading {
        font-size: 13px;
    }
    
    .testimonial-infinite-card {
        width: 310px;
        padding: 15px 18px;
    }
    
    .review-text-mini {
        font-size: 12px;
        min-height: 60px;
    }
    
    .stat-icon-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .trust-stats-animated h4 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .testimonial-infinite-card {
        width: 280px;
    }
    
    .testimonial-infinite-track {
        animation: infiniteScroll 35s linear infinite;
    }
}





/* ============================================================
   CTA SECTION - CALL TO ACTION (COMPACT) - YELLOW VERSION
   ============================================================ */

.cta-section {
    padding: 55px 0 !important;
    background: linear-gradient(135deg, #009688 0%, #00796b 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.cta-circle-1 {
    width: 350px;
    height: 350px;
    top: -150px;
    right: -80px;
    animation: float 6s ease-in-out infinite;
}

.cta-circle-2 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    left: -60px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px);
    pointer-events: none;
}

/* CTA Wrapper */
.cta-wrapper {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 35px 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.cta-badge i {
    animation: bounce 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.cta-heading {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* YELLOW COLOR for Highlight */
.cta-highlight {
    color: #67C949;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* YELLOW COLOR for Strong Text */
.cta-description strong {
    color: #FFC107;
    font-weight: 800;
}

/* Benefits List */
.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 14px;
}

/* YELLOW COLOR for Benefit Icon */
.benefit-icon {
    width: 26px;
    height: 26px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.benefit-icon i {
    font-size: 12px;
    color: #002d26;
}

.cta-benefits strong {
    font-weight: 800;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

/* YELLOW COLOR for Primary Button */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #67C949;
    color: #002d26;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
    color: #002d26;
    gap: 16px;
}

.btn-cta-primary i {
    font-size: 15px;
    transition: 0.3s;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Trust Indicators */
.cta-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
}

/* YELLOW COLOR for Trust Icons */
.trust-item i {
    font-size: 16px;
    color: #FFC107;
}

/* CTA Image Box */
.cta-image-box {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Cards */
.cta-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-floating-card i {
    font-size: 24px;
    background: linear-gradient(135deg, #009688, #67C949);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.cta-floating-card h4 {
    font-size: 20px;
    font-weight: 900;
    color: #002d26;
    margin-bottom: 3px;
}

.cta-floating-card p {
    font-size: 11px;
    color: #666;
    margin: 0;
    font-weight: 600;
}

.card-1 {
    top: 15px;
    right: 35px;
    animation: floatCard 4s ease-in-out infinite;
}

.card-2 {
    top: 130px;
    left: 15px;
    animation: floatCard 5s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 30px;
    right: 70px;
    animation: floatCard 6s ease-in-out infinite 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Main Illustration */
.cta-main-illustration {
    position: relative;
}

.illustration-circle {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.illustration-circle i {
    font-size: 65px;
    color: #FFC107;
    animation: pulse 2s ease-in-out infinite;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #FF5722, #FF7043);
    padding: 12px 0;
    border-bottom: 3px solid #E64A19;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { background: linear-gradient(135deg, #FF5722, #FF7043); }
    50% { background: linear-gradient(135deg, #F4511E, #FF5722); }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.urgency-content i {
    font-size: 18px;
    animation: fireFlicker 1s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.urgency-content strong {
    font-weight: 900;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-section {
        padding: 45px 0 !important;
    }

    .cta-wrapper {
        padding: 30px 30px;
    }

    .cta-heading {
        font-size: 32px;
    }

    .cta-image-box {
        margin-top: 30px;
        height: 280px;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 35px 0 !important;
    }

    .cta-wrapper {
        padding: 25px 22px;
    }

    .cta-heading {
        font-size: 28px;
    }

    .cta-description {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-image-box {
        height: 260px;
    }

    .cta-floating-card {
        padding: 12px 15px;
    }

    .cta-floating-card h4 {
        font-size: 18px;
    }

    .illustration-circle {
        width: 130px;
        height: 130px;
    }

    .illustration-circle i {
        font-size: 50px;
    }

    .urgency-content {
        font-size: 12px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .cta-heading {
        font-size: 24px;
    }

    .cta-badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .cta-benefits li {
        font-size: 13px;
    }

    .btn-cta-primary {
        font-size: 15px;
        padding: 13px 28px;
    }

    .btn-cta-secondary {
        font-size: 14px;
        padding: 13px 24px;
    }
}
