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

/* 1. Global Variables (AEPS Brand Colors Applied) */
:root {
    --primary-brand: #009688;       /* Deep Teal (#004d40) */
    --accent-brand: #67C949;        /* Vibrant Lime Green (#67C949) */
    --accent-dark-brand: #4a9e2f;   /* Deep Green Hover Fix */
    --text-body-v124: #4a4a4a;
    --text-heading-v124: #1a1a1a;
    --light-bg-v124: #f3fcfb;       
    --dark-bg-v124: #003a30;           
    --light-gray: #f9fbfa;
	
	  
            --teal: #009688;
            --teal-dark: #00796b;
            --teal-deep: #004d40;
            --green: #67C949;
            --green-dark: #57b443;
            --yellow: #ffc107;
        
}

/* Base and Typography (Ensure V124 variables are used) */
.bbps-ultimate-container { font-family: 'Poppins', sans-serif; color: var(--text-body-v124); overflow-x: hidden; }
.hero-h1-bbps-v121 { color: white; font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-p-bbps-v121 { color: rgba(255,255,255,0.9); margin-bottom: 30px; }
.section-h2-bbps-v121 { font-size: 2.2rem; font-weight: 800; color: var(--text-heading-v124); margin-bottom: 15px; }
.section-p-sub-bbps-v121 { font-size: 1rem; color: #666; max-width: 900px; margin: 0 auto; }
.section-p-detail-v121 { font-size: 0.95rem; line-height: 1.7; text-align: justify; color: var(--text-body-v124);}
.text-blue-bbps-v121 { color: var(--primary-brand) !important; }

        
    

        /* ============ ANIMATIONS ============ */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.4; }
        }
        
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }
        
        @keyframes floatIcon {
            0% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
            50% { transform: translateY(-20px) rotate(3deg); opacity: 0.7; }
            100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
        }
        
        @keyframes bubbleFloat {
            0% { transform: translateY(0) scale(1); opacity: 0.3; }
            50% { opacity: 0.5; }
            100% { transform: translateY(-100vh) scale(1.2); opacity: 0; }
        }
        
        .animate-on-scroll {
            opacity: 0;
        }
        
        .animate-on-scroll.visible {
            animation: fadeInUp 0.6s ease-out forwards;
        }
        
        /* ============ HERO ============ */
        .hero {
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 50%, var(--teal-deep) 100%);
            padding: 50px 0 40px;
            position: relative;
            overflow: hidden;
            min-height: 450px;
        }
        
        .bubble {
            position: absolute;
            bottom: -100px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            animation: bubbleFloat linear infinite;
        }
        
        .bubble:nth-child(1) { width: 60px; height: 60px; left: 10%; animation-duration: 12s; }
        .bubble:nth-child(2) { width: 45px; height: 45px; left: 25%; animation-duration: 10s; animation-delay: 2s; }
        .bubble:nth-child(3) { width: 70px; height: 70px; left: 50%; animation-duration: 15s; animation-delay: 4s; }
        .bubble:nth-child(4) { width: 50px; height: 50px; left: 70%; animation-duration: 11s; animation-delay: 1s; }
        .bubble:nth-child(5) { width: 65px; height: 65px; left: 85%; animation-duration: 13s; animation-delay: 3s; }
        
        .flying-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }
        
        .flying-icon {
            position: absolute;
            font-size: 30px;
            color: rgba(255,255,255,0.1);
            animation: floatIcon ease-in-out infinite;
        }
        
        .flying-icon:nth-child(1) { top: 15%; right: 10%; animation-duration: 5s; }
        .flying-icon:nth-child(2) { top: 40%; right: 20%; animation-duration: 6s; animation-delay: 1s; }
        .flying-icon:nth-child(3) { top: 60%; right: 8%; animation-duration: 5.5s; animation-delay: 2s; }
        .flying-icon:nth-child(4) { top: 25%; right: 35%; animation-duration: 6.5s; animation-delay: 0.5s; }
        .flying-icon:nth-child(5) { top: 70%; right: 25%; animation-duration: 5.8s; animation-delay: 1.5s; }
        
        .hero-content {
            position: relative;
            z-index: 10;
            animation: slideInLeft 0.8s ease-out;
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--green);
            color: white;
            padding: 6px 16px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 12px;
            margin-bottom: 12px;
        }
        
        .hero h1 {
            color: white;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .hero h1 .highlight {
            color: var(--green);
            font-weight: 800;
        }
        
        .hero p {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 20px;
            opacity: 0.99;
            line-height: 1.7;
        }
        
        .hero p strong {
            color: yellow;
            font-weight: 700;
        }
        
        .hero-stats {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .stat-mini {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            padding: 10px 18px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }
        
        .stat-mini:hover {
            background: rgba(255,255,255,0.18);
            transform: translateY(-3px);
        }
        
        .stat-mini h3 {
            color: yellow;
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0;
        }
        
        .stat-mini p {
            color: white;
            font-size: 0.8rem;
            margin: 0;
            opacity: 0.95;
        }
        
        .hero-visual {
            position: relative;
            z-index: 10;
            animation: slideInRight 0.8s ease-out;
        }
        
        .hero-icon-large {
            text-align: center;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-icon-large i {
            font-size: 200px;
            background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(103,201,73,0.12));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* ============ SEARCH ============ */
        .search-section {
            margin-top: -35px;
            position: relative;
            z-index: 20;
            padding-bottom: 40px;
            background: white;
        }
        
        .search-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 35px rgba(0,0,0,0.12);
            overflow: hidden;
            animation: scaleIn 0.6s ease-out 0.2s backwards;
        }
        
        .search-tabs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: #f8f9fa;
        }
        
        .search-tab {
            padding: 15px;
            text-align: center;
            border: none;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            font-size: 0.9rem;
            color: #666;
            position: relative;
        }
        
        .search-tab::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--teal), var(--green));
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        
        .search-tab.active {
            background: white;
            color: var(--teal);
        }
        
        .search-tab.active::after {
            transform: scaleX(1);
        }
        
        .search-tab:hover:not(.active) {
            background: rgba(0,150,136,0.04);
        }
        
        .search-tab i {
            display: block;
            font-size: 20px;
            margin-bottom: 4px;
        }
        
        .search-body {
            padding: 25px;
        }
        
        .tab-content-area {
            display: none;
        }
        
        .tab-content-area.active {
            display: block;
            animation: fadeInUp 0.4s;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--teal-deep);
            font-size: 13px;
        }
        
        .form-control, .form-select {
            width: 100%;
            padding: 10px 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            outline: none;
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(0,150,136,0.08);
        }
        
        .btn-search {
            width: 100%;
            padding: 11px;
            background: linear-gradient(135deg, var(--green), var(--green-dark));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-search:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(103,201,73,0.3);
        }
        
        /* ============ SECTIONS ============ */
        .section {
            padding: 45px 0;
        }
        
        .bg-white {
            background: white;
        }
        
        .bg-light {
            background: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 35px;
        }
        
        .section-title h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--teal-deep);
            margin-bottom: 8px;
        }
        
        .section-title p {
            font-size: 1rem;
            color: #666;
        }
        
        /* ============ INTRO - ENHANCED ============ */
        .intro-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }

        .intro-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0,150,136,0.03), transparent 70%);
            top: -150px;
            left: -150px;
            border-radius: 50%;
        }

        .intro-content-box {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            position: relative;
            border-left: 4px solid var(--teal);
        }

        .intro-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--teal), var(--green));
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .intro-content h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--teal-deep);
            margin-bottom: 15px;
        }

        .intro-content h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--teal-deep);
            margin: 20px 0 15px;
            display: flex;
            align-items: center;
        }

        .intro-content h4 i {
            margin-right: 10px;
            color: var(--green);
            font-size: 20px;
        }

        .intro-content p {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .intro-highlight {
            background: linear-gradient(135deg, rgba(0,150,136,0.05), rgba(103,201,73,0.05));
            padding: 15px;
            border-radius: 10px;
            border-left: 3px solid var(--green);
            margin: 15px 0;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin: 20px 0;
        }

        .feature-box {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            border-left: 3px solid var(--green);
            transition: all 0.3s;
            display: flex;
            align-items: start;
        }

        .feature-box:hover {
            background: #e9f7ef;
            transform: translateX(5px);
            border-left-color: var(--teal);
        }

        .feature-box:nth-child(even) {
            border-left-color: var(--teal);
        }

        .feature-box:nth-child(even):hover {
            border-left-color: var(--green);
        }

        .feature-box i {
            color: var(--green);
            font-size: 20px;
            margin-right: 10px;
            margin-top: 2px;
        }

        .feature-box:nth-child(even) i {
            color: var(--teal);
        }

        .feature-box div h5 {
            font-size: 0.95rem;
            font-weight: 600;
            color: #333;
            margin: 0 0 3px 0;
        }

        .feature-box div p {
            font-size: 0.85rem;
            color: #666;
            margin: 0;
            line-height: 1.5;
        }

        /* ============ INTRO - PLANE ANIMATION ============ */
        .intro-visual-box {
            background: linear-gradient(135deg, var(--teal), var(--green));
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 12px 35px rgba(0,150,136,0.3);
            position: relative;
            overflow: hidden;
        }

        .intro-visual-box::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            top: -80px;
            right: -80px;
        }

        .plane-animation {
            position: relative;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .plane-icon {
            font-size: 80px;
            color: white;
            animation: flyPlane 8s ease-in-out infinite;
            position: relative;
            z-index: 2;
        }

        @keyframes flyPlane {
            0% {
                transform: translate(-150px, 30px) rotate(-15deg);
                opacity: 0.3;
            }
            25% {
                transform: translate(0px, -20px) rotate(0deg);
                opacity: 1;
            }
            50% {
                transform: translate(150px, 30px) rotate(15deg);
                opacity: 0.3;
            }
            75% {
                transform: translate(0px, 0px) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translate(-150px, 30px) rotate(-15deg);
                opacity: 0.3;
            }
        }

        .cloud {
            position: absolute;
            background: rgba(255,255,255,0.2);
            border-radius: 100px;
            animation: floatCloud linear infinite;
        }

        .cloud::before,
        .cloud::after {
            content: '';
            position: absolute;
            background: rgba(255,255,255,0.2);
            border-radius: 100px;
        }

        .cloud:nth-child(1) {
            width: 60px;
            height: 25px;
            top: 30%;
            left: 10%;
            animation-duration: 20s;
        }

        .cloud:nth-child(1)::before {
            width: 40px;
            height: 20px;
            top: -10px;
            left: 10px;
        }

        .cloud:nth-child(1)::after {
            width: 35px;
            height: 18px;
            top: -8px;
            right: 10px;
        }

        .cloud:nth-child(2) {
            width: 50px;
            height: 20px;
            top: 60%;
            right: 15%;
            animation-duration: 25s;
            animation-delay: 5s;
        }

        .cloud:nth-child(2)::before {
            width: 35px;
            height: 16px;
            top: -8px;
            left: 8px;
        }

        .cloud:nth-child(2)::after {
            width: 30px;
            height: 15px;
            top: -6px;
            right: 8px;
        }

        .cloud:nth-child(3) {
            width: 55px;
            height: 22px;
            top: 45%;
            left: 20%;
            animation-duration: 22s;
            animation-delay: 10s;
        }

        .cloud:nth-child(3)::before {
            width: 38px;
            height: 18px;
            top: -9px;
            left: 9px;
        }

        .cloud:nth-child(3)::after {
            width: 32px;
            height: 16px;
            top: -7px;
            right: 9px;
        }

        @keyframes floatCloud {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(400px);
            }
        }

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

        .intro-stat {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 15px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.3);
            text-align: center;
        }

        .intro-stat h4 {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            margin: 0;
        }

        .intro-stat p {
            color: white;
            font-size: 0.85rem;
            margin: 5px 0 0 0;
            opacity: 0.95;
        }
        
