:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --accent-color: #FF7B54;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --muted-color: #64748B;
    --white: #ffffff;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --transition: all 0.3s ease;
}

/* Global Bootstrap Overrides for Primary Color */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease forwards;
}

/* Typography */
.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}


/* Navbar */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    animation: navSlideDown 0s ease forwards;
}

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    position: relative;
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 21px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.btn-login-header {
    border: 1px solid #dcdbff;
    color: #000;
    height: 48px;
    min-width: 140px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-login-header:hover {
    background: #f8f7ff;
    border-color: #5d5cff;
    color: #5d5cff;
}

.btn-signup-header {
    background: #5d5cff;
    color: #ffffff;
    height: 48px;
    min-width: 140px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 4px 12px rgba(93, 92, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.btn-signup-header:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(93, 92, 255, 0.3);
    color: #ffffff;
}


/* Hero Section */
.hero-section {
    padding: 160px 0 140px;
    background: #f8f7ff;
    position: relative;
    overflow: hidden;
}

.hero-blob-1 {
    position: absolute;
    top: 5%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(93, 92, 255, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.hero-blob-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(93, 92, 255, 0.08) 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.bg-dots-pattern {
    position: absolute;
    top: 100px;
    left: 5%;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#5d5cff 1.5px, transparent 1.5px);
    background-size: 25px 25px;
    opacity: 0.1;
    z-index: 0;
}

.hero-tag {
    color: #5d5cff;
    font-weight: 800;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    text-transform: uppercase;
}

.hero-title {
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 550px;
    line-height: 1.6;
}

.btn-hero-primary {
    background: #5d5cff;
    color: #ffffff;
    height: 56px;
    min-width: 200px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(93, 92, 255, 0.3);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: #4f46e5;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(93, 92, 255, 0.4);
    color: #ffffff;
}

.btn-hero-outline {
    color: #5d5cff;
    height: 56px;
    min-width: 200px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: 1.5px solid #5d5cff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}


.btn-hero-outline:hover {
    background: rgba(93, 92, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(93, 92, 255, 0.1);
    color: #5d5cff;
}

.hero-social-proof {
    margin-top: 2.5rem;
}

.hero-social-proof span {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0px;
}

.hero-social-proof i {
    font-size: 1.25rem;
    color: #5d5cff;
}

/* Hero Visuals */
.hero-visual-wrapper {
    position: relative;
    z-index: 1;
}

.hero-combined-img {
    width: 100%;
    max-width: 800px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
    animation: fadeInUp 1s ease, float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Stats Bar Section */
.stats-bar-section {
    margin-top: -70px;
    position: relative;
    z-index: 10;
    padding-bottom: 0px;
}

.stats-card-main {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-item-v4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 5px 0;
}



.stat-icon-v4 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item-v4:hover .stat-icon-v4 {
    transform: scale(1.1) rotate(5deg);
}

.stat-content-v4 h6 {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
}

.stat-content-v4 p {
    margin-top: 9px;
    margin-bottom: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.3;
    font-weight: 500;
}



/* Double Circle Icons */
.stat-icon-outer {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-icon-inner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-item-v4:hover .stat-icon-inner {
    transform: scale(1.1);
}

.stat-item-v4:hover .stat-icon-outer {
    transform: translateY(-2px);
}

/* Color Variations */
.bg-purple-light {
    background: #f0efff;
}

.bg-purple-solid {
    background: #5d5cff;
}

.bg-pink-light {
    background: #fff1f3;
}

.bg-pink-solid {
    background: #f43f5e;
}

.bg-green-light {
    background: #f0fdf4;
}

.bg-green-solid {
    background: #22c55e;
}

.bg-orange-light {
    background: #fff7ed;
}

.bg-orange-solid {
    background: #f97316;
}

.bg-blue-light {
    background: #eff6ff;
}

.bg-blue-solid {
    background: #3b82f6;
}





/* Services Section */
.services-section {
    /* padding: 50px 0; */
    /* background-color: var(--light-color); */
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 17px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid #eee;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #dcdcdc;
}

.service-card h5 {
    font-size: 20px;
}



.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    max-width: 165px;
    font-size: 13px;
    line-height: 1.4;
    margin: 0px;
    padding: 0px;
    font-weight: 500;
}

.service-list {
    margin-top: 1rem;
    margin-bottom: 0px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-list li:last-child {
    margin-bottom: 0px !important;
}

.service-list li i {
    font-size: 0.8rem;
}

@media(max-width : 1400px) {
    .service-card h5 {
        font-size: 16px;
    }

    .service-icon-box {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }

    .service-card {
        padding: 22px;
    }
}

/* Service Vibrant Colors */
.bg-purple-vibrant {
    background: #5d5cff;
}

.bg-green-vibrant {
    background: #22c55e;
}

.bg-blue-vibrant {
    background: #3b82f6;
}

.bg-orange-vibrant {
    background: #f97316;
}

.bg-pink-vibrant {
    background: #f43f5e;
}

.bg-navy-vibrant {
    background: #4f46e5;
}

.bg-teal-vibrant {
    background: #06b6d4;
}

.bg-blue-deep-vibrant {
    background: #2563eb;
}

/* =========== */

.text-purple-vibrant {
    color: #5d5cff;
}

.text-green-vibrant {
    color: #22c55e;
}

.text-blue-vibrant {
    color: #3b82f6;
}

.text-orange-vibrant {
    color: #f97316;
}

.text-pink-vibrant {
    color: #f43f5e;
}

.text-navy-vibrant {
    color: #4f46e5;
}

.text-teal-vibrant {
    color: #06b6d4;
}

.text-blue-deep-vibrant {
    color: #2563eb;
}


/* Partner Section */
.partners-section {
    /* padding: 50px 0; */
}


.partner-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.partner-slider::before,
.partner-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partner-slider::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.partner-slider::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.partner-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-horizontal 40s linear infinite;
}

.partner-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

.partner-card {
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 80px;
    transition: var(--transition);
}

.partner-card img {
    max-height: 50px;
    max-width: 100%;
    transition: var(--transition);
}

.partner-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-color);
}


.more-badge {
    background: #f5f3ff;
    border-color: #e5e7eb;
    line-height: 1.2;
}


/* Features Section */
.features-section {
    /* padding: 50px 0; */
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item-v2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon-v3 {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Soft Colors */
.bg-purple-soft {
    background: #f5f3ff;
}

.bg-blue-soft {
    background: #eff6ff;
}

.bg-orange-soft {
    background: #fff7ed;
}

.bg-cyan-soft {
    background: #ecfeff;
}

.bg-pink-soft {
    background: #fff1f2;
}

.bg-green-soft {
    background: #f0fdf4;
}

/* Steps Section Refined */
.steps-section {
    padding: 0;

}

.steps-wrapper {
    position: relative;
    /* padding: 2rem 0; */
}

.step-line-dashed {
    position: absolute;
    top: 75px;
    left: 10%;
    right: 10%;
    height: 1px;
    border-top: 2px dashed rgba(148, 163, 184, 0.3);
    z-index: 1;
}

.step-icon-wrapper {
    margin: 0 auto;
    width: fit-content;
    position: relative;
    z-index: 2;
}

.step-icon-outer {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.step-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

/* Vibrant Inner Colors */
.bg-purple-vibrant {
    background: #8b5cf6;
}

.bg-green-vibrant {
    background: #22c55e;
}

.bg-orange-vibrant {
    background: #f97316;
}

.bg-blue-vibrant {
    background: #3b82f6;
}

.bg-pink-vibrant {
    background: #f43f5e;
}

/* Soft Outer Colors (Applying opacity) */
.bg-purple-soft {
    background: rgba(139, 92, 246, 0.1) !important;
    border-color: rgba(139, 92, 246, 0.2);
}

.bg-green-soft {
    background: rgba(34, 197, 94, 0.1) !important;
    border-color: rgba(34, 197, 94, 0.2);
}

.bg-orange-soft {
    background: rgba(249, 115, 22, 0.1) !important;
    border-color: rgba(249, 115, 22, 0.2);
}

.bg-blue-soft {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.2);
}

.bg-pink-soft {
    background: rgba(244, 63, 94, 0.1) !important;
    border-color: rgba(244, 63, 94, 0.2);
}


.step-number-small {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
    opacity: 0.7;
}

/* CTA Banner V2 */
.cta-banner-v2 {
    background: #4A3EE1;
    border-radius: 20px;
    padding: 3rem 5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-boxes-img {
    position: absolute;
    right: -88px;
    bottom: -60px;
    z-index: 1;
    opacity: 0.9;
}

/* Trust Bar V3 */
.trust-bar-v3 {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
}

.trust-item-v3 {
    border-right: 1px solid #f1f5f9;
    padding: 1.5rem 0;
}

.trust-icon-v3 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    color: #6366f1;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Guarantee Card V2 */
.guarantee-card-v2 {
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}



.guarantee-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1) !important;
    border-color: rgba(139, 92, 246, 0.2);
    color: #4f46e5;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.1);
}

.floating-shield-v2 {
    position: absolute;
    bottom: 0px;
    right: 2px;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #4f46e5, #818cf8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    animation: float-slow 4s ease-in-out infinite;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-item-v2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon-v3 {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item-v2:hover .stat-icon-v3 {
    transform: scale(1.1) rotate(5deg);
}

/* Testimonial & FAQ Section */

.trust-card,
.testimonial-card,
.stats-card-v2 {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -12px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.quote-icon {
    font-size: 2rem;
    color: #e2e8f0;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
}

.stat-icon-sm {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Custom FAQ Accordion */
.custom-faq-accordion .accordion-item {
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.custom-faq-accordion .accordion-button {
    background-color: transparent !important;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.25rem;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
}

/* Custom icon for accordion button */
.custom-faq-accordion .accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
    color: var(--primary-color);
}

.custom-faq-accordion .accordion-body {
    padding: 1.25rem;
    color: #64748b;
    font-size: 0.9rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.mock-chart {
    height: 80px;
    margin: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

/* Responsive Device Tweaks */
@media (max-width: 991px) {
    .phone-mockup {
        width: 30%;
        right: 0;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .cta-banner-v2 {
        padding: 50px;
    }

    .cta-banner-v2 h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 100px 0;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Footer Styling */
.footer-dark {
    background-color: #0b1121;
    color: #cbd5e1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon-circle:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-contact li {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

.my-float {
    margin-top: 2px;
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* ======================================== aboutus page design */

.about-hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #FCFBFD 30%,
            #F7F7FE 70%,
            #F6F6FD 100%);
}

.about-office-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.about-hero-visual-wrapper {
    position: relative;
    padding: 20px;
}

.hero-blob-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: #f3f4ff;
    border-radius: 30px;
    z-index: 1;
}

.mission-card-v2 {
    position: absolute;
    bottom: -40px;
    right: 10%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 30px;
    max-width: 380px;
    z-index: 10;
}

.mission-icon-v2 {
    width: 50px;
    height: 50px;
    background: #6366f1;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(99, 102, 241, 0.3);
}

.check-icon-v2 {
    width: 28px;
    height: 28px;
    background: #6366f1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Stat Cards */
.about-stat-card {
    border-radius: 15px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    gap: 27px;
    padding: 35px 25px;
}

.card-purple {
    background-color: #f5f3ff;
}

.card-purple .stat-icon-large {
    color: #8b5cf6;
}

.card-green {
    background-color: #f0fdf4;
}

.card-green .stat-icon-large {
    color: #22c55e;
}

.card-orange {
    background-color: #fffaf0;
}

.card-orange .stat-icon-large {
    color: #f97316;
}

.card-blue {
    background-color: #f0f9ff;
}

.card-blue .stat-icon-large {
    color: #3b82f6;
}

.stat-icon-large {
    font-size: 2.2rem;
}


/* What We Do Cards V3 (Horizontal) */
.do-card-v3 {
    background: white;
    border-radius: 13px;
    padding: 28px 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.do-card-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.do-icon-v3 {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.icon-purple {
    background-color: #6366f1;
    color: white;
}

.icon-green {
    background-color: #22c55e;
    color: white;
}

.icon-orange {
    background-color: #f97316;
    color: white;
}

.icon-blue {
    background-color: #3b82f6;
    color: white;
}

/* Why Beyond Section */
.check-icon-v3 {
    width: 24px;
    height: 24px;
    background: #6366f1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.beyond-visual-container {
    padding: 40px;
}

.laptop-illustration-wrapper {
    position: relative;
    z-index: 1;
}

.laptop-img-main {
    border-radius: 20px;
}

.float-tag {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.tag-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.bg-purple-vibrant {
    background: #8b5cf6;
}

.bg-orange-vibrant {
    background: #f97316;
}

.bg-teal-vibrant {
    background: #14b8a6;
}

.bg-blue-vibrant {
    background: #3b82f6;
}

/* Position Tags */
.tag-lowest-rates {
    top: 20%;
    left: -10%;
}

.tag-faster-cod {
    bottom: 20%;
    left: -8%;
}

.tag-realtime-tracking {
    top: 15%;
    right: -12%;
}

.tag-support-247 {
    bottom: 15%;
    right: -10%;
}

/* Team Section V3 (Horizontal) */
.team-card-v3 {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-card-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.linkedin-icon-v3 {
    color: #0077b5;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.linkedin-icon-v3:hover {
    color: #005a8a;
    transform: scale(1.1);
}

/* Testimonials Section V2 */
.about-testimonial-card-v2 {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.about-testimonial-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.about-testimonial-card-v2 img {
    height: 40px;
    width: 40px;
    object-fit: cover;
}

.testimonial-card img {
    height: 40px;
    width: 40px;
    object-fit: cover;
}


.presence-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    color: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-banner-v2 {
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.cta-banner-v2 .btn-white:hover {
    background: #f8fafc !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-banner-v2 .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Testimonial Cards About */
.about-testimonial-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.extra-small {
    font-size: 0.7rem;
}

.opacity-20 {
    opacity: 0.2;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}

@media (max-width: 991px) {
    .about-hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }

    .mission-card-float {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 20px auto 0;
    }
}

/* ==================================== policy page css */

.legal-hero {
    padding: 160px 0 80px;
    background: radial-gradient(circle at 100% 0%, #f0f4ff 0%, #ffffff 50%);
    text-align: center;
}

.legal-content-section {
    padding-bottom: 100px;
    background-color: #fcfdfe;
}

.legal-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.legal-card h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.legal-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.legal-card p,
.legal-card li {
    color: var(--muted-color);
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-card ul {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

.legal-card li {
    margin-bottom: 0.75rem;
    position: relative;
}

.legal-card li::marker {
    color: var(--primary-color);
}

.last-updated {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 30px;
    }

    .legal-card h2 {
        font-size: 1.5rem;
    }
}

/* ======================================== services page design */

/* Services Hero V3 */
.hero-services-v3 {
    padding: 140px 80px;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #FCFBFD 30%,
            #F7F7FE 70%,
            #F6F6FD 100%);
    position: relative;
    overflow: hidden;
}

.hero-tag-v3 {
    color: #4F39E4;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title-v3 {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 25px;
}

.hero-title-v3 .highlight-blue {
    color: #4F39E4;
}

.hero-desc-v3 {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-features-v3 {
    display: flex;
    gap: 30px;
}

.feature-item-v3 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon-v3 {
    width: 38px;
    height: 38px;
    background: #f1f0ff;
    color: #4F39E4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-v3.icon-blue {
    background: #e0f2fe;
    color: #0ea5e9;
}

.feature-icon-v3.icon-purple {
    background: #f5f3ff;
    color: #8b5cf6;
}

.feature-text-v3 {
    display: flex;
    flex-direction: column;
}

.feature-text-v3 .f-title {
    font-weight: 700;
    font-size: 13px;
    color: #1e293b;
    line-height: 1.2;
}

.feature-text-v3 .f-sub {
    font-size: 12px;
    color: #64748b;
}

/* Visual Container */
.hero-visual-v3 {
    position: relative;
    padding-left: 20px;
}

.world-map-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 110%;
    height: 120%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/4/41/World_map_blank_without_borders.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04;
    z-index: 1;
}

.logistic-assets {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-assets-img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

/* Dashboard Card Mockup */
.dashboard-card-v3 {
    position: absolute;
    top: 10%;
    right: -20px;
    width: 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 1px solid #f1f5f9;
}

.card-title-v3 {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.stats-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.stat-box-v3 {
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.stat-label {
    font-size: 9px;
    color: #64748b;
    display: block;
}

.stat-val {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.stat-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
}

.stat-line.purple {
    background: #8b5cf6;
}

.stat-line.orange {
    background: #f97316;
}

.stat-line.green {
    background: #22c55e;
}

.stat-line.red {
    background: #ef4444;
}

.delivery-status-v3 {
    background: #f0fdf4;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.status-icon-check {
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-info {
    display: flex;
    flex-direction: column;
}

.status-text {
    font-size: 11px;
    font-weight: 700;
    color: #166534;
}

.awb-text {
    font-size: 9px;
    color: #166534;
    opacity: 0.8;
}

.card-footer-v3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.awb-footer {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
}

.btn-track-v3 {
    background: #4F39E4;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    padding: 6px 12px;
}

@media (max-width: 1200px) {
    .dashboard-card-v3 {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-services-v3 {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-title-v3 {
        font-size: 40px;
    }

    .hero-desc-v3 {
        margin: 0 auto 40px;
    }

    .hero-features-v3 {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual-v3 {
        margin-top: 50px;
    }
}


/* WHAT WE OFFER Section V4 */
.offer-card-v4 {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.offer-card-v4:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.offer-icon-v4 {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.offer-title-v4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.offer-desc-v4 {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 10px;
}

.offer-list-v4 {
    list-style: none;
    padding: 0;
    margin-bottom: 5px;
    flex-grow: 1;
}

.offer-list-v4 li {
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.offer-list-v4 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.offer-link-v4 {
    color: #4F39E4;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.offer-link-v4:hover {
    gap: 12px;
    color: #3b28b5;
}

/* Color Variants */
.bg-purple {
    background: #8b5cf6;
}

.list-purple li::before {
    background: #8b5cf6;
}

.border-purple:hover {
    border-color: #8b5cf6;
}

.bg-green {
    background: #22c55e;
}

.list-green li::before {
    background: #22c55e;
}

.border-green:hover {
    border-color: #22c55e;
}

.bg-blue {
    background: #3b82f6;
}

.list-blue li::before {
    background: #3b82f6;
}

.border-blue:hover {
    border-color: #3b82f6;
}

.bg-orange {
    background: #f97316;
}

.list-orange li::before {
    background: #f97316;
}

.border-orange:hover {
    border-color: #f97316;
}

.bg-pink {
    background: #ec4899;
}

.list-pink li::before {
    background: #ec4899;
}

.border-pink:hover {
    border-color: #ec4899;
}

.bg-indigo {
    background: #6366f1;
}

.list-indigo li::before {
    background: #6366f1;
}

.border-indigo:hover {
    border-color: #6366f1;
}

.bg-teal {
    background: #14b8a6;
}

.list-teal li::before {
    background: #14b8a6;
}

.border-teal:hover {
    border-color: #14b8a6;
}

.bg-lightblue {
    background: #0ea5e9;
}

.list-lightblue li::before {
    background: #0ea5e9;
}

.border-lightblue:hover {
    border-color: #0ea5e9;
}


/* Business Serve Section V5 */
.business-serve-section {
    background: #ffffff;
}

.business-card-v5 {
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.09);
    border: 1px solid #f2f2f2;
}



.card-header-v5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-title-v5 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.card-badge-v5 {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.card-desc-v5 {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 85%;
}

.card-list-v5 {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.card-list-v5 li {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #1e293b;
}

.card-list-v5 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.card-link-v5 {
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.card-img-v5 {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 200px;
    z-index: 1;
    pointer-events: none;
}

.card-img-v5 img {
    width: 90%;
    height: auto;
    display: block;
}

/* Theme Variants */
.b2c-theme {
    background: #f5f3ff;
}

.b2c-theme .card-title-v5 {
    color: #5d5cff;
}

.b2c-theme .card-badge-v5 {
    background: #5d5cff;
}

.b2c-theme .card-list-v5 li::before {
    background: #5d5cff;
}

.b2c-theme .card-link-v5 {
    color: #5d5cff;
}

.b2b-theme {
    background: #f0fdf4;
}

.b2b-theme .card-title-v5 {
    color: #22c55e;
}

.b2b-theme .card-badge-v5 {
    background: #22c55e;
}

.b2b-theme .card-list-v5 li::before {
    background: #22c55e;
}

.b2b-theme .card-link-v5 {
    color: #22c55e;
}

.ftl-theme {
    background: #fff7ed;
}

.ftl-theme .card-title-v5 {
    color: #f97316;
}

.ftl-theme .card-badge-v5 {
    background: #f97316;
}

.ftl-theme .card-list-v5 li::before {
    background: #f97316;
}

.ftl-theme .card-link-v5 {
    color: #f97316;
}

@media (max-width: 991px) {
    .card-img-v5 {
        width: 150px;
        opacity: 0.6;
    }
}


.btn-learn-more {
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: var(--transition);
}

.card-b2c .btn-learn-more {
    background: var(--primary-color);
    color: white;
}

.card-b2b .btn-learn-more {
    background: #22C55E;
    color: white;
}

.card-ftl .btn-learn-more {
    background: #F97316;
    color: white;
}

.solution-img-wrapper {
    position: absolute;
    right: -20px;
    bottom: -10px;
    width: 55%;
}

.solution-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.service-card-v3 {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    border: 1px solid #f3f4f6;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card-v3:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon-v3 {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.service-card-v3 p {
    font-size: 0.9rem;
    color: var(--muted-color);
    line-height: 1.6;
    margin: 10px 0;
}

.service-card-v3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card-v3 ul li {
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-card-v3 ul li i {
    font-size: 7px;
}

.stats-container-v3 {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f8f9fa;
}

.stat-item-v3 {
    text-align: center;
    border-right: 1px solid #eee;
}

.stat-icon-v3-simple {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.stat-item-v3 h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.stat-item-v3 p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted-color);
}

.steps-row-v3 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.steps-row-v3::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed #e2e8f0;
    z-index: 1;
}

.step-card-v3 {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-icon-v3 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.4rem;
    background: white;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.step-card-v3:nth-child(1) .step-icon-v3 {
    background-color: #F5F3FF;
    color: #7C3AED;
    border: 1px solid #7C3AED;
}

.step-card-v3:nth-child(2) .step-icon-v3 {
    background-color: #F0FDF4;
    color: #16A34A;
    border: 1px solid #16A34A;
}

.step-card-v3:nth-child(3) .step-icon-v3 {
    background-color: #FFF7ED;
    color: #EA580C;
    border: 1px solid #EA580C;
}

.step-card-v3:nth-child(4) .step-icon-v3 {
    background-color: #EFF6FF;
    color: #2563EB;
    border: 1px solid #2563EB;
}

.step-card-v3:nth-child(5) .step-icon-v3 {
    background-color: #F5F3FF;
    color: #7C3AED;
    border: 1px solid #7C3AED;
}

.step-number-v3 {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.step-card-v3 h6 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step-card-v3 p {
    font-size: 0.85rem;
    color: var(--muted-color);
    line-height: 1.5;
    padding: 0 10px;
}

.trust-card-v3 {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.logo-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.logo-box-v3 {
    background: white;
    border: 1px solid #f1f5f9;
    padding: 15px 5px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #475569;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.quote-icon-v3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-card-v3 p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
}

.avatar-v3 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-footer-v3 h6 {
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonial-footer-v3 small {
    color: var(--muted-color);
    font-size: 0.8rem;
}

.stars-v3 {
    color: #fbbf24;
    font-size: 0.8rem;
    display: flex;
    gap: 4px;
}

.cta-banner-v3 {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 24px;
    padding: 50px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.cta-box-img-v3 {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.btn-cta-white {
    background: white;
    color: #4f46e5;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
}

.btn-cta-white:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

@media (min-width: 992px) {
    .col-lg-2-5 {
        flex: 0 0 22.22%;
        max-width: 22.22%;
    }
}

.testimonial-slider-wrapper {
    position: relative;
    padding: 0;
}

.testimonialSwiper {
    padding: 10px 0 !important;
}

.swiper-button-next-v3,
.swiper-button-prev-v3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.swiper-button-next-v3:hover,
.swiper-button-prev-v3:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(93, 92, 255, 0.3);
}

.swiper-button-next-v3 {
    right: -25px;
}

.swiper-button-prev-v3 {
    left: -25px;
}

.testimonial-card-v3 {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.testimonial-card-v3:hover {
    transform: translateY(-5px);
}

/* ======================================== contact page design */

.contact-hero-v3 {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4ff 100%);
    position: relative;
    padding: 140px 0 100px;
}

.feature-card {
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #EEF2FF;
    color: #4F46E5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-form-card {
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9) !important;
}

.info-card {
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08) !important;
    border-color: #EEF2FF;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto;
}

.hover-border:hover {
    border-color: var(--primary-color) !important;
}

.cta-agent-img {
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}

.cta-banner-v3:hover .cta-agent-img {
    transform: scale(1.05) translateY(-5px);
}

.cta-btn-v3 {
    transition: all 0.3s ease;
    border-width: 2px;
}

.cta-btn-v3:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-shape-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.cta-shape-2 {
    position: absolute;
    bottom: -30px;
    left: 20%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 1;
}

/* Legal Pages Styles */
.legal-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.legal-content-section {
    padding: 80px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.legal-card {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.legal-card h2 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.legal-card p {
    color: var(--muted-color);
    margin-bottom: 1.2rem;
}

.legal-card ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.legal-card li {
    color: var(--muted-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

/* Contact Page Enhancements */
.feature-highlight {
    padding: 10px;
    transition: var(--transition);
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: #f0f4ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.info-bar-v3 {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    gap: 20px;
}

.info-item-v3 {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    padding-right: 20px;
}

.info-item-v3:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: #e2e8f0;
}

.info-icon-v3 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-content-v3 h6 {
    margin-bottom: 2px;
    color: #64748b;
    font-size: 0.85rem;
}

.info-content-v3 p {
    margin-bottom: 0;
    color: #1e293b;
    font-size: 1rem;
}

.info-content-v3 small {
    color: #94a3b8;
    font-size: 0.75rem;
}

.bg-purple-light {
    background: #f5f3ff;
}

.text-purple {
    color: #8b5cf6;
}

.bg-green-light {
    background: #f0fdf4;
}

.text-green {
    color: #22c55e;
}

.bg-orange-light {
    background: #fff7ed;
}

.text-orange {
    color: #f97316;
}

.bg-blue-light {
    background: #eff6ff;
}

.text-blue {
    color: #3b82f6;
}

.highlight-item-v3 {
    display: flex;
    align-items: flex-start;
}

.highlight-icon-v3 {
    width: 32px;
    height: 32px;
    background: #f5f3ff;
    color: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.accordion-v3 .accordion-item {
    border: 1px solid #f1f5f9 !important;
    background: white;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-v3 .accordion-button {
    padding: 20px;
    font-weight: 600;
    color: #1e293b !important;
    background: white !important;
    box-shadow: none !important;
    position: relative;
}

.accordion-v3 .accordion-button::after {
    content: "+";
    background-image: none !important;
    font-size: 1.5rem;
    font-weight: 300;
    transform: none !important;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) !important;
    transition: var(--transition);
}

.accordion-v3 .accordion-button:not(.collapsed)::after {
    content: "−";
    transform: translateY(-50%) rotate(0deg) !important;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .cta-banner-v2 {
        padding: 3rem;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 1rem 0;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .navbar-collapse {
        margin-top: 0;
        /* background: white; */
        padding: 0px 12px;
        border-radius: 12px;
    }

    .nav-link {
        margin: 0.5rem 0;
        padding: 0.5rem 0;
    }

    .nav-link.active::after {
        display: none;
    }

    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .hero-laptop-img {
        width: 100%;
        margin-left: 0;
        margin-top: 2rem;
    }

    .stats-card-main {
        padding: 1.5rem;
    }

    .cta-banner-v2 {
        padding: 2.5rem;
        text-align: center;
    }

    .cta-boxes-img {
        display: none !important;
    }

    .justify-content-lg-end {
        justify-content: center !important;
    }

    .about-hero-section {
        padding: 100px 0 50px;
        text-align: center;
    }

    .about-hero-section h1 {
        font-size: 2.5rem !important;
    }

    .about-hero-section .hero-social-proof {
        justify-content: center;
    }

    .mission-card-v2 {
        position: static;
        margin-top: 2rem;
        transform: none !important;
        width: 100%;
    }

    .beyond-visual-container {
        margin-top: 3rem;
    }

    .float-tag {
        display: none !important;
        /* Hide floating tags on mobile to avoid overlap */
    }

    .presence-item {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .stats-card-main .col-md-3 {
        padding: 1rem 0;
    }

    .border-end-md {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }

    .step-line-dashed {
        display: none;
    }

    .trust-item-v3 {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        padding: 1.5rem 0;
    }

    .trust-item-v3:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-banner-v3 {
        padding: 2rem;
    }

    .solution-card {
        padding: 1.5rem;
    }

    .legal-card {
        padding: 30px;
    }

    .legal-hero {
        padding: 100px 0 60px;
    }

    .legal-hero h1 {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .cta-banner-v2 {
        padding: 1.5rem;
    }

    .cta-banner-v2 h2 {
        font-size: 1.8rem !important;
    }

    /* Override inline styles from PHP files */
    [style*="font-size: 2.6rem"],
    [style*="font-size: 2.5rem"],
    [style*="font-size: 2.8rem"],
    [style*="font-size: 3.5rem"] {
        font-size: 1.8rem !important;
    }

    .partner-card {
        min-width: 140px;
        padding: 1rem;
    }

    .partner-grid {
        gap: 1rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .stat-icon-v2 {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Fix for overlapping elements on small screens */
.overflow-hidden-x {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.core-services-section {
    /* padding: 60px 0px; */
}

/* Ensure navbar toggler is visible */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* About Page Specific Responsive */
.about-office-img {
    border-radius: 20px;
}

.about-stat-card {
    padding: 1.5rem;
}

.story-content {
    font-size: 1rem;
}

.team-card-v3 {
    text-align: center;
}

.team-card-v3 .d-flex {
    flex-direction: column;
}

.team-img-v3 {
    margin: 0 auto 1rem;
}

/* Service Page Specific Responsive */
.hero-services {
    padding: 120px 0 60px;
}



.solution-card {
    margin-bottom: 1rem;
}

.steps-row-v3 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.step-card-v3 {
    flex: 1 1 250px;
    max-width: 100%;
}

.stats-container-v3 .stat-item-v3 {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
    padding: 1.5rem;
}

@media (min-width: 992px) {
    .stats-container-v3 .stat-item-v3 {
        border-bottom: none;
        border-right: 1px solid #f1f5f9;
    }
}

/* Section Typography V2 */
.section-tag-v2 {
    color: #5d5cff;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-title-v2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.02em;
}

/* Business Type Cards */
.business-card {
    padding: 25px;
    padding-bottom: 5px;
    border-radius: 15px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.business-card-inner-box {
    display: flex;
    align-items: start;
    gap: 20px;
}


.business-card-purple {
    background: #f9f9ff;
    border-color: #5d5cff1a;
}

.business-card-green {
    background: #f8fff9;
    border-color: #22c55e1a;
}

.business-card-orange {
    background: #FDFCFA;
    border-color: #d3d3d31a;
}

.business-card-blue {
    background: #f5faff;
    border-color: #3b82f61a;
}


.business-icon-v2 svg {
    width: 30px;
    height: 36px;
    /* border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; */
}

.business-card h5 {
    font-weight: 500;
    color: #000;
    font-size: 18px;
    letter-spacing: 0;
    margin-bottom: 5px !important;
}

.business-card p {
    margin: 0px;
    font-size: 14px;
    color: #5f5f5f;
    line-height: 1.5;
}

.business-illustration-v2 {
    min-height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-top: 0px;
}

.market-logo-v2 {
    transition: transform 0.3s ease;
}

.business-card:hover .market-logo-v2 {
    transform: scale(1.1);
}


/* Comparison Table */
.bg-light-v2 {
    background: #f8fafc;
}

.comparison-table-wrapper {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.comparison-table {
    width: 100%;
}

.comparison-table thead th {
    padding: 2rem 1.5rem;
    font-weight: 800;
    color: #64748b;
    border-bottom: 2px solid #f1f5f9;
    text-align: center;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.chalzo-header {
    background: #5d5cff;
    color: #ffffff !important;
    font-size: 1.2rem;
}

.comparison-table tbody td {
    padding: 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}

.feature-name {
    font-weight: 700;
    color: #000;
    font-size: 1.05rem;
}

.chalzo-cell {
    background: rgba(93, 92, 255, 0.02);
    text-align: center;
    color: #5d5cff;
    font-weight: 700;
    border-left: 2px solid rgba(93, 92, 255, 0.1);
    border-right: 2px solid rgba(93, 92, 255, 0.1);
}

.others-cell {
    text-align: center;
    color: #64748b;
    font-weight: 600;
}

.comparison-table .check {
    display: inline-flex;
    width: 24px;
    height: 24px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.8rem;
}

.comparison-table .cross {
    display: inline-flex;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Comparison Illustration */
.comparison-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shield-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-inner {
    position: absolute;
    z-index: 1;
}

.box-group {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.box-small {
    width: 30px;
    height: 30px;
    background: #e2e8f0;
    border-radius: 6px;
}

.box-medium {
    width: 40px;
    height: 40px;
    background: #cbd5e1;
    border-radius: 8px;
}

@media (max-width: 991.98px) {
    .section-title-v2 {
        font-size: 2rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Comparison Section V2 (Flex-based) */
.comparison-grid-v2 {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.comp-row-v2 {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}

.comp-header-v2 {
    border-bottom: 1px solid #e2e8f0;
}

.comp-col-v2 {
    padding: 12px;
    flex: 1;
    text-align: start;
    font-size: 14px;
    display: flex;
    align-items: start;
    justify-content: start;
}

.f-name-v2 {
    justify-content: flex-start;
    padding-left: 2rem !important;
    font-weight: 500;
    color: #000;
    width: 30%;
    flex: 0 0 30%;
}

.f-col {
    justify-content: flex-start;
    padding-left: 2rem !important;
    font-weight: 500;
    color: #000;
    width: 30%;
    flex: 0 0 30%;
    font-size: 18px;
}

.c-col-head {
    background: #4F39E4;
    color: #fff !important;
    font-weight: 500;
    font-size: 18px;
    height: 100%;
    display: block;
}

.o-col-head {
    color: #000;
    font-weight: 700;
    display: block;
    text-align: center;
}

.c-data-v2 {
    background: #f9f9ff;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    font-weight: 500;
    color: #22c55e;
    justify-content: flex-start;
    color: #000;

}

.o-data-v2 {
    color: #64748b;
    font-weight: 500;
}

.status-wrap {
    display: flex;
    align-items: center;
    gap: 17px;
    margin: 0px 20px;
}

.success-color {
    color: #22c55e;
}

.danger-color {
    color: #64748b;
}

.status-icon-v2 {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-bg {
    background: #22c55e;
}

.danger-bg {
    background: #ef4444;
}

/* Illustration Layering V3 */
.comparison-art-wrapper {
    position: relative;
    height: 250px;
}

.art-bg-cloud {
    position: absolute;
    width: 200px;
    height: 150px;
    background: #5d5cff15;
    filter: blur(40px);
    border-radius: 50%;
    left: -20px;
    top: 20px;
    z-index: 1;
}

.shield-graphic {
    position: absolute;
    left: 20px;
    top: 0;
    z-index: 3;
    filter: drop-shadow(0 15px 30px rgba(93, 92, 255, 0.2));
}

.transport-graphic {
    position: absolute;
    left: 100px;
    bottom: 20px;
    z-index: 4;
}

.box-stack {
    position: absolute;
    bottom: 40px;
    left: -20px;
    display: flex;
}

.box-v3 {
    width: 35px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: absolute;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.trolley-v2 {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

@media (max-width: 991px) {
    .comp-row-v2 {
        flex-wrap: wrap;
    }

    .f-name-v2,
    .f-col {
        width: 100%;
        flex: 0 0 100%;
        background: #f8f9ff;
        text-align: center;
        padding-left: 1rem !important;
        justify-content: center;
    }

    .c-data-v2,
    .o-data-v2,
    .c-col-head,
    .o-col-head {
        width: 50%;
        flex: 0 0 50%;
        padding: 1rem 0.5rem;
    }
}

/* ======================================== FTL Banner Section */
.ftl-banner-section {
    position: relative;
    z-index: 5;
}

.ftl-banner-wrapper {
    background: #fbfbfe;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
}

.ftl-banner-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.ftl-cta-wrapper {
    padding-left: 52px;
}

.ftl-truck-img {
    width: 32%;
}

@media (max-width: 991px) {
    .ftl-cta-wrapper {
        padding-left: 0;
        flex-direction: column;
        text-align: center;
        margin-top: 30px;
    }

    .ftl-truck-img {
        width: 50%;
        margin-bottom: 20px;
    }
}

.ftl-banner-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 90%;
}

.ftl-features-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.ftl-feat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.ftl-feat-item:not(:last-child)::after {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -10px;
    top: 12px;
    color: #cbd5e1;
    font-size: 12px;
}

.ftl-feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f3ff;
    color: #6d28d9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 12px;
    border: 1px solid #ede9fe;
}

.ftl-feat-title {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 4px;
}

.ftl-feat-sub {
    font-size: 10px;
    color: #64748b;
    line-height: 1.3;
}

.ftl-banner-img {
    position: absolute;
    top: 50%;
    left: 58%;
    transform: translate(-50%, -50%);
    width: 420px;
    z-index: 1;
    pointer-events: none;
}

.ftl-banner-img img {
    width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.ftl-cta-box {
    padding-left: 20px;
    position: relative;
    z-index: 2;
}

.ftl-cta-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.ftl-cta-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-ftl-quote {
    background: #5b21b6;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-ftl-quote:hover {
    background: #4c1d95;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 33, 182, 0.2);
}

@media (max-width: 991px) {
    .ftl-banner-img {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin: 30px 0;
    }

    .ftl-features-row {
        flex-wrap: wrap;
    }

    .ftl-feat-item {
        flex: 0 0 45%;
        margin-bottom: 20px;
    }

    .ftl-feat-item:not(:last-child)::after {
        display: none;
    }

    .ftl-cta-box {
        padding-left: 0;
        text-align: center;
    }
}

/* ======================================== How It Works Section V4 */
.steps-section-v4 {
    position: relative;
    background: #ffffff;
}

.steps-container-v4 {
    background: #fbfbfe;
    border-radius: 15px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.02);
    padding: 30px;
}

.steps-row-v4 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.step-item-v4 {
    display: flex;
    align-items: start;
    gap: 15px;
    flex: 1;
}

.step-icon-box-v4 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.step-text-v4 {
    display: flex;
    flex-direction: column;
}

.step-num-v4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.step-title-v4 {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin: 4px 0 6px 0;
    line-height: 1.2;
}

.step-desc-v4 {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    max-width: 140px;
}

.step-divider-v4 {
    color: #94a3b8;
    font-size: 25px;
    flex-shrink: 0;
    margin: 10px 4px;
}

/* Soft Color Utilities */
.bg-purple-soft {
    background: #f5f3ff;
}

.text-purple {
    color: #7c3aed;
}

.bg-green-soft {
    background: #f0fdf4;
}

.text-green {
    color: #16a34a;
}

.bg-blue-soft {
    background: #eff6ff;
}

.text-blue {
    color: #2563eb;
}

.bg-orange-soft {
    background: #fff7ed;
}

.text-orange {
    color: #ea580c;
}

@media (max-width: 1199px) {
    .step-desc-v4 {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .steps-container-v4 {
        padding: 30px;
    }

    .steps-row-v4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .step-divider-v4 {
        display: none;
    }

    .step-item-v4 {
        width: 100%;
    }
}

/* ======================================== Why Choose Section V4 */
.dashboard-bg-blob {
    position: absolute;
    top: 5%;
    left: -5%;
    width: 110%;
    height: 90%;
    background: #e0e7ff;
    filter: blur(60px);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}

.why-choose-list-v4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list-v4 li {
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.why-choose-list-v4 li i {
    font-size: 18px;
    margin-top: 2px;
}

/* Stats Bar V4 */
.stats-bar-v4 {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-item-v4 {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
    padding: 0 15px;
}

@media(max-width : 1400px) {
    .stat-item-v4 {
        padding: 0 5px;
    }
}

.border-start-v4 {
    border-left: 1px solid #f1f5f9;
}

.stat-icon-v4 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-text-v4 {
    display: flex;
    flex-direction: column;
}

.stat-num-v4 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
    line-height: 1.1;
}

.stat-desc-v4 {
    font-size: 12px;
    color: #64748b;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .stats-bar-v4 {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
    }

    .stat-item-v4 {
        flex: 0 0 100%;
        justify-content: flex-start;
        padding: 0;
    }

    .border-start-v4 {
        border-left: none;
        border-top: 1px solid #f1f5f9;
        padding-top: 20px;
    }
}

/* ======================================== 
   Responsive Design System
   ======================================== */

/* Section Padding Utility */
.section-padding {
    padding: 100px 0;
}

/* Mobile & Tablet Specific Adjustments */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    /* Override inline font sizes on mobile */
    h1[style*="font-size"],
    h2[style*="font-size"],
    h3[style*="font-size"],
    h4[style*="font-size"] {
        font-size: 28px !important;
    }

    .hero-section,
    .about-hero-section,
    .hero-services-v3,
    .contact-hero-v3 {
        padding: 140px 0 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 34px !important;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-desc {
        margin: 0 auto 2.5rem;
        font-size: 1rem;
    }

    .hero-social-proof,
    .hero-features-v3 {
        justify-content: center;
        gap: 15px !important;
    }

    .stats-bar-section {
        margin-top: -40px;
    }

    .stats-card-main {
        padding: 20px;
    }

    .stat-item-v4 {
        justify-content: flex-start;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 15px 0;
    }

    .stat-item-v4:last-child {
        border-bottom: none;
    }

    .device-mockup-wrapper,
    .about-hero-visual-wrapper,
    .hero-visual-v3,
    .contact-form-card {
        margin-top: 40px;
        text-align: center;
    }

    .device-mockup-wrapper img,
    .about-hero-visual-wrapper img,
    .main-assets-img,
    .cta-agent-img {
        max-width: 100%;
        height: auto;
    }

    .dashboard-title {
        font-size: 28px !important;
    }

    /* About Us Specific */
    .mission-card-v2 {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 30px auto 0;
        max-width: 100%;
        text-align: left;
    }

    .beyond-visual-container {
        padding: 20px 0;
    }

    .float-tag {
        display: none;
        /* Hide floating tags on tablet/mobile as they overlap */
    }

    .presence-item {
        width: 100%;
    }

    /* Services Specific */
    .dashboard-card-v3 {
        position: relative;
        margin: 30px auto 0;
        transform: none !important;
        width: 100%;
    }

    .ftl-banner-wrapper {
        padding: 30px 20px;
    }

    .ftl-features-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .why-choose-list-v4 {
        margin-top: 20px;
    }

    /* Contact Specific */
    .contact-form-card {
        padding: 30px !important;
    }

    .map-card-v4 .col-lg-4,
    .map-card-v4 .col-lg-8 {
        width: 100%;
    }

    .map-card-v4 iframe {
        min-height: 300px !important;
    }
}

/* Tablet (Portrait) */
@media (max-width: 767px) {
    .hero-title {
        font-size: 30px !important;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        min-width: auto;
        margin-bottom: 10px;
    }

    .section-title h2,
    .section-title-v2,
    .about-hero-section h2,
    .hero-services-v3 h1,
    .contact-hero-v3 h1 {
        font-size: 26px !important;
    }

    .comparison-grid-v2 {
        overflow-x: auto;
        display: block;
        white-space: nowrap;
        padding: 0 15px 15px;
        margin: 0 -15px;
        -webkit-overflow-scrolling: touch;
    }

    .comp-row-v2 {
        min-width: 700px;
    }

    .partner-grid {
        gap: 1rem;
    }

    .partner-card {
        min-width: calc(50% - 0.5rem);
        padding: 1rem;
    }

    .cta-banner-v2 {
        padding: 40px 20px;
        text-align: center;
    }

    .cta-banner-v2 h2 {
        font-size: 24px !important;
    }

    .cta-banner-v2 .justify-content-lg-end {
        justify-content: center !important;
        margin-top: 20px;
    }

    .step-line-dashed {
        display: none !important;
    }

    .step-item {
        margin-bottom: 30px;
    }

    .footer-bottom {
        text-align: center;
        flex-direction: column-reverse !important;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px !important;
    }

    .guarantee-card-v2 {
        margin-top: 40px;
    }

    /* About Us Specific */
    .about-stat-card {
        padding: 20px;
        gap: 15px;
    }

    .stat-icon-large {
        font-size: 1.8rem;
    }

    .india-map-container img {
        max-height: 300px;
    }

    /* Services Specific */
    .hero-features-v3 {
        flex-direction: column;
        align-items: flex-start;
        display: inline-flex;
        text-align: left;
    }

    .ftl-features-row {
        grid-template-columns: 1fr;
    }

    .step-divider-v4 {
        display: none !important;
    }

    .steps-row-v4 {
        flex-direction: column;
        gap: 30px;
    }

    .stats-bar-v4 {
        flex-direction: column;
        gap: 15px;
        padding: 20px !important;
    }

    .stats-bar-v4 .stat-item-v4 {
        width: 100%;
        border-left: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 15px;
        justify-content: center !important;
        padding-left: 0 !important;
    }

    .stats-bar-v4 .stat-item-v4:last-child {
        border-bottom: none;
    }
}

/* Mobile (Small) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 26px !important;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .stat-content-v4 h6 {
        font-size: 14px;
    }

    .stat-content-v4 p {
        font-size: 12px;
    }

    .guarantee-card-v2 {
        padding: 20px !important;
    }

    .guarantee-card-v2 h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .guarantee-card-v2 .d-flex.flex-column.gap-5 {
        gap: 1.5rem !important;
    }

    .partner-card {
        min-width: 100%;
    }

    .about-stat-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-features-v3 {
        width: 100%;
        align-items: center;
    }

    /* Contact Specific */
    .contact-hero-v3 .col-3 {
        width: 50%;
        margin-bottom: 15px;
    }
}

/* Large Screens (TV/Ultra-wide) */
@media (min-width: 1920px) {
    .container {
        max-width: 1500px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-desc {
        font-size: 1.4rem;
        max-width: 700px;
    }
}

/* Fix for section-paddding typo used in index.php and about.php */
.section-paddding {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .section-paddding {
        margin-top: 40px;
    }
}