@import url('https://fonts.googleapis.com/css2?family=Anuphan:wght@100..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playwrite+NZ+Basic:wght@100..400&family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap');


html, body {
    width: 100%;
    position: relative;
    font-family: "Anuphan", sans-serif;
    overflow-x: clip;
}

.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999; 
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* --- Header & Glassmorphism --- */
.custom-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    padding: 20px 0;
    background-color: #fff;
}

.custom-header.scrolled {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.custom-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    /* <-- YAHAN ADD KIYA HAI */
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: #1a1b1e !important;
    text-decoration: none;
    z-index: 1001;
    letter-spacing: -0.5px;
}

/* --- Nav Links --- */
.nav-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    align-items: center;
}

.navbar { /* Ya jo bhi aapke header ki class hai */
    position: sticky; /* Ya fixed */
    top: 0;
    z-index: 1050; /* Sabse high value taaki upar rahe */
    background-color: #ffffff; /* Solid white background */
}

.nav-link {
    color: #4b5563 !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #4b3afa !important;
}

/* =========================================
   --- ADVANCED DROPDOWN MENU (FIXED) --- 
   ========================================= */
.dropdown {
    /* FIX: Position absolute ko break karne ke liye static lagaya hai */
    position: static;
    padding: 15px 0;
}

.chevron {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown:hover .chevron {
    transform: rotate(180deg);
    color: #4b3afa;
}

.dropdown-menu.mega-menu {
    position: absolute;
    top: 100%;
    /* Center aligning using left 0, right 0 and margin auto */
    left: 0;
    right: 0;
    margin: 0 auto;

    background-color: #ffffff;
    width: 100%;
    max-width: 800px;
    /* Mega Menu ki chaudai (Width) */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 24px;
    /* Zyada padding better look ke liye */

    /* Bootstrap fix aur grid layout ke liye */
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns banaye hain */
    gap: 30px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1002;
    border: 1px solid rgba(0, 0, 0, 0.05);
}


.dropdown:hover .dropdown-menu.mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a0aabf;
    margin-bottom: 15px;
    padding-left: 14px;
}

.dropdown-item {
    display: flex !important;
    /* Bootstrap fix */
    white-space: normal !important;
    /* Bootstrap fix */
    align-items: flex-start;
    gap: 16px;
    padding: 14px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    margin-bottom: 5px;
}

.dropdown-item:hover {
    background-color: #f4f3ff;
}

/* Icon Box */
.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dropdown-item:hover .icon-box {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(75, 58, 250, 0.15);
    transform: scale(1.05);
}

/* Text Content inside Dropdown */
.item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-title {
    color: #1a1b1e;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.dropdown-item:hover .item-title {
    color: #4b3afa;
}

.item-desc {
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
}

/* ========================================= */

/* --- Brand Button --- */
.btn-brand {
    background-color: #4b3afa;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-brand:hover {
    background-color: #382ae0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(75, 58, 250, 0.3);
}

/* --- Hamburger Menu Icon --- */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 24px;
    height: 2px;
    background-color: #1a1b1e;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* --- Mobile Responsive Rules --- */