/* ============ SERVICE LEFT-RIGHT LAYOUT - COMPACT WITH ANIMATION ============ */
.service-item {
    margin-bottom: 40px;
}

.service-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--teal);
    height: 100%;
    transition: all 0.3s ease;
}

.service-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,150,136,0.15);
}

.service-item:nth-child(even) .service-content {
    border-left-color: var(--green);
}

.service-badge-new {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    animation: fadeInUp 0.5s ease-out;
}

.service-item:nth-child(even) .service-badge-new {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.service-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--teal-deep);
    margin-bottom: 10px;
    animation: slideInLeft 0.6s ease-out;
}

.service-content p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    animation: fadeInUp 0.7s ease-out;
}

.service-features {
    margin: 15px 0 0 0;
}

.service-feature-item {
    display: flex;
    align-items: start;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.service-feature-item:nth-child(1) { animation-delay: 0.1s; }
.service-feature-item:nth-child(2) { animation-delay: 0.2s; }
.service-feature-item:nth-child(3) { animation-delay: 0.3s; }
.service-feature-item:nth-child(4) { animation-delay: 0.4s; }

.service-feature-item:hover {
    padding-left: 5px;
    background: rgba(0,150,136,0.02);
}

.service-feature-item:last-child {
    border-bottom: none;
}

.service-feature-item i {
    color: var(--green);
    font-size: 14px;
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-feature-item:hover i {
    transform: scale(1.2);
}

.service-item:nth-child(even) .service-feature-item i {
    color: var(--teal);
}

.service-feature-item div {
    font-size: 0.85rem;
    line-height: 1.5;
}

.service-feature-item strong {
    color: var(--teal-deep);
    font-weight: 600;
    font-size: 0.85rem;
}

.service-visual {
    background: linear-gradient(135deg, var(--teal), var(--green));
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,150,136,0.25);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    transition: all 0.3s ease;
}

.service-visual:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,150,136,0.3);
}

