/* पेज को लेफ्ट-राइट भागने से रोकने का सबसे सेफ तरीका */
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; /* इमेज पर क्लिक भी नहीं होगा */
}



/* ================================================
   RETAILER PAGE - PAYSARAL STYLE
   Colors: Teal (#00897B) + Green (#00C853)
   ================================================ */

:root {
    --primary-teal: #00897B;
    --primary-green: #00C853;
    --dark-teal: #00695C;
    --light-teal: #E0F2F1;
    --light-green: #B9F6CA;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --danger: #FF5252;
    --warning: #FFC107;
    --success: #4CAF50;
    --blue: #2196F3;
}

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

/* ================================
   HERO SECTION - CONTENT SHIFTED UP
   ================================ */

.retailer-hero {
    min-height: 70vh;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, #00897B 0%, #00695C 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.retailer-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -250px;
    right: -150px;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Container */
.retailer-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.retailer-hero .row {
    display: flex;
    align-items: center;
}

/* Content Column */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.25);
}

.hero-badge i {
    color: #FFD600;
    font-size: 13px;
}

/* Heading */
.hero-content h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(90deg, #FFD600, #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Feature Pills */
.hero-features {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-pill {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.feature-pill i {
    color: #FFD600;
    font-size: 14px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-primary-hero,
.btn-secondary-hero {
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-hero {
    background: white;
    color: #00897B;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    background: #FFD600;
    color: #00695C;
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.4);
}

.btn-secondary-hero:hover {
    background: white;
    color: #00897B;
    border-color: white;
    transform: translateY(-2px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
}

.badge-item i {
    font-size: 20px;
    color: #FFD600;
}

/* Image Wrapper */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 160px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,0.2));
}

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

.floating-earning {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: white;
    padding: 16px 22px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
}

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

.floating-earning i {
    font-size: 28px;
    color: #00C853;
}

.floating-earning h4 {
    font-size: 22px;
    font-weight: 800;
    color: #212121;
    margin: 0;
    line-height: 1;
}

.floating-earning p {
    font-size: 11px;
    color: #616161;
    margin: 0;
}


/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991px) {
    .retailer-hero {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 50px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 34px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 15px;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 35px;
        text-align: center;
    }
    
    .hero-image {
        max-width: 130px;
    }
    
    .floating-earning {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .retailer-hero {
        padding-top: 50px;
        padding-bottom: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 30px;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 18px;
        text-align: center;
    }
    
    /* Feature Pills - 2 Column Grid */
    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 18px;
        width: 100%;
        max-width: 400px;
    }
    
    .feature-pill {
        font-size: 12px;
        padding: 7px 14px;
        justify-content: center;
        text-align: center;
    }
    
    /* Buttons - 2 Column Grid */
    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 18px;
        width: 100%;
        max-width: 400px;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 12px 26px;
        font-size: 14px;
        justify-content: center;
        width: 100%;
    }
    
    /* Trust Badges - 3 Column Grid */
    .trust-badges {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        width: 100%;
        max-width: 450px;
    }
    
    .badge-item {
        font-size: 13px;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
    
    .badge-item i {
        font-size: 18px;
    }
    
    .hero-image-wrapper {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .retailer-hero {
        padding-top: 40px;
        padding-bottom: 35px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 26px;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 5px 14px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        text-align: center;
    }
    
    /* Feature Pills - 2 Column Grid */
    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 18px;
        width: 100%;
        max-width: 350px;
    }
    
    .feature-pill {
        font-size: 11px;
        padding: 7px 12px;
        justify-content: center;
        text-align: center;
    }
    
    /* Buttons - 2 Column Grid (Side by Side) */
    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 18px;
        width: 100%;
        max-width: 350px;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        padding: 12px 15px;
        font-size: 13px;
        justify-content: center;
    }
    
    /* Trust Badges - 3 Column Grid */
    .trust-badges {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 350px;
    }
    
    .badge-item {
        font-size: 12px;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
    
    .badge-item i {
        font-size: 16px;
    }
    
    .hero-image-wrapper {
        text-align: center;
    }
}


/* ================================
   STATS SECTION - ULTRA COMPACT
   ================================ */

.stats-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

/* Section Heading - Very Compact */
.stats-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #67C949;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Row */
.stats-section .row {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
}

.stats-section .col-lg-3,
.stats-section .col-md-6,
.stats-section .col-6 {
    padding: 0 10px;
    margin-bottom: 20px;
}

/* Stat Card - Very Compact */
.stat-card {
    background: #ffffff;
    padding: 24px 18px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8f5f3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: #10b981;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
}

/* Top Green Line */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399, #10b981);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

/* Icon - Very Small */
.stat-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 14px rgba(16, 185, 129, 0.25);
    position: relative;
}

.stat-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #10b981;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.08);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

/* Icon WHITE */
.stat-icon i {
    font-size: 26px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* Number - Compact */
.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #10b981;
    margin: 0 0 6px;
    line-height: 1;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #059669;
    transform: scale(1.05);
}

/* Label - Compact */
.stat-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
    color: #10b981;
}

