/* ==================== ROOT & GENERAL STYLES ==================== */
:root {
    --primary-color: #720c43;
    --secondary-color: #440a66;
    --gradient-main: linear-gradient(135deg, #440a66 0%, #720c43 100%);
    --gradient-accent: linear-gradient(135deg, #720c43 0%, #a21b61 100%);
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white-color: #ffffff;
    --text-primary: #212529;
    --text-secondary: #363636;
    --border-color: #dee2e6;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white-color);
}

/* ==================== TYPOGRAPHY ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #5d0936;
    border-color: #5d0936;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
}


/* ==================== SPACING ==================== */
.py-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.py-md-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

@media (max-width: 768px) {
    .py-7 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .py-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

}

/* ==================== NAVBAR STYLES ==================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease, transform 0.4s ease;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}

/* --- Transparent state (over dark hero) --- */
.navbar.navbar-transparent {
    background: transparent !important;
    box-shadow: none;
}

.navbar.navbar-transparent .brand-logo {
    color: #ffffff !important;
    height: 60px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .navbar.navbar-transparent .brand-logo {
        height: 48px;
        width: 90px;
    }

    /* Modern Dropdown styles */
    .navbar .navbar-collapse {
        background: linear-gradient(135deg, #24021f 0%, #3d0628 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 1.5rem;
        padding: 2rem;
        margin-top: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    .navbar-scrolled .navbar-collapse {
        background: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-scrolled .navbar-collapse .nav-link {
        color: var(--text-primary) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-scrolled .navbar-collapse .nav-link:hover {
        color: var(--primary-color) !important;
    }

}

.navbar.navbar-transparent .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
}

.navbar.navbar-transparent .navbar-nav .nav-link:hover {
    color: #ffc107 !important;
}

.navbar.navbar-transparent .btn-primary {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    backdrop-filter: blur(8px);
}

.navbar.navbar-transparent .btn-primary:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.navbar.navbar-transparent .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

/* .navbar.navbar-transparent .navbar-toggler-icon {
    filter: invert(1);
} */

/* --- Scrolled state (over light sections) --- */
.navbar.navbar-scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar.navbar-scrolled .brand-logo {
    color: var(--primary-color) !important;
}

.navbar.navbar-scrolled .navbar-nav .nav-link {
    color: var(--text-primary) !important;
}

.navbar.navbar-scrolled .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar.navbar-scrolled .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.navbar.navbar-scrolled .btn-primary:hover {
    background-color: #5d0936;
    border-color: #5d0936;
}

.navbar.navbar-scrolled .navbar-toggler {
    border-color: var(--border-color);
}

.navbar.navbar-scrolled .navbar-toggler-icon {
    filter: none;
}

/* Active nav link */
.navbar-nav .nav-link.active {
    color: #ffc107 !important;
    font-weight: 600;
}

.navbar-scrolled .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.4s ease;
}

.navbar.navbar-transparent .navbar-nav .nav-link:hover {
    color: #ffc107 !important;
}

.navbar-nav .nav-link {
    margin: 0 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}


@media (max-width: 576px) {

    .navbar.navbar-transparent .navbar-collapse.show,
    .navbar.navbar-transparent .navbar-collapse.collapsing {
        padding: 1.5rem;
    }

    .navbar-nav .nav-link {
        font-size: 1rem !important;
    }

    
}

/* Mobile collapsed menu styles consolidated above */



/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background:
        repeating-linear-gradient(115deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            rgba(0, 0, 0, 0) 3px,
            rgba(0, 0, 0, 0) 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 2px) 0 0 / 40px 40px,
        linear-gradient(135deg, #55053a 0%, #720c43 60%, #35084e 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 7rem 0 5rem;
}

/* Animated background orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: orbFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #720c43, #440a66);
    top: -100px;
    left: -150px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #440a66, #720c43);
    top: 50%;
    right: -100px;
    animation-delay: 3s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #720c43, #440a66);
    bottom: -80px;
    left: 40%;
    animation-delay: 5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.07);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
}

/* Pill badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    animation: fadeSlideDown 0.7s ease both;
}

.hero-badge i {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Title */
.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffffff;
    line-height: 1.18;
    font-weight: 800;
    animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero-highlight {
    background: linear-gradient(90deg, #ffc107, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.9;
    animation: fadeSlideUp 0.8s ease 0.2s both;
}

/* CTA buttons */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    border: none;
    color: #400d3d;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(255, 193, 7, 0.55);
    color: #0d1440;
}

.btn-hero-outline {
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* Trust stats bar */
.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    animation: fadeSlideUp 0.8s ease 0.4s both;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-trust-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffc107;
    line-height: 1;
}

.hero-trust-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

/* Image wrapper */
.hero-img-wrapper {
    position: relative;
    display: inline-block;
    animation: fadeSlideUp 0.9s ease 0.2s both;

}

.hero-main-img {
    width: 100%;
    height: 360px;
    max-width: 360px;
    border-radius: 100%;
    display: block;
    object-fit: contain;
    aspect-ratio: 1/1;
    /* Soft edge blending using mask */
    -webkit-mask-image: radial-gradient(circle, rgb(53, 0, 49) 85%, transparent 100%);
    mask-image: radial-gradient(circle, rgb(34, 1, 20) 85%, transparent 100%);
    /* Remove harsh edge shadow */
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-main-img:hover {
    transform: scale(1.05) perspective(1000px) rotateX(4deg) rotateY(-4deg) translateY(-10px);
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.1));
}

/* Glow ring behind image */
.hero-glow-ring {
    position: absolute;
    inset: -20px;
    border-radius: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 221, 0.25), rgba(111, 66, 193, 0.2));
    filter: blur(30px);
    z-index: -1;
}

/* Circular orbital animation for hero badges */
.hero-float-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    z-index: 10;
    pointer-events: auto;
    transition: transform 0.3s ease;
    /* Shared orbital animation */
    animation: badgeOrbit 40s linear infinite;
}