.service-item:nth-child(even) .service-visual {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.service-visual::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    animation: pulse 8s infinite;
}

.service-visual i {
    font-size: 90px;
    color: rgba(255,255,255,0.25);
    animation: float 5s ease-in-out infinite;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-visual:hover i {
    color: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

.service-visual h4 {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 15px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out;
}

.service-visual p {
    color: white;
    font-size: 0.85rem;
    opacity: 0.95;
    margin: 8px 0 0 0;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.7s ease-out;
}


/* ============ SERVICE VISUAL - IMAGE BOX ============ */
.service-visual {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    transition: all 0.3s ease;
}

.service-visual:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,150,136,0.2);
}

.service-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-visual:hover .service-visual-img {
    transform: scale(1.05);
}

.service-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,150,136,0.95), rgba(0,150,136,0.7));
    padding: 25px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.service-item:nth-child(even) .service-visual-overlay {
    background: linear-gradient(to top, rgba(103,201,73,0.95), rgba(103,201,73,0.7));
}

.service-visual:hover .service-visual-overlay {
    background: linear-gradient(to top, rgba(0,150,136,1), rgba(0,150,136,0.85));
}

.service-item:nth-child(even) .service-visual:hover .service-visual-overlay {
    background: linear-gradient(to top, rgba(103,201,73,1), rgba(103,201,73,0.85));
}