/* Background Decoration */
.stat-card::after {
    content: '';
    position: absolute;
    bottom: -45px;
    right: -45px;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06), transparent);
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991px) {
    .stats-section {
        padding: 45px 0;
    }
    
    .stats-heading {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .stat-card {
        padding: 22px 16px;
    }
    
    .stat-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
    }
    
    .stat-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-heading {
        margin-bottom: 22px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stats-section .row {
        margin: 0 -8px;
    }
    
    .stats-section .col-md-6,
    .stats-section .col-6 {
        padding: 0 8px;
        margin-bottom: 16px;
    }
    
    .stat-card {
        padding: 20px 14px;
        border-radius: 10px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .stat-icon i {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 26px;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 35px 0;
    }
    
    .stats-heading {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-subtitle {
        font-size: 12px;
    }
    
    .stats-section .row {
        margin: 0 -6px;
    }
    
    .stats-section .col-6 {
        padding: 0 6px;
        margin-bottom: 12px;
    }
    
    .stat-card {
        padding: 18px 12px;
        border-radius: 8px;
    }
    
    .stat-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 10px;
    }
    
    .stat-icon i {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 22px;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    .stats-section {
        padding: 30px 0;
    }
    
    .stat-card {
        padding: 16px 10px;
    }
    
    .stat-icon {
        width: 44px;
        height: 44px;
    }
    
    .stat-icon i {
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}




/* ================================
   WHAT IS RETAILER SECTION
   ================================ */

.what-is-retailer {
    padding: 70px 0;
    background: #f8fafb;
}

.what-is-retailer .container {
    max-width: 1200px;
}

.what-is-retailer .row {
    align-items: center;
}

/* Content Wrapper */
.content-wrapper {
    padding-right: 30px;
}

/* Section Title */
.what-is-retailer .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #67C949;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Section Subtitle */
.what-is-retailer .section-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Lead Paragraph */
.content-wrapper .lead {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Info Points Container */
.info-points {
    margin-top: 25px;
}

/* Single Info Point */
.info-point {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 18px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-point:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.12);
    border-left-color: #059669;
}

/* Point Icon */
.point-icon {
    width: 48px;
    height: 48px;
    background: #67C949;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.info-point:hover .point-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #ffffff;
    transform: scale(1.08);
}

/* Point Content */
.point-content {
    flex: 1;
}

.point-content h5 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.4;
}

.point-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Single Image Container */
.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991px) {
    .what-is-retailer {
        padding: 60px 0;
    }
    
    .content-wrapper {
        padding-right: 15px;
        margin-bottom: 40px;
    }
    
    .what-is-retailer .section-title {
        font-size: 32px;
    }
    
    .what-is-retailer .section-subtitle {
        font-size: 15px;
    }
    
    .content-wrapper .lead {
        font-size: 16px;
    }
    
    .info-point {
        padding: 16px;
        gap: 15px;
    }
    
    .point-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .point-content h5 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .what-is-retailer {
        padding: 50px 0;
    }
    
    .content-wrapper {
        padding-right: 0;
        margin-bottom: 35px;
    }
    
    .what-is-retailer .section-title {
        font-size: 28px;
    }
    
    .content-wrapper .lead {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .info-points {
        margin-top: 20px;
    }
    
    .info-point {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .point-icon {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }
    
    .point-content h5 {
        font-size: 15px;
    }
    
    .point-content p {
        font-size: 13px;
    }
    
    .image-container {
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .what-is-retailer {
        padding: 40px 0;
    }
    
    .content-wrapper {
        margin-bottom: 30px;
    }
    
    .what-is-retailer .section-title {
        font-size: 24px;
    }
    
    .what-is-retailer .section-subtitle {
        font-size: 14px;
    }
    
    .content-wrapper .lead {
        font-size: 14px;
    }
    
    .info-point {
        padding: 14px;
        margin-bottom: 14px;
        gap: 12px;
    }
    
    .point-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .point-content h5 {
        font-size: 14px;
    }
    
    .point-content p {
        font-size: 12px;
    }
    
    .image-container {
        border-radius: 10px;
    }
}


/* ================================
   SERVICES SECTION
   ================================ */

.services-section {
    padding: 20px 0;
    background: #ffffff;
}

.services-section .container {
    max-width: 1200px;
}

/* Section Heading */
.services-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #67C949;
    margin-bottom: 10px;
}

.services-section .section-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 0;
}

/* Services Tabs */
.services-tabs {
    margin-top: 40px;
}

.services-tabs .nav-tabs {
    border: none;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.services-tabs .nav-link {
    background: #f1f5f9;
    color: #1a1a1a;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 12px 26px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.services-tabs .nav-link i {
    font-size: 16px;
}

.services-tabs .nav-link:hover {
    background: #d1fae5;
    color: #10b981;
    transform: translateY(-2px);
}

.services-tabs .nav-link.active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    border-color: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Tab Content */
.tab-content {
    margin-top: 30px;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 22px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: #67C949;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #00A997;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

/* Service Title */
.service-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Service Description */
.service-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.6;
    min-height: 42px;
}

/* Commission Badge */
.commission-badge {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.commission-badge i {
    margin-right: 3px;
    font-size: 12px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .section-title {
        font-size: 32px;
    }
    
    .services-tabs .nav-link {
        padding: 10px 22px;
        font-size: 13px;
    }
    
    .service-card {
        padding: 24px 18px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
    
    .service-card h5 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-section .section-title {
        font-size: 28px;
    }
    
    .services-section .section-subtitle {
        font-size: 15px;
    }
    
    .services-tabs .nav-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .services-tabs .nav-link {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .services-tabs .nav-link i {
        font-size: 14px;
    }
    
    .service-card {
        padding: 22px 16px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    .service-card h5 {
        font-size: 16px;
    }
    
    .service-card p {
        font-size: 13px;
        min-height: auto;
    }
    
    .commission-badge {
        padding: 7px 14px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-section .section-title {
        font-size: 24px;
    }
    
    .services-tabs .nav-tabs {
        gap: 6px;
    }
    
    .services-tabs .nav-link {
        padding: 8px 14px;
        font-size: 11px;
        gap: 5px;
    }
    
    .service-card {
        padding: 20px 14px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .service-card h5 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .service-card p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .commission-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
}


/* ================================
   BENEFITS SECTION - COMPACT
   ================================ */

.benefits-section {
    padding: 60px 0;
    background: #f8fafb;
}

.benefits-section .container {
    max-width: 1200px;
}

/* Section Heading */
.benefits-section .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #67C949;
    margin-bottom: 8px;
}

.benefits-section .section-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 0;
}

.benefits-section .mb-5 {
    margin-bottom: 35px !important;
}

/* Benefit Card - Compact */
.benefit-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 22px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    overflow: visible;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

/* Benefit Number Badge - Smaller */
.benefit-number {
    position: absolute;
    top: -16px;
    right: 22px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-number {
    transform: rotate(360deg) scale(1.08);
}

/* Benefit Icon - Smaller */
.benefit-icon {
    width: 60px;
    height: 60px;
    background: #67C949;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: #00A997;
    color: #ffffff;
    transform: scale(1.06);
}

/* Benefit Title - Smaller */
.benefit-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Benefit Description - Smaller */
.benefit-card p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 14px;
    line-height: 1.6;
}

/* Benefit List - Compact */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 5px 0;
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-list li i {
    color: #10b981;
    font-size: 14px;
    flex-shrink: 0;
}

/* Row Bottom Margin */
.benefits-section .row > [class*="col-"] {
    margin-bottom: 20px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991px) {
    .benefits-section {
        padding: 50px 0;
    }
    
    .benefits-section .section-title {
        font-size: 28px;
    }
    
    .benefits-section .mb-5 {
        margin-bottom: 30px !important;
    }
    
    .benefit-card {
        padding: 26px 20px;
    }
    
    .benefit-number {
        width: 42px;
        height: 42px;
        font-size: 17px;
        right: 20px;
        top: -14px;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
        margin-bottom: 14px;
    }
    
    .benefit-card h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .benefit-card p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .benefit-list li {
        font-size: 12px;
        padding: 4px 0;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 45px 0;
    }
    
    .benefits-section .section-title {
        font-size: 26px;
    }
    
    .benefits-section .section-subtitle {
        font-size: 14px;
    }
    
    .benefits-section .mb-5 {
        margin-bottom: 28px !important;
    }
    
    .benefit-card {
        padding: 24px 18px;
    }
    
    .benefit-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        right: 18px;
        top: -13px;
    }
    
    .benefit-icon {
        width: 54px;
        height: 54px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .benefit-card h4 {
        font-size: 16px;
    }
    
    .benefit-card p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .benefit-list li {
        font-size: 11px;
        padding: 4px 0;
    }
    
    .benefit-list li i {
        font-size: 13px;
    }
    
    .benefits-section .row > [class*="col-"] {
        margin-bottom: 16px;
    }
}

@media (max-width: 576px) {
    .benefits-section {
        padding: 40px 0;
    }
    
    .benefits-section .section-title {
        font-size: 22px;
    }
    
    .benefits-section .mb-5 {
        margin-bottom: 25px !important;
    }
    
    .benefit-card {
        padding: 22px 16px;
    }
    
    .benefit-number {
        width: 38px;
        height: 38px;
        font-size: 15px;
        right: 16px;
        top: -12px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .benefit-card h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .benefit-card p {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .benefit-list li {
        font-size: 11px;
        padding: 3px 0;
    }
    
    .benefit-list li i {
        font-size: 12px;
    }
    
    .benefits-section .row > [class*="col-"] {
        margin-bottom: 14px;
    }
}



/* ================================
   ELIGIBILITY SECTION
   ================================ */

.eligibility-section {
    padding: 10px 0;
    background: #ffffff;
}

.eligibility-section .container {
    max-width: 1200px;
}

/* Section Heading */
.eligibility-section .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #67C949;
    margin-bottom: 8px;
}

.eligibility-section .section-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 0;
}

.eligibility-section .mb-5 {
    margin-bottom: 35px !important;
}

/* Eligibility Card */
.eligibility-card {
    background: #ffffff;
    border: 2px solid #d1fae5;
    border-radius: 16px;
    padding: 30px 26px;
    height: 100%;
    transition: all 0.3s ease;
}

.eligibility-card:hover {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.12);
    border-color: #10b981;
    transform: translateY(-5px);
}

/* Card Header */
.eligibility-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 2px solid #d1fae5;
    background: transparent;
}

.eligibility-card .card-header i {
    font-size: 32px;
    color: #10b981;
}

.eligibility-card .card-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Requirement List */
.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.requirement-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.requirement-list li i {
    font-size: 22px;
    color: #67C949;
    margin-top: 2px;
    flex-shrink: 0;
}

.requirement-list li div {
    flex: 1;
}

.requirement-list li div strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.requirement-list li div span {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    display: block;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991px) {
    .eligibility-section {
        padding: 50px 0;
    }
    
    .eligibility-section .section-title {
        font-size: 28px;
    }
    
    .eligibility-section .mb-5 {
        margin-bottom: 30px !important;
    }
    
    .eligibility-card {
        padding: 28px 24px;
    }
    
    .eligibility-card .card-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    
    .eligibility-card .card-header i {
        font-size: 30px;
    }
    
    .eligibility-card .card-header h4 {
        font-size: 19px;
    }
    
    .requirement-list li {
        padding: 12px 0;
    }
    
    .requirement-list li i {
        font-size: 20px;
    }
    
    .requirement-list li div strong {
        font-size: 14px;
    }
    
    .requirement-list li div span {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .eligibility-section {
        padding: 45px 0;
    }
    
    .eligibility-section .section-title {
        font-size: 26px;
    }
    
    .eligibility-section .section-subtitle {
        font-size: 14px;
    }
    
    .eligibility-section .mb-5 {
        margin-bottom: 28px !important;
    }
    
    .eligibility-card {
        padding: 26px 22px;
        margin-bottom: 20px;
    }
    
    .eligibility-card .card-header {
        margin-bottom: 18px;
        padding-bottom: 14px;
    }
    
    .eligibility-card .card-header i {
        font-size: 28px;
    }
    
    .eligibility-card .card-header h4 {
        font-size: 18px;
    }
    
    .requirement-list li {
        padding: 11px 0;
        gap: 12px;
    }
    
    .requirement-list li i {
        font-size: 19px;
    }
    
    .requirement-list li div strong {
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    .requirement-list li div span {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .eligibility-section {
        padding: 40px 0;
    }
    
    .eligibility-section .section-title {
        font-size: 22px;
    }
    
    .eligibility-section .mb-5 {
        margin-bottom: 25px !important;
    }
    
    .eligibility-card {
        padding: 22px 18px;
    }
    
    .eligibility-card .card-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
        gap: 10px;
    }
    
    .eligibility-card .card-header i {
        font-size: 26px;
    }
    
    .eligibility-card .card-header h4 {
        font-size: 17px;
    }
    
    .requirement-list li {
        padding: 10px 0;
        gap: 10px;
    }
    
    .requirement-list li i {
        font-size: 18px;
    }
    
    .requirement-list li div strong {
        font-size: 13px;
    }
    
    .requirement-list li div span {
        font-size: 11px;
    }
}


/* ================================
   PLANS SECTION
   ================================ */

.plans-section {
    padding: 30px 0;
    background: #f8fafb;
}

.plans-section .container {
    max-width: 1200px;
}

/* Section Heading */
.plans-section .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #67C949;
    margin-bottom: 8px;
}

.plans-section .section-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 0;
}

.plans-section .mb-5 {
    margin-bottom: 40px !important;
}

/* Plan Card */
.plan-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    height: 100%;
    border: 2px solid #e5e7eb;
    transition: all 0.4s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

/* Featured Plan */
.plan-card.featured {
    border: 3px solid #10b981;
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

/* Plan Badge */
.plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #d1fae5;
    color: #10b981;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.plan-badge.popular {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Plan Header */
.plan-header {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 35px 28px;
    text-align: center;
    color: #ffffff;
}

.plan-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
	color: #ffffff;
}

/* Plan Price */
.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.plan-price .currency {
    font-size: 22px;
    font-weight: 700;
}

.plan-price .amount {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}

.plan-price .period {
    font-size: 14px;
    opacity: 0.85;
}

/* Plan Features */
.plan-features {
    padding: 28px 26px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features ul li {
    padding: 11px 0;
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.plan-features ul li:last-child {
    border-bottom: none;
}

.plan-features ul li i {
    font-size: 16px;
    flex-shrink: 0;
}

.plan-features ul li .fa-check {
    color: #10b981;
}

.plan-features ul li .fa-times {
    color: #cbd5e1;
}

/* Plan Footer */
.plan-footer {
    padding: 0 26px 28px;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    color: #ffffff;
}

/* Plan Note */
.plan-note {
    margin-top: 35px;
    padding: 18px 22px;
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #fbbf24;
    border-radius: 10px;
}

.plan-note p {
    font-size: 14px;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.7;
}

.plan-note i {
    color: #fbbf24;
    margin-right: 8px;
    font-size: 16px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991px) {
    .plans-section {
        padding: 50px 0;
    }
    
    .plans-section .section-title {
        font-size: 28px;
    }
    
    .plans-section .mb-5 {
        margin-bottom: 35px !important;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .plan-header {
        padding: 32px 24px;
    }
    
    .plan-header h3 {
        font-size: 21px;
    }
    
    .plan-price .amount {
        font-size: 40px;
    }
    
    .plan-features {
        padding: 26px 24px;
    }
    
    .plan-footer {
        padding: 0 24px 26px;
    }
}

@media (max-width: 768px) {
    .plans-section {
        padding: 45px 0;
    }
    
    .plans-section .section-title {
        font-size: 26px;
    }
    
    .plans-section .section-subtitle {
        font-size: 14px;
    }
    
    .plans-section .mb-5 {
        margin-bottom: 30px !important;
    }
    
    .plan-badge {
        top: 16px;
        right: 16px;
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .plan-header {
        padding: 30px 22px;
    }
    
    .plan-header h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .plan-price .currency {
        font-size: 20px;
    }
    
    .plan-price .amount {
        font-size: 38px;
    }
    
    .plan-price .period {
        font-size: 13px;
    }
    
    .plan-features {
        padding: 24px 22px;
    }
    
    .plan-features ul li {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .plan-features ul li i {
        font-size: 15px;
    }
    
    .plan-footer {
        padding: 0 22px 24px;
    }
    
    .btn-plan {
        padding: 12px;
        font-size: 14px;
    }
    
    .plan-note {
        margin-top: 30px;
        padding: 16px 20px;
    }
    
    .plan-note p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .plans-section {
        padding: 40px 0;
    }
    
    .plans-section .section-title {
        font-size: 22px;
    }
    
    .plan-card {
        margin-bottom: 20px;
    }
    
    .plan-header {
        padding: 28px 20px;
    }
    
    .plan-header h3 {
        font-size: 19px;
    }
    
    .plan-price .amount {
        font-size: 36px;
    }
    
    .plan-features {
        padding: 22px 20px;
    }
    
    .plan-features ul li {
        font-size: 12px;
        padding: 9px 0;
    }
    
    .plan-footer {
        padding: 0 20px 22px;
    }
    
    .plan-note {
        padding: 14px 18px;
    }
    
    .plan-note p {
        font-size: 12px;
    }
}



/* ================================
   PROCESS SECTION - COLORFUL & ATTRACTIVE
   ================================ */

.process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

/* Floating Background Elements */
.process-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.process-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* Section Heading */
.process-section .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #67C949;
    margin-bottom: 8px;
}

.process-section .section-subtitle {
    font-size: 15px;
    color: #64748b;
}

/* Timeline Container */
.process-timeline {
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
    padding: 40px 0;
    z-index: 2;
}

/* Center Line - GRADIENT & ANIMATED */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #10b981 0%, #34d399 50%, #10b981 100%);
    transform: translateX(-50%);
    z-index: 0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.5); }
}

/* Timeline Item */
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 55px;
    position: relative;
    width: 100%;
    animation: fadeInUp 0.6s ease;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

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

/* Odd items - Content on LEFT */
.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

/* Even items - Content on RIGHT */
.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

/* Number Circle - COLORFUL & GLOWING */
.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 
        0 10px 40px rgba(16, 185, 129, 0.6),
        0 0 0 10px rgba(16, 185, 129, 0.1),
        0 0 0 20px rgba(16, 185, 129, 0.05);
    z-index: 999;
    border: 6px solid #ffffff;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 
            0 10px 40px rgba(16, 185, 129, 0.6),
            0 0 0 10px rgba(16, 185, 129, 0.1),
            0 0 0 20px rgba(16, 185, 129, 0.05);
    }
    50% { 
        box-shadow: 
            0 15px 50px rgba(16, 185, 129, 0.7),
            0 0 0 15px rgba(16, 185, 129, 0.15),
            0 0 0 25px rgba(16, 185, 129, 0.08);
    }
}

.timeline-item:hover .timeline-number {
    transform: translateX(-50%) scale(1.1) rotate(360deg);
}

/* Alternate Number Colors */
.timeline-item:nth-child(1) .timeline-number {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.timeline-item:nth-child(2) .timeline-number {
    background: linear-gradient(135deg, #10b981 0%, #6ee7b7 100%);
}

.timeline-item:nth-child(3) .timeline-number {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.timeline-item:nth-child(4) .timeline-number {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.timeline-item:nth-child(5) .timeline-number {
    background: linear-gradient(135deg, #10b981 0%, #6ee7b7 100%);
}

/* Content Card - COLORFUL */
.timeline-content {
    width: calc(50% - 50px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 28px 32px;
    border-radius: 20px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.1),
        0 2px 10px rgba(16, 185, 129, 0.05);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    z-index: 2;
}

/* Connecting Line to Circle */
.timeline-content::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 10px;
}

/* Arrow for ODD items (left side) */
.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
}

/* Arrow for EVEN items (right side) */
.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
}

/* Hover Effect */
.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 50px rgba(16, 185, 129, 0.25),
        0 5px 20px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2f1 100%);
}

/* Icon - COLORFUL & GRADIENT */
.timeline-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #10b981;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.timeline-content:hover .timeline-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: #ffffff;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Text Content */
.timeline-content div {
    flex: 1;
    min-width: 0;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.timeline-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.7;
}

/* Step Label Badge */
.timeline-content::after {
    content: 'Step';
    position: absolute;
    top: -12px;
    left: 30px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 992px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-timeline {
        max-width: 700px;
        padding: 30px 0;
    }
    
    /* Move timeline line to left */
    .process-timeline::before {
        left: 40px;
        transform: none;
        z-index: 0;
    }
    
    /* All items on right side */
    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 110px;
        margin-bottom: 45px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
    }
    
    /* Move number to left */
    .timeline-number {
        left: 40px;
        transform: translateX(-50%);
        width: 65px;
        height: 65px;
        font-size: 28px;
        z-index: 999;
    }
    
    /* Full width content */
    .timeline-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Hide connecting line */
    .timeline-content::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 50px 0;
    }
    
    .process-section .section-title {
        font-size: 28px;
    }
    
    .process-section .section-subtitle {
        font-size: 14px;
    }
    
    .process-timeline {
        margin-top: 35px;
    }
    
    .timeline-item {
        padding-left: 95px;
        margin-bottom: 40px;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 26px;
        left: 38px;
    }
    
    .process-timeline::before {
        left: 38px;
        width: 4px;
    }
    
    .timeline-content {
        padding: 24px 28px;
        gap: 18px;
    }
    
    .timeline-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .timeline-content h4 {
        font-size: 17px;
    }
    
    .timeline-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 40px 0;
    }
    
    .process-section .section-title {
        font-size: 24px;
    }
    
    .process-timeline {
        padding: 20px 0;
        margin-top: 30px;
    }
    
    .timeline-item {
        padding-left: 85px;
        margin-bottom: 35px;
    }
    
    .timeline-number {
        width: 55px;
        height: 55px;
        font-size: 24px;
        left: 33px;
        border: 5px solid #ffffff;
    }
    
    .process-timeline::before {
        left: 33px;
        width: 3px;
    }
    
    .timeline-content {
        padding: 20px 22px;
        gap: 16px;
        border-radius: 16px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        border-radius: 12px;
    }
    
    .timeline-content h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .timeline-content p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .timeline-content::after {
        top: -10px;
        left: 20px;
        font-size: 10px;
        padding: 3px 10px;
    }
}

@media (max-width: 400px) {
    .timeline-item {
        padding-left: 75px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
        left: 30px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        padding: 18px 20px;
    }
    
    .timeline-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .timeline-content h4 {
        font-size: 15px;
    }
    
    .timeline-content p {
        font-size: 11px;
    }
}


/* CTA BUTTON SECTION (FIXED) */

.text-center {
    text-align: center !important;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,137,123,0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 250px;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,137,123,0.4);
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-green));
}