@media screen and (max-width: 991px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-content {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-content.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        /* FIX 3: Gap hata diya mobile ke liye */
        margin-bottom: 40px;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        justify-content: space-between;
        padding: 15px 0;
        /* Mobile touch area fix */
    }

    /* Mobile Dropdown Fixes */
    .dropdown {
        width: 100%;
        padding: 0;
        /* Mobile me external padding hatayi */
    }

    .dropdown-menu.mega-menu {
        position: static;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        transform: none;
        padding: 0 15px;
        margin-top: 0;
        background-color: transparent;
        width: 100%;
        border: none;
        transition: all 0.3s ease;
        grid-template-columns: 1fr;
        /* Mobile me 1 column dikhega */
        gap: 10px;
    }

    .dropdown:hover .dropdown-menu.mega-menu,
    .dropdown:active .dropdown-menu.mega-menu {
        opacity: 1;
        visibility: visible;
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .btn-brand {
        width: 100%;
        text-align: center;
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


/* Brand Button Styling */
        .btn-brand {
            background-color: #6a35ff; /* Vibrant Purple */
            color: #ffffff;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 8px;
            border: 2px solid #6a35ff;
            transition: all 0.3s ease;
        }

        .btn-brand:hover {
            background-color: #5526d9;
            border-color: #5526d9;
            color: #ffffff;
        }

        /* Modal Custom Styling */
        .custom-modal-content {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .modal-left-side {
            background-color: #f8f9fa; /* Light gray matching the illustration background */
            padding: 40px;
        }

        .modal-right-side {
            padding: 50px;
            background-color: #ffffff;
            position: relative;
        }

        /* Close Button absolute positioning */
        .btn-close-custom {
            position: absolute;
            top: 25px;
            right: 25px;
            z-index: 10;
        }

        /* Form Inputs Styling */
        .form-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: #4a4a4a;
            margin-bottom: 8px;
        }

        .form-control, .form-select {
            background-color: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 0.9rem;
            color: #333;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            background-color: #ffffff;
            border-color: #6a35ff;
            box-shadow: 0 0 0 0.25rem rgba(106, 53, 255, 0.15);
        }

        /* Form Header */
        .modal-form-header {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .modal-form-header span {
            color: #6a35ff;
        }

        @media (max-width: 991px) {
            .modal-right-side {
                padding: 30px 20px;
            }
        }

/* Hero Section Styling */
.hero-section {
    padding: 60px 0 120px;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pre-title {
    color: #ff5e5e;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1b1e;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-title-2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #000000;
    text-align: left;
}

.hero-text-2 {
    font-size: 1.1rem;
    color: rgba(27, 25, 25, 0.9);
    /* Translucent white for better contrast on dark background */
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 90%;
}

/* Image Masking & Container */
.hero-image-container {
    position: relative;
    z-index: 1;
    padding: 20px;
    /* Ensure the absolute elements stay relative to this specific box's width */
    max-width: 550px;
    margin: 0 auto;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Set z-index to 2 so it sits above the dots but below the other stickers */
    z-index: 2;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Base style for all stickers */
.deco-dots,
.deco-round,
.deco-waves {
    position: absolute;
}

/* 1. Dots: Top Left (Sitting behind the main image) */
.deco-dots {
    top: -10px;
    left: 30px;
    z-index: 1;
    /* Behind the hero-image-wrapper */
    width: 120px;
    /* Adjust based on your actual SVG size */
}

/* 2. Round/Arcs: Bottom Left (Overlapping the main image) */
.deco-round {
    bottom: 30px;
    left: 37px;
    z-index: 3;
    /* Above the hero-image-wrapper */
    width: 100px;
}

/* 3. Waves: Bottom Right (Overlapping the main image) */
.deco-waves {
    bottom: 50px;
    right: 30px;
    z-index: 3;
    /* Above the hero-image-wrapper */
    width: 40px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-section {
        padding: 50px 0 80px;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }

    .hero-image-container {
        margin-top: 50px;
    }
}

.services-section {
    padding: 100px 0;
    position: relative;
}

.section-pre-title {
    color: #ff5e5e;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    /* text-align: center; */
    max-width: 650px;
    margin: 0 auto 20px auto;
    color: #1a1b1e;
}

.section-title-2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 20px auto;
    color: #ffffff;
}

.section-title-3 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    max-width: 650px;
    margin: 0 auto 20px auto;
    color: #ffffff;
}

.section-title-4 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    max-width: 650px;
    margin: 0 auto 20px auto;
    color: #000000;
}

/* Service Cards Base */
.service-card {
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Individual Card Colors */
.bg-green {
    background-color: #68d585;
}

.bg-blue {
    background-color: #473bf0;
}

.bg-red {
    background-color: #f74d4d;
}

/* Card Typography */
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Learn More Link */
.learn-more {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.learn-more:hover {
    color: #ffffff;
    opacity: 0.8;
}

.learn-more .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more .arrow {
    transform: translateX(5px);
}

/* Card Illustration Placeholder Styling */
.card-illustration {
    height: 140px;
    margin-bottom: 30px;
    object-fit: contain;
}

/* Decorative Background Pattern (Bottom Right) */
.bg-pattern {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 1;
    opacity: 0.5;
    width: 120px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .bg-pattern {
        display: none;
        /* Hide pattern on mobile for cleaner look */
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 40px 0;
}

/* Testimonial Layout Container */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Owl Carousel Image Fix */
.owl-carousel .owl-item img.testimonial-avatar {
    width: 160px !important;
    height: 250px !important;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

/* Star Rating */
.rating-stars {
    color: #fca311;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Quote Text */
.testimonial-quote {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    color: #1a1b1e;
    margin-bottom: 25px;
    border: none;
    padding: 0;
}

/* Author Info */
.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1b1e;
    margin-right: 8px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
}

/* Testimonial Layout Container */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}



/* Star Rating */
.rating-stars {
    color: #fca311;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Quote Text */
.testimonial-quote {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    color: #1a1b1e;
    margin-bottom: 25px;
    border: none;
    padding: 0;
}

/* Author Info */
.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1b1e;
    margin-right: 8px;
}



/* Bottom Divider Line */
.testimonial-divider {
    border-top: 1px solid #f0f0f0;
    margin-top: 80px;
    width: 100%;
}

/* Owl Carousel Custom Dots Styling (Optional) */
.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 30px !important;
}

.testimonial-carousel .owl-dot span {
    background: #e0e0e0 !important;
    width: 10px;
    height: 10px;
}

.testimonial-carousel .owl-dot.active span {
    background: #fca311 !important;
    /* Match your star color */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-content-wrapper {
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 30px !important;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }
}

.story-section {
    padding: 100px 0;
    overflow-x: hidden;
}

/* Typography */
.section-pre-title {
    color: #ff5e5e;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}


.story-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 30px;
    max-width: 90%;
}

/* Image Styling */
.img-large {
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.img-medium {
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.img-small {
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
    /* Pushes the small image down to stagger it */
}

/* CSS Dot Pattern Decoration */
.dot-pattern-wrapper {
    position: relative;
}

.dot-pattern {
    position: absolute;
    top: -30px;
    right: 10%;
    width: 130px;
    height: 130px;
    z-index: -1;
    /* Creates the blue dot grid using pure CSS */
    background-image: radial-gradient(#473bf0 15%, transparent 16%);
    background-size: 18px 18px;
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    padding-top: 60px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1b1e;
    margin-bottom: 15px;
}

.stat-text {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    /* padding: 0 20px; */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        max-width: 100%;
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .img-large,
    .img-medium,
    .img-small {
        margin-bottom: 20px;
        height: auto;
        /* Let it scale naturally on mobile */
        aspect-ratio: 4/5;
    }

    .img-small {
        margin-top: 0;
    }

    .story-text {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .dot-pattern {
        right: 0;
    }

    .stat-text {
        padding: 0;
    }
}


.features-section {
    padding: 100px 0 80px;
    position: relative;
}

/* Top Header Styling */
.section-pre-title {
    color: #ff5e5e;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}


/* Feature List Styling */
.feature-item {
    display: flex;
    margin-bottom: 50px;
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    /* Prevents icon box from shrinking */
    margin-right: 25px;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1b1e;
}

.feature-text p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    max-width: 90%;
}

/* Icon Box Custom Colors */
.icon-purple {
    background-color: #eaeafe;
    color: #4b3afa;
}

.icon-pink {
    background-color: #fde8ec;
    color: #ff5e5e;
}

.icon-green {
    background-color: #e6f7ec;
    color: #32b97c;
}

.icon-gray {
    background-color: #e2e4e8;
    color: #4a5568;
}

/* Background Dotted Pattern (Left Side) */
.bg-pattern-left {
    position: absolute;
    top: 100px;
    left: 0;
    opacity: 0.8;
    z-index: 0;
}

/* Divider & CTA Section */
.section-divider {
    border-top: 1px solid #e5e7eb;
    margin: 40px 0 60px;
    opacity: 1;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 85%;
}

/* Brand Button */
.btn-brand {
    background-color: #4b3afa;
    color: #ffffff;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-brand:hover {
    background-color: #382ae0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 58, 250, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .bg-pattern-left {
        display: none;
        /* Hide pattern on smaller screens */
    }

    .cta-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .feature-text p {
        max-width: 100%;
    }
}

.case-studies-section {
    padding: 100px 0;
}

/* Section Header */
.section-pre-title {
    color: #ff5e5e;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}



/* Project Cards */
.project-card {
    margin-bottom: 50px;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}



/* Image Aspect Ratios for Staggered Effect */
.project-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}



.img-tall {
    aspect-ratio: 4 / 4.5;
    /* Makes the image taller */
}

.img-wide {
    aspect-ratio: 4 / 3;
    /* Makes the image wider/shorter */
}

/* Project Typography */
.project-category {
    color: #8c92a4;
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 5px;
    display: block;
    margin-top: 20px;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1b1e;
    margin: 0;
    transition: color 0.2s ease;
}

.project-card:hover .project-title {
    color: #4b3afa;
}

/* Call to Action Link */
.see-all-link {
    color: #4b3afa;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.see-all-link:hover {
    color: #4b3afa;
    opacity: 0.8;
}

.see-all-link .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.see-all-link:hover .arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {

    .img-tall,
    .img-wide {
        aspect-ratio: auto;
        /* Let images determine their own height on mobile */
        height: auto;
        /* Enforce a uniform height on small screens */
    }

    .project-card {
        margin-bottom: 40px;
    }
}

.testimonial-banner {
    background-position: center;
    background-size: cover;

    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

/* Banner Carousel Avatar Fix */
.banner-carousel .owl-item img.author-avatar {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Optional: Center the dots under the banner */
.banner-carousel .owl-dots {
    margin-top: 20px !important;
    text-align: center;
}


/* Content Container (Keep above background lines) */
.content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}

/* Typography */
.pre-title {
    color: #68d585;
    /* Bright Green */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.testimonial-quote {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
    /* color: #ffffff; */
}

/* Author Info */
.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.author-title {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6) !important;
    /* Translucent White */
    margin-bottom: 0;
    font-weight: 400;
}
.author-title2 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6) !important;
    /* Translucent White */
    margin-bottom: 0;
    font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-banner {
        padding: 80px 15px;
    }

    .testimonial-quote {
        font-size: 1.5rem;
    }
}


/* Footer Main Container */
.site-footer {
    background-color: #161c2d;
    /* Dark slate blue background */
    color: #ffffff;
    padding: 80px 0 60px;
}

/* Pre-Footer / CTA Section */
.footer-cta {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-text,
.footer-text {
    color: #a1a5b7;
    /* Muted light gray */
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 90%;
}

/* Brand Button */
.btn-brand {
    background-color: #4b3afa;
    color: #ffffff;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
}

.btn-brand:hover {
    background-color: #382ae0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 58, 250, 0.3);
}

/* Footer Widgets & Links */
.footer-brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.footer-brand-logo:hover {
    color: #ffffff;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a1a5b7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Social Icons */
.social-icons {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #a1a5b7;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: #ffffff;
}

/* Specific Twitter Icon Color from design */
.social-icons .icon-twitter {
    color: #68d585;
    /* Brand green */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .footer-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .cta-title {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .footer-widget {
        margin-bottom: 40px;
    }
}






/* 1. Added more Top Padding to clear the Fixed Navbar */
.dark-hero-section {
    /* Top padding 100px se badha kar 160px kar di */
    background-color: #161c2d;
    overflow: hidden;
    height: 100vh;
}




/* Call to Action Link */
.btn-link-green {
    color: #68d585 !important;
    /* Brand green */
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.btn-link-green:hover {
    opacity: 0.8;
}

.btn-link-green .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-link-green:hover .arrow {
    transform: translateX(5px);
}

/* Video / Media Area Styling */
.video-container-wrapper {
    position: relative;
    z-index: 1;
    padding-right: 20px;
    /* Space for the pattern */
}

/* Dotted Pattern Background using CSS */
.video-pattern-bg {
    position: absolute;
    top: -30px;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 16%);
    background-size: 14px 14px;
    z-index: 0;
}

/* Dummy Video Thumbnail */
.video-thumbnail-hero {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Play Button Overlay */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b3afa;
    /* Blue play icon */
    font-size: 1.5rem;
    z-index: 3;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: #4b3afa;
}

.play-button i {
    margin-left: 5px;
    /* Optically center the play triangle */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
 

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

    .hero-text-2 {
        max-width: 100%;
    }

    .video-container-wrapper {
        margin-top: 60px;
        padding-right: 0;
    }

    .video-pattern-bg {
        display: none;
        /* Hide pattern on mobile for clean look */
    }
}


.logo-bar-section {
    background-color: #f4f7fb;
    /* Very light subtle blue/gray matching the image */
    padding: 50px 0;
    border-top: 1px solid #eef0f4;
    border-bottom: 1px solid #eef0f4;
}

/* Logo Item Container */
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: #6c757d;
    /* Muted gray color */
    opacity: 0.7;
    transition: all 0.3s ease;
    text-decoration: none;
    user-select: none;
}

.logo-item:hover {
    opacity: 1;
    color: #1a1b1e;
    transform: scale(1.05);
}

/* Simulated Logo Typographies to match your image */
.logo-makeless {
    font-weight: 700;
    font-size: 1.4rem;
}

.logo-coworks {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.logo-coworks i {
    margin-right: 6px;
    font-size: 1.1rem;
}

.logo-greener {
    font-weight: 600;
    font-size: 1.2rem;
}

.logo-greener i {
    margin-right: 5px;
}

.logo-saas {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-saas i {
    font-size: 1.4rem;
    margin-right: 8px;
}

.saas-text-stacked {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 0.6rem;
    letter-spacing: 1px;
}

.logo-dorfus {
    font-weight: 700;
    font-size: 1.4rem;
}

.logo-askimat {
    font-style: italic;
    font-weight: 600;
    font-size: 1.4rem;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .logo-item {
        margin-bottom: 20px;
    }
}



/* =========================================
           SECTION 1: TOP FEATURES ROW 
           ========================================= */
.features-top-section {
    padding: 80px 0 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 1.8rem;
    color: #4b3afa;
    /* Brand Blue/Purple */
    margin-right: 20px;
    margin-top: 5px;
    /* Slight alignment tweak */
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1b1e;
    margin-bottom: 10px;
}

.feature-content p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
           SECTION 2: DASHBOARD PREVIEW SPLIT 
           ========================================= */
.dashboard-preview-section {
    padding: 40px 0 50px;
}

/* Image Styling */
.dashboard-mockup {
    width: 100%;

}


/* Text Content Styling */
.preview-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1b1e;
}

.preview-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 95%;
}

/* CTA Link */
.btn-link-brand {
    color: #4b3afa;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.btn-link-brand:hover {
    color: #4b3afa;
    opacity: 0.8;
}

.btn-link-brand .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-link-brand:hover .arrow {
    transform: translateX(5px);
    /* Arrow moves right on hover */
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .preview-text-col {
        margin-top: 50px;
    }

    .preview-title {
        font-size: 1.8rem;
    }
}


.section-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 90%;
}

.btn-link-brand {
    color: #4b3afa;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.btn-link-brand:hover {
    color: #4b3afa;
    opacity: 0.8;
}

.btn-link-brand .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-link-brand:hover .arrow {
    transform: translateX(5px);
}

/* =========================================
           SECTION 1: OVERLAPPING UI CARDS
           ========================================= */
.visitors-section {
    padding: 50px 0;
}

.ui-cards-container {
    position: relative;
    min-height: 450px;
}

/* Back Card (Chart) */
.card-back {
    position: absolute;
    top: 20px;
    right: 0;
    width: 60%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

/* Front Card (User List) */
.card-front {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 55%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* =========================================
           SECTION 2: MASONRY IMAGE GRID
           ========================================= */
.customers-section {
    padding: 80px 0 100px;
}

.masonry-grid img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

/* Specific heights to create the staggered masonry look */
.img-h-1 {
    height: 200px;
}

.img-h-2 {
    height: 280px;
}

.img-h-3 {
    height: 280px;
}

.img-h-4 {
    height: 200px;
}

/* Push the right column down to stagger */
.stagger-col {
    margin-top: 40px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .ui-cards-container {
        margin-top: 50px;
        min-height: 350px;
    }

    .card-back,
    .card-front {
        position: relative;
        width: 80%;
        margin: 0 auto;
        display: block;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .card-front {
        margin-top: -60px;
        /* Overlap on mobile */
    }

    .stagger-col {
        margin-top: 0;
        /* Remove stagger on mobile */
    }

    .section-text {
        max-width: 100%;
    }

    .customers-text-col {
        margin-top: 50px;
    }
}

.pricing-section {
    padding: 100px 0 60px;
}



.section-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Custom Toggle Switch */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6c757d;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: #1a1b1e;
    font-weight: 600;
}

/* Bootstrap Switch Override */
.form-switch .form-check-input.custom-switch {
    width: 3.5rem;
    height: 1.75rem;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
}

.form-switch .form-check-input.custom-switch:checked {
    background-color: #4b3afa;
    /* Brand Blue */
}

.badge-save {
    background-color: #edeafe;
    color: #4b3afa;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    margin-left: 8px;
    text-transform: uppercase;
}

/* Pricing Cards */
.pricing-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.plan-name {
    color: #4b3afa;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1b1e;
    line-height: 1;
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
}

.plan-price-currency {
    font-size: 1.5rem;
    position: relative;
    top: -15px;
    margin-right: 2px;
}

.plan-price-duration {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
    margin-left: 5px;
}

.plan-billed {
    font-size: 0.8rem;
    color: #a1a5b7;
    margin-bottom: 30px;
}

/* Features List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.feature-list li {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-list li.disabled {
    color: #a0aec0;
}

.feature-list i {
    width: 20px;
    font-size: 0.9rem;
    margin-right: 10px;
}

.feature-list .fa-check {
    color: #32b97c;
}

/* Green check */
.feature-list .fa-xmark {
    color: #cbd5e1;
}

/* Gray cross */

/* Buttons */
.btn-pricing {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-pricing .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-pricing:hover .arrow {
    transform: translateX(5px);
}

.btn-light-brand {
    background-color: #f0f0fe;
    color: #4b3afa;
}

.btn-light-brand:hover {
    background-color: #e4e4fd;
    color: #4b3afa;
}

.btn-brand {
    background-color: #4b3afa;
    color: #ffffff;
}

.btn-brand:hover {
    background-color: #382ae0;
    color: #ffffff;
}

.card-footer-text {
    font-size: 0.75rem;
    color: #a1a5b7;
    text-align: center;
    margin: 0;
}

/* =======================================
   TESTIMONIALS SECTION (Original Styles)
   ======================================= */
.testimonials-section {
    padding: 60px 0 100px;
    overflow: hidden;
    /* Extra space hide karne ke liye */
}

.quote-icon {
    color: #4b3afa;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.7;
    color: #1a1b1e;
    margin-bottom: 25px;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #1a1b1e;
    font-weight: 700;
}

.testimonial-role {
    font-weight: 400;
    color: #8c92a4;
    margin-left: 5px;
}

.owl-carousel .owl-stage-outer {
    margin-left: 10px !important;
}

@media (max-width: 991px) {
    .testimonial-block {
        margin-bottom: 40px;
    }
}

/* =======================================
   CUSTOM DOWN-TO-UP ANIMATION CLASSES
   ======================================= */
.animate-in-up {
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.animate-out-up {
    animation: slideOutUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Niche se 50px upar aana aur fade in hona */
@keyframes slideInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

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

/* Current position se aur 50px upar jana aur fade out hona */
@keyframes slideOutUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}

/* Hide default Owl Carousel dots if you don't want them */
.vertical-slide-carousel .owl-dots {
    display: none !important;
}




/* =========================================
           SECTION 1: HERO ECOMMERCE
           ========================================= */
.hero-ecom {
    position: relative;
    margin: 0 auto;
}

.hero-ecom-bg {
    /* Background image setup */
   
    background-size: cover;
    background-position: center;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    margin-bottom: -150px;
    /* Pull the next section UP to overlap */
    z-index: 1;
    position: relative;
}

.hero-ecom-pretitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.hero-ecom-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
           SECTION 2: CATEGORIES OVERLAP
           ========================================= */
.categories-ecom {
    position: relative;
    z-index: 2;
    /* Needs to sit ON TOP of the hero section */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.category-card {
    background-color: #f8f9fc;
    /* Very light blue/gray matching the mockup */
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    color: #1a1b1e;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow to separate from background */
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    color: #1a1b1e;
}

.cat-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cat-items {
    font-size: 0.8rem;
    color: #8c92a4;
    font-weight: 400;
    margin-bottom: 20px;
}

.cat-image {
    width: 100%;
    height: 180px;
    /* Fixed height for uniformity */
    object-fit: contain;
    /* Prevents image distortion */
    margin-top: auto;
    /* Pushes the image to the bottom */
    mix-blend-mode: multiply;
    /* Helps remove white backgrounds from product images */
}

/* Staggered Masonry effect via Masonry CSS */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
    /* Allows items to have different heights naturally */
}

/* Specific card heights to create the offset/masonry look */
.card-tall {
    min-height: 350px;
}

.card-short {
    min-height: 280px;
    margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-ecom-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .hero-ecom-bg {
        border-radius: 0;
        /* Remove radius on mobile for full width */
        margin-bottom: -50px;
        /* Less overlap on mobile */
        height: 60vh;
        min-height: 400px;
    }

    .hero-ecom {
        padding: 0;
    }
}

.products-section {
    padding: 80px 0;
    text-align: center;
}


/* Product Card */
.product-card {
    margin-bottom: 30px;
    text-align: center;
}

/* Image Wrapper & Hover Effect */
.product-img-wrapper {
    background-color: #f4f7fb;
    /* Light grayish-blue background */
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
}

.product-card:hover .product-img-wrapper {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.product-img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Blends white image backgrounds naturally */
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Add to Cart Button (Hidden by default) */
.btn-add-cart {
    position: absolute;
    bottom: -50px;
    /* Hidden below the wrapper */
    left: 50%;
    transform: translateX(-50%);
    background-color: #4b3afa;
    /* Brand Blue */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    width: 80%;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(75, 58, 250, 0.3);
}

.btn-add-cart:hover {
    background-color: #382ae0;
    color: #ffffff;
}

.btn-add-cart i {
    margin-right: 5px;
}

/* Reveal button on hover */
.product-img-wrapper:hover .btn-add-cart {
    bottom: 20px;
    opacity: 1;
}

/* Product Info Text */
.product-price {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.price-current {
    color: #32b97c;
    /* Brand Green */
    font-weight: 600;
    margin-right: 5px;
}

.price-old {
    color: #a1a5b7;
    /* Muted Grey */
    text-decoration: line-through;
    font-size: 0.8rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1b1e;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.product-title:hover {
    color: #4b3afa;
}

/* Star Rating */
.product-rating {
    color: #fca311;
    /* Gold/Yellow */
    font-size: 0.8rem;
}

/* Bottom Link */
.btn-check-all {
    display: inline-block;
    margin-top: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1b1e;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.btn-check-all:hover {
    color: #4b3afa;
    border-bottom-color: #4b3afa;
}




/* =========================================
           SECTION 1: BLUE FEATURE SECTION
           ========================================= */
.blue-feature-section {
    background-color: #4b3afa;
    /* Brand Blue */
    padding: 100px 0;
    color: #ffffff;
    overflow: hidden;
}

.img-stack-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.main-room-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.polaroid-img {
    position: absolute;
    top: 25%;
    right: -15%;
    width: 180px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: rotate(10deg);
    transition: transform 0.3s ease;
}

.polaroid-img:hover {
    transform: rotate(0deg) scale(1.05);
}

.blue-sec-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blue-sec-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 90%;
}

.btn-link-white {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.btn-link-white:hover {
    color: #ffffff;
    opacity: 0.8;
}

.btn-link-white .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-link-white:hover .arrow {
    transform: translateX(5px);
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}



/* Star Rating */
.rating-stars {
    color: #fca311;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Quote Text */
.testimonial-quote {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    color: #1a1b1e;
    margin-bottom: 25px;
    border: none;
    padding: 0;
}

/* Author Info */
.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1b1e;
    margin-right: 8px;
}



/* Owl Carousel Custom Dots */
.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 30px !important;
}

.testimonial-carousel .owl-dot span {
    background: #e0e0e0 !important;
    width: 12px;
    height: 12px;
    margin: 5px;
    border-radius: 50%;
    display: inline-block;
}

.testimonial-carousel .owl-dot.active span {
    background: #fca311 !important;
}

/* Bottom Divider Line */
.testimonial-divider {
    border-top: 1px solid #e5e5e5;
    margin-top: 60px;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-content-wrapper {
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 20px !important;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }
}

/* =========================================
           SECTION 3: FULL WIDTH CTA IMAGE
           ========================================= */
.cta-image-section {
    position: relative;
    padding: 250px 0;
    text-align: center;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    z-index: 1;
}

/* Dark Overlay for text readability */
.cta-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 50% black overlay */
    z-index: -1;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    /* max-width: 600px; */
}

.btn-solid-green {
    background-color: #68d585;
    color: #1a1b1e;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-solid-green:hover {
    background-color: #55c073;
    color: #1a1b1e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(104, 213, 133, 0.3);
}

/* =========================================
           RESPONSIVE ADJUSTMENTS
           ========================================= */
@media (max-width: 991px) {
    .polaroid-img {
        right: -5%;
        width: 140px;
    }

    .blue-sec-text,
    .testi-quote-text {
        max-width: 100%;
    }

    .text-col {
        margin-top: 50px;
        text-align: center;
    }

    .img-stack-container,
    .offset-image-wrapper {
        margin-bottom: 40px;
    }

    .offset-bg-box {
        bottom: -10px;
        left: -10px;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}


/* =========================================
           HERO SECTION & BACKGROUND
           ========================================= */
.hero-purple-section {
    position: relative;
    padding: 20px 0 180px 0;
    /* Extra bottom padding for the wave */
    color: #ffffff;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    height: 100vh;
}

/* Pure CSS subtle background circles/waves overlay */
/* .hero-purple-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
} */

/* =========================================
           LEFT CONTENT TYPOGRAPHY
           ========================================= */
.hero-content {
    padding-top: 60px;
}



.btn-explore {
    background-color: #fc5a5a;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 50px;
}

.btn-explore:hover {
    background-color: #e54848;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(252, 90, 90, 0.3);
}

/* =========================================
           APP STORE BUTTONS (Pure CSS)
           ========================================= */
.download-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.store-buttons-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn {
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.store-btn:hover {
    background-color: #00000063;
    color: #ffffff;
}

.store-btn i {
    font-size: 1.8rem;
    margin-right: 12px;
}

.store-text-col {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-small-text {
    font-size: 0.65rem;
    line-height: 1;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.store-big-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
}

/* =========================================
           RIGHT CONTENT (MOCKUP OVERLAPS)
           ========================================= */
/* Container ko relative banayein taaki dots iske hisaab se position ho sakein */
.mockup-container {
    position: relative;
    z-index: 1;
    /* Stacking context banane ke liye */
    margin: 0 auto;
    /* Center karne ke liye (optional) */
}

/* Main mobile image hamesha upar (front) rahegi */
.main-mobile-img {
    position: relative;
    z-index: 2;
    /* Z-index 2 ensures ye dots ke upar dikhe */
    width: 100%;
    border-radius: 20px;
    /* Agar phone edges round hain */
}

/* Dots pattern ko absolute karke top-right set karein */
.dots-pattern {
    position: absolute;
    top: -40px;
    /* Ise badha ya ghata kar upar-neeche adjust karein */
    right: 0;
    /* Ise badha ya ghata kar left-right adjust karein */
    z-index: 0;
    /* Z-index 0 ensures ye phone ke peeche rahe */
    width: 120px;
    /* Dots ka size control karne ke liye */
}

.floating-chat-img {
    position: absolute;
    bottom: 25%;
    left: -15%;
    width: 65%;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: transform 0.3s ease;
}

.floating-chat-img:hover {
    transform: translateY(-10px);
}



.section-subtitle-2 {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    max-width: 90%;

}


/* =========================================
           BOTTOM SVG WAVE
           ========================================= */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: #ffffff;
    /* Matches the body background color */
}

/* =========================================
           RESPONSIVE ADJUSTMENTS
           ========================================= */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .mockup-container {
        margin: 60px auto 0 auto;
    }

    .floating-chat-img {
        left: -5%;
        width: 75%;
    }

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

    .hero-subtitle {
        margin: 0 auto 40px auto;
    }

    .store-buttons-wrapper {
        justify-content: center;
    }
}


.collaborate-section {
    padding: 100px 0;
}

/* =========================================
           LEFT COLUMN: AVATAR CLUSTER
           ========================================= */
.avatar-cluster-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

/* Pure CSS Background Decoration */
.bg-shape-green {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 50%;
    height: 50%;
    background-color: #eaf5ec;
    /* Soft green */
    border-radius: 20px;
    z-index: 0;
}

.dot-pattern {
    position: absolute;
    top: 25%;
    left: 10%;
    width: 80px;
    height: 120px;
    background-image: radial-gradient(#1a1b1e 15%, transparent 16%);
    background-size: 12px 12px;
    opacity: 0.8;
    z-index: 0;
}

/* Shared Avatar Styles */
.avatar {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: scale(1.08);
    z-index: 10 !important;
}

/* Specific Avatar Positioning & Sizing */
.avatar-main {
    width: 200px;
    height: 220px;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.avatar-main:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.avatar-1 {
    /* Top Center */
    width: 80px;
    height: 80px;
    border-radius: 16px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.avatar-2 {
    /* Top Right */
    width: 70px;
    height: 80px;
    border-radius: 16px;
    top: 15%;
    right: 8%;
    z-index: 1;
}

.avatar-3 {
    /* Right Middle */
    width: 60px;
    height: 60px;
    border-radius: 12px;
    top: 48%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.avatar-4 {
    /* Overlapping Bottom Right */
    width: 50px;
    height: 50px;
    border-radius: 10px;
    bottom: 20%;
    right: 28%;
    z-index: 3;
    border: 3px solid #fff;
}

.avatar-5 {
    /* Bottom Left-ish */
    width: 65px;
    height: 80px;
    border-radius: 12px;
    bottom: -5%;
    left: 35%;
    z-index: 1;
}

.avatar-6 {
    /* Middle Left */
    width: 75px;
    height: 95px;
    border-radius: 16px;
    bottom: 20%;
    left: 5%;
    z-index: 1;
}

.avatar-7 {
    /* Top Left */
    width: 60px;
    height: 60px;
    border-radius: 12px;
    top: 18%;
    left: 12%;
    z-index: 1;
}




/* Dark Section Background */
.dark-testimonial-section {
    background-color: #1a1d29;
    /* Dark Navy Background */
    padding: 100px 0;
    overflow: hidden;
}

/* Typography & Icons */
.quote-icon {
    color: #68d585;
    /* Light Green */
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.rating-stars {
    color: #fca311;
    /* Yellow Stars */
    font-size: 1rem;
    margin-bottom: 20px;
}

.testi-quote-text {
    color: #e2e2e2;
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 300;
}

.customer-name {
    color: #8c92a4;
    /* Muted gray for author */
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Offset Image Styling (Screenshot Design) */
.offset-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 320px;
    /* Adjust size based on your need */
    margin: 0 auto;
}

/* The Dark Box Behind Image */
.offset-bg-box {
    position: absolute;
    top: 30px;
    left: -30px;
    /* Shifts the box to the left */
    width: 100%;
    height: 100%;
    background-color: #232838;
    /* Slightly lighter than main bg */
    border-radius: 8px;
    z-index: 1;
}

/* The Main Image */
.testi-portrait {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* CRITICAL OWL FIX: Stop images from stretching */
.ecommerce-testi-carousel .owl-item img.testi-portrait {
    width: 100% !important;
    height: auto;
    display: block;
}

/* Owl Carousel Custom Dots for Dark Theme */
.ecommerce-testi-carousel .owl-dots {
    text-align: center;
    margin-top: 40px !important;
}

.ecommerce-testi-carousel .owl-dot span {
    background: rgba(255, 255, 255, 0.2) !important;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.ecommerce-testi-carousel .owl-dot.active span {
    background: #68d585 !important;
    /* Green dot for active */
    width: 25px;
    /* Pill shape for active dot */
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .offset-bg-box {
        left: -15px;
        /* Reduce offset on mobile so it doesn't cut off */
    }
}


/* =========================================
           RIGHT COLUMN: TEXT CONTENT
           ========================================= */
.text-content-wrapper {
    padding-left: 50px;
}



.section-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 90%;
}

.feature-block {
    margin-bottom: 35px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1b1e;
    margin-bottom: 12px;
}

.feature-text-home {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
    max-width: 65%;
}

/* =========================================
           RESPONSIVE ADJUSTMENTS
           ========================================= */
@media (max-width: 991px) {
    .text-content-wrapper {
        padding-left: 0;
        margin-top: 60px;
        text-align: center;
    }


    .section-subtitle,
    .feature-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .avatar-cluster-wrapper {
        transform: scale(0.9);
        /* Scale down slightly on tablets */
    }
}

@media (max-width: 576px) {
    .avatar-cluster-wrapper {
        transform: scale(0.7);
        /* Scale down for mobile phones */
        margin-top: -30px;
        margin-bottom: -30px;
    }
}



.organize-section {
    padding: 80px 0;
}



.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 90%;
}

.feature-block {
    margin-bottom: 40px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #161c2d;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    max-width: 85%;
    margin: 0;
}

/* =========================================
           RIGHT COLUMN: OVERLAPPING UI COMPOSITION
           ========================================= */
.visual-composition {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    min-height: 600px;
}

/* 1. Purple Background Shape */
.bg-shape-purple {
    position: absolute;
    top: -5%;
    right: -5%;
    width: 75%;
    height: 60%;
    background-color: #f4f0ff;
    /* Light purple */
    border-radius: 24px;
    z-index: 0;
}

/* 2. Hollow Green Dot Pattern (SVG background) */
.bg-dots-green {
    position: absolute;
    bottom: 15%;
    left: -10%;
    width: 180px;
    height: 180px;
    /* Inline SVG for hollow circles */
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='%2332b97c' stroke-width='1.5'/%3E%3C/svg%3E");
    z-index: 0;
}

/* 3. Main White App Interface */
.app-card-main {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    width: 85%;
    margin: 0 auto;
    padding: 25px;
    border: 1px solid #f8f9fa;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.app-header i {
    color: #a1a5b7;
    cursor: pointer;
}

/* Simulated App Grid */
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.app-grid-item {
    border: 1px solid #eef0f4;
    border-radius: 12px;
    padding: 15px;
}

.team-name {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.team-members {
    font-size: 0.7rem;
    color: #a1a5b7;
    margin-left: 16px;
    /* Align with text */
}

/* 4. Floating White Card (Content) */
.floating-card-white {
    position: absolute;
    top: 25%;
    left: -15%;
    z-index: 2;
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

/* 5. Floating Red Card (General) */
.floating-card-red {
    position: absolute;
    bottom: 22%;
    left: -5%;
    z-index: 3;
    background: linear-gradient(135deg, #ff5e62 0%, #ff9966 100%);
    /* Vibrant Red Gradient */
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 20px 40px rgba(255, 94, 98, 0.3);
    text-align: center;
    color: #ffffff;
    animation: float 5s ease-in-out infinite alternate;
}

.avatar-group {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.avatar-group img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #ff7b7b;
    /* Border matching background to blend overlaps */
    object-fit: cover;
    margin-left: -12px;
    /* Negative margin for overlap */
}

.avatar-group img:first-child {
    margin-left: 0;
}

.red-card-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.red-card-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* =========================================
           RESPONSIVE ADJUSTMENTS
           ========================================= */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

    .visual-composition {
        margin-top: 80px;
        transform: scale(0.9);
        /* Scale down entirely to fit tablets */
        transform-origin: top center;
    }

    .feature-text,
    .section-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .visual-composition {
        transform: scale(0.7);
    }

    .floating-card-white {
        left: -5%;
    }
}


.how-it-works-section {
    padding: 100px 0;
    text-align: center;
}


.section-subtitle {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Step Items */
.step-item {
    position: relative;
}

/* Step Number Wrapper (For connecting line) */
.step-number-wrapper {
    position: relative;
    margin-bottom: 35px;
    z-index: 1;
}

/* Dashed Line Connecting the Circles */
/* Applied to all except the last column */
.step-item:not(:last-child) .step-number-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    border-top: 2px dashed #d1d5db;
    /* Light gray dashed line */
    z-index: -1;
    transform: translateY(-50%);
}

/* Numbered Circles */
.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    /* Box shadow used to create a white "gap" between the circle and the dashed line */
    box-shadow: 0 0 0 15px #ffffff;
    position: relative;
    z-index: 2;
}

/* Specific Colors */
.bg-red {
    background-color: #f74d4d;
}

.bg-green {
    background-color: #68d585;
}

.bg-purple {
    background-color: #473bf0;
}

/* Step Text */
.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1b1e;
    margin-bottom: 15px;
}

.step-text {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    max-width: 85%;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .step-item {
        margin-bottom: 50px;
    }

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

    /* Hide the dashed line on mobile since items stack vertically */
    .step-item:not(:last-child) .step-number-wrapper::after {
        display: none;
    }

}


.app-solution-section {
    /* Dark Blue/Slate */
    background-color: #161C2D;
    color: #ffffff;
    position: relative;
    padding: 20px 0 100px 20px;
    /* background-position: center; */
    background-size: cover;
    background-repeat: no-repeat;
    /* Space for the overlapping video */
}

/* Top Wave SVG Divider */
.custom-shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
    /* Pulls the wave exactly to the top edge */
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}



/* =========================================
           PART 1: OVERLAPPING VIDEO
           ========================================= */
.video-overlap-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px auto;
    /* Pulls video UP into the white space */
    z-index: 10;
}

.video-thumbnail {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* height: 450px; */
    margin-top: -250px;
}

/* Dotted Pattern behind video */
.dot-pattern {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#32b97c 15%, transparent 16%);
    background-size: 14px 14px;
    z-index: -1;
    opacity: 0.5;
}

/* Play Button Overlay */
.play-btn {
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f74d4d;
    /* Red play icon */
    font-size: 1.5rem;
    z-index: 2;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    color: #f74d4d;
}

.play-btn i {
    margin-left: 4px;
}

/* Feature Item Layout */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* Icon aur text ke beech ka khula space */
    padding-right: 15px;
    /* Right side se thodi breathing room */
}

/* Icon Styling */
.feature-icon {
    color: #32b97c;
    /* Green icon color */
    font-size: 2rem;
    /* Icon size bada kiya */
    flex-shrink: 0;
    /* Icon dabega nahi jab text zyada ho */
    margin-top: 5px;
    /* Text ke sath properly align karne ke liye */
}

/* Typography */
.feature-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    /* Agar dark theme hai toh white text */
}

.feature-content p {
    font-size: 0.9rem;
    color: #a1a5b7;
    /* Muted gray text */
    line-height: 1.8;
    /* Line spacing badhayi for readability */
    margin: 0;
}


.section-divider {

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    margin: 40px auto 60px auto;

    max-width: 900px;

}



.stats-text {

    text-align: center;

    font-size: 1.3rem;

    font-weight: 600;

    margin-bottom: 40px;

}



.text-green {

    color: #32b97c;

    border-bottom: 2px solid #32b97c;

    padding-bottom: 2px;

}

.testimonial-stack {
    max-width: 750px;
    margin: 0 auto;
}

/* Container defining the visible area of the scroll */
.testimonial-marquee-container {
    height: 400px;
    /* Adjust this height based on how many cards you want visible at once */
    overflow: hidden;
    position: relative;

    /* Adds a smooth fade-out effect at the top and bottom */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* The track that actually moves */
.testimonial-track {
    display: flex;
    flex-direction: column;
    /* 15s controls the speed. Increase for slower motion */
    animation: scrollVertical 15s linear infinite;
}

/* Pause the animation when user hovers over the reviews */
.testimonial-track:hover {
    animation-play-state: paused;
}

/* The Infinite Scroll Keyframes */
@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }

    100% {
        /* Shifts exactly 50% up (which equals the height of the original set of cards) */
        transform: translateY(-50%);
    }
}

/* Card Styles */
.testi-card {
    border-radius: 12px;
    padding: 30px 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.3s ease;
}

/* Removed the hover translateY(-3px) from .testi-card since the track is already moving */

.testi-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testi-content p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 10px;
}

.testi-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: #8c92a4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testi-card.active {
    background-color: #ffffff;
    color: #1a1b1e;
}

.testi-card.active .testi-content p {
    color: #1a1b1e;
}

.testi-card.secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* Button */
.btn-read-more {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #32b97c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-read-more:hover {
    color: #269160;
}

.btn-read-more i {
    margin-left: 5px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .video-overlap-wrapper {
        margin: -100px 20px 60px 20px;
    }

    .video-thumbnail {
        height: 300px;
    }

    .dot-pattern {
        display: none;
    }


    .testi-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}


.pricing-easy-section {
    padding: 100px 0;
}


.section-subtitle {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 60px auto;
}

/* Pricing Cards */
.pricing-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Plan Header Details */
.plan-name {
    color: #f74d4d;
    /* Bright red matching the mockup */
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.price-block {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 5px;
    margin-right: 2px;
}

.amount {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: #1a1b1e;
}

.duration {
    font-size: 1rem;
    font-weight: 500;
    color: #8c92a4;
    margin-top: 40px;
    /* Aligns 'mo' to the bottom of the number */
    margin-left: 5px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.features-list li {
    padding: 18px 0;
    border-top: 1px solid #f0f2f5;
    /* Subtle divider lines */
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Buttons */
.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dark-navy {
    background-color: #1a1e2d;
    color: #ffffff;
}

.btn-dark-navy:hover {
    background-color: #000000;
    color: #ffffff;
}

.btn-red {
    background-color: #f74d4d;
    color: #ffffff;
}

.btn-red:hover {
    background-color: #e53e3e;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }

    .amount {
        font-size: 3.5rem;
    }
}




.product-hero-section {
    position: relative;
    height: 300vh;
    /* Section ki height badi kar rahe hain taaki scroll karne ka space mile */
    background-color: #f8f9fa;
    /* Light background */
}

.canvas-container {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    /* Yeh layer sabse peeche rahegi */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: black;
}

#airpod-canvas {
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Text canvas ke upar rahega */
    /* padding-top: 50vh; */
    /* Text ko thoda neeche se start karne ke liye */
}

/* Purane text styles ko center align karna zaroori hai */
.hero-subtitle.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Product Image & Animation */
.product-img-wrapper {
    margin-bottom: 40px;
}

.product-image {
    max-width: 250px;
    width: 100%;
    /* Floating Animation */
    animation: floatImage 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

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

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

/* Typography */
.pre-title {
    color: #f74d4d;
    /* Brand Red */
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}


/* Buttons & Links */
.btn-buy {
    background-color: #4b3afa;
    /* Brand Blue */
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    border: none;
}

.btn-buy:hover {
    background-color: #382ae0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(75, 58, 250, 0.3);
}

.watch-action-link {
    display: block;
    color: #1a1b1e;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.watch-action-link:hover {
    color: #4b3afa;
}

.watch-action-link i {
    margin-left: 5px;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .product-image {
        max-width: 200px;
    }
}


/* Shared Split Section Styles */
.split-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
}

.content-inner {
    max-width: 520px;
    width: 100%;
}

/* Image container ko relative banana zaroori hai */
.split-img {
    position: relative;
    overflow: hidden;
    /* Overlay bahar na jaye isliye */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover ke upar jo dark background aayega */
.image-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    /* Mast dark fade */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /* Default me hide rahega */
    transition: all 0.4s ease-in-out;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(3px);
    /* Thoda glassmorphism effect */
}

/* Jab mouse image par jaye */
.split-img:hover .image-hover-overlay {
    opacity: 1;
    /* Overlay dikhne lagega */
}

/* Text ki styling aur initial position (thoda niche) */
.hover-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    transform: translateY(30px);
    /* Niche dhakela hua hai */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy smooth effect */
}

.hover-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 400px;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.1s;
    /* Title aane ke thodi der baad ye aayega */
}

/* Jab hover ho tab text upar slide ho jaye */
.split-img:hover .hover-title,
.split-img:hover .hover-text {
    transform: translateY(0);
}

/* Section 1: Top (Light) */
.bg-light-section {
    background-color: #f8f9fa;
    /* Very light gray */
}

.runner-img {
    /* Replace with ur actual runner image */
    background-image: url(https://sm.pcmag.com/pcmag_me/review/a/apple-airp/apple-airpods-pro-2_6x5k.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

.title-dark {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1b1e;
    margin-bottom: 20px;
}

.subtitle-dark {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Feature Icon Boxes */
.icon-box-wrapper {
    display: flex;
    align-items: flex-start;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 15px;
}

.icon-purple {
    background-color: #eaebff;
    color: #4b3afa;
}

.icon-pink {
    background-color: #fce8eb;
    color: #f74d4d;
}

.feature-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1b1e;
    margin-bottom: 8px;
}

.feature-item-text {
    font-size: 0.85rem;
    color: #8c92a4;
    line-height: 1.6;
    margin: 0;
}

/* Section 2: Bottom (Brand Blue) */
.bg-brand-blue {
    background-color: #473bf0;
    /* Bright Blue */
    color: #ffffff;
}

.man-img {
    /* Replace with ur actual man with earbuds image */
    background-image: url(https://images.macrumors.com/t/iAY6H_lxBL1w8T6paeLDAe2EuSI=/2500x/article-new/2025/09/airpods-pro-3-blue.jpeg);
    background-repeat: no-repeat;
    background-position: center;
}

.title-white {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.subtitle-white {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Testimonial Area */
.testimonial-box {
    display: flex;
    align-items: flex-start;
    background: transparent;
}

.avatar-sm {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    margin-top: 5px;
}

.quote-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #ffffff;
}

.quote-author {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .split-content {
        padding: 60px 20px;
    }

    .title-dark,
    .title-white {
        font-size: 2rem;
    }

    .split-img {
        min-height: 400px;
    }
}


/* Trendy Section Base */
.trendy-product-section {
    position: relative;
    height: 100vh;
    /* Scroll length */
    background-color: #111217;
    /* Dark premium background */
}




/* Sticky Container jo frame ko hold karega */
.trendy-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Text default me hide rahega, GSAP isko show karega */
.trendy-text {
    position: absolute;
    top: 15%;
    /* Screen me thoda upar */
    text-align: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    /* Thoda neeche se aayega */
}

#trendy-canvas {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    z-index: 1;
}

/* Abstract Wave Background Effect (Pure CSS) */
.abstract-wave-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vw;
    height: 200vw;
    transform: translate(-50%, -30%);
    z-index: -1;
    pointer-events: none;
}

.wave-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 45%;
    transform: translate(-50%, -50%);
    animation: rotateWave 40s linear infinite;
}

.wave-line:nth-child(2) {
    width: 95%;
    height: 95%;
    border-radius: 40%;
    animation-direction: reverse;
    animation-duration: 50s;
}

.wave-line:nth-child(3) {
    width: 90%;
    height: 90%;
    border-radius: 48%;
    animation-duration: 60s;
}

@keyframes rotateWave {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


.section-subtitle {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #a1a5b7;
    /* Muted light gray */
    max-width: 550px;
    margin: 0 auto 60px auto;
}

/* Product Image & Animation */
.product-showcase {
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.earbuds-img {
    max-width: 320px;
    width: 100%;
    /* Drop shadow specifically for transparent PNGs */
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.4));
    /* Floating Animation */
    animation: floatProduct 5s ease-in-out infinite;
}

@keyframes floatProduct {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

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

/* Glow effect behind the product */
.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .section-subtitle {
        max-width: 90%;
    }

    .earbuds-img {
        max-width: 250px;
    }
}

/* =========================================
           TOP SECTION: PRODUCT GRID
           ========================================= */
.product-grid-section {
    padding: 100px 0 80px 0;
    text-align: center;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 60px auto;
}

/* Product Card Styles */
.product-card {
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    /* Ensures images are not stretched */
    margin-bottom: 25px;
    mix-blend-mode: multiply;
    /* Removes white background if using JPEGs */
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1b1e;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.8rem;
    color: #8c92a4;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 15px;
}

.btn-buy {
    background-color: #4b3afa;
    /* Brand Blue */
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-buy:hover {
    background-color: #382ae0;
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(75, 58, 250, 0.25);
}

/* =========================================
           BOTTOM SECTION: LIFESTYLE IMAGE
           ========================================= */
.lifestyle-section {
    width: 100%;
    line-height: 0;
    /* Removes any bottom gap below image */
}

.lifestyle-img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    /* Ensures it fills width properly on large screens */
}

/* Responsive */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 40px;
    }

}








/* Section Spacing */
.contact-section {
    padding: 111px 0;
}

/* Headings */
.contact-title {
    font-weight: 700;
    color: #1a1b1e;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-subtitle {
    color: #6c757d;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Contact Info Cards (Top 3 Icons) */
.contact-info-block {
    margin-bottom: 40px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    color: #4b3afa;
    /* Purple Brand Color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(75, 58, 250, 0.1);
}

.info-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1b1e;
    margin-bottom: 10px;
}

.info-text {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Form Card Styling */
.contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

/* Form Controls */
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1b1e;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #495057;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #4b3afa;
    box-shadow: 0 0 0 3px rgba(75, 58, 250, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #adb5bd;
}

/* Submit Button */
.btn-brand {
    background-color: #4b3afa;
    color: #ffffff;
    border-radius: 8px;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    min-width: 160px;
}

.btn-brand:hover {
    background-color: #382ae0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(75, 58, 250, 0.3);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 30px 20px;
    }


    .contact-info-block {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    .info-text, .info-title {
    font-size: 12px;
}
}



/* Container ko center karna aur 3D space banana */
.lifestyle-container {
    margin: 0 auto;
    perspective: 1200px;
    /* Yeh 3D depth create karta hai */
}

/* Main Card jiske andar image hai */
.lifestyle-card {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    transform-style: preserve-3d;
    /* Iske andar ki cheezein 3D me move hongi */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    /* Jab mouse hatega toh wapas apni jagah aane ka smooth transition */
    transition: transform 0.1s ease-out;
}

.lifestyle-card.resetting {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    /* Image corner se na kate isliye thoda zoom */
}

/* Chamak (Glare) jo mouse ke sath ghumegi */
.glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 60%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hawa mein tairta hua text (Z-axis translation) */
.lifestyle-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 3;
    color: white;
    pointer-events: none;
    transform: translateZ(80px);
    /* MAGIC: Ye text ko screen se bahar (upar) le aata hai */
}

.lifestyle-text h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* Premium Glassmorphism Button */
.btn-buy-final {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    pointer-events: auto;
    /* Button clickable rakhne ke liye */
    transition: all 0.3s ease;
}

.btn-buy-final:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}













/* Hero Section Spacing */
.seo-camp-hero {
    min-height: 100vh;
}

/* Typography */
.seo-camp-title {
    color: #000000;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.seo-camp-desc {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
}

/* Try It Free Button */
.seo-camp-btn {
    background-color: #356cfc;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 32px;
    transition: all 0.3s ease;
}

.seo-camp-btn:hover {
    background-color: #2552d4;
    transform: translateY(-2px);
}

/* Overlapping Avatars Widget */
.seo-camp-avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -12px;
    /* Pulls images left to overlap */
    position: relative;
    object-fit: cover;
}

.seo-camp-avatars img:first-child {
    margin-left: 0;
}

.seo-camp-avatars img:nth-child(1) {
    z-index: 1;
}

.seo-camp-avatars img:nth-child(2) {
    z-index: 2;
}

.seo-camp-avatars img:nth-child(3) {
    z-index: 3;
}

.seo-camp-avatars img:nth-child(4) {
    z-index: 4;
}

.seo-camp-avatar-plus {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #dbe4ff;
    color: #356cfc;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    margin-left: -12px;
    z-index: 5;
    position: relative;
}

/* Divider & Logos */
.seo-camp-divider {
    border-color: #e5e7eb;
    opacity: 1;
}

.seo-camp-logos img {
    height: 25px;
    filter: grayscale(100%);
    opacity: 0.7;
}

/* --- Right Side Image Design --- */

/* The rounded light blue shape behind the girl */
.seo-camp-img-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 90%;
    background-color: #f4f6fa;
    border-radius: 20px;
    z-index: 0;
}

/* The girl's image floating above the backdrop */
.seo-camp-hero-img {
    position: relative;
    z-index: 1;
    max-height: 650px;
    /* Adjust based on your actual transparent image size */
    filter: drop-shadow(0px 20px 25px rgba(0, 0, 0, 0.15));
    /* Adds shadow exactly like the original design */
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .seo-camp-hero {
        padding-top: 40px;
        text-align: center;
    }

    .seo-camp-desc {
        max-width: 100%;
        margin: 0 auto;
    }

    .d-flex.align-items-center.flex-wrap {
        justify-content: center;
    }

    .seo-camp-img-backdrop {
        width: 100%;
    }
}


/* Main Section Wrapper */
.seo-traffic-section {
    background-color: #fafbfc;
    overflow: hidden;
    /* Prevents background shapes from causing horizontal scroll */
}

/* Header Typography */
.seo-traffic-subtitle {
    color: #0d6efd;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.seo-traffic-title {
    color: #1a1e29;
    font-size: 2.75rem;
}

.seo-traffic-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 900px;
}

/* Feature Cards Styling */
.seo-traffic-card {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.seo-traffic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.seo-traffic-card-title {
    color: #1a1e29;
    letter-spacing: -0.3px;
}

/* Circular Icons */
.seo-traffic-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.seo-traffic-icon-green {
    background-color: #cbf9ea;
    /* Soft mint green */
}

.seo-traffic-icon-blue {
    background-color: #c4dffa;
    /* Soft light blue */
}

.seo-traffic-icon-purple {
    background-color: #ebccfa;
    /* Soft light purple */
}

/* CTA Button */
.seo-traffic-btn {
    background-color: #006aff;
    border: none;
    padding: 12px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.seo-traffic-btn:hover {
    background-color: #0056d6;
}

/* =========================================
   Abstract Corner Background Shapes 
   ========================================= */

.seo-traffic-shape-tl {
    position: absolute;
    top: 250px;
    left: 8%;
    width: 100px;
    height: 100px;
    background-color: #1fe099;
    /* Bright green */
    /* Creates a shape with a flat bottom-right corner */
    border-radius: 50% 50% 0 50%;
    z-index: 0;
}

.seo-traffic-shape-br {
    position: absolute;
    bottom: 80px;
    right: 12%;
    width: 120px;
    height: 120px;
    background-color: #006aff;
    /* Bright blue */
    /* Creates a shape with a flat top-left corner */
    border-radius: 0 50% 50% 50%;
    z-index: 0;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .seo-traffic-title {
        font-size: 2rem;
    }

    .seo-traffic-card {
        padding: 2rem !important;
    }
}



/* Typography */
.seo-pay-subtitle {
    color: #006aff;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.seo-pay-title {
    color: #1a1e29;
    font-size: 2.5rem;
    line-height: 1.2;
}

.seo-pay-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 500px;
}

/* Main Button */
.seo-pay-btn {
    background-color: #006aff;
    border: none;
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.seo-pay-btn:hover {
    background-color: #0056d6;
}

/* =========================================
   Left Side Graphics (Cards Layout)
   ========================================= */

.seo-pay-graphics-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 380px;
}

/* Background Purple Glow */
.seo-pay-glow-bg {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(234, 196, 243, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    filter: blur(20px);
}

/* Base Card Styles */
.seo-pay-card {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    z-index: 1;
    padding: 20px;
}

/* 1. Chart Card */
.seo-pay-chart-card {
    top: 0;
    left: 0;
    width: 280px;
    height: 200px;
    z-index: 2;
}

.seo-pay-chart-legend span {
    font-size: 0.65rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 4px;
}

.seo-pay-chart-legend i {
    font-size: 0.4rem;
}

.seo-pay-bars-container {
    height: 100px;
    padding-top: 10px;
    border-left: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    padding-left: 10px;
    padding-bottom: 5px;
}

.seo-pay-bar {
    width: 12px;
    border-radius: 3px 3px 0 0;
}

/* 2. Profile Card (Emily) */
.seo-pay-profile-card {
    top: 30px;
    right: 10px;
    width: 150px;
    z-index: 3;
}

.seo-pay-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* 3. Action Card (Emma) */
.seo-pay-action-card {
    bottom: 50px;
    left: 40px;
    width: 340px;
    z-index: 4;
    padding: 15px 20px;
}

.seo-pay-avatar-sm {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

/* Decline/Accept Buttons inside Action Card */
.seo-pay-btn-decline {
    background-color: #ffe5e5;
    color: #ff6b6b;
    border: none;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
}

.seo-pay-btn-accept {
    background-color: #e5ffe5;
    color: #20c997;
    border: none;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
}

/* Responsive Scaling */
@media (max-width: 575px) {
    .seo-pay-graphics-wrapper {
        transform: scale(0.8);
        transform-origin: top center;
        height: 320px;
    }

    .seo-pay-action-card {
        left: 10px;
        width: 300px;
    }
}





/* =========================================
   Left Column: Stats Cards
   ========================================= */
.seo-stats-cards-wrapper {
    max-width: 500px;
}

.seo-stats-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 85, 255, 0.05);
    /* Soft bluish shadow */
    transition: transform 0.3s ease;
}

.seo-stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 85, 255, 0.08);
}

/* Gradient Text for Numbers */
.seo-stats-number {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #c488ff 0%, #2a7bf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 120px;
    /* Aligns all texts straight */
}

.seo-stats-text {
    font-size: 0.95rem;
    font-weight: 500;
}

/* =========================================
   Right Column: Visual Graphic
   ========================================= */

/* .seo-stats-visual-col {
    min-height: 500px;
} */

.seo-stats-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(213, 160, 249, 0.3) 0%, rgba(213, 160, 249, 0) 70%);
    z-index: 0;
    filter: blur(30px);
}

.seo-stats-curve {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.seo-stats-graphics-container {
    z-index: 1;
}

.seo-stats-main-img {
    height: 540px;
    /* Adjust based on your actual transparent image */
    z-index: 2;
}

/* Floating Elements Base */
.seo-stats-float-window,
.seo-stats-float-pill,
.seo-stats-float-square {
    position: absolute;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

/* 1. Floating Window */
.seo-stats-float-window {
    top: 15%;
    left: -40px;
    padding: 15px;
    border-radius: 12px;
    width: 130px;
}

.seo-stats-float-window .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.seo-stats-float-window .line {
    height: 8px;
    background-color: #ebccfa;
    border-radius: 4px;
}

.seo-stats-float-window .box {
    width: 30px;
    height: 30px;
    background-color: #d8a0fa;
    border-radius: 4px;
}

/* 2. Floating Pills (Heart & Thumbs Up) */
.seo-stats-float-pill {
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
}

.seo-stats-float-pill .icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.8rem;
}

.seo-stats-pill-purple {
    top: 25%;
    right: -30px;
    background: linear-gradient(135deg, #db9afc, #c57dfa);
}

.seo-stats-pill-blue {
    bottom: 35%;
    left: -60px;
    background: linear-gradient(135deg, #4ea3ff, #1c7df7);
}

/* 3. White Square */
.seo-stats-float-square {
    bottom: 5%;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

/* Plus Icons */
.seo-stats-plus {
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .seo-stats-cards-wrapper {
        margin: 0 auto;
    }

    .seo-stats-main-img {
        height: 350px;
    }

    .seo-stats-float-window {
        left: -10px;
    }

    .seo-stats-pill-blue {
        left: -20px;
    }

    .seo-stats-pill-purple {
        right: -10px;
    }
}



.seo-offer-section {
    background-color: #fafbfc;
    /* Light off-white to make the pure white cards stand out */
}

/* Typography */
.seo-offer-subtitle {
    color: #006aff;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.seo-offer-title {
    color: #1a1e29;
    font-size: 2.5rem;
}

/* Cards Styling */
.seo-offer-card {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.seo-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 106, 255, 0.05);
}

.seo-offer-card-title {
    color: #1a1e29;
    font-size: 1.25rem;
}

.seo-offer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
}

/* =========================================
   Icon Box & Abstract Shape Designs
   ========================================= */

.seo-offer-icon-box {
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 1;
    border-radius: 12px 50% 50% 50%;
    /* Creates that abstract, organic leaf-like shape */
}

/* The actual icon inside the box */
.seo-offer-icon-box i {
    font-size: 1.5rem;
    color: #1a1e29;
    /* Dark color for icons like in the image */
    position: absolute;
    z-index: 2;
    /* Adjust positioning to make it look like the icon is sitting slightly off-center from the blob */
    transform: translate(5px, 5px);
}

/* Specific Background Colors for each Icon Blob */
.seo-offer-bg-mint {
    background-color: #e0f8ef;
}

.seo-offer-bg-purple {
    background-color: #f6edfd;
    border-radius: 50% 12px 50% 50%;
    /* Rotated shape variation */
}

.seo-offer-bg-blue {
    background-color: #e6f3ff;
    border-radius: 50% 50% 12px 50%;
}

.seo-offer-bg-yellow {
    background-color: #fff6da;
    border-radius: 50% 50% 50% 12px;
}

.seo-offer-bg-peach {
    background-color: #ffefe5;
}

.seo-offer-bg-pink {
    background-color: #fcebeb;
    border-radius: 50% 12px 50% 50%;
}

.seo-analysis-section {
    background-color: #fafbfc;
    /* Match with the aesthetic of clean backgrounds */
}

/* =========================================
   Right Column: Form Typography & Styling
   ========================================= */

.seo-analysis-title {
    color: #1a1e29;
    font-size: 2.25rem;
}

.seo-analysis-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 450px;
}

/* Custom Input Styling (No Borders, Soft Shadows) */
.seo-analysis-input {
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    background-color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    font-size: 0.9rem;
    color: #1a1e29;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.seo-analysis-input::placeholder {
    color: #1a1e29;
    opacity: 0.8;
    font-weight: 500;
}

.seo-analysis-input:focus {
    outline: none;
    box-shadow: 0 12px 35px rgba(0, 106, 255, 0.08);
    /* Slight blue glow shadow on focus */
    transform: translateY(-2px);
}

.seo-analysis-textarea {
    resize: none;
    /* Prevents user from breaking layout */
}

/* Submit Button */
.seo-analysis-btn {
    background-color: #006aff;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.seo-analysis-btn:hover {
    background-color: #0056d6;
}


/* =========================================
   Left Column: Visual Graphic
   ========================================= */

/* .seo-analysis-visual-col {
    min-height: 500px;
} */

.seo-analysis-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(213, 160, 249, 0.3) 0%, rgba(213, 160, 249, 0) 70%);
    z-index: 0;
    filter: blur(30px);
}

.seo-analysis-curve {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.seo-analysis-graphics-container {
    z-index: 1;
}

.seo-analysis-main-img {
    height: 450px;
    z-index: 2;
}

/* Floating Elements Base */
.seo-analysis-float-window,
.seo-analysis-float-pill,
.seo-analysis-float-square {
    position: absolute;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

/* 1. Floating Window */
.seo-analysis-float-window {
    top: 15%;
    left: -40px;
    padding: 15px;
    border-radius: 12px;
    width: 130px;
}

.seo-analysis-float-window .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.seo-analysis-float-window .line {
    height: 8px;
    background-color: #ebccfa;
    border-radius: 4px;
}

.seo-analysis-float-window .box {
    width: 30px;
    height: 30px;
    background-color: #d8a0fa;
    border-radius: 4px;
}

/* 2. Floating Pills (Heart & Thumbs Up) */
.seo-analysis-float-pill {
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
}

.seo-analysis-float-pill .icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.8rem;
}

.seo-analysis-pill-purple {
    top: 25%;
    right: -30px;
    background: linear-gradient(135deg, #db9afc, #c57dfa);
}

.seo-analysis-pill-blue {
    bottom: 35%;
    left: -60px;
    background: linear-gradient(135deg, #4ea3ff, #1c7df7);
}

/* 3. White Square */
.seo-analysis-float-square {
    bottom: 5%;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

/* Plus Icons */
.seo-analysis-plus {
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .seo-analysis-main-img {
        height: 350px;
    }

    .seo-analysis-float-window {
        left: -10px;
    }

    .seo-analysis-pill-blue {
        left: -20px;
    }

    .seo-analysis-pill-purple {
        right: -10px;
    }

    .seo-analysis-form {
        margin-top: 30px;
    }
}



/* =========================================
   Left Column Styling
   ========================================= */
.seo-faq-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.03em;
}

.seo-faq-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
}

.seo-faq-btn {
    background-color: #2b61ff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.seo-faq-btn:hover {
    background-color: #1e4bdb;
}

/* =========================================
   Custom Accordion Override Styling
   ========================================= */

.seo-faq-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-focus-box-shadow: none;
}

.seo-faq-item {
    border-bottom: 1px solid #f0f0f0;
    background-color: transparent;
}

/* Remove border from the last item to keep it clean */
.seo-faq-item:last-child {
    border-bottom: 1px solid #f0f0f0;
    /* Kept it to match your design image */
}

/* Accordion Button (Question) */
.seo-faq-button {
    padding: 1.5rem 0;
    font-weight: 600;
    color: #111111;
    font-size: 1.05rem;
    background-color: transparent !important;
    /* Forces background to stay transparent */
    box-shadow: none !important;
}

/* Active/Open state color */
.seo-faq-button:not(.collapsed) {
    color: #111111;
    background-color: transparent;
    box-shadow: none;
}

/* Customizing the Chevron icon color to black */
.seo-faq-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Accordion Body (Answer) */
.seo-faq-body {
    padding: 0 0 1.5rem 0;
    color: #737373;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .seo-faq-title {
        font-size: 2rem;
    }
}



/* Blue Container Box */
.seo-cta-box {
    background-color: #356cfc;
    /* Vibrant Blue matching the image */
    border-radius: 16px;
    padding: 80px 20px;
    box-shadow: 0 20px 40px rgba(53, 108, 252, 0.15);
    /* Soft blue shadow for depth */
}

/* Typography */
.seo-cta-title {
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
    max-width: 900px;
}

/* =========================================
   Buttons Styling
   ========================================= */

/* Solid White Button */
.seo-cta-btn-solid {
    background-color: #ffffff;
    color: #356cfc;
    border: 1px solid #ffffff;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.seo-cta-btn-solid:hover {
    background-color: #f8f9fa;
    color: #1e4bdb;
    transform: translateY(-2px);
}

/* Outline Button */
.seo-cta-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.seo-cta-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
}

/* =========================================
   Responsive Adjustments
   ========================================= */
@media (max-width: 768px) {
    .seo-cta-box {
        padding: 50px 20px;
    }

    .seo-cta-title {
        font-size: 1.75rem;
    }

    /* Make buttons full width on very small screens for better UX */
    .seo-cta-btn-solid,
    .seo-cta-btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

/* Main Section */
.seo-testi-section {
    background-color: #ffffff;
}

/* Left Typography */
.seo-testi-title {
    font-size: 2.25rem;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.seo-testi-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}

.seo-testi-btn {
    background-color: #2b61ff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.seo-testi-btn:hover {
    background-color: #1e4bdb;
}

/* =========================================
   Cards Styling
   ========================================= */

.seo-testi-card {
    padding: 40px 30px;
    border-radius: 16px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.seo-testi-card:hover {
    transform: translateY(-5px);
}

.seo-testi-text {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Avatar fix for Owl Carousel */
.seo-testi-carousel .owl-item img.seo-testi-avatar {
    width: 50px !important;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Blue Theme Card */
.seo-testi-card-blue {
    background-color: #356cfc;
    color: #ffffff;
    border: 1px solid #356cfc;
}

.seo-testi-card-blue .seo-testi-name {
    color: #ffffff;
}

.seo-testi-card-blue .seo-testi-role {
    color: rgba(255, 255, 255, 0.8);
}

/* White Theme Card */
.seo-testi-card-white {
    background-color: #ffffff;
    color: #6c757d;
    border: 1px solid #eaedf2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.seo-testi-card-white .seo-testi-name {
    color: #1a1e29;
}

.seo-testi-card-white .seo-testi-role {
    color: #adb5bd;
}

/* =========================================
   Owl Carousel Dots Styling
   ========================================= */

.seo-testi-carousel .owl-dots {
    text-align: left !important;
    margin-top: 30px !important;
    padding-left: 10px;
}

.seo-testi-carousel .owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: transparent !important;
    border: 1px solid #356cfc !important;
    border-radius: 50% !important;
    margin: 5px 6px !important;
    transition: all 0.3s ease;
}

.seo-testi-carousel .owl-dots .owl-dot.active span {
    background: #356cfc !important;
    box-shadow: 0 0 0 3px rgba(53, 108, 252, 0.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .seo-testi-carousel .owl-dots {
        text-align: center !important;
        padding-left: 0;
    }
}




.about-header {
    position: relative;
    padding: 120px 0 40px 0;
    text-align: center;
}

.breadcrumb-text {
    color: var(--theme-yellow);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.page-title {
    color: var(--primary-purple);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    color: var(--gray-text);
    font-size: 0.9rem;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pure CSS Wavy Background Decorations */
.decor {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
}

/* Horizontal Blue Wave (Top Left) */
.decor-wave-tl {
    width: 80px;
    height: 40px;
    top: 20%;
    left: 8%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cpath d='M5 20 Q 15 5, 25 20 T 45 20 T 65 20 T 85 20' fill='none' stroke='%23c2d4ff' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    transform: rotate(-15deg);
}

/* Horizontal Yellow Wave (Top Right) */
.decor-wave-tr {
    width: 80px;
    height: 40px;
    top: 15%;
    right: 10%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cpath d='M5 20 Q 15 5, 25 20 T 45 20 T 65 20 T 85 20' fill='none' stroke='%23ffeda1' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    transform: rotate(15deg);
}

/* =========================================
           MAIN HEADLINE
           ========================================= */
.main-headline-section {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.main-headline {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.4;
}

.highlight-pill {
    background-color: #a38ff5;
    color: #ffffff;
    padding: 5px 25px;
    border-radius: 50px;
    display: inline-block;
}

/* Small Triangle Decoration */
.decor-triangle {
    position: absolute;
    top: 0;
    right: 20%;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon points='12,2 22,22 2,22' fill='none' stroke='%23fdbb00' stroke-width='2'/%3E%3Cpath d='M10,0 L24,14' stroke='%237451f8' stroke-width='1'/%3E%3C/svg%3E");
}

/* =========================================
           CUSTOM OVERLAPPING GRID (THE MAGIC PART)
           ========================================= */
.showcase-grid-wrapper {
    position: relative;
    width: 100%;
    /* Creates a responsive aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    background-color: #f8f9fa;
}

/* Base properties for all grid items */
.cg-item {
    position: absolute;
}


/* 2. Yellow Experience Box */
.cg-yellow-box {
    top: 0;
    left: 0;
    width: 25%;
    height: 50%;
    background-color: var(--theme-yellow);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

.cg-yellow-box h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}

.cg-yellow-box p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* 3. Vertical Woman Image */
.cg-vert-img {
    top: 50%;
    left: 0;
    width: 25%;
    height: 50%;
    background: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80') center/cover no-repeat;
    z-index: 2;
}

/* 4. Purple Text Box */
.cg-purple-box {
    bottom: 0;
    left: 25%;
    width: 45%;
    height: 45%;
    background-color: var(--primary-purple);
    z-index: 2;
    padding: 30px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cg-purple-box .sub-title {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 5px;
}

.cg-purple-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cg-purple-box a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.cg-purple-box a:hover {
    opacity: 0.8;
}

/* 5. Dark Purple Play Button Box */
.cg-play-box {
    bottom: 0;
    left: 70%;
    width: 15%;
    height: 45%;
    background-color: var(--dark-purple);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cg-play-box:hover {
    background-color: #4928b5;
}

.cg-play-box i {
    color: #ffffff;
    font-size: 1.8rem;
}

/* =========================================
           BOTTOM TEXT & VERTICAL DECORATIONS
           ========================================= */
.bottom-text-section {
    padding: 60px 0 60px 0;
    position: relative;
}

.bottom-paragraph {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: center;
}

/* Vertical Purple Wave (Bottom Left) */
.decor-wave-bl {
    width: 30px;
    height: 100px;
    top: 20%;
    left: 8%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 100'%3E%3Cpath d='M15 5 Q 5 15, 15 25 T 15 45 T 15 65 T 15 85' fill='none' stroke='%23c8bbf4' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Vertical Yellow Wave (Bottom Right) */
.decor-wave-br {
    width: 30px;
    height: 100px;
    top: 20%;
    right: 8%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 100'%3E%3Cpath d='M15 5 Q 25 15, 15 25 T 15 45 T 15 65 T 15 85' fill='none' stroke='%23ffeda1' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* =========================================
           RESPONSIVE DESIGN ADJUSTMENTS
           ========================================= */
@media (max-width: 1199px) {
    .main-headline {
        font-size: 2.3rem;
    }

    .cg-purple-box h3 {
        font-size: 1.2rem;
    }

    .cg-yellow-box h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {

    /* Convert Absolute Grid to Flexbox for Tablets/Mobile */
    .showcase-grid-wrapper {
        padding-top: 0;
        display: flex;
        flex-wrap: wrap;
        min-height: auto;
    }

    .cg-item {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .cg-main-bg {
        width: 100%;
        height: 300px;
        order: 1;
    }

    .cg-yellow-box {
        width: 50%;
        height: 200px;
        order: 2;
    }

    .cg-vert-img {
        width: 50%;
        height: 200px;
        order: 3;
    }

    .cg-purple-box {
        width: 80%;
        padding: 40px 20px;
        order: 4;
    }

    .cg-play-box {
        width: 20%;
        order: 5;
    }

    .decor {
        display: none;
    }

    /* Hide squiggles on mobile to save space */
}

@media (max-width: 576px) {
    .main-headline {
        font-size: 1.8rem;
    }

    /* Stack everything vertically on very small screens */
    .cg-yellow-box,
    .cg-vert-img,
    .cg-purple-box,
    .cg-play-box {
        width: 100%;
        height: auto;
    }

    .cg-yellow-box,
    .cg-vert-img {
        height: 200px;
    }

    .cg-play-box {
        padding: 30px 0;
    }
}


/* =========================================
           PART 1: STATS SECTION
           ========================================= */
        .stats-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .stat-item {
            padding-right: 20px;
        }

        .stat-num {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a202c; /* Dark navy/black */
            margin-bottom: 12px;
        }

        .stat-text {
            font-size: 0.85rem;
            color: #718096; /* Gray text */
            line-height: 1.6;
            margin: 0;
        }

        /* =========================================
           PART 2: OFFICE CULTURE SECTION
           ========================================= */
        .culture-section {
            padding: 60px 0 60px 0;
            background-color: #ffffff;
        }

        /* Text Content */
        .culture-title {
            font-size: 3rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        /* Yellow Highlight Under "Culture" */
        .highlight-text {
            position: relative;
            display: inline-block;
            z-index: 1;
        }

        .highlight-text::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 8px; /* Adjusts how high the line overlaps the text */
            width: 100%;
            height: 5px;
            background-color: #ffc436; /* Brand Yellow */
            z-index: -1;
            border-radius: 2px;
        }

        .culture-desc {
            font-size: 0.95rem;
            color: #718096;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 95%;
        }

        /* Buttons */
        .btn-purple {
            background-color: #8b5cf6; /* Brand Purple */
            color: #ffffff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: 2px solid #8b5cf6;
        }

        .btn-purple:hover {
            background-color: #7c3aed;
            border-color: #7c3aed;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
        }

        .btn-play-video {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: 2px solid #ffc436; /* Yellow Border */
            color: #ffc436;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 8px 24px 8px 8px; /* Less padding on left to hug the icon */
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-play-video:hover {
            background-color: #fff9e6;
            color: #eab308;
            transform: translateY(-2px);
        }

        .play-icon-circle {
            width: 34px;
            height: 34px;
            background-color: #ffc436;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        .play-icon-circle i {
            margin-left: 3px; /* Centers play icon optically */
        }

        /* =========================================
           IMAGE GRID (CSS GRID LAYOUT)
           ========================================= */
        .culture-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 220px 220px; /* Exact heights for top and bottom left images */
            gap: 20px;
        }

        .grid-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }

        /* Grid Item Placement */
        .img-top-left {
            grid-column: 1 / 2;
            grid-row: 1 / 2;
        }

        .img-bottom-left {
            grid-column: 1 / 2;
            grid-row: 2 / 3;
        }

        .img-right-tall {
            grid-column: 2 / 3;
            grid-row: 1 / 3; /* Spans both rows */
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .culture-title {
                font-size: 2.5rem;
            }
            .culture-section {
                padding-top: 20px;
            }
            .culture-image-grid {
                margin-top: 50px;
            }
        }

        @media (max-width: 768px) {
            .stat-item {
                margin-bottom: 30px;
            }
            /* Convert grid to single column on mobile */
            .culture-image-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }
            .img-top-left, .img-bottom-left, .img-right-tall {
                grid-column: 1 / -1; /* Take full width */
                grid-row: auto;
                height: 250px; /* Fixed height for mobile */
            }

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



        .team-section {
            padding: 80px 0;
        }

        /* =========================================
           HEADER & BUTTONS
           ========================================= */
        .section-header {
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1b1e;
            margin-bottom: 15px;
        }

        .section-desc {
            font-size: 0.95rem;
            color: #6c757d;
            margin-bottom: 30px;
        }

        .btn-custom {
            padding: 10px 20px;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn-apply {
            background-color: #f4f5f7; /* Light gray */
            color: #1a1b1e;
            margin-right: 15px;
        }

        .btn-apply:hover {
            background-color: #e2e5e9;
            color: #1a1b1e;
        }

        .btn-contact {
            background-color: #6a35ff; /* Vibrant Purple */
            color: #ffffff;
        }

        .btn-contact:hover {
            background-color: #5526d9;
            color: #ffffff;
        }

        /* =========================================
           TEAM MEMBER CARD
           ========================================= */
        .team-member {
            text-align: center;
            padding: 10px;
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
        }

        /* Circular Avatar */
        .member-img {
            width: 130px;
            height: 211px;
            border-radius: 10%;
            object-fit: cover;
            margin-bottom: 20px;
            background-color: #e9ecef; /* Placeholder background */
        }

        .member-name {
            font-size: 1rem;
            font-weight: 700;
            color: #1a1b1e;
            margin-bottom: 5px;
        }

        .member-role {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            color: #6a35ff; /* Matching Purple */
            margin-bottom: 15px;
        }

        .member-desc {
            font-size: 0.75rem;
            color: #8c92a4;
            line-height: 1.6;
            margin-bottom: 15px;
            /* padding: 0 10px; */
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            /* justify-content: center; */
            gap: 12px;
        }

        .social-icons a {
            color: #adb5bd;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #6a35ff;
        }

        /* =========================================
           RESPONSIVE ADJUSTMENTS
           ========================================= */
        @media (max-width: 991px) {
            .team-member {
                margin-bottom: 40px;
            }
        }


        .client-reviews-section {
            padding: 80px 0;
        }

        /* =========================================
           HEADER & NAVIGATION ARROWS
           ========================================= */
        .section-header {
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--dark-blue);
            line-height: 1.3;
            margin: 0;
        }

        /* Yellow Underline Highlight */
        .highlight-text {
            position: relative;
            display: inline-block;
            z-index: 1;
        }

        .highlight-text::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 6px;
            width: 100%;
            height: 6px;
            background-color: var(--yellow-highlight);
            z-index: -1;
            border-radius: 4px;
        }

        /* Slider Controls */
        .slider-controls {
            display: flex;
            gap: 15px;
            justify-content: flex-end;
        }

        .nav-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            border: 2px solid var(--primary-purple);
            transition: all 0.3s ease;
            cursor: pointer;
            background: transparent;
            color: var(--primary-purple);
        }

        .nav-btn.prev {
            background-color: var(--primary-purple);
            color: #ffffff;
        }

        .nav-btn.prev:hover {
            background-color: #7c3aed;
            border-color: #7c3aed;
        }

        .nav-btn.next:hover {
            background-color: var(--primary-purple);
            color: #ffffff;
        }

        /* =========================================
           ACTIVE REVIEW (Main Content)
           ========================================= */
        /* Left Image Box */
        .main-reviewer-img-box {
            background-color: #9f7aea; /* Purple background for image */
            /* Adding a subtle repeating radial gradient to mimic the wavy background */
            background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #9f7aea 10px, #9061f9 10px, #9061f9 20px);
            border-radius: 24px;
            height: 380px;
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
        }

        .main-reviewer-img-box img {
            max-width: 90%;
            height: auto;
            object-fit: contain;
        }

        /* Text Content */
        .stars {
            color: var(--primary-purple);
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .review-heading {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-purple);
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .review-body {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .reviewer-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-purple);
            margin: 0;
        }

        .reviewer-role {
            font-size: 0.85rem;
            color: #9ca3af;
        }

        /* =========================================
           SECONDARY REVIEW CARD (Right Side Preview)
           ========================================= */
        .secondary-review-card {
            background-color: var(--light-purple-bg);
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }

        .secondary-heading {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 15px;
        }

        .secondary-body {
            font-size: 0.8rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .secondary-stars {
            color: var(--primary-purple);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .secondary-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-align: left;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-name-small {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary-purple);
            margin: 0;
        }

        .author-role-small {
            font-size: 0.7rem;
            color: #9ca3af;
            margin: 0;
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .slider-controls {
                justify-content: flex-start;
                margin-top: 20px;
            }
            .section-title {
                font-size: 2rem;
            }
            .main-reviewer-img-box {
                height: 300px;
            }
            .secondary-review-card {
                margin-top: 30px;
            }
        }



        :root {
            --brand-purple: #8b5cf6;
            --brand-yellow: #ffc436;
            --text-dark: #1e1b4b;
            --text-gray: #6b7280;
        }


        /* =========================================
           PART 1: SPONSORS SECTION
           ========================================= */
        .sponsors-section {
            padding: 80px 0 60px 0;
            text-align: center;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 50px;
        }

        /* Yellow Underline Custom Class */
        .yellow-underline {
            position: relative;
            display: inline-block;
            z-index: 1;
        }
        .yellow-underline::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 4px;
            width: 100%;
            height: 4px;
            background-color: var(--brand-yellow);
            z-index: -1;
            border-radius: 2px;
        }

        /* Sponsor Logos */
        .sponsor-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px 60px;
        }

        .sponsor-logos img {
            height: 35px; /* Adjust based on your actual logos */
            opacity: 0.5; /* Makes them look gray/muted */
            transition: opacity 0.3s ease, filter 0.3s ease;
            filter: grayscale(100%);
        }

        .sponsor-logos img:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        /* =========================================
           PART 2: NEWSLETTER BANNER
           ========================================= */
        .newsletter-section {
            padding: 0 0 100px 0;
        }

        .newsletter-box {
            background-color: #4b3afa;
            border-radius: 24px;
            padding: 60px 50px;
            color: #ffffff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
        }

        /* Newsletter Text */
        .nl-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* White text yellow underline override */
        .nl-title .yellow-underline::after {
            bottom: 6px;
        }

        .nl-desc {
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 35px;
            max-width: 450px;
        }

        /* Form Area */
        .nl-form-wrapper {
            display: flex;
            gap: 15px;
            max-width: 500px;
            flex-wrap: wrap; /* Ensures stacking on very small screens */
        }

        .input-group-custom {
            flex: 1;
            position: relative;
            min-width: 200px;
        }

        .input-group-custom i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .form-control.nl-input {
            background-color: rgba(255, 255, 255, 0.15); /* Translucent input */
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            padding: 12px 15px 12px 40px; /* Left padding for icon */
            border-radius: 8px;
            font-size: 0.9rem;
        }

        .form-control.nl-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-control.nl-input:focus {
            background-color: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: none;
        }

        .btn-subscribe {
            background-color: #ffffff;
            color: var(--brand-purple);
            font-weight: 600;
            border-radius: 8px;
            padding: 12px 25px;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-subscribe:hover {
            background-color: #f1f1f1;
            transform: translateY(-2px);
        }

        /* =========================================
           ANIMATED RIGHT ILLUSTRATION (Drop/Float)
           ========================================= */
        .nl-illustration-wrapper {
            position: absolute;
            right: 10%;
            top: 50%;
            transform: translateY(-50%);
            width: 250px;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Pulsing Circles Behind Email */
        .pulse-circle {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            animation: pulseBg 3s ease-in-out infinite alternate;
        }

        .pc-1 { width: 100%; height: 100%; }
        .pc-2 { width: 75%; height: 75%; animation-delay: 0.5s; background-color: rgba(255, 255, 255, 0.15); }
        .pc-3 { width: 50%; height: 50%; animation-delay: 1s; background-color: rgba(255, 255, 255, 0.2); }

        @keyframes pulseBg {
            0% { transform: scale(0.9); opacity: 0.5; }
            100% { transform: scale(1.1); opacity: 1; }
        }

        /* The Email Icon (Drop/Bounce Animation) */
        .animated-mail-img {
            position: relative;
            z-index: 2;
            width: 140px;
            /* Drop Bounce Animation */
            animation: dropBounce 4s ease-in-out infinite;
        }

        @keyframes dropBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); } /* Floats up/down like a drop */
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .nl-illustration-wrapper {
                position: relative;
                right: 0;
                top: 0;
                transform: translateY(0);
                margin: 40px auto 0 auto; /* Center on mobile */
            }
            .newsletter-box {
                text-align: center;
                padding: 40px 30px;
            }
            .nl-desc {
                margin-left: auto;
                margin-right: auto;
            }
            .nl-form-wrapper {
                margin: 0 auto;
                justify-content: center;
            }
        }





        /* Shopify Hero Section Wrapper */
        .shopify-hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            flex-direction: column;
           
            background-size: cover;
            background-position: center;
        }

        /* Shopify Gradient Overlay */
        .shopify-hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.1) 100%);
            z-index: 1;
        }

        /* Container */
        .shopify-hero-container {
            position: relative;
            z-index: 2;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            padding-top: 80px;
            padding-bottom: 40px;
        }

        /* Main Content */
        .shopify-hero-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .shopify-title {
            color: #ffffff;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .shopify-subtitle {
            color: #e5e7eb;
            font-size: 1.1rem;
            font-weight: 400;
            line-height: 1.6;
            max-width: 600px;
            margin-bottom: 0;
        }

        /* Bottom Action Bar */
        .shopify-bottom-bar {
            margin-top: 40px;
        }

        /* Solid White Button */
        .shopify-btn-solid {
            background-color: #ffffff;
            color: #000000;
            font-weight: 600;
            font-size: 1rem;
            padding: 12px 28px;
            border-radius: 50px; 
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #ffffff;
            display: inline-block;
        }

        .shopify-btn-solid:hover {
            background-color: #f3f4f6;
            transform: scale(1.02);
        }

        /* Promo Text */
        .shopify-promo-text {
            color: #d1d5db; 
            font-size: 0.8rem;
            line-height: 1.4;
            margin: 0;
        }

        /* Glassmorphism Button */
        .shopify-btn-glass {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            color: #ffffff;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 10px 24px;
            border-radius: 50px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
        }

        .shopify-btn-glass i {
            font-size: 0.8rem;
        }

        .shopify-btn-glass:hover {
            background-color: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.8);
            color: #ffffff;
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .shopify-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .shopify-hero-overlay {
                background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
            }
            .shopify-title {
                font-size: 2.2rem;
            }
            .shopify-subtitle {
                font-size: 1rem;
            }
            .shopify-bottom-bar {
                flex-direction: column;
                align-items: flex-start !important;
                gap: 20px;
            }
            .shopify-right-action {
                text-align: left !important;
                width: 100%;
            }
        }


            .shopify-stats-section {
            padding: 80px 0 60px 0;
        }

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

        /* Glowing effect behind the globe */
        .shopify-globe-glow {
            position: absolute;
            width: 80%;
            height: 80%;
            background: radial-gradient(circle, rgba(0, 246, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 0;
            border-radius: 50%;
        }

        .shopify-globe-img {
            position: relative;
            z-index: 1;
            max-width: 100%;
            height: auto;
        }

        /* Heading Styles */
        .shopify-stats-heading {
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.5px;
            margin-bottom: 50px;
        }

        /* Marker Highlight Effect */
        .shopify-highlight {
            position: relative;
            display: inline-block;
            background-color: #f0f4ff; /* Light bluish/purple tint */
            padding: 0 8px;
            border-radius: 4px;
            color: #000000;
        }

        /* Stats Grid Layout */
        .shopify-stat-box {
            border-left: 3px solid #00d2d3; /* Shopify cyan left border */
            padding-left: 20px;
            margin-bottom: 40px;
        }

        .shopify-stat-number {
            font-size: 1.8rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 5px;
        }

        .shopify-stat-label {
            font-size: 0.9rem;
            color: #6b7280;
            margin: 0;
        }

        /* =========================================
           BOTTOM SECTION: COMMUNITY CARDS
           ========================================= */
        .shopify-community-section {
            padding: 20px 0 100px 0;
        }

        .shopify-community-heading {
            font-size: 0.8rem;
            font-weight: 600;
            color: #004b7c; /* Deep sea blue */
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        /* Custom CSS Grid for exactly 5 columns */
        .shopify-cards-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .shopify-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0,0,0,0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .shopify-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

        /* Custom Icon Circles with varying colors */
        .shopify-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        /* Icon Colors Matching the Mockup */
        .icon-enterprise { background-color: #e6f7f2; color: #00a884; }
        .icon-plus { background-color: #ffeef1; color: #ff4d6d; }
        .icon-partners { background-color: #eff6ff; color: #3b82f6; }
        .icon-developers { background-color: #fff7ed; color: #f97316; }
        .icon-retail { background-color: #f3e8ff; color: #a855f7; }

        .shopify-card-title {
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }

        .shopify-card-text {
            font-size: 0.85rem;
            color: #6b7280;
            line-height: 1.6;
            margin: 0;
        }

        /* Card Container Setup */
.shopify-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px; /* Curves edges slightly */
    cursor: pointer;
}

/* Base Image */
.shopify-image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease; /* For smooth image zoom */
}

/* Hover Overlay Box */
.hover-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark transparent background */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0; /* Hidden by default */
    transition: all 0.4s ease; /* Smooth fade-in */
}

/* Heading inside overlay */
.hover-text-overlay h4 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 700;
    transform: translateY(20px); /* Pushed down initially */
    transition: transform 0.4s ease;
}

/* Paragraph inside overlay */
.hover-text-overlay p {
    margin: 0;
    font-size: 1rem;
    color: #e5e7eb;
    transform: translateY(20px); /* Pushed down initially */
    transition: transform 0.4s ease;
    transition-delay: 0.1s; /* Slight delay for nice effect */
}

/* --- THE HOVER ACTIONS --- */

/* 1. Zoom the image slightly */
.shopify-image-card:hover img {
    transform: scale(1.05);
}

/* 2. Show the dark overlay */
.shopify-image-card:hover .hover-text-overlay {
    opacity: 1;
}

/* 3. Slide up the text */
.shopify-image-card:hover .hover-text-overlay h4,
.shopify-image-card:hover .hover-text-overlay p {
    transform: translateY(0);
}

        /* =========================================
           RESPONSIVE ADJUSTMENTS
           ========================================= */
        @media (max-width: 1199px) {
            .shopify-cards-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 cards on tablet */
            }
        }

        @media (max-width: 991px) {
            .shopify-globe-wrapper {
                margin-bottom: 50px;
            }
            .shopify-stats-heading {
                font-size: 1.8rem;
                text-align: center;
            }
            .shopify-highlight {
                display: block; /* Wraps highlight nicely on mobile */
                width: max-content;
                margin: 0 auto;
            }
        }

        @media (max-width: 767px) {
            .shopify-cards-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 cards on small tablet */
            }
        }

        @media (max-width: 575px) {
            .shopify-cards-grid {
                grid-template-columns: 1fr; /* 1 card on mobile */
            }
            .shopify-stat-box {
                text-align: center;
                border-left: none;
                border-bottom: 3px solid #00d2d3;
                padding-left: 0;
                padding-bottom: 15px;
            }
        }


        .shopify-store-builder-section {
            padding: 100px 0;
            background-color: #fafafa;
        }

        /* Header Area */
        .shopify-section-header {
            margin-bottom: 40px;
        }

        .shopify-kicker {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            color: #005e6a; /* Deep Teal color from the mockup */
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .shopify-main-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #111827;
            letter-spacing: -0.5px;
            margin: 0;
        }

        /* Mockup Image Area */
        .shopify-mockup-wrapper {
            margin-bottom: 60px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft shadow for the interface */
            background-color: #ffffff;
        }

        .shopify-mockup-img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Features Area (Bottom 3 Columns) */
        .shopify-features-row {
            border-top: 1px solid #e5e7eb; /* The light gray line above features */
            padding-top: 50px;
        }

        .shopify-feature-item {
            padding-right: 20px;
        }

        .shopify-feature-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 15px;
        }

        .shopify-feature-desc {
            font-size: 0.95rem;
            color: #4b5563; /* Medium gray for text */
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .shopify-feature-link {
            font-size: 0.85rem;
            font-weight: 700;
            color: #111827;
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 4px;
            transition: color 0.3s ease;
        }

        .shopify-feature-link:hover {
            color: #005e6a;
            text-decoration-color: #005e6a;
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .shopify-main-title {
                font-size: 2.2rem;
            }
            .shopify-feature-item {
                margin-bottom: 40px;
            }
            /* Remove margin from last item on mobile */
            .shopify-feature-item:last-child {
                margin-bottom: 0;
            }
        }

        @media (max-width: 767px) {
            .shopify-store-builder-section {
                padding: 60px 0;
            }
            .shopify-main-title {
                font-size: 1.8rem;
            }
            .shopify-features-row {
                padding-top: 40px;
            }
        }


        /* =========================================
           SALES CHANNELS SECTION
           ========================================= */
        .shopify-sales-section {
            padding: 100px 0;
        }

        /* Header Row (Split Layout) */
        .shopify-header-row {
            margin-bottom: 60px;
        }

        /* Left Column Content */
        .shopify-kicker {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            color: #111827;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .shopify-main-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #111827;
            letter-spacing: -1px;
            line-height: 1.2;
            margin: 0;
        }

        /* Right Column Content */
        .shopify-desc {
            font-size: 1rem;
            color: #4b5563; /* Medium gray */
            line-height: 1.6;
            margin-bottom: 40px;
        }

        /* Link with Arrow and Full-width Bottom Border */
        .shopify-action-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #111827;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding-bottom: 15px;
            border-bottom: 1.5px solid #111827;
            transition: all 0.3s ease;
        }

        .shopify-action-link:hover {
            color: #4b5563;
            border-bottom-color: #4b5563;
        }

        .shopify-action-link i {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .shopify-action-link:hover i {
            transform: translateX(5px); /* Arrow moves slightly to the right on hover */
        }

        /* Images Grid */
        .shopify-image-card {
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 4px; /* Very subtle rounded corners */
        }

        .shopify-image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Maintaining a consistent aspect ratio if images vary in size */
            aspect-ratio: 4/5; 
            transition: transform 0.5s ease;
        }

        /* Optional: Gentle zoom effect on image hover for a premium feel */
        .shopify-image-card:hover img {
            transform: scale(1.03);
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .shopify-main-title {
                font-size: 2.2rem;
            }
            .shopify-desc-col {
                margin-top: 30px;
            }
        }

        @media (max-width: 767px) {
            .shopify-sales-section {
                padding: 60px 0;
            }
            .shopify-main-title {
                font-size: 1.8rem;
            }
            .shopify-header-row {
                margin-bottom: 40px;
            }
        }


        .shopify-pos-section {
            padding: 100px 0;
            background-color: #fafafa; /* Very light gray background */
        }

        /* Left Column: Text Content */
        .shopify-kicker {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            color: #111827;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .shopify-main-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #111827;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .shopify-desc {
            font-size: 1rem;
            color: #4b5563; /* Medium gray */
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 90%;
        }

        /* Action Link with Full Bottom Border */
        .shopify-action-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #111827;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding-bottom: 15px;
            border-bottom: 1.5px solid #d1d5db; /* Light gray line */
            transition: all 0.3s ease;
            max-width: 400px; /* Constrain width to match mockup */
        }

        .shopify-action-link:hover {
            color: #4b5563;
            border-bottom-color: #111827; /* Darkens on hover */
        }

        .shopify-action-link i {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .shopify-action-link:hover i {
            transform: translateX(5px);
        }

        /* =========================================
           RIGHT COLUMN: FLOATING VISUALS
           ========================================= */
        .pos-visual-wrapper {
            position: relative;
            width: 100%;
            border-radius: 8px;
            z-index: 1;
        }

        /* Main Image */
        .pos-main-img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        /* 1. Floating Toast (Top Right) */
        .pos-float-toast {
            position: absolute;
            top: 10%;
            right: -10%;
            background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 100%);
            border-radius: 12px;
            padding: 15px 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            color: white;
            z-index: 3;
            min-width: 180px;
        }

        .pos-float-toast i {
            color: #10b981; /* Emerald Green */
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .pos-float-toast .toast-title {
            font-size: 0.85rem;
            font-weight: 600;
            margin: 0;
        }

        .pos-float-toast .toast-price {
            font-size: 0.8rem;
            color: #d1d5db;
            margin: 0;
        }

        /* 2. Floating Dark UI Grid (Bottom Left) */
        .pos-float-ui {
            position: absolute;
            bottom: 5%;
            left: -15%;
            background-color: #212121;
            border-radius: 12px;
            padding: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            z-index: 2;
            width: 320px;
        }

        /* Inner CSS Grid for POS buttons */
        .pos-ui-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .pos-btn-mock {
            border-radius: 6px;
            padding: 12px 10px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 70px;
            color: #ffffff;
            font-size: 0.65rem;
            font-weight: 500;
        }

        .pos-btn-mock i {
            font-size: 0.8rem;
            margin-bottom: 8px;
            opacity: 0.8;
        }

        /* Colors mimicking the dark UI */
        .btn-red { background-color: #5c3a3a; }
        .btn-blue { background-color: #1e3a5f; }
        .btn-green { background-color: #2e4a3d; }
        .btn-dark { background-color: #2a3441; }

        /* Responsive Adjustments */
        @media (max-width: 1199px) {
            .pos-float-ui { left: -5%; width: 280px; }
            .pos-float-toast { right: -5%; }
        }

        @media (max-width: 991px) {
            .shopify-main-title { font-size: 2.2rem; }
            .pos-visual-wrapper { margin-top: 60px; }
            .pos-float-ui { left: 5%; bottom: -10%; } /* Bring inside so it doesn't overflow */
            .pos-float-toast { right: 5%; top: -5%; }
        }

        @media (max-width: 767px) {
            .shopify-pos-section { padding: 60px 0 80px 0; }
            .shopify-main-title { font-size: 1.8rem; }
            .pos-float-ui { width: 240px; }
            .pos-btn-mock { height: 50px; font-size: 0.55rem; padding: 8px;}
        }



        .marketing-section {
            padding: 100px 0;
        }

        .section-header-row {
            margin-bottom: 70px;
        }

        .kicker {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            color: #4b5563; /* Gray blue */
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .main-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #111827;
            letter-spacing: -1px;
            margin: 0;
        }

        .action-link {
            display: inline-flex;
            justify-content: space-between;
            align-items: center;
            color: #111827;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding-bottom: 10px;
            border-bottom: 1px solid #111827;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 320px;
        }

        .action-link:hover {
            color: #4b5563;
            border-bottom-color: #4b5563;
        }

        .action-link i {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .action-link:hover i {
            transform: translateX(5px);
        }

        /* =========================================
           LEFT COLUMN: FEATURE LIST
           ========================================= */
        .feature-block {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 40px;
        }

        /* Colored Icons */
        .icon-circle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 600;
            flex-shrink: 0;
        }

        .icon-purple { background-color: #f3e8ff; color: #9333ea; }
        .icon-blue { background-color: #eff6ff; color: #3b82f6; }
        .icon-red { background-color: #ffe4e6; color: #e11d48; }

        .feature-content {
            flex-grow: 1;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 12px;
        }

        .feature-desc {
            font-size: 0.95rem;
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Progress Lines */
        .progress-line {
            height: 6px;
            width: 100%;
            background-color: #e5e7eb; /* Light gray */
            border-radius: 4px;
        }

        .progress-line.active {
            background-color: #9ca3af; /* Darker gray for active state */
        }

        /* =========================================
           RIGHT COLUMN: OVERLAPPING CARDS
           ========================================= */
        .visual-canvas {
            position: relative;
            width: 100%;
            height: 550px;
            background-color: #ffffff; /* White background behind cards */
            border-radius: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* 1. Social Post Card (Back Left) */
        .social-card {
            position: absolute;
            left: 5%;
            top: 5%;
            width: 55%;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            z-index: 1;
            border: 1px solid #f3f4f6;
        }

        .social-header {
            display: flex;
            align-items: center;
            padding: 15px;
            gap: 12px;
        }
        
        .social-avatar {
            width: 35px;
            height: 35px;
            background-color: #00a884;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            font-weight: 600;
        }

        .social-user-info p { margin: 0; line-height: 1.2; }
        .social-user-name { font-size: 0.85rem; font-weight: 600; }
        .social-location { font-size: 0.7rem; color: #6b7280; }
        .social-more { margin-left: auto; color: #9ca3af; }

        .social-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .social-action-bar {
            background-color: #2a3441; /* Dark bar 'Shop Now' */
            color: #ffffff;
            padding: 12px 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .social-footer {
            padding: 15px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            color: #6b7280;
            margin-bottom: 8px;
        }

        .social-caption {
            font-size: 0.75rem;
            color: #4b5563;
            margin: 0;
        }

        /* 2. Blog Post Card (Front Right) */
        .blog-card {
            position: absolute;
            right: -5%;
            bottom: -5%;
            width: 55%;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            z-index: 2;
            padding: 15px;
            border: 1px solid #f3f4f6;
        }

        .blog-img {
            width: 100%;
            /* height: 160px; */
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .blog-title {
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.4;
            color: #111827;
            margin-bottom: 25px;
        }

        .blog-link {
            font-size: 0.75rem;
            color: #6b7280;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* 3. Black Play Button */
        .play-btn-circle {
            position: absolute;
            right: -5%;
            bottom: -8%;
            width: 50px;
            height: 50px;
            background-color: #000000;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 3;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .play-btn-circle:hover {
            transform: scale(1.1);
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .main-title { font-size: 2.2rem; margin-bottom: 20px; }
            .action-link-col { text-align: left !important; }
            .visual-canvas { margin-top: 60px; height: 450px; }
            .social-card { width: 65%; left: 0; }
            .blog-card { width: 65%; right: 0; bottom: -10%; }
            .play-btn-circle { right: 0; bottom: -15%; }
        }

        @media (max-width: 767px) {
            .marketing-section { padding: 60px 0; }
            .main-title { font-size: 1.8rem; }
            .visual-canvas { height: auto; background: transparent; padding-bottom: 50px; }
            .social-card { position: relative; width: 100%; left: 47px; top: 0; margin-bottom: 20px; }
            .blog-card { position: relative; width: 100%; right: 47px; bottom: 0; }
            .play-btn-circle { right: 5%; bottom: 0; }
        }


        .shopify-backoffice-section {
            padding: 100px 0;
        }

        .shopify-header-row {
            margin-bottom: 70px;
        }

        .shopify-kicker {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            color: #004b7c; /* Deep teal/blue */
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .shopify-main-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #111827;
            letter-spacing: -1px;
            margin: 0;
        }

        /* Action Link */
        .shopify-action-link {
            display: inline-flex;
            justify-content: space-between;
            align-items: center;
            color: #111827;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding-bottom: 10px;
            border-bottom: 1.5px solid #111827;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 250px;
        }

        .shopify-action-link:hover {
            color: #4b5563;
            border-bottom-color: #4b5563;
        }

        .shopify-action-link i {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .shopify-action-link:hover i {
            transform: translateX(5px);
        }

        /* =========================================
           RIGHT COLUMN: FEATURE BLOCKS
           ========================================= */
        .shopify-feature-block {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 40px;
        }

        /* Colored Icons */
        .shopify-icon-box {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 600;
            flex-shrink: 0;
        }

        .icon-purple { background-color: #f3e8ff; color: #9333ea; }
        .icon-blue { background-color: #eff6ff; color: #3b82f6; }
        .icon-red { background-color: #ffe4e6; color: #e11d48; }

        .shopify-feature-content {
            flex-grow: 1;
        }

        .shopify-feature-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 10px;
            margin-top: 2px;
        }

        .shopify-feature-desc {
            font-size: 0.9rem;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 95%;
        }

        /* Progress Lines */
        .shopify-progress-line {
            height: 8px;
            width: 100%;
            background-color: #e5e7eb; /* Light gray */
            border-radius: 4px;
        }

        .shopify-progress-line.active {
            background-color: #d1d5db; /* Slightly darker for active */
        }

        /* =========================================
           LEFT COLUMN: VISUAL CANVAS & HTML MOCKUP
           ========================================= */
        .shopify-visual-canvas {
            position: relative;
            width: 100%;
            height: 550px;
            background-color: #fafafa;
            border-radius: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        /* Decorative Abstract Lines */
        .shopify-bg-line {
            position: absolute;
            height: 1px;
            background-color: #00d2d3; /* Shopify Cyan */
            opacity: 0.5;
            width: 150%;
        }

        .shopify-line-1 {
            top: 60%;
            left: -10%;
            transform: rotate(-15deg);
        }

        .shopify-line-2 {
            bottom: 20%;
            left: -10%;
            transform: rotate(20deg);
            background-color: #3b82f6; /* Blue */
            opacity: 0.3;
        }

        /* Background Glow */
        .shopify-bg-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 210, 211, 0.1) 0%, rgba(255,255,255,0) 70%);
            bottom: 10%;
            right: 10%;
            border-radius: 50%;
        }

        /* HTML Product Card Mockup */
        .shopify-ui-card {
            position: relative;
            z-index: 2;
            width: 75%;
            max-width: 350px;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            border: 1px solid #f3f4f6;
            overflow: hidden;
        }

        /* Stacked background paper effect */
        .shopify-ui-card::before, .shopify-ui-card::after {
            content: '';
            position: absolute;
            top: -10px;
            left: 5%;
            width: 90%;
            height: 20px;
            background-color: #f9fafb;
            border-radius: 10px 10px 0 0;
            z-index: -1;
            border: 1px solid #f3f4f6;
        }
        .shopify-ui-card::after {
            top: -20px;
            left: 10%;
            width: 80%;
            background-color: #f3f4f6;
            z-index: -2;
        }

        .ui-card-header {
            padding: 25px 25px 0 25px;
        }

        .ui-card-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #111827;
        }

        .ui-tabs {
            display: flex;
            gap: 15px;
            list-style: none;
            padding: 0;
            margin: 0;
            border-bottom: 1px solid #f3f4f6;
        }

        .ui-tab {
            font-size: 0.75rem;
            font-weight: 500;
            color: #6b7280;
            padding-bottom: 8px;
            cursor: pointer;
        }

        .ui-tab.active {
            color: #111827;
            border-bottom: 2px solid #111827;
        }

        .ui-list-container {
            padding: 10px 25px 25px 25px;
        }

        .ui-list-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #f9fafb;
        }
        
        .ui-list-item:last-child {
            border-bottom: none;
        }

        .ui-item-left {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 40%;
        }

        .ui-item-img {
            width: 30px;
            height: 30px;
            border-radius: 4px;
            background-color: #f3f4f6;
            object-fit: cover;
        }

        .ui-item-name {
            font-size: 0.8rem;
            font-weight: 500;
            color: #111827;
        }

        .ui-item-badge {
            background-color: #bbf7d0; /* Light green */
            color: #166534; /* Dark green */
            font-size: 0.65rem;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 20px;
        }

        .ui-item-stock {
            font-size: 0.75rem;
            color: #6b7280;
            width: 30%;
            text-align: right;
        }

        /* Black Play Button */
        .shopify-play-btn {
            position: absolute;
            bottom: 5%;
            right: 5%;
            width: 50px;
            height: 50px;
            background-color: #000000;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 3;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .shopify-play-btn:hover {
            transform: scale(1.1);
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .shopify-main-title { font-size: 2.2rem; margin-bottom: 20px; }
            .shopify-action-col { text-align: left !important; margin-top: 20px; }
            .shopify-visual-canvas { margin-bottom: 50px; height: 450px; }
            .shopify-action-link { max-width: 100%; }
        }

        @media (max-width: 767px) {
            .shopify-backoffice-section { padding: 60px 0; }
            .shopify-main-title { font-size: 1.8rem; }
            .shopify-header-row { margin-bottom: 40px; }
            .shopify-ui-card { width: 90%; }
        }


        .shopify-marquee-container {
            width: 100%;
            background: linear-gradient(90deg, #6bf9a4 0%, #bba4f9 100%);
            padding: 12px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            display: flex;
            align-items: center;
        }

        .shopify-marquee-content {
            display: inline-block;
            animation: shopifyMarquee 20s linear infinite;
        }

        .shopify-marquee-text {
            font-size: 0.85rem;
            font-weight: 700;
            color: #111827;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 25px;
            display: inline-flex;
            align-items: center;
            gap: 15px;
        }

        @keyframes shopifyMarquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); } /* Animates half width to loop seamlessly */
        }

        /* =========================================
           HERO: MEET THE PEOPLE SECTION
           ========================================= */
        .shopify-people-section {
            position: relative;
            padding: 120px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 70vh;
        }

        /* Subtle radial glow behind the text */
        .shopify-bg-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            height: 600px;
            background: radial-gradient(circle, rgba(200, 225, 255, 0.5) 0%, rgba(255, 255, 255, 0) 60%);
            z-index: 0;
            pointer-events: none;
        }

        .shopify-text-wrapper {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .shopify-kicker {
            display: block;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            color: #111827;
        }

        .shopify-main-title {
            font-size: 5rem;
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -2px;
            margin: 0;
            color: #111827;
        }

        .shopify-gradient-text {
            /* Shopify green/cyan gradient */
            background: linear-gradient(90deg, #10b981 0%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        /* Floating Images Setup */
        .shopify-floating-img {
            position: absolute;
            border-radius: 8px;
            object-fit: cover;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            z-index: 1;
            /* Infinite floating animation */
            animation: floatImage 4s ease-in-out infinite alternate;
        }

        /* Positioning the 6 images */
        .shopify-img-1 { top: 15%; left: 22%; width: 70px; animation-delay: 0s; }
        .shopify-img-2 { top: 40%; left: 12%; width: 120px; animation-delay: 0.5s; }
        .shopify-img-3 { bottom: 15%; left: 20%; width: 100px; animation-delay: 1s; }
        .shopify-img-4 { top: 15%; right: 25%; width: 80px; animation-delay: 0.2s; }
        .shopify-img-5 { top: 35%; right: 12%; width: 140px; animation-delay: 0.8s; }
        .shopify-img-6 { bottom: 12%; right: 18%; width: 110px; animation-delay: 1.2s; }

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

        /* =========================================
           VIDEO PLAYER SECTION
           ========================================= */
        .shopify-video-section {
            padding: 0 20px 100px 20px;
        }

        .shopify-video-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            aspect-ratio: 16 / 9;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            /* Placeholder Background Image */
            background: url('https://images.unsplash.com/photo-1512428559087-560fa5ceab42?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            cursor: pointer;
        }

        /* Dark overlay for contrast */
        .shopify-video-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
            transition: background 0.3s ease;
        }

        .shopify-video-container:hover .shopify-video-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.2) 100%);
        }

        /* Play Button in Center */
        .shopify-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .shopify-video-container:hover .shopify-play-button {
            transform: translate(-50%, -50%) scale(1.1);
            background-color: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
        }

        /* Bottom Left Text */
        .shopify-video-info {
            position: absolute;
            bottom: 30px;
            left: 40px;
            color: #ffffff;
            z-index: 2;
        }

        .shopify-video-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0 0 5px 0;
        }

        .shopify-video-subtitle {
            font-size: 0.75rem;
            opacity: 0.8;
            margin: 0;
        }

        /* =========================================
           RESPONSIVE ADJUSTMENTS
           ========================================= */
        @media (max-width: 991px) {
            .shopify-main-title { font-size: 4rem; }
            .shopify-img-1 { left: 10%; width: 50px; }
            .shopify-img-2 { left: 5%; width: 80px; }
            .shopify-img-3 { left: 10%; width: 70px; }
            .shopify-img-4 { right: 10%; width: 60px; }
            .shopify-img-5 { right: 5%; width: 90px; }
            .shopify-img-6 { right: 10%; width: 75px; }
        }

        @media (max-width: 767px) {
            .shopify-people-section { padding: 80px 0; min-height: 50vh; }
            .shopify-main-title { font-size: 2.8rem; letter-spacing: -1px; }
            
            /* Hide some images on mobile to keep text legible */
            .shopify-img-1, .shopify-img-4 { display: none; }
            .shopify-img-2 { top: 15%; left: 5%; width: 60px; }
            .shopify-img-3 { bottom: 5%; left: 5%; width: 60px; }
            .shopify-img-5 { top: 15%; right: 5%; width: 70px; }
            .shopify-img-6 { bottom: 5%; right: 5%; width: 65px; }

            .shopify-video-info { bottom: 20px; left: 20px; }
            .shopify-play-button { width: 50px; height: 50px; font-size: 1rem; }
        }


        .shopify-support-section {
            padding: 120px 0;
            background-color: #000000;
        }

        /* Header Area */
        .shopify-support-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .shopify-support-kicker {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
        }

        .shopify-support-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin: 0;
        }

        /* Support Cards Grid */
        .shopify-support-card {
            background-color: #111111; /* Deep gray */
            border-radius: 16px;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: transform 0.3s ease, background-color 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .shopify-support-card:hover {
            transform: translateY(-5px);
            background-color: #1a1a1a;
        }

        /* Vibrant Gradient Icons */
        .shopify-icon-wrapper {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .shopify-icon-wrapper i {
            color: #111111; /* Dark icon to contrast with vibrant background */
            font-size: 1.2rem;
        }

        /* Custom Gradients mimicking the mockup */
        .grad-green-lime { background: linear-gradient(135deg, #a3e635 0%, #4ade80 100%); }
        .grad-blue-purple { background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%); }
        .grad-cyan-green { background: linear-gradient(135deg, #2dd4bf 0%, #4ade80 100%); }
        .grad-teal-blue { background: linear-gradient(135deg, #2dd4bf 0%, #3b82f6 100%); }

        /* Card Typography */
        .shopify-card-title-2 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .shopify-card-desc {
            font-size: 0.95rem;
            color: #9ca3af; /* Light gray */
            line-height: 1.6;
            margin-bottom: 30px;
            flex-grow: 1; /* Pushes the button to the bottom */
        }

        /* Mini Action Buttons inside Cards */
        .shopify-card-btn {
            background-color: #222222;
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .shopify-card-btn:hover {
            background-color: #333333;
            color: #ffffff;
        }

        .shopify-card-btn i {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .shopify-card-btn:hover i {
            transform: translateX(3px);
        }

        /* =========================================
           CALL TO ACTION (CTA) SECTION
           ========================================= */
        .shopify-cta-section {
            /* Vibrant Mint Green background */
            background: linear-gradient(180deg, #6ef2ab 0%, #4ceb93 100%);
            padding: 100px 0;
            text-align: center;
            color: #000000;
        }

        .shopify-cta-title {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: -1px;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .shopify-cta-desc {
            font-size: 1.05rem;
            font-weight: 400;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto 35px auto;
            color: #111111;
        }

        .shopify-btn-dark {
            background-color: #000000;
            color: #ffffff;
            font-weight: 600;
            font-size: 1rem;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .shopify-btn-dark:hover {
            color: #ffffff;
            transform: scale(1.03);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .shopify-support-title { font-size: 2.2rem; }
            .shopify-cta-title { font-size: 2.5rem; }
        }

        @media (max-width: 767px) {
            .shopify-support-section { padding: 80px 0; }
            .shopify-support-title { font-size: 1.8rem; }
            .shopify-support-card { padding: 30px; }
            
            .shopify-cta-section { padding: 80px 20px; }
            .shopify-cta-title { font-size: 2rem; }
            .shopify-cta-desc { font-size: 0.95rem; }
        }

.faq-section {
            padding: 60px 0;
        }
        .faq-title {
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
            color: #2c3e50;
        }
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 8px !important;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        .accordion-button {
            font-weight: 600;
            color: #34495e;
            background-color: #ffffff;
            padding: 20px;
        }
        .accordion-button:not(.collapsed) {
            color: #0d6efd;
            background-color: #e9ecef;
            box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }
        .accordion-body {
            background-color: #ffffff;
            color: #555;
            line-height: 1.6;
            padding: 20px;
        }
        


        /* mobile app css */

        .cw-trend-section {
            padding: 80px 0;
        }

        .cw-trend-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .cw-trend-paragraph {
            color: #4b5563;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        /* ================= FORM STYLING ================= */
        .cw-trend-form-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
        }

        .cw-trend-form-heading {
            font-size: 1.75rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .cw-trend-form-subheading {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 1.5rem;
        }

        .cw-trend-label {
            font-size: 0.8125rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.4rem;
        }

        .cw-trend-input {
            border: 1px solid #d1d5db;
            border-radius: 8px;
            padding: 0.6rem 1rem;
            font-size: 0.95rem;
            color: #1f2937;
            transition: all 0.2s ease-in-out;
        }

        .cw-trend-input:focus {
            border-color: #5a5ce4;
            box-shadow: 0 0 0 3px rgba(90, 92, 228, 0.15);
            outline: none;
        }

        .cw-trend-submit-btn {
            background-color: #5a5ce4;
            border: none;
            border-radius: 10px;
            padding: 0.8rem;
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            transition: background-color 0.2s ease-in-out;
        }

        .cw-trend-submit-btn:hover {
            background-color: #484ab9;
            color: #ffffff;
        }

        .cw-new-form-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        /* Typography */
        .cw-new-form-heading {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1f2937;
            line-height: 1.2;
            margin-bottom: 2rem;
            letter-spacing: -0.5px;
        }

        .cw-text-purple {
            color: #5a5ce4;
            /* Purple color from the image */
        }

        /* Labels and Inputs */
        .cw-new-label {
            font-size: 0.9rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.5rem;
        }

        .cw-new-input {
            border: 1px solid #d1d5db;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
            color: #1f2937;
            transition: all 0.2s ease-in-out;
            background-color: #ffffff;
        }

        .cw-new-input::placeholder {
            color: #9ca3af;
        }

        .cw-new-input:focus {
            border-color: #5a5ce4;
            box-shadow: 0 0 0 3px rgba(90, 92, 228, 0.15);
            outline: none;
        }

        /* Dropdown specific styling */
        select.cw-new-input {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
        }

        /* Submit Button */
        .cw-new-submit-btn {
            background-color: #5a5ce4;
            color: #ffffff;
            font-weight: 600;
            font-size: 1.05rem;
            border: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .cw-new-submit-btn:hover {
            background-color: #484ab9;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(90, 92, 228, 0.2);
        }

        /* Responsive padding */
        @media (max-width: 768px) {
            .cw-new-form-card {
                padding: 25px;
            }

            .cw-new-form-heading {
                font-size: 1.8rem;
            }
        }

        /* ================= PARTNER SECTION STYLING ================= */
        .cw-partner-wrapper {
            background-color: #eff3fa;
            border-radius: 20px;
            padding: 3rem 2rem;
            overflow: hidden;
        }

        .cw-partner-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: #5a5ce4;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .cw-partner-title {
            font-size: 3rem;
            font-weight: 400;
            color: #000;
            line-height: 1.2;
            margin: 0;
        }

        .cw-partner-highlight {
            color: #5a5ce4;
            font-weight: 600;
        }

        /* Marquee Styles */
        .cw-partner-marquee-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        }

        .cw-partner-marquee-track {
            display: flex;
            width: max-content;
            gap: 1.5rem;
        }

        .cw-partner-track-top {
            animation: cw-scroll-left 25s linear infinite;
        }

        .cw-partner-track-bottom {
            animation: cw-scroll-left 30s linear infinite;
            transform: translateX(-5%);
        }

        .cw-partner-logo-card {
            background: #ffffff;
            border-radius: 12px;
            height: 80px;
            min-width: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            padding: 1rem;
            transition: transform 0.2s ease;
        }

        .cw-partner-logo-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        }

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

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

        /* ================= RESPONSIVE MEDIA QUERIES ================= */
        @media (max-width: 991px) {
            .cw-trend-section {
                padding: 60px 0;
            }

            .cw-partner-title {
                font-size: 2.5rem;
            }

            .cw-partner-wrapper {
                padding: 2rem 1.5rem;
            }

            .cw-partner-marquee-container {
                margin-top: 2rem;
            }
        }

        @media (max-width: 768px) {
            .cw-trend-title {
                font-size: 2.2rem;
            }

            .cw-trend-form-card {
                padding: 30px 20px;
            }

            .cw-partner-title {
                font-size: 2rem;
            }

            .cw-partner-logo-card {
                min-width: 150px;
                height: 70px;
            }
        }

        @media (max-width: 576px) {
            .cw-trend-section {
                padding: 40px 0;
            }

            .cw-trend-title {
                font-size: 1.8rem;
            }

            .cw-trend-paragraph {
                font-size: 0.95rem;
                text-align: justify;
            }

            .cw-partner-wrapper {
                padding: 1.5rem 1rem;
            }

            .cw-partner-title {
                font-size: 1.75rem;
            }

            .cw-trend-form-heading {
                font-size: 1.5rem;
            }
        }

        .cw-top-co-section {
            background-color: #ffffff;
            padding: 100px 0;
            overflow: hidden;
        }

        /* ================= TYPOGRAPHY ================= */
        .cw-top-co-heading {
            font-size: 3.2rem;
            font-weight: 700;
            color: #1f2937;
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 2rem;
        }

        .cw-top-co-paragraph {
            font-size: 14px;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        /* ================= IMAGE & ANIMATIONS ================= */
        .cw-top-co-img-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .cw-top-co-img {
            max-width: 100%;
            height: auto;
        }



        /* Initial state for Scroll Reveal (JS) */
        .cw-reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
        }

        .cw-reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease-out;
        }

        .cw-reveal-active {
            opacity: 1;
            transform: translateX(0);
        }

        /* ================= RESPONSIVE DESIGN ================= */
        @media (max-width: 991px) {
            .cw-top-co-section {
                padding: 80px 0;
            }

            .cw-top-co-heading {
                font-size: 2.5rem;
            }

            .cw-top-co-img-wrapper {
                margin-top: 3rem;
            }
        }

        @media (max-width: 768px) {
            .cw-top-co-section {
                padding: 60px 0;
            }

            .cw-top-co-heading {
                font-size: 2.2rem;
                text-align: left;
            }

            .cw-top-co-paragraph {
                font-size: 1rem;
                text-align: left;
            }
        }

        @media (max-width: 576px) {
            .cw-top-co-section {
                padding: 50px 0;
            }

            .cw-top-co-heading {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }

            .cw-top-co-paragraph {
                font-size: 0.95rem;
            }

            .cw-top-co-img {
                animation: none;
            }
        }

        .cw-services-section {
            background-color: #f4f7f9;
            padding: 100px 0;
            color: #333;
            overflow: hidden;
        }

        /* ================= HEADER TYPOGRAPHY ================= */
        .cw-services-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .cw-services-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1.25rem;
            letter-spacing: -0.5px;
        }

        .cw-services-subtitle {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #4b5563;
            max-width: 900px;
            margin: 0 auto;
        }

        /* ================= CARD STYLING ================= */
        .cw-services-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.02);
        }


        .cw-services-card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .cw-services-card-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #6b7280;
            margin-bottom: 0;
        }

        /* ================= SCROLL ANIMATION CLASSES ================= */
        .cw-fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }

        .cw-fade-up-active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered delays for a nice cascading effect */
        .cw-delay-1 {
            transition-delay: 0.1s;
        }

        .cw-delay-2 {
            transition-delay: 0.2s;
        }

        /* ================= RESPONSIVE DESIGN ================= */
        @media (max-width: 991px) {
            .cw-services-section {
                padding: 80px 0;
            }

            .cw-services-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .cw-services-section {
                padding: 60px 0;
            }

            .cw-services-title {
                font-size: 1.8rem;
            }

            .cw-services-subtitle {
                font-size: 0.95rem;
                text-align: justify;
            }

            .cw-services-card {
                padding: 2rem 1.5rem;
            }
        }

        .cw-process-section {
            background-color: #212129;
            padding: 100px 0;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        /* Decorative Background Elements */
        .cw-process-bg-circle {
            position: absolute;
            right: -150px;
            top: 50%;
            transform: translateY(-50%);
            width: 500px;
            height: 500px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .cw-process-container {
            position: relative;
            z-index: 1;
        }

        /* ================= HEADER TYPOGRAPHY ================= */
        .cw-process-heading {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 4rem;
            letter-spacing: -0.5px;
        }

        /* ================= PROCESS ITEM STYLING ================= */
        .cw-process-item {
            padding: 1rem;
        }

        .cw-process-badge {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7c7cf8, #5a5ce4);
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 20px rgba(90, 92, 228, 0.3);
        }

        .cw-process-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #a0aab2;
            margin-bottom: 0;
        }

        .cw-process-title {
            color: #ffffff;
            font-weight: 600;
        }

        /* Staggered delays for row items */
        .cw-delay-1 {
            transition-delay: 0.1s;
        }

        .cw-delay-2 {
            transition-delay: 0.3s;
        }

        .cw-delay-3 {
            transition-delay: 0.5s;
        }

        /* ================= RESPONSIVE DESIGN ================= */
        @media (max-width: 991px) {
            .cw-process-section {
                padding: 80px 0;
            }

            .cw-process-heading {
                font-size: 2.2rem;
                margin-bottom: 3rem;
            }

            .cw-process-bg-circle {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .cw-process-section {
                padding: 60px 0;
            }

            .cw-process-heading {
                font-size: 1.8rem;
                margin-bottom: 2.5rem;
            }

            .cw-process-item {
                margin-bottom: 1.5rem;
            }

            .cw-process-badge {
                margin-bottom: 1rem;
            }
        }

        .cw-content-section {
            background-color: #f2f5f8;
            padding: 80px 0;
            color: #333;
            overflow: hidden;
        }

        .cw-content-wrapper {
            max-width: 950px;
            margin: 0 auto;
        }

        /* ================= HEADER TYPOGRAPHY ================= */
        .cw-content-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .cw-content-header-left {
            text-align: left;
            margin-top: 5rem;
            margin-bottom: 2.5rem;
        }

        .cw-content-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        .cw-content-subtitle {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #4b5563;
            max-width: 800px;
            margin: 0 auto;
        }

        /* ================= CARD STYLING ================= */
        .cw-content-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 3.5rem;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(0, 0, 0, 0.03);
            margin-bottom: 3rem;
        }

        /* Card Content Blocks */
        .cw-content-block {
            margin-bottom: 2rem;
        }

        .cw-content-block:last-child {
            margin-bottom: 0;
        }

        .cw-content-block-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .cw-content-block-text {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 0;
            text-align: justify;
        }

        /* ================= RESPONSIVE DESIGN ================= */
        @media (max-width: 991px) {
            .cw-content-section {
                padding: 60px 0;
            }

            .cw-content-title {
                font-size: 2.2rem;
            }

            .cw-content-card {
                padding: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .cw-content-title {
                font-size: 1.9rem;
            }

            .cw-content-header-left {
                text-align: center;
                margin-top: 4rem;
            }

            .cw-content-subtitle {
                font-size: 0.95rem;
                text-align: justify;
            }

            .cw-content-card {
                padding: 1.5rem;
                border-radius: 12px;
            }

            .cw-content-block-text {
                text-align: left;
            }
        }

        .cw-cost-section {
            background-color: #f2f5f8;
            padding: 80px 0;
            color: #333;
            overflow: hidden;
        }

        .cw-cost-wrapper {
            max-width: 950px;
            margin: 0 auto;
        }

        .cw-cost-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .cw-cost-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        .cw-cost-subtitle {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #4b5563;
            max-width: 800px;
            margin: 0 auto;
        }

        .cw-cost-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 3.5rem;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .cw-cost-block {
            margin-bottom: 2rem;
        }

        .cw-cost-block:last-child {
            margin-bottom: 0;
        }

        .cw-cost-block-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .cw-cost-block-text {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 0;
            text-align: justify;
        }

        /* Scroll Animation */
        .cw-cost-fade {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }

        .cw-cost-fade-active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .cw-cost-section {
                padding: 60px 0;
            }

            .cw-cost-title {
                font-size: 2.2rem;
            }

            .cw-cost-card {
                padding: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .cw-cost-title {
                font-size: 1.9rem;
            }

            .cw-cost-subtitle {
                font-size: 0.95rem;
                text-align: justify;
            }

            .cw-cost-card {
                padding: 1.5rem;
                border-radius: 12px;
            }

            .cw-cost-block-text {
                text-align: left;
            }
        }

        .cw-portfolio-section {
            background-color: #f2f5f8;
            padding: 80px 0;
            color: #333;
            overflow: hidden;
        }

        .cw-portfolio-wrapper {
            max-width: 950px;
            margin: 0 auto;
        }

        .cw-portfolio-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .cw-portfolio-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
            text-align: center;
        }

        .cw-portfolio-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 3.5rem;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .cw-portfolio-block {
            margin-bottom: 2rem;
        }

        .cw-portfolio-block:last-child {
            margin-bottom: 0;
        }

        .cw-portfolio-block-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .cw-portfolio-block-text {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 0;
            text-align: justify;
        }

        /* Scroll Animation */
        .cw-portfolio-fade {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }

        .cw-portfolio-fade-active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .cw-portfolio-section {
                padding: 60px 0;
            }

            .cw-portfolio-title {
                font-size: 2.2rem;
            }

            .cw-portfolio-card {
                padding: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .cw-portfolio-header {
                text-align: center;
            }

            .cw-portfolio-title {
                font-size: 1.9rem;
            }

            .cw-portfolio-card {
                padding: 1.5rem;
                border-radius: 12px;
            }

            .cw-portfolio-block-text {
                text-align: left;
            }
        }

        .cw-choose-section {
            background-color: #ffffff;
            padding: 80px 0;
            color: #333;
            overflow: hidden;
        }

        .cw-choose-header {
            text-align: left;
            margin-bottom: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .cw-choose-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .cw-choose-card-wrapper {
            max-width: 1000px;
            margin: 0 auto;
        }

        .cw-choose-card {
            background-color: #fafbfc;
            border-radius: 20px;
            padding: 0 3.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.02);
        }

        .cw-choose-text {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 1.25rem;
            text-align: justify;
        }

        .cw-choose-text:last-child {
            margin-bottom: 0;
        }

        .cw-choose-highlight {
            font-weight: 600;
            color: #1f2937;
        }

        /* Scroll Animation */
        .cw-choose-fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .cw-choose-fade-active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .cw-choose-section {
                padding: 60px 0;
            }

            .cw-choose-title {
                font-size: 2.2rem;
                text-align: center;
            }

            .cw-choose-card {
                padding: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .cw-choose-title {
                font-size: 1.9rem;
            }

            .cw-choose-card {
                padding: 1.5rem;
                border-radius: 12px;
            }

            .cw-choose-text {
                text-align: left;
            }
        }

        .cw-industries-section {
            background-color: #212129;
            padding: 100px 0;
            color: #ffffff;
            overflow: hidden;
        }

        .cw-industries-header {
            text-align: left;
            margin-bottom: 4rem;
        }

        .cw-industries-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        .cw-industries-subtitle {
            font-size: 1rem;
            line-height: 1.7;
            color: #a0aab2;
            max-width: 950px;
        }

        .cw-industries-item {
            padding: 1rem 0;
        }

        .cw-industries-badge {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7c7cf8, #5a5ce4);
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 20px rgba(90, 92, 228, 0.2);
        }

        .cw-industries-item-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .cw-industries-text {
            font-size: 0.9rem;
            line-height: 1.7;
            color: #9ca3af;
            margin-bottom: 0;
        }

        /* Scroll Animation Classes */
        .cw-ind-fade {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }

        .cw-ind-fade-active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .cw-industries-section {
                padding: 80px 0;
            }

            .cw-industries-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .cw-industries-section {
                padding: 60px 0;
            }

            .cw-industries-header {
                text-align: center;
            }

            .cw-industries-title {
                font-size: 1.9rem;
            }

            .cw-industries-subtitle {
                text-align: justify;
                font-size: 0.95rem;
            }

            .cw-industries-badge {
                margin: 0 auto 1.25rem auto;
            }

            .cw-industries-item-title,
            .cw-industries-text {
                text-align: center;
            }
        }

        /* ================= SECTION 1: HIRE DEVELOPERS (LIGHT THEME) ================= */
        .cw-elite-section {
            background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
            padding: 100px 0;
            position: relative;
        }

        .cw-elite-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
            padding: 3rem;
            overflow: hidden;
        }

        .cw-elite-img-wrapper {
            border-radius: 16px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cw-elite-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            transition: transform 0.4s ease;
        }


        .cw-elite-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .cw-elite-text {
            font-size: 1rem;
            line-height: 1.8;
            color: #475569;
            margin-bottom: 1.2rem;
            text-align: justify;
        }

        /* ================= SECTION 2: TECH INDEX (DARK THEME) ================= */
        .cw-tech-section {
            background-color: #0f172a;
            padding: 100px 0 60px;
            position: relative;
        }

        .cw-tech-header {
            text-align: left;
            margin-bottom: 4rem;
        }

        .cw-tech-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .cw-tech-subtitle {
            font-size: 1.1rem;
            color: #94a3b8;
        }

        /* CSS Grid for Tech Logos */
        .cw-tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 2rem;
            justify-items: center;
            align-items: center;
        }

        .cw-tech-item {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: #cbd5e1;
            transition: all 0.3s ease;
            cursor: default;
        }

        /* Hover Glowing Effects */
        .cw-tech-item:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }

        .cw-tech-item:nth-child(odd):hover {
            box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
            border-color: rgba(56, 189, 248, 0.5);
        }

        .cw-tech-item:nth-child(even):hover {
            box-shadow: 0 10px 25px rgba(244, 63, 94, 0.4);
            border-color: rgba(244, 63, 94, 0.5);
        }

        /* ================= SECTION 3: CTA BANNER (GRADIENT) ================= */
        .cw-cta-section {
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            padding: 80px 0;
            text-align: center;
            color: #ffffff;
            position: relative;
        }

        /* Top SVG Wave Divider */
        .cw-wave-divider {
            position: absolute;
            top: -1px;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .cw-wave-divider svg {
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }

        .cw-wave-divider .shape-fill {
            fill: #0f172a;
        }

        .cw-cta-subtitle {
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #c4b5fd;
            margin-bottom: 1rem;
            margin-top: 2rem;
        }

        .cw-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .cw-btn-custom {
            background-color: #ffffff;
            color: #4f46e5;
            font-weight: 600;
            padding: 12px 36px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .cw-btn-custom:hover {
            transform: translateY(-3px) scale(1.05);
            color: #ffffff;
        }

        /* Scroll Animations */
        .cw-reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .cw-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Tweaks */
        @media (max-width: 991px) {
            .cw-elite-card {
                padding: 2rem;
            }

            .cw-elite-title {
                font-size: 1.8rem;
            }

            .cw-tech-header {
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .cw-elite-card {
                padding: 1.5rem;
            }

            .cw-elite-text {
                text-align: left;
            }

            .cw-tech-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .cw-cta-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .cw-tech-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .cw-tech-item {
                width: 65px;
                height: 65px;
                font-size: 1.5rem;
            }
        }

        /* FAQ Styling */
        :root {
            --faq-bg: #edf6fb;
            --card-bg: #ffffff;
            --ink: #07152d;
            --muted: #536174;
            --accent: #d95b7e;
            --line: #ffc3d0;
        }

        .faq-section {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            padding: 56px 0 48px;
            background: var(--faq-bg);
        }

        .decor-circle {
            position: absolute;
            top: -175px;
            left: -95px;
            width: 410px;
            height: 410px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.8);
            z-index: 0;
        }

        .decor-line {
            position: absolute;
            top: 24px;
            left: -8%;
            width: 62%;
            height: 355px;
            border-top: 2px solid var(--line);
            border-radius: 50%;
            transform: rotate(10deg);
            opacity: 0.95;
            z-index: 0;
        }

        .faq-heading {
            margin-bottom: 48px;
        }

        .faq-heading span {
            display: inline-block;
            margin-bottom: 14px;
            color: var(--accent);
            font-size: 15px;
            font-weight: 700;
        }

        .faq-heading h1 {
            margin: 0;
            font-size: clamp(30px, 4vw, 44px);
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: 0;
        }

        .faq-list {
            display: grid;
            gap: 12px;
        }

        .accordion-item {
            overflow: hidden;
            border: 0;
            border-radius: 18px;
            background: var(--card-bg);
            box-shadow: none;
        }

        .accordion-button {
            min-height: 78px;
            gap: 18px;
            padding: 20px 30px;
            border-radius: 18px !important;
            color: var(--ink);
            background: var(--card-bg);
            font-size: 17px;
            font-weight: 500;
            line-height: 1.25;
            letter-spacing: 0;
            box-shadow: none;
        }

        .accordion-button span {
            flex: 1;
            text-align: left;
        }

        .accordion-button::after {
            display: none;
        }

        .accordion-button:not(.collapsed) {
            color: var(--ink);
            background: var(--card-bg);
            box-shadow: none;
        }

        .accordion-button:focus {
            border-color: transparent;
            box-shadow: 0 0 0 4px rgba(217, 91, 126, 0.12);
        }

        .faq-icon {
            display: grid;
            flex: 0 0 24px;
            width: 24px;
            height: 24px;
            place-items: center;
            color: var(--ink);
            font-size: 24px;
            font-weight: 500;
            line-height: 1;
        }

        .accordion-body {
            padding: 0 30px 24px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.7;
        }

        @media (min-width: 992px) {
            .container {
                max-width: 1080px;
            }
        }

        @media (max-width: 991.98px) {
            .faq-section {
                padding: 44px 0 36px;
            }

            .faq-heading {
                margin-bottom: 32px;
            }

            .decor-circle {
                top: -185px;
                left: -150px;
                width: 360px;
                height: 360px;
            }

            .decor-line {
                top: 44px;
                left: -45%;
                width: 120%;
                height: 280px;
            }
        }

        @media (max-width: 575.98px) {
            .faq-section {
                padding: 36px 0 28px;
            }

            .faq-heading span {
                margin-bottom: 10px;
            }

            .faq-heading h1 {
                font-size: 30px;
            }

            .accordion-button {
                min-height: 68px;
                padding: 17px 18px;
                border-radius: 14px !important;
                font-size: 14px;
            }

            .accordion-item {
                border-radius: 14px;
            }

            .accordion-body {
                padding: 0 18px 20px;
                font-size: 14px;
            }

            .faq-icon {
                flex-basis: 20px;
                width: 20px;
                height: 20px;
                font-size: 22px;
            }
        }

        .success-modal-content {
            border-radius: 20px;
            border: none;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }

        .success-icon-circle {
            width: 90px;
            height: 90px;
            border: 4px solid #e2f2e5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
        }

        .success-icon-circle i {
            color: #4CAF50;
            font-size: 45px;
        }

        .success-heading {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .success-text {
            color: #6c757d;
            font-size: 16px;
            margin-bottom: 30px;
            padding: 0 15px;
        }

        .btn-ok {
            background-color: #6f63e6;
            color: white;
            padding: 10px 40px;
            font-weight: 600;
            border-radius: 6px;
            border: none;
            transition: 0.3s;
        }

        .btn-ok:hover {
            background-color: #5a4fcf;
            color: white;
        }





/* Left Side Styling */
.faq-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #f3f4f6;
    color: #4f46e5;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.faq-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, #4f46e5, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-link {
    font-weight: 600;
    color: #4f46e5;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ec4899;
}

/* Right Side FAQ Items */
.custom-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.q-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.q-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

/* Active Box Style */
.q-item.active {
    border-color: #4f46e5;
    box-shadow: 0 10px 30px -5px rgba(79, 70, 229, 0.15);
}

/* Button Styling (Pure Custom) */
.q-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 24px 28px;
    cursor: pointer;
    text-align: left;
}

.q-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.3s ease;
}

.q-item.active .q-text {
    color: #4f46e5;
}

/* Custom Icon Lines */
.q-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.q-icon .line {
    position: absolute;
    background-color: #6b7280;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.q-item.active .q-icon .line {
    background-color: #4f46e5;
}

.h-line {
    width: 16px;
    height: 2px;
}

.v-line {
    width: 2px;
    height: 16px;
}

/* Icon Animation */
.q-item.active .v-line {
    transform: rotate(90deg); /* Turns the Plus into a Minus smoothly */
    opacity: 0;
}
.q-item.active .h-line {
    transform: rotate(180deg);
}

/* Smooth Accordion Magic using CSS Grid */
.q-content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.4s ease, opacity 0.4s ease;
}

.q-item.active .q-content {
    grid-template-rows: 1fr;
    opacity: 1;
}

/* Smooth Accordion Magic using CSS Grid */
.q-content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    visibility: hidden; /* Text hidden rahega jab closed ho */
    /* Cubic-bezier deta hai ek premium smooth start aur end */
    transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                opacity 0.3s ease-in-out,
                visibility 0.4s;
}

.q-item.active .q-content {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
}

.q-content-inner {
    overflow: hidden;
    /* Padding humne fixed kar di hai, jump ko rokne ke liye */
    padding: 0 28px 24px 28px; 
    color: #4b5563;
    line-height: 1.7;
}




    :root {
            --wp-blue: #382AE0;
            --wp-deep: #3422f7;
            --wp-ink: #14213d;
            --wp-teal: #0f766e;
            --wp-gold: #f59e0b;
            --wp-red: #dc2626;
            --wp-paper: #f6f8fb;
            --wp-line: #dce5ec;
            --wp-muted: #607080;
            --wp-white: #ffffff;
        }




        .section-pad {
            padding: 40px 0;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--wp-teal);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .wp-section-title {
            font-weight: 850;
            color: var(--wp-deep);
            font-size: 2.5rem;
        }

        .text-muted-2 {
            color: var(--wp-muted);
        }

        .soft-band {
            background: var(--wp-paper);
        }

        .dark-band {
            background: #082f3d;
            color: white;
        }

        .card-lite {
            border: 1px solid var(--wp-line);
            border-radius: 8px;
            background: white;
            box-shadow: 0 14px 35px rgba(15, 35, 55, .08);
        }



        .btn-brand {
            background: var(--wp-blue);
            color: white;
            border: 0;
            font-weight: 800;
            border-radius: 999px;
            padding: 13px 26px;
        }

        .btn-brand:hover {
            background: #00547f;
            color: white;
        }

        .btn-ghost {
            border: 1px solid rgba(255, 255, 255, .45);
            color: white;
            border-radius: 999px;
            padding: 13px 24px;
            font-weight: 800;
        }

        .btn-ghost:hover {
            background: white;
            color: var(--wp-deep);
        }

        .site-nav {
            padding: 14px 0;
            background: rgba(255, 255, 255, .96);
            border-bottom: 1px solid rgba(220, 229, 236, .8);
            backdrop-filter: blur(12px);
            transition: box-shadow .3s ease, padding .3s ease;
        }

        .site-nav.is-scrolled {
            padding: 9px 0;
            box-shadow: 0 10px 30px rgba(20, 33, 61, .1);
        }

        .navbar-brand {
            color: var(--wp-deep);
            font-weight: 900;
            letter-spacing: 0;
        }

        .nav-link {
            color: #334155;
            font-weight: 700;
            font-size: .94rem;
        }

        .nav-link:hover {
            color: var(--wp-blue);
        }

        .hero {
            min-height: 94vh;
            display: flex;
            align-items: center;
            padding: 130px 0 54px;
            color: white;

        }

        .hero h1 {
            font-size: clamp(2.35rem, 5vw, 4.85rem);
            line-height: 1.02;
            font-weight: 900;
            letter-spacing: 0;
        }

        .hero-copy {
            max-width: 760px;
        }

        .hero-panel {
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, .22);
            background: rgba(255, 255, 255, .12);
            backdrop-filter: blur(14px);
        }

        .metric-strip {
            margin-top: 42px;
            border-top: 1px solid rgba(255, 255, 255, .24);
            padding-top: 24px;
        }

        .metric-strip strong {
            font-size: 1.9rem;
            display: block;
        }

        .seo-check {
            display: flex;
            gap: 12px;
            padding: 15px;
            border: 1px solid var(--wp-line);
            border-radius: 8px;
            background: #fff;
            height: 100%;
        }

        .seo-check i {
            color: var(--wp-teal);
            margin-top: 4px;
        }

        .editor-shell {
            overflow: hidden;
            border-radius: 8px;
            border: 1px solid #cbd5e1;
            background: white;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
        }

        .editor-top {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: #e8edf2;
            color: #475569;
            font-weight: 800;
            font-size: .84rem;
        }

        .dot {
            width: 11px;
            height: 11px;
            border-radius: 50%;
            display: inline-block;
        }

        .editor-body {
            display: grid;
            grid-template-columns: 1fr 230px;
            min-height: 365px;
        }

        .editor-canvas {
            padding: 34px;
            color: var(--wp-ink);
        }

        .block-line {
            height: 12px;
            border-radius: 8px;
            background: #d9e2ea;
            margin-bottom: 14px;
        }

        .editor-side {
            background: #f7fafc;
            border-left: 1px solid #dce5ec;
            padding: 22px;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: inline-grid;
            place-items: center;
            background: rgba(0, 107, 166, .1);
            color: var(--wp-blue);
            font-size: 1.35rem;
            margin-bottom: 18px;
        }

        .process-step {
            position: relative;
            padding: 30px;
            height: 100%;
        }

        .process-step .num {
            position: absolute;
            top: 22px;
            right: 26px;
            color: rgba(0, 107, 166, .13);
            font-weight: 900;
            font-size: 3.1rem;
            line-height: 1;
        }

        .progress {
            background: #d8e2ea;
            border-radius: 999px;
            overflow: hidden;
        }

        .progress-bar {
            width: 0;
            transition: width 1.2s ease;
        }

        .pricing-card {
            position: relative;
            height: 100%;
            padding: 34px;
        }

        .popular {
            border-color: var(--wp-blue);
            box-shadow: 0 26px 65px rgba(0, 107, 166, .18);
        }

        .popular-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--wp-gold);
            color: #1f2937;
            border-radius: 999px;
            font-size: .72rem;
            font-weight: 900;
            padding: 6px 10px;
        }

        .case-media {
            border-radius: 8px 8px 0 0;
        }

        .logo-grid i {
            font-size: 3rem;
        }

        .cta-band {
            color: white;
            background:
                linear-gradient(120deg, rgba(8, 51, 68, .94), rgba(15, 118, 110, .86))
        }

        .form-control,
        .form-select {
            border-radius: 8px;
            border-color: #cbd5e1;
            padding: 13px 14px;
        }

        footer {
            background: #061d27;
            color: #b8c7d1;
        }

        @media (max-width: 991px) {
            .hero {
                min-height: auto;
                padding-top: 118px;
            }

            .section-pad {
                padding: 32px 0;
            }

            .editor-body {
                grid-template-columns: 1fr;
            }

            .editor-side {
                border-left: 0;
                border-top: 1px solid #dce5ec;
            }
        }

        @media (max-width: 575px) {
            .hero h1 {
                font-size: 2.28rem;
            }

            .btn-brand,
            .btn-ghost {
                width: 100%;
                text-align: center;
            }

            .hero-panel {
                margin-top: 18px;
            }

            .section-pad {
                padding: 32px 0;
            }
        }