.service-visual-overlay h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    animation: fadeInUp 0.6s ease-out;
}

.service-visual-overlay p {
    color: white;
    font-size: 0.88rem;
    opacity: 0.95;
    margin: 0;
    animation: fadeInUp 0.7s ease-out;
}

.service-visual-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.service-visual:hover .service-visual-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255,255,255,0.25);
}

        
       /* ============ BENEFIT CARDS - CREATIVE & INTERACTIVE ============ */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

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

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

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,150,136,0.2);
    border-color: rgba(0,150,136,0.1);
}

.benefit-card:nth-child(even):hover {
    border-color: rgba(103,201,73,0.1);
}

.benefit-card-inner {
    padding: 30px 25px;
    position: relative;
    z-index: 1;
}

.benefit-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0,150,136,0.05);
    line-height: 1;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-number {
    color: rgba(0,150,136,0.12);
    transform: scale(1.1);
}

.benefit-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,150,136,0.1), rgba(103,201,73,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--teal);
    margin: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--green));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.benefit-card:hover .benefit-icon::before {
    opacity: 0.2;
    animation: pulse 2s infinite;
}

.benefit-card:nth-child(even) .benefit-icon {
    color: var(--green);
}

.benefit-card:nth-child(even):hover .benefit-icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.benefit-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--teal-deep);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.benefit-card:hover h4 {
    color: var(--teal);
    transform: translateX(5px);
}