.btn-cta-large i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover i {
    transform: translateX(5px);
}

/* Process Section ke baad CTA */
.process-section + .text-center,
.text-center.mt-5 {
    margin-top: 50px !important;
    padding: 0 15px;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .btn-cta-large {
        padding: 14px 35px;
        font-size: 16px;
        min-width: 200px;
    }
}



/* ================================
   SUCCESS STORIES SLIDER - COMPACT
   ================================ */

.success-stories-section {
    background: linear-gradient(135deg, #E8F5E9 0%, #E0F7FA 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: '⭐';
    position: absolute;
    font-size: 180px;
    opacity: 0.03;
    top: -30px;
    right: -30px;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Section Header - Compact */
.success-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00C853, #00E676);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0,200,83,0.3);
}

.success-title {
    font-size: 32px;
    font-weight: 900;
    color: #212121;
    margin-bottom: 8px;
}

.highlight-green {
    color: #00C853;
}

.success-subtitle {
    font-size: 15px;
    color: #616161;
    margin-bottom: 35px;
}

/* Story Card - Super Compact */
.story-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin: 10px;
    border: 2px solid transparent;
}

.story-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,137,123,0.2);
    border-color: #00897B;
}

/* Card Top - Minimal */
.card-top {
    background: linear-gradient(135deg, #B2DFDB 0%, #C8E6C9 100%);
    padding: 20px 15px 15px;
    text-align: center;
    position: relative;
}

.profile-pic {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.location-tag {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00897B, #00C853);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,137,123,0.4);
}

.location-tag i {
    margin-right: 3px;
    font-size: 8px;
}

.card-top h4 {
    font-size: 17px;
    font-weight: 800;
    color: #212121;
    margin: 10px 0 5px;
}

.profession {
    font-size: 11px;
    color: #616161;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.profession i {
    color: #00897B;
    font-size: 10px;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.star-rating i {
    color: #FFB300;
    font-size: 12px;
}

/* Card Body - Ultra Compact */
.card-body {
    padding: 15px;
}

.testimonial {
    font-size: 12px;
    color: #616161;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 36px;
}

.stats-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.stat-box {
    flex: 1;
    background: #F5F5F5;
    padding: 8px 6px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.stat-box i {
    color: #00897B;
    font-size: 14px;
}

.stat-box span {
    font-size: 10px;
    color: #616161;
    font-weight: 600;
}

.earning-box {
    background: linear-gradient(135deg, #00C853, #00E676);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,200,83,0.3);
}

.earning-box span {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3px;
    font-weight: 600;
}

.earning-box h3 {
    font-size: 22px;
    font-weight: 900;
    color: white;
    margin: 0;
}

/* Owl Carousel Custom Dots */
.success-slider.owl-theme .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.success-slider.owl-theme .owl-dot {
    display: inline-block;
    margin: 0 4px;
}

.success-slider.owl-theme .owl-dot span {
    width: 10px;
    height: 10px;
    background: #B2DFDB;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.success-slider.owl-theme .owl-dot.active span {
    background: #00897B;
    width: 28px;
    border-radius: 8px;
}

/* Bottom Stats - Compact */
.bottom-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 18px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    min-width: 160px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,137,123,0.15);
}

.stat-item i {
    font-size: 32px;
    color: #00C853;
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 26px;
    font-weight: 900;
    color: #00897B;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    color: #616161;
    margin: 0;
}

/* Add Bounce Animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.story-card:hover .profile-pic {
    animation: bounce 0.6s ease;
}

/* Shine Effect on Hover */
.earning-box {
    position: relative;
    overflow: hidden;
}

.earning-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .success-stories-section {
        padding: 50px 0;
    }
    
    .success-title {
        font-size: 26px;
    }
    
    .success-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .story-card {
        margin: 8px;
    }
    
    .card-top {
        padding: 18px 12px 12px;
    }
    
    .profile-pic {
        width: 65px;
        height: 65px;
    }
    
    .card-top h4 {
        font-size: 16px;
    }
    
    .card-body {
        padding: 12px;
    }
    
    .testimonial {
        font-size: 11px;
        min-height: 33px;
    }
    
    .earning-box h3 {
        font-size: 20px;
    }
    
    .bottom-stats {
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-item {
        min-width: 130px;
        padding: 15px 20px;
    }
    
    .stat-item i {
        font-size: 28px;
    }
    
    .stat-item h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .success-title {
        font-size: 22px;
    }
    
    .profile-pic {
        width: 60px;
        height: 60px;
    }
    
    .card-top h4 {
        font-size: 15px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 6px;
    }
    
    .stat-box {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }
}



/* ================================
   FAQ SECTION
   ================================ */

.faq-section {
    padding: 40px 0;
    background: #f8fafb;
}

.faq-section .container {
    max-width: 1200px;
}

/* Section Heading */
.faq-section .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #67C949;
    margin-bottom: 8px;
}

.faq-section .section-subtitle {
    font-size: 15px;
    color: #64748b;
}

.faq-section .mb-5 {
    margin-bottom: 35px !important;
}

/* Accordion Item */
.accordion-item {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-item:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

/* Accordion Button */
.accordion-button {
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.accordion-button i {
    color: #10b981;
    font-size: 18px;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: none;
}

.accordion-button:not(.collapsed) i {
    color: #ffffff;
}

/* Accordion Arrow Icon */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310b981'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    flex-shrink: 0;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button:hover {
    background: #f1f5f9;
}

.accordion-button:not(.collapsed):hover {
    background: linear-gradient(135deg, #059669, #047857);
}

/* Accordion Body */
.accordion-body {
    padding: 20px 25px;
    color: #64748b;
    line-height: 1.8;
    font-size: 14px;
    background: #ffffff;
}

.accordion-body strong {
    color: #1a1a1a;
    font-weight: 700;
}

.accordion-body ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.accordion-body ul li {
    margin: 8px 0;
    color: #64748b;
}

.accordion-body ul li::marker {
    color: #10b981;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section .section-title {
        font-size: 28px;
    }
    
    .faq-section .mb-5 {
        margin-bottom: 30px !important;
    }
    
    .accordion-button {
        font-size: 15px;
        padding: 18px 22px;
    }
    
    .accordion-button i {
        font-size: 16px;
    }
    
    .accordion-body {
        padding: 18px 22px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 45px 0;
    }
    
    .faq-section .section-title {
        font-size: 26px;
    }
    
    .faq-section .section-subtitle {
        font-size: 14px;
    }
    
    .faq-section .mb-5 {
        margin-bottom: 28px !important;
    }
    
    .accordion-item {
        margin-bottom: 12px;
        border-radius: 10px;
    }
    
    .accordion-button {
        font-size: 14px;
        padding: 16px 20px;
    }
    
    .accordion-button i {
        font-size: 15px;
    }
    
    .accordion-body {
        padding: 16px 20px;
        font-size: 13px;
        line-height: 1.7;
    }
    
    .accordion-body ul {
        margin: 10px 0 0;
        padding-left: 18px;
    }
    
    .accordion-body ul li {
        margin: 6px 0;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section .section-title {
        font-size: 22px;
    }
    
    .faq-section .mb-5 {
        margin-bottom: 25px !important;
    }
    
    .accordion-item {
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .accordion-button {
        font-size: 13px;
        padding: 14px 18px;
    }
    
    .accordion-button i {
        font-size: 14px;
        margin-right: 10px;
    }
    
    .accordion-body {
        padding: 14px 18px;
        font-size: 12px;
    }
    
    .accordion-body ul {
        padding-left: 16px;
    }
}

@media (max-width: 400px) {
    .accordion-button {
        font-size: 12px;
        padding: 12px 16px;
    }
    
    .accordion-button i {
        font-size: 13px;
        margin-right: 8px;
    }
    
    .accordion-body {
        padding: 12px 16px;
        font-size: 11px;
    }
}


/* ================================
   REGISTRATION SECTION - SIMPLE
   ================================ */

.registration-section {
    padding: 40px 0;
    background: #ffffff;
}

.registration-section .container {
    max-width: 1200px;
}

/* Section Heading */
.registration-section .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #67C949;
    margin-bottom: 8px;
}

.registration-section .section-subtitle {
    font-size: 15px;
    color: #64748b;
}

.registration-section .mb-5 {
    margin-bottom: 35px !important;
}

/* Registration Card */
.registration-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Form Elements */
.form-label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.form-label .text-danger {
    color: #ef4444;
}

.form-control {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 60px;
}

/* Terms Box */
.terms-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 15px 18px;
    border-radius: 8px;
    margin: 25px 0 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    color: #1a1a1a;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    padding: 14px 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
}

.btn-submit i {
    font-size: 18px;
}

/* Registration Help */
.registration-help {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e5e7eb;
    text-align: center;
}

.registration-help p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.registration-help i {
    color: #10b981;
    margin-right: 8px;
    font-size: 16px;
}

.registration-help strong {
    color: #1a1a1a;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991px) {
    .registration-section {
        padding: 50px 0;
    }
    
    .registration-card {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .registration-section {
        padding: 45px 0;
    }
    
    .registration-section .section-title {
        font-size: 28px;
    }
    
    .registration-card {
        padding: 30px 25px;
        border-radius: 16px;
    }
    
    .form-label {
        font-size: 13px;
    }
    
    .form-control {
        padding: 11px 14px;
        font-size: 13px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .registration-section {
        padding: 40px 0;
    }
    
    .registration-section .section-title {
        font-size: 24px;
    }
    
    .registration-card {
        padding: 25px 20px;
    }
    
    .form-label {
        font-size: 12px;
    }
    
    .form-control {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .checkbox-label {
        font-size: 12px;
    }
    
    .btn-submit {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .registration-help p {
        font-size: 12px;
    }
}



/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-success {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.alert-danger {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.alert i {
    font-size: 20px;
    flex-shrink: 0;
}

.hidden {
    display: none !important;
}



/* Success Message Styling */
.success-message {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    animation: slideUp 0.5s ease;
}

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

.success-message .success-icon {
    font-size: 60px;
    color: #10b981;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 26px;
    color: #065f46;
    margin-bottom: 10px;
}

.success-message p {
    color: #047857;
    font-size: 16px;
    margin-bottom: 25px;
}

.success-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    max-width: 400px;
    margin: 25px auto;
}

.success-list li {
    background: white;
    padding: 12px 20px;
    margin: 10px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #065f46;
    font-size: 14px;
}

.success-list li i {
    color: #10b981;
    font-size: 18px;
}

.btn-home {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}





/* ================================
   CONTACT CTA SECTION - COMPLETE
   ================================ */

.contact-cta {
    background: #f8f9fa;
    padding: 20px 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, #16a085, #138d75);
    border-radius: 25px;
    padding: 20px;
    color: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    z-index: 0;
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    z-index: 0;
}

.cta-wrapper > .row {
    position: relative;
    z-index: 1;
}

/* Headings */
.cta-wrapper h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
    color: white;
}

.cta-wrapper h2 i {
    color: #FFD600;
    margin-right: 12px;
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.cta-wrapper p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
    color: white;
}

/* ================================
   CONTACT METHODS - BUTTONS
   ================================ */

.contact-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-btn {
    background: white;
    color: #16a085;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: #138d75;
    border-color: white;
    background: rgba(255,255,255,0.95);
}

.contact-btn i {
    font-size: 16px;
}

/* Call Button */
.contact-btn:nth-child(1) {
    background: white;
    color: #16a085;
}

.contact-btn:nth-child(1) i {
    color: #16a085;
}

/* WhatsApp Button - Green with White Icon */
.contact-btn:nth-child(2) {
    background: #25D366;
    color: white;
}

.contact-btn:nth-child(2) i {
    color: white !important;
}

.contact-btn:nth-child(2):hover {
    background: #128C7E;
    color: white;
}

/* Email Button */
.contact-btn:nth-child(3) {
    background: white;
    color: #16a085;
}

.contact-btn:nth-child(3) i {
    color: #16a085;
}

/* Live Chat Button */
.contact-btn:nth-child(4) {
    background: white;
    color: #16a085;
}

.contact-btn:nth-child(4) i {
    color: #16a085;
}

/* ================================
   SUPPORT HOURS BOX
   ================================ */

.support-hours {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.support-hours:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Clock Icon - Yellow */
.support-hours i.fa-clock {
    font-size: 40px;
    color: #FFD600;
    margin-bottom: 10px;
    display: block;
    animation: pulse 2s infinite;
}

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

.support-hours h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.support-hours p {
    font-size: 14px;
    margin: 5px 0;
    opacity: 0.9;
    color: white;
}

/* ================================
   PHONE ICON - WHITE COLOR
   ================================ */

.support-hours .fa-phone,
.support-hours .fa-phone-alt,
.support-hours i.fa-phone,
.support-hours i.fa-phone-alt {
    color: #ffffff !important;
    font-size: 22px;
    animation: phoneRing 2s infinite;
}

.support-hours a i.fa-phone-alt,
.support-hours a i.fa-phone,
.support-hours span i.fa-phone-alt,
.support-hours span i.fa-phone,
.support-hours i[class*="phone"] {
    color: #ffffff !important;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

/* Phone Number Link */
.support-hours a {
    text-decoration: none;
    color: #FFD600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.support-hours a:hover {
    transform: scale(1.05);
}

.support-hours a:hover i {
    color: #ffffff !important;
}

.support-hours a span {
    font-size: 28px;
    font-weight: 700;
    color: #FFD600;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 80px;
    }
    
    .timeline-number {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .plan-selection {
        grid-template-columns: 1fr;
    }
    
    .cta-wrapper h2 {
        font-size: 26px;
    }
    
    .cta-wrapper {
        padding: 40px 30px;
    }
    
    .support-hours {
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 30px;
    }
    
    .stat-box {
        border-right: none;
        border-bottom: 2px solid var(--white);
    }
    
    .stat-box:last-child {
        border-bottom: none;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .services-tabs .nav-tabs {
        flex-direction: column;
    }
    
    .earning-table {
        padding: 15px;
    }
    
    .earning-table table {
        font-size: 12px;
    }
    
    .registration-card {
        padding: 25px;
    }
    
    .contact-cta {
        padding: 40px 0;
    }
    
    .cta-wrapper {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .cta-wrapper h2 {
        font-size: 24px;
    }
    
    .cta-wrapper p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .support-hours {
        margin-top: 30px;
        padding: 25px 20px;
    }
    
    .support-hours i.fa-clock {
        font-size: 35px;
    }
    
    .support-hours h4 {
        font-size: 20px;
    }
    
    .support-hours .fa-phone-alt,
    .support-hours .fa-phone {
        font-size: 18px;
        color: #ffffff !important;
    }
    
    .support-hours a span {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero-features {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .floating-earning {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-wrapper {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .cta-wrapper h2 {
        font-size: 20px;
    }
    
    .cta-wrapper h2 i {
        display: block;
        margin-bottom: 10px;
        font-size: 32px;
    }
    
    .cta-wrapper p {
        font-size: 14px;
    }
    
    .contact-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .support-hours {
        padding: 20px 15px;
    }
    
    .support-hours i.fa-clock {
        font-size: 30px;
    }
    
    .support-hours h4 {
        font-size: 18px;
    }
    
    .support-hours p {
        font-size: 13px;
    }
    
    .support-hours .fa-phone-alt,
    .support-hours .fa-phone {
        font-size: 18px;
        color: #ffffff !important;
    }
    
    .support-hours a span {
        font-size: 20px;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */

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

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-lg-0 {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}

/* ================================
   ANIMATIONS
   ================================ */

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

.cta-wrapper {
    animation: fadeInUp 0.6s ease;
}

.contact-btn {
    animation: fadeInUp 0.8s ease;
}

.support-hours {
    animation: fadeInUp 1s ease;
}

/* ================================
   FINAL WHITE ICON ENFORCEMENT
   ================================ */

.support-hours i.fa-phone-alt,
.support-hours i.fa-phone {
    color: #ffffff !important;
}

.support-hours a i {
    color: #ffffff !important;
}

.support-hours [class*="phone"] {
    color: #ffffff !important;
}




/* ================================
   ADVANCED WHATSAPP CHAT WIDGET
   ================================ */

.whatsapp-chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Floating Button */
.whatsapp-button {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    position: relative;
    animation: slideInRight 0.6s ease, pulse 2s infinite 1s;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-button i {
    font-size: 36px;
    color: white;
    animation: wiggle 1.5s ease infinite;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff0844, #ff4646);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    border: 3px solid white;
    animation: bounce 1s infinite;
}

/* Chat Popup */
.whatsapp-chat-popup {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 360px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    display: none;
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

.whatsapp-chat-popup.active {
    display: block;
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.profile-pic {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.profile-details h4 {
    color: white;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.profile-details p {
    color: rgba(255,255,255,0.9);
    margin: 3px 0 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Chat Body */
.chat-body {
    padding: 20px;
    background: linear-gradient(135deg, #ECE5DD 0%, #D9D4CC 100%);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.03) 10px, rgba(255,255,255,.03) 20px);
    min-height: 180px;
    max-height: 300px;
    overflow-y: auto;
}

.message-bubble {
    background: white;
    padding: 14px 16px;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    margin-bottom: 15px;
    animation: fadeInLeft 0.4s ease;
}

.message-bubble p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.message-bubble strong {
    color: #075E54;
}

.message-bubble .time {
    font-size: 11px;
    color: #999;
    margin-top: 8px;
    display: block;
    text-align: right;
}

/* Quick Replies */
.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.quick-reply {
    background: white;
    border: 2px solid #25D366;
    color: #075E54;
    padding: 10px 14px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.quick-reply:hover {
    background: #25D366;
    color: white;
    transform: translateX(5px);
}

.quick-reply i {
    font-size: 14px;
}

/* Chat Footer */
.chat-footer {
    padding: 15px;
    background: #f0f0f0;
}

.start-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.start-chat-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.start-chat-btn i {
    font-size: 22px;
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8), 
                    0 0 0 15px rgba(37, 211, 102, 0.1),
                    0 0 0 30px rgba(37, 211, 102, 0.05);
    }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scrollbar */
.chat-body::-webkit-scrollbar {
    width: 6px;
}

.chat-body::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
}

.chat-body::-webkit-scrollbar-thumb {
    background: #25D366;
    border-radius: 10px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 768px) {
    .whatsapp-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-button i {
        font-size: 32px;
    }
    
    .whatsapp-chat-popup {
        width: calc(100vw - 40px);
        max-width: 360px;
        bottom: 80px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 28px;
    }
    
    .notification-badge {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    
    .whatsapp-chat-popup {
        width: calc(100vw - 30px);
        bottom: 75px;
    }
    
    .chat-body {
        max-height: 250px;
    }
}