.hero-float-badge:hover {
    animation-play-state: running;
    z-index: 100;
    transform: translate(-50%, -50%) rotate(var(--start-angle)) translate(var(--radius)) scale(1.15);
}

@keyframes badgeOrbit {
    from {
        transform: translate(-50%, -50%) rotate(var(--start-angle)) translateX(var(--radius)) rotate(calc(-1 * var(--start-angle)));
    }

    to {
        transform: translate(-50%, -50%) rotate(calc(var(--start-angle) + 360deg)) translateX(var(--radius)) rotate(calc(-1 * (var(--start-angle) + 360deg)));
    }
}

/* Base orbital radius */
.hero-float-badge {
    --radius: 240px;
}

/* Individual angles (360 / 11 items = ~32.7deg) */
.badge-aeps {
    background: linear-gradient(135deg, #7e1a71, #521ca8);
    --start-angle: 0deg;
}

.badge-dmt {
    background: linear-gradient(135deg, #1a6f7e, #2c0d40);
    --start-angle: 32.7deg;
}

.badge-bbps {
    background: linear-gradient(135deg, #7b1fa2, #4a148c);
    --start-angle: 65.4deg;
}

.badge-micro-atm {
    background: linear-gradient(135deg, #ff8c00, #ff5b00);
    --start-angle: 98.1deg;
}

.badge-recharge {
    background: linear-gradient(135deg, #ffb300, #ff6f00);
    --start-angle: 130.8deg;
}

.badge-dth-recharge {
    background: linear-gradient(135deg, #7cb342, #33691e);
    --start-angle: 163.5deg;
}

.badge-electricity {
    background: linear-gradient(135deg, #0ec076, #115e91);
    --start-angle: 196.2deg;
}

.badge-gas {
    background: linear-gradient(135deg, #fb8c00, #e65100);
    --start-angle: 228.9deg;
}

.badge-pan {
    background: linear-gradient(135deg, #d81b60, #880e4f);
    --start-angle: 261.6deg;
}

.badge-flight {
    background: linear-gradient(135deg, #18360a, #48771b);
    --start-angle: 294.3deg;
}

.badge-insurance {
    background: linear-gradient(135deg, #00897b, #004d40);
    --start-angle: 327deg;
}

/* Mobile adjustments (smaller orbit or hide) */
@media (max-width: 991px) {
    .hero-float-badge {
        --radius: 180px;
        font-size: 0.72rem;
        padding: 0.4rem 0.75rem;
    }

    .hero-main-img {
        max-width: 300px;
        height: 300px;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-float-badge {
        --radius: 170px;
    }
}

/* Entrance animations */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    .hero-main-img {
        max-width: 100%;
    }

    .hero-float-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .badge-aeps {
        left: 0;
    }

    .badge-dmt {
        right: 0;
    }

    .badge-bbps {
        left: 0;
    }

    .badge-recharge {
        right: 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 1.85rem !important;
        line-height: 1.3;
        margin-top: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem !important;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 85%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-trust-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-trust-item {
        align-items: center;
        text-align: center;
        flex: 1 1 35%;
        padding: 0.5rem;
    }

    .hero-trust-divider {
        display: none;
    }

    .hero-float-badge {
        display: none;
    }

    .hero-main-img {
        max-width: 340px;
        height: 380px;
        margin: 0;
        padding: 0;
    }
}



/* ==================== SECTION STYLES ==================== */
.section-title {
    color: #050505e0;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-color) !important;
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1rem;
    color: var(--dark-color);
    line-height: 1.8;
    text-align: justify;
}

.about-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    z-index: 1;
}

.about-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(114, 12, 67, 0.05), transparent);
    top: -100px;
    left: -100px;
    filter: blur(50px);
    z-index: -1;
}

.about-img-container {
    position: relative;
    padding: 1px;
    perspective: 1000px;
}

.about-img-wrapper {
    position: relative;
    z-index: 10;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    transform: rotateY(-5deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-wrapper:hover {
    transform: rotateY(0deg) translateY(-10px);
    box-shadow: 0 50px 100px rgba(114, 12, 67, 0.2);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-stat-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 20;
    border: 1px solid rgba(114, 12, 67, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.about-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.about-content-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(114, 12, 67, 0.1);
    border-radius: 2.5rem;
    padding: 3rem !important;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    .about-img-wrapper {
        transform: rotateY(0);
        border-radius: 1.5rem;
    }

    .about-content-card {
        padding: 2rem !important;
        border-radius: 1.5rem;
        margin-top: 2rem;
    }

    .about-stat-badge {
        right: 10px;
        bottom: 10px;
        padding: 1rem;
    }

    .section-text {
        text-align: left;
    }
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: white;
    padding: 1rem 1.2rem;
    border-radius: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.about-features li:hover {
    transform: translateX(8px);
    background: var(--primary-color);
    color: white;
}

.about-features i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.about-features li:hover i {
    color: white;
}

/* ==================== SERVICE CARDS REDESIGN ==================== */
.services-section {
    padding: 100px 0;
    background: #fcfaff;
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(114, 12, 67, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: #ffffff;
    box-shadow: 0 40px 90px rgba(114, 12, 67, 0.12);
    border-color: rgba(114, 12, 67, 0.2);
}

.service-images {
    width: 140px;
    height: 140px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 10;
}

.service-images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
    transition: all 0.5s ease;
}

.service-card:hover .service-images {
    transform: scale(1.15) rotate(5deg);
}

.service-card:hover .service-images img {
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15)) drop-shadow(0 30px 45px rgba(114, 12, 67, 0.25));
    transform: translateY(-5px);
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.15;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    opacity: 1;
    transform: scale(1.2);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: right;
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* --- VGIF SECTION --- */
.vgif-section-bg {
    background:
        linear-gradient(to right, #55052d 0%, #000000 15%, #2e041b 50%, #ffffff 75%, #ffffff 100%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0px, transparent 1px, transparent 60px);
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
}

.video-glow {
    position: absolute;
    inset: 50px;
    background: var(--primary-color);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
}


@media (max-width: 768px) {
    .video-play-overlay {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .video-mockup-frame {
        border-width: 4px;
    }
}

/* ==================== STATISTICS SECTION ==================== */
.stats-section {
    background:
        radial-gradient(ellipse at 0% 50%, rgba(114, 12, 67, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 50%, rgba(68, 10, 102, 0.06) 0%, transparent 55%),
        #f8f4f7;
    color: var(--text-primary);
}

/* Image shadow/glow effect */
.stats-network-img {
    width: 100%;
    border-radius: 1.25rem;
    display: block;
    filter:
        drop-shadow(0 20px 50px rgba(114, 12, 67, 0.35)) drop-shadow(0 6px 15px rgba(68, 10, 102, 0.2));
    transition: filter 0.4s ease, transform 0.4s ease;
}

.stats-network-img:hover {
    filter:
        drop-shadow(0 28px 70px rgba(114, 12, 67, 0.5)) drop-shadow(0 10px 25px rgba(68, 10, 102, 0.3));
    transform: translateY(-6px) scale(1.01);
}

.stat-card {
    background: linear-gradient(135deg, #720c43, #440a66);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(114, 12, 67, 0.35);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.stat-card:hover {
    background: linear-gradient(135deg, #5d0936, #35084e);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(114, 12, 67, 0.5);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: #ffc107;
    text-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.stat-label {
    font-size: 0.88rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
}

.counter {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
}

.counter-label {
    font-size: 0.88rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-secondary);
}

.section-title.text-white::after {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        /* Top Left Corner Shapes (Listed first to be ON TOP of dots) */
        linear-gradient(160deg, var(--primary-color) 11%, transparent 11.2%),
        linear-gradient(160deg, rgba(114, 12, 67, 0.9) 15%, transparent 15.2%),
        /* Bottom Right Corner Shapes (The multi-layered ribbons) */
        linear-gradient(-25deg, var(--secondary-color) 12%, transparent 12.2%),
        linear-gradient(-25deg, rgba(68, 10, 102, 0.9) 16%, transparent 16.2%),
        linear-gradient(-25deg, #e9ecef 22%, transparent 22.2%),
        linear-gradient(-25deg, #f8f9fa 28%, transparent 28.2%),
        /* Top Left Accent Stripe */
        linear-gradient(160deg, transparent 18%, rgba(0, 0, 0, 0.03) 18.1%, rgba(0, 0, 0, 0.03) 22%, transparent 22.1%),
        /* Big Gray Dot Pattern (Moved to bottom of stack) */
        radial-gradient(rgba(0, 0, 0, 0.06) 2.5px, transparent 0) 0 0 / 45px 45px,
        /* Overlapping offset large dots (Moved to bottom of stack) */
        radial-gradient(rgba(0, 0, 0, 0.1) 4px, transparent 0) 22px 22px / 90px 90px;
}

.pricing-section .container-lg {
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: radial-gradient(circle, rgba(163, 163, 163, 0.12) 1px, transparent 3px) 0 0 / 40px 40px,
        radial-gradient(circle, rgba(163, 163, 163, 0.12) 1px, transparent 3px) 210px 20px / 40px 40px,
        #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.btn-anchor {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
}

.btn-anchor:hover {
    background-color: #5d0936 !important;
    color: var(--white-color) !important;
    text-decoration: none !important;
}

.btn-anchor:active {
    background-color: var(--secondary-color) !important;
    color: var(--white-color) !important;
    text-decoration: none !important;
    transition: scale(1.1) !important;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-amount {
    margin: 1.5rem 0 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pricing-amount-row {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-right: 0.1rem;
}

.amount {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: 0.5px;
}

/* ---- GST Badge (Professional) ---- */
.gst {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.28rem 0.7rem;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(114, 12, 67, 0.1), rgba(68, 10, 102, 0.1));
    color: var(--primary-color);
    border: 1px solid rgba(114, 12, 67, 0.25);
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
    white-space: nowrap;
    margin-top: 1rem;
    align-self: flex-start;
}

.gst::before {
    content: '%';
    display: none;
}

.gst-icon {
    font-size: 0.7rem;
    color: var(--primary-color);
    opacity: 0.85;
}

/* Tooltip on hover showing GST breakup */
.gst-wrapper {
    position: relative;
    display: inline-block;
}

.gst-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    width: 200px;
    background: #1a0a2e;
    color: #fff;
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 0.78rem;
    line-height: 1.6;
    z-index: 100;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gst-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #1a0a2e;
}

.gst-tooltip .tooltip-row {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gst-tooltip .tooltip-row:last-child {
    border-bottom: none;
    font-weight: 700;
    color: #ffc107;
    padding-top: 0.4rem;
    margin-top: 0.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.gst-wrapper:hover .gst-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.gst-wrapper:hover .gst {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(114, 12, 67, 0.35);
}

.pricing-total-note {
    font-size: 0.78rem;
    color: #888;
    margin-top: 0.5rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pricing-total-note i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.pricing-features {
    flex-grow: 1;
    margin-top: 1.25rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.feature-check {
    width: 20px;
    height: 20px;
    color: var(--success-color);
    flex-shrink: 0;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin: auto;
}

.faq-main-img {
    width: 100%;
    height: 460px;
    max-width: 460px;
    border-radius: 100%;
    display: block;
    object-fit: contain;
    aspect-ratio: 1/1;
    animation: statBobble 3.5s ease-in-out infinite;

}

.faq-main-img:hover {
    transform: perspective(1000px) rotateY(10deg);

    transition: all 1s ease;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--white-color);
    color: var(--text-primary);
    font-weight: 500;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(114, 12, 67, 0.25);
}

.accordion-body {
    padding: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

@keyframes statBobble {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ==================== RANKINGS SECTION ==================== */
.rankings-section {
    background-color: transparent;
    background-image: url("./assets/bg-2.png");
    /* background-blend-mode: soft-light; */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ranking-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ranking-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.ranking-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.ranking-header i {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.ranking-header h4 {
    margin: 0;
    color: var(--text-primary);
}

.ranking-list {
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

.ranking-list li {
    color: var(--text-secondary);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

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

.ranking-list li::marker {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 3rem 0;
    position: relative;
    background-color: var(--light-color);
}

.get-in-touch-img {
    width: 60%;
    max-width: 500px;
    margin: 0 auto 0rem;
    display: block;
    border-radius: 1.5rem;
    position: relative;
    /* No longer absolute */
    z-index: 2;
    transition: all 0.5s ease;
}

.get-in-touch-img:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    background: #ffffff;
    padding: 1.25rem;
    border-radius: 1.25rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateX(4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    color: var(--white-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.text-contact {
    background: var(--gradient-main);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-label {
    /* color: var(--text-secondary); */
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
    display: block;
}

.contact-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0;
}

/* ==================== FOOTER SECTION ==================== */
.footer-section {
    background-image: url("./assets/footer-bg.png");
    background-blend-mode: soft-overlay;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: var(--white-color);
}

.footer-title {
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section p {
    color: #d3d3d3;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.815);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white-color);
    margin-left: 0.25rem;
}

/* ==================== Carousel ==================== */

.container-slider {
    position: relative;
    width: 100%;
    height: 650px;
    background: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
}

.container-slider .slide .item {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 50px;
    transform: none;
    border-radius: 10px;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    transition: all 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    transition: all .5s;
}

.slide .item:nth-child(3) {
    left: 50%;
}

.slide .item:nth-child(4) {
    left: calc(50% + 170px);
}

.slide .item:nth-child(5) {
    left: calc(50% + 340px);
}

.slide .item:nth-child(n + 6) {
    left: calc(50% + 160px);
    opacity: 0;
}

.item .content {
    position: relative;
    top: 50%;
    margin-left: 16%;
    width: 480px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
}

.slide .item:nth-child(2) .content {
    display: block;
}

.content .name {
    font-size: 6rem;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.95 !important;
    animation: animate 1s ease-in-out 1 forwards;
}

@media screen and (max-width: 1200px) {
    .container-slider {
        height: 500px;
    }

    .slide .item {
        width: 100px;
        height: 150px;
    }

    .slide .item:nth-child(3) {
        left: 55%;
    }

    .slide .item:nth-child(4) {
        left: calc(55% + 180px);
    }

    .slide .item:nth-child(5) {
        left: calc(55% + 360px);
    }

    .slide .item:nth-child(n + 6) {
        left: calc(55% + 540px);
    }

    .item .content {
        margin-left: 8%;
        width: 400px;
    }

    .content .name {
        font-size: 3.5rem;
    }

    .content .des {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 991px) {
    .container-slider {
        height: 400px;
    }

    .slide .item {
        width: 110px;
        height: 80px;
        bottom: 3px;
    }

    .slide .item:nth-child(3) {
        left: 40%;
    }

    .slide .item:nth-child(4) {
        left: calc(40% + 200px);
    }

    .slide .item:nth-child(5) {
        left: calc(40% + 100px);
    }

    .item .content {
        margin-left: -15% !important;
        width: 40%;
        top: 40%;   
    }

    .content .name {
        font-size: 2.2rem;
    }

    .content .des {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .container-slider {
        height: 380px;
    }

    .slide .item {
        width: 90px;
        height: 70px;
        bottom: 20px;
    }

    .slide .item:nth-child(3) {
        left: 20%;
    }

    .slide .item:nth-child(4) {
        left: calc(20% + 105px);
    }

    .slide .item:nth-child(5) {
        left: calc(20% + 210px);
    }

    .item .content {
        width: 90%;
        top: 30%;
    }

    .content .name {
        font-size: 1.8rem;
    }

    .content .des {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 576px) {
    .container-slider {
        height: 320px;
        margin-top: 1rem;
    }

    .slide .item {
        width: 70px;
        height: 55px;
        bottom: 15px;
    }

    .slide .item:nth-child(3) {
        left: 10%;
    }

    .slide .item:nth-child(4) {
        left: calc(10% + 85px);
    }

    .slide .item:nth-child(5) {
        left: calc(10% + 210px);
    }

    .item .content {
        width: 240px;
        margin-left: 10px;
    }

    .content .name {
        font-size: 1.8rem;
    }

    .content .des {
        font-size: 0.85rem;
    }
}

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-size: 1.8rem;
    opacity: 0.8 !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}


.content button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.673);
    transition: all 0.5s;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content button:hover {
    background-color: rgb(255, 255, 255);
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* ==================== MISSION & VISION SECTION ==================== */
.mission-vision-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #2e084e 0%, #720c43 50%, #440a66 100%);
    overflow: hidden;
    z-index: 1;
}

/* Background floating orbs for depth */
.mv-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    z-index: -1;
    animation: mvOrbFloat 15s ease-in-out infinite;
}

.mv-orb-1 {
    width: 300px;
    height: 300px;
    background: #ffc107;
    top: 10%;
    right: 5%;
}

.mv-orb-2 {
    width: 400px;
    height: 400px;
    background: #00d2ff;
    bottom: 10%;
    left: -5%;
    animation-delay: -5s;
}

@keyframes mvOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 40px) scale(1.1);
    }
}

/* Liquid waves at the bottom */
.mv-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: -1;
}

.mv-wave-1 {
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(0 60%, 20% 40%, 40% 65%, 60% 35%, 80% 55%, 100% 30%, 100% 100%, 0 100%);
}

.mv-wave-2 {
    background: rgba(255, 255, 255, 0.03);
    clip-path: polygon(0 75%, 25% 55%, 50% 80%, 75% 45%, 100% 70%, 100% 100%, 0 100%);
}

.mission-vision-section .section-title,
.mission-vision-section .vision-text,
.mission-vision-section h2,
.mission-vision-section h4,
.mission-vision-section p {
    color: #ffffff !important;
}

.vision-box {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2.5rem;
    padding: 3.5rem !important;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
}

.vision-box:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.8rem;
    padding: 2rem !important;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mission-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffc107;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #720c43, #440a66);
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffc107 !important;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.mission-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff !important;
}

.mission-detail-box {
    background: rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 5px solid #ffc107 !important;
    border-radius: 1.2rem;
    padding: 2.5rem !important;
    margin-top: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.mission-detail-box:hover {
    transform: perspective(1000px) rotateX(2deg);
}

/* ==================== B2B SECTION ==================== */
.b2b-section {
    background-repeat: no-repeat;
    position: relative;
    background:
        repeating-linear-gradient(60deg,
            rgba(192, 192, 192, 0.05) 0px,
            rgba(192, 192, 192, 0.05) 2px,
            transparent 2px,
            transparent 20px),
        repeating-linear-gradient(-60deg,
            rgba(192, 192, 192, 0.05) 0px,
            rgba(192, 192, 192, 0.05) 2px,
            transparent 2px,
            transparent 20px),
        linear-gradient(135deg, #fffefe, #f7f4f4 60%, #35084e 100%);
    background-size: 400% 400%, cover;
    background-position: 0% 50%, center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
}

.b2b-card {
    background:
        radial-gradient(circle, rgba(163, 163, 163, 0.12) 1px, transparent 3px) 0 0 / 40px 40px,
        radial-gradient(circle, rgba(163, 163, 163, 0.12) 1px, transparent 3px) 20px 20px / 40px 40px,
        #ffffff;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.b2b-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(114, 12, 67, 0.1);
    border-color: rgba(114, 12, 67, 0.2);
}

.b2b-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(213, 13, 253, 0.08), rgba(225, 13, 253, 0.02));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.b2b-card-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
}

.b2b-list li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.bg-primary-soft {
    background-color: rgba(114, 12, 67, 0.08);
}

.bg-success-soft {
    background-color: rgba(40, 167, 69, 0.08);
}

/* ==================== SLIDER COMPANY PARTNER CSS ==================== */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 11));
        /* 11 partners x 250px */
    }
}

/* Styling */
.slider {
    background: #FFFFFF;
    /* box-shadow: 0 1px 10px -5px rgba(0, 0, 0, 0.125); */
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1290px;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(200px * 22);
    /* 11 items * 2 = 22 slides */
}

.slider .slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.slider .slide img {
    height: 50px;
    /* Uniform height for same-size look */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.4s ease;
}

.slider .slide:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}


/* ==================== APP DOWNLOAD CTA SECTION ==================== */
.app-cta-section {
    background: transparent;
}

.app-cta-card {
    position: relative;
    background: linear-gradient(135deg, #720c43 0%, #5a0a35 40%, #440a66 100%);
    border-radius: 2rem;
    padding: 4rem 3rem;
    overflow: hidden;
    box-shadow: 0 30px 180px rgba(114, 12, 67, 0.35);
}

/* Decorative blobs */
.app-cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(0px);
    pointer-events: none;
    opacity: 0.18;
}

.app-cta-blob-1 {
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.12);
    top: -120px;
    left: -80px;
    clip-path: ellipse(55% 70% at 40% 40%);
    border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
}

.app-cta-blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    bottom: -100px;
    right: -60px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.app-cta-blob-3 {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    top: 30%;
    right: 15%;
    border-radius: 50%;
}

.app-cta-content {
    position: relative;
    z-index: 2;
}

.app-cta-eyebrow {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.app-cta-heading {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.app-cta-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto 2.5rem;
}

.app-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #0d0d0d;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.6rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    min-width: 160px;
}

.app-store-btn:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.app-btn-icon {
    font-size: 2rem;
    color: #ffffff;
    flex-shrink: 0;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-btn-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 2px;
}

.app-btn-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .app-cta-card {
        padding: 3rem 1.5rem;
        border-radius: 1.25rem;
    }

    .app-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-store-btn {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }
}

/* ==================== SCROLL TO TOP BUTTON ==================== */

.scroll-top-btn1 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.scroll-top-btn1.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn1:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}


/* =================== TESTIMONIALS CSS =================== */
.testimonials-section {
    background: #ffffff;
    margin: 10px auto !important;
}

/* Carousel wrapper */
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Carousel list */
.carousel {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    list-style: none;
    animation: scroll 22s linear infinite;
}

/* Pause on hover */
.carousel-wrapper:hover .carousel {
    animation-play-state: paused;
}

/* Easter Card Style */
.card {
    min-width: 280px;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 1px 10px rgba(114, 12, 67, 0.1);
    border: 1px solid rgba(114, 12, 67, 0.05);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 14px rgba(114, 12, 67, 0.2);
}

/* Image styling */
.img-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid rgba(114, 12, 67, 0.2);
}

.img-wrapper img {
    width: 100%;
}

/* Carousel infinite scroll */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.carousel {
    animation: scroll 20s linear infinite;
}

.carousel::after {
    content: "";
    flex-shrink: 0;
    /* width: calc(280px * 10 + 2rem * 10);  */
}


/* ==================== RESPONSIVE DESIGN ==================== */
/* Consolidated Responsive Design at the bottom or via specific blocks above */
@media (max-width: 991px) {
    .navbar.navbar-scrolled .brand-logo {
        height: 45px;
        width: 120px;
    }

    .navbar-collapse {
        margin-top: 1rem;
    }

    .hero-section {
        padding: 5rem 0 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust-row {
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .hero-section {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .contact-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .faq-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .section-text {
        text-align: justify;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .counter {
        font-size: 2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .ranking-card {
        padding: 1.5rem 1rem;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-section {
        padding: 2rem 0.5rem;
    }

    .faq-main-img {
        margin: auto;
        width: 100%;
        height: 100%;
        max-width: 300px;
        max-height: 300px;
    }

    .footer-section {
        padding: 2rem 1rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-item:hover {
        transform: translateX(0.5px);
    }

    .section-text {
        text-align: justify;
    }

    .about-section {
        padding: 25px 0;
    }

    .about-content-card {
        margin-top: 0rem;
    }

    .services-section {
        padding: 25px 0;
    }

    .service-card {
        width: 90%;
        margin: auto;
        height: 100%;
    }


    .service-card:hover {
        transform: translateY(-6px) scale(1.02);
    }

    .service-images {
        width: 110px;
        height: 110px;
        margin-bottom: 0.8rem;
    }

    .service-card:hover .service-images {
        transform: scale(1.1) rotate(2deg);
    }

    .slider .slide-track {
        width: calc(160px * 22);
        /* 11 items * 2 = 22 slides */
    }

    .stats-section {
        padding: 25px 10px;
    }

    .stats-network-img {
        display: none;
    }

    .pricing-amount {
        margin-top: 2px;
    }

    .pricing-card {
        margin: 0 10px;
    }

    .pricing-card:hover {
        transform: translateY(-6px) scale(1.02);
    }

    .download-app-img-wrapper {
        padding: 0 10px !important;
    }

    .app-heading {
        font-size: 26px !important;
    }

    .app-phone-img {
        max-width: 500px;
        max-height: 500px;
        margin: 0;
    }

    .vision-box {
        padding: 1.4rem !important;
        margin: 0 10px;
    }

    .vision-text {
        font-size: 16px !important;
    }

    .top-retailers {
        font-size: 22px !important;
        margin: auto;
    }

    .accordion-body {
        font-size: 0.9rem !important;
    }

    .contact-value {
        font-size: 0.9rem !important;
    }

    .contact-form-section {
        font-size: 0.9rem !important;
    }

    .pricing-section::before {
        background: #fff5fa !important;
    }

    /* ==================== UTILITY CLASSES ==================== */
    .text-primary {
        color: var(--primary-color) !important;
    }

    .text-success {
        color: var(--success-color) !important;
    }

    .bg-light {
        background-color: var(--light-color) !important;
    }

    .bg-primary {
        background-color: var(--primary-color) !important;
    }

    .shadow {
        box-shadow: var(--shadow-md) !important;
    }

    .shadow-sm {
        box-shadow: var(--shadow-sm) !important;
    }

    .shadow-lg {
        box-shadow: var(--shadow-lg) !important;
    }

    .rounded-3 {
        border-radius: 1rem !important;
    }

    .gap-3 {
        gap: 1rem !important;
    }

    .gap-4 {
        gap: 1.5rem !important;
    }

    .fw-bold {
        font-weight: 700 !important;
    }

    /* ==================== ANIMATIONS ==================== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .fade-in-up {
        animation: fadeInUp 0.6s ease;
    }

    .slide-in-right {
        animation: slideInRight 0.6s ease;
    }

}

/* ==================== DOWNLOAD APP SECTION ==================== */
.download-app-section {
    background:
        radial-gradient(ellipse at 80% 50%, rgba(114, 12, 67, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(68, 10, 102, 0.10) 0%, transparent 50%),
        #ffffff;
    position: relative;
    overflow: hidden;
}

.download-app-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(114, 12, 67, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Badge */
.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(114, 12, 67, 0.1), rgba(68, 10, 102, 0.1));
    border: 1px solid rgba(114, 12, 67, 0.25);
    color: var(--primary-color);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.app-badge i {
    font-size: 0.9rem;
}

/* Heading */
.app-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.app-heading-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-subtext {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Feature Pills */
.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.app-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f8f9fa;
    border: 1px solid rgba(114, 12, 67, 0.15);
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.app-pill:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(114, 12, 67, 0.25);
}

.app-pill i {
    font-size: 0.78rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.app-pill:hover i {
    color: #fff;
}

/* Store Badge Buttons */
.app-store-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.store-badge-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.store-badge-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(114, 12, 67, 0.3);
}

.store-badge-link:hover .store-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Card Container */
.store-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 0.6rem 1.2rem 0.6rem 0.7rem;
    min-width: 155px;
    transition: background 0.3s ease;
}

.store-card:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition-duration: 1.5s;
}

/* Image fills a fixed square box */
.store-card-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    border-radius: 0.35rem;
    background: transparent;
}

/* Text labels */
.store-card-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-card-label {
    font-size: 0.58rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.store-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

/* Phone Image Wrapper */
.app-img-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.app-img-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(114, 12, 67, 0.2) 0%, rgba(68, 10, 102, 0.12) 50%, transparent 80%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 0;
    animation: appGlowPulse 4s ease-in-out infinite;
}

@keyframes appGlowPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

.app-phone-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 30px 60px rgba(114, 12, 67, 0.2));
    animation: appPhoneFloat 5s ease-in-out infinite;
}

@keyframes appPhoneFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Floating Stat Badges */
.app-float-stat {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    border-radius: 0.85rem;
    padding: 0.65rem 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(114, 12, 67, 0.1);
    animation: statBobble 3.5s ease-in-out infinite;
}

.app-float-stat-1 {
    top: 5%;
    left: 15.5rem;
    animation-delay: 0s;
}

.app-float-stat-2 {
    bottom: 15%;
    right: -10px;
    animation-delay: 1.5s;
}

@keyframes statBobble {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.app-float-stat i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.app-stat-val {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.app-stat-lbl {
    display: block;
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 991px) {
    .app-float-stat-1 {
        left: 10px;
        top: 5%;
    }

    .app-float-stat-2 {
        right: 10px;
        bottom: 5%;
    }

    .app-phone-img {
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .app-store-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .store-card {
        min-width: 140px;
    }

    .app-float-stat {
        display: none;
    }
}