.benefit-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

.benefit-card:hover p {
    color: #555;
}

.benefit-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;  /* YE ADD KARO - Badge sabse upar rahega! */
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,150,136,0.1), rgba(103,201,73,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--teal);
    margin: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;  /* Icon ka z-index kam rakho */
}


.benefit-card:hover .benefit-badge {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:nth-child(1) .benefit-badge { background: linear-gradient(135deg, #ff6b6b, #ee5a6f); }
.benefit-card:nth-child(2) .benefit-badge { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.benefit-card:nth-child(3) .benefit-badge { background: linear-gradient(135deg, #f093fb, #f5576c); }
.benefit-card:nth-child(4) .benefit-badge { background: linear-gradient(135deg, #fa709a, #fee140); }
.benefit-card:nth-child(5) .benefit-badge { background: linear-gradient(135deg, #30cfd0, #330867); }
.benefit-card:nth-child(6) .benefit-badge { background: linear-gradient(135deg, #a8edea, #fed6e3); }
.benefit-card:nth-child(7) .benefit-badge { background: linear-gradient(135deg, #ff9a9e, #fecfef); }
.benefit-card:nth-child(8) .benefit-badge { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.benefit-card:nth-child(9) .benefit-badge { background: linear-gradient(135deg, #667eea, #764ba2); }

/* Stagger animation for cards */
.benefit-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }
.benefit-card:nth-child(7) { animation-delay: 0.7s; }
.benefit-card:nth-child(8) { animation-delay: 0.8s; }
.benefit-card:nth-child(9) { animation-delay: 0.9s; }

        
  /* ============ REQUIREMENTS - ONE TEAL, ONE GREEN ============ */
.req-box {
    background: white;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* FIRST BOX - TEAL */
.req-box:first-child {
    border-left: 3px solid var(--teal);
}

/* SECOND BOX - GREEN */
.req-box:last-child {
    border-left: 3px solid var(--green);
}

.req-box:hover {
    transform: translateX(8px) translateY(-3px);
}

.req-box:first-child:hover {
    box-shadow: 0 8px 25px rgba(0,150,136,0.12);
}

.req-box:last-child:hover {
    box-shadow: 0 8px 25px rgba(103,201,73,0.12);
}

.req-box-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* FIRST BOX HEADER - TEAL */
.req-box:first-child .req-box-header {
    background: linear-gradient(135deg, rgba(0,150,136,0.04), rgba(0,150,136,0.01));
}

/* SECOND BOX HEADER - GREEN */
.req-box:last-child .req-box-header {
    background: linear-gradient(135deg, rgba(103,201,73,0.04), rgba(103,201,73,0.01));
}

.req-box:first-child:hover .req-box-header {
    background: linear-gradient(135deg, rgba(0,150,136,0.08), rgba(0,150,136,0.02));
}

.req-box:last-child:hover .req-box-header {
    background: linear-gradient(135deg, rgba(103,201,73,0.08), rgba(103,201,73,0.02));
}

.req-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    margin-right: 12px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
}

/* FIRST BOX ICON - TEAL */
.req-box:first-child .req-icon-box {
    background: var(--teal);
}

/* SECOND BOX ICON - GREEN */
.req-box:last-child .req-icon-box {
    background: var(--green) ;
}

.req-box:hover .req-icon-box {
    transform: scale(1.15) rotate(-8deg);
}

.req-icon-box i {
    font-size: 18px;
    color: white;
}

.req-box h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal-deep);
    margin: 0;
    transition: all 0.3s ease;
}

.req-box:first-child:hover h5 {
    color: var(--teal);
}

.req-box:last-child:hover h5 {
    color: var(--green);
}

.req-box-body {
    padding: 15px 20px 18px;
}

.req-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-box ul li {
    padding: 8px 0;
    font-size: 0.87rem;
    color: #666;
    position: relative;
    padding-left: 26px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f8f8;
    line-height: 1.4;
}

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

.req-box:first-child ul li:hover {
    color: var(--teal);
    padding-left: 30px;
    background: rgba(0,150,136,0.02);
}

.req-box:last-child ul li:hover {
    color: var(--green);
    padding-left: 30px;
    background: rgba(103,201,73,0.02);
}

.req-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 9px;
    line-height: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

/* FIRST BOX CHECKMARKS - TEAL */
.req-box:first-child ul li::before {
    background: var(--teal);
}

/* SECOND BOX CHECKMARKS - GREEN */
.req-box:last-child ul li::before {
    background: var(--green);
}

.req-box ul li:hover::before {
    transform: translateY(-50%) scale(1.2) rotate(360deg);
}

/* Stagger animation */
.req-box {
    opacity: 0;
    animation: slideInLeft 0.5s ease-out forwards;
}

.req-box:first-child { animation-delay: 0.1s; }
.req-box:last-child { animation-delay: 0.2s; }

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



/* ============ TRAVEL TIMELINE - PERFECT VERSION ============ */
.travel-timeline-section {
    background: #f8f9fa;
    padding: 50px 0;
}

.travel-timeline {
    position: relative;
    padding: 20px 0;
    max-width: 1100px;
    margin: 0 auto;
}

.travel-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #009688, #67C949, #009688, #67C949);
    transform: translateX(-50%);
}

.travel-timeline-item {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.travel-timeline-item:nth-child(1) { animation-delay: 0.1s; }
.travel-timeline-item:nth-child(2) { animation-delay: 0.2s; }
.travel-timeline-item:nth-child(3) { animation-delay: 0.3s; }
.travel-timeline-item:nth-child(4) { animation-delay: 0.4s; }

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

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

.travel-timeline-box {
    border-radius: 15px;
    padding: 25px;
    width: 48%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Box Colors */
.travel-timeline-item:nth-child(1) .travel-timeline-box {
    background: linear-gradient(135deg, #009688, #00796b);
}

.travel-timeline-item:nth-child(2) .travel-timeline-box {
    background: linear-gradient(135deg, #67C949, #57b443);
}

.travel-timeline-item:nth-child(3) .travel-timeline-box {
    background: linear-gradient(135deg, #009688, #00796b);
}

.travel-timeline-item:nth-child(4) .travel-timeline-box {
    background: linear-gradient(135deg, #67C949, #57b443);
}

.travel-timeline-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.travel-timeline-box:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,150,136,0.25);
    background: white !important;
    color: #333;
}

.travel-timeline-box:hover::before {
    opacity: 0;
}

.travel-timeline-number {
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    z-index: 10;
}

/* Number Colors */
.travel-timeline-item:nth-child(1) .travel-timeline-number {
    background: linear-gradient(135deg, #009688, #00796b);
}

.travel-timeline-item:nth-child(2) .travel-timeline-number {
    background: linear-gradient(135deg, #67C949, #57b443);
}

.travel-timeline-item:nth-child(3) .travel-timeline-number {
    background: linear-gradient(135deg, #009688, #00796b);
}

.travel-timeline-item:nth-child(4) .travel-timeline-number {
    background: linear-gradient(135deg, #67C949, #57b443);
}

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

.travel-timeline-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.travel-timeline-box:hover h4 {
    color: #004d40;
}

.travel-timeline-item:nth-child(2):hover .travel-timeline-box h4,
.travel-timeline-item:nth-child(4):hover .travel-timeline-box h4 {
    color: #57b443;
}

.travel-timeline-box p {
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.7;
    opacity: 0.95;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    color: white;
}

.travel-timeline-box:hover p {
    opacity: 1;
    color: #666;
}

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

/* Mobile */
@media (max-width: 768px) {
    .travel-timeline::before { 
        left: 25px; 
    }
    
    .travel-timeline-box { 
        width: calc(100% - 70px); 
        margin-left: 70px !important; 
    }
    
    .travel-timeline-number { 
        left: 25px; 
        transform: translateX(0);
    }
    
    .travel-timeline-item:hover .travel-timeline-number {
        transform: scale(1.15) rotate(360deg);
    }
}


/* ============ TESTIMONIALS 3D SLIDER - EXTRA COMPACT ============ */
.testimonial-3d-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px;
    position: relative;
}

.testimonialSwiper {
    width: 100%;
    padding: 40px 80px !important;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 600px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.testimonial-card-3d {
    background: white;
    border-radius: 18px;
    padding: 20px 25px;  /* PADDING AUR KAM */
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    height: auto;
    min-height: 220px;  /* HEIGHT AUR KAM - 220px */
}

.swiper-slide-active .testimonial-card-3d {
    transform: scale(1.05) rotateY(0deg);
    box-shadow: 0 25px 60px rgba(0,150,136,0.25);
}

.swiper-slide-prev .testimonial-card-3d {
    transform: scale(0.85) rotateY(15deg);
    opacity: 0.6;
}

.swiper-slide-next .testimonial-card-3d {
    transform: scale(0.85) rotateY(-15deg);
    opacity: 0.6;
}

.testimonial-card-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--teal), var(--green));
    opacity: 0.05;
    border-radius: 50%;
    transition: all 0.6s ease;
}

.swiper-slide-active .testimonial-card-3d::before {
    transform: translate(-20%, 20%) scale(1.3);
    opacity: 0.08;
}

.quote-icon {
    font-size: 1.8rem;  /* SIZE AUR KAM */
    color: var(--teal);
    opacity: 0.15;
    margin-bottom: 8px;  /* MARGIN KAM */
    transition: all 0.4s ease;
}

.swiper-slide-active .quote-icon {
    color: var(--green);
    opacity: 0.25;
    transform: scale(1.15);
}

.testimonial-text {
    font-size: 0.9rem;  /* FONT SIZE KAM */
    line-height: 1.5;  /* LINE HEIGHT KAM */
    color: #555;
    font-style: italic;
    margin-bottom: 15px;  /* MARGIN KAM */
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.swiper-slide-active .testimonial-text {
    color: #333;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;  /* PADDING KAM */
    border-top: 2px solid #f0f0f0;
    position: relative;
    z-index: 2;
}

.customer-avatar {
    font-size: 2.6rem;  /* SIZE KAM */
    color: var(--teal);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.swiper-slide-active .customer-avatar {
    color: var(--green);
    transform: scale(1.1);
}

.customer-details h5 {
    font-size: 0.95rem;  /* SIZE KAM */
    font-weight: 700;
    color: var(--teal-deep);
    margin: 0 0 3px 0;
    transition: all 0.3s ease;
}

.swiper-slide-active .customer-details h5 {
    color: var(--teal);
}

.customer-details p {
    font-size: 0.78rem;  /* SIZE KAM */
    color: #888;
    margin: 0 0 5px 0;
}

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

.rating i {
    font-size: 0.75rem;
    color: #FFB800;
    transition: all 0.3s ease;
}

.swiper-slide-active .rating i {
    transform: scale(1.1);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    color: var(--teal) !important;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px !important;
    font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--teal);
    color: white !important;
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(0,150,136,0.3);
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 0 !important;
}

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

.swiper-pagination-bullet-active {
    background: var(--teal);
    width: 24px;
    border-radius: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonialSwiper {
        padding: 35px 20px !important;
    }
    
    .swiper-slide {
        width: 320px;
    }
    
    .testimonial-card-3d {
        padding: 18px 20px;
        min-height: 200px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 13px !important;
    }
    
    .swiper-slide-prev .testimonial-card-3d,
    .swiper-slide-next .testimonial-card-3d {
        transform: scale(0.9);
        opacity: 0.4;
    }
}



        
        /* ============ FAQ - ENHANCED ============ */
        .faq-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0,150,136,0.05), transparent 70%);
            top: -100px;
            right: -100px;
            border-radius: 50%;
        }

        .faq-section::after {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(103,201,73,0.05), transparent 70%);
            bottom: -80px;
            left: -80px;
            border-radius: 50%;
        }
        
        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .faq-item:hover {
            box-shadow: 0 8px 25px rgba(0,150,136,0.15);
            border-color: rgba(0,150,136,0.1);
        }
        
        .faq-question {
            width: 100%;
            padding: 18px 22px;
            background: transparent;
            border: none;
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
            color: #333;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            position: relative;
        }

        .faq-question::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--teal), var(--green));
            transform: scaleY(0);
            transition: transform 0.3s;
        }

        .faq-question:hover::before {
            transform: scaleY(1);
        }
        
        .faq-icon-wrapper {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--teal), var(--green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s;
            flex-shrink: 0;
        }

        .faq-icon-wrapper i {
            color: white;
            font-size: 14px;
            transition: transform 0.4s;
        }
        
        .faq-question.active .faq-icon-wrapper {
            transform: rotate(180deg);
        }
        
        .faq-question:hover {
            color: var(--teal);
            padding-left: 28px;
        }
        
        .faq-question.active {
            color: var(--teal);
            padding-left: 28px;
            background: linear-gradient(90deg, rgba(0,150,136,0.05), transparent);
        }
        
        .faq-answer {
            padding: 0 22px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .faq-answer.show {
            padding: 0 22px 20px 22px;
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 3px solid var(--green);
        }
        
        .faq-answer p {
            font-size: 0.92rem;
            color: #555;
            line-height: 1.7;
            margin: 0 0 10px 0;
        }

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

        .faq-answer p strong {
            color: var(--teal-deep);
            font-weight: 600;
        }

        .faq-highlight {
            background: linear-gradient(135deg, rgba(0,150,136,0.08), rgba(103,201,73,0.08));
            padding: 12px 15px;
            border-radius: 8px;
            margin: 8px 0;
            border-left: 3px solid var(--green);
        }
        
        /* ============ CTA ============ */
        .cta-section {
            padding: 50px 0;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before,
        .cta-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            animation: pulse 12s infinite;
        }
        
        .cta-section::before {
            top: -150px;
            left: -150px;
        }
        
        .cta-section::after {
            bottom: -150px;
            right: -150px;
            animation-delay: 6s;
        }
        
        .cta-content {
            position: relative;
            z-index: 10;
        }
        
        .cta-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
			color: white;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 25px;
			
        }
        
        .btn-cta {
            padding: 14px 45px;
            background: white;
            color: var(--green);
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .btn-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(0,0,0,0.25);
        }
        
        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .hero h1 { font-size: 1.7rem; }
            .hero-icon-large i { font-size: 120px; }
            .search-tabs { grid-template-columns: repeat(2, 1fr); }
            .feature-grid { grid-template-columns: 1fr; }
            .intro-stats { grid-template-columns: 1fr; }
            .timeline::before { left: 25px; }
            .timeline-box { width: calc(100% - 70px); margin-left: 70px !important; }
            .timeline-number { left: 25px; }
            .flying-icon { display: none; }
            .section-title h2 { font-size: 1.6rem; }
        }
		
		
		
		
		/* =========================================
   V343: VALUE ADDED SERVICES MARQUEE STYLING
   ========================================= */

.recharge-value-added-v343 {
    padding: 60px 0;
    /* Use contrasting background for separation */
    border-bottom: 2px solid #eee;
}

.value-title-v343 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-base, #004d40);
    margin-bottom: 5px;
}
.value-subtitle-v343 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Marquee Container Setup */
.value-marquee-container-v343 {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    margin: 30px 0;
    padding: 10px 0;
}

.value-services-wrapper-v343 {
    display: inline-flex; /* Key to horizontal flow */
    animation: marquee-scroll-v343 35s linear infinite; /* Animation defined below */
    animation-play-state: running;
    padding: 10px 0;
}

/* Service Item Styling (The Pill Shape) */
.service-item-v343 {
    /* Visual pill style */
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--primary-action, #009688);
    color: var(--primary-action, #009688);
    padding: 10px 30px;
    border-radius: 50px;
    margin: 0 15px; /* Spacing between items */
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 150, 136, 0.1);
    
    transition: all 0.3s;
    cursor: default;
    
    /* Ensure no wrapping */
    flex-shrink: 0;
}

.service-item-v343 i {
    color: var(--tertiary-accent, #67C949); /* Green Icon for pop */
    font-size: 1.2em;
}

.service-item-v343:hover {
    background: var(--primary-action, #009688);
    color: white;
    transform: translateY(-5px) scale(1.05);
}
.service-item-v343:hover i {
    color: var(--highlight-yellow, #ffeb3b); /* Icon pops yellow on hover */
}

/* Animation Keyframes */
@keyframes marquee-scroll-v343 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls half the wrapper width */
}
