* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
    max-width: 100%;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
}

p {
    font-family: "Lato", sans-serif;
}

button {
    cursor: pointer;
}

li {
    list-style: none;
}

header {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10000;
}

/* ---------- Top Information Bar (Non-Sticky, Scrolls Away Naturally) ---------- */
.top-bar {
    width: 100%;
    background-color: #543f87;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 1;
}

/* ---------- Navigation Bar (Sticky at top: 0 with Glassmorphism) ---------- */
.navbaar {
    width: 100%;
    background: #ffffff;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999999 !important;
    transition: background 0.3s ease, backdrop-filter 0.2s ease, box-shadow 0.3s ease;
}

.navbaar-container {
    width: 90%;
    max-width: 1300px;
    height: 75px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Fixed Glassmorphic Navigation Bar when Scrolled */
.navbaar.scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    box-shadow: 0 6px 25px rgba(101, 78, 159, 0.18) !important;
    border-bottom: 1px solid rgba(101, 78, 159, 0.15) !important;
    z-index: 9999999 !important;
}

/* ---------- Top Information Bar ---------- */
.top-bar {
    width: 100%;
    background-color: #543f87;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.top-left-info {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.top-left-info a,
.top-left-info span {
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.top-left-info a:hover {
    color: #25D366;
}

.top-left-info i {
    font-size: 13px;
    color: #d6e1fc;
}

.top-right-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-right-socials a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.top-right-socials a:hover {
    color: #25D366;
    transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbaar {
    width: 90%;
    max-width: 1300px;
    height: 75px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.navbaar a {
    color: #654E9F;
}

ul {
    display: flex;
    gap: 20px;
}

.nav-right {
    width: 30%;
}

.nav-left {
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: left;
    /* background-color: aqua; */
    font-size: large;
    width: 70%;
}

.hero-section {
    width: 100%;
    min-height: 85vh;
    display: flex;
    background-image: url(/assets/hero-bacground.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 40px;
}

.hero {
    width: 85%;
    max-width: 1050px;
    gap: 18px;
    display: flex;
    flex-direction: column;
    margin: auto;
    text-align: center;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(101, 78, 159, 0.1);
    border: 1px solid rgba(101, 78, 159, 0.25);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #654E9F;
    margin-bottom: 5px;
    box-shadow: 0 4px 15px rgba(101, 78, 159, 0.08);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: #1a1a2e;
    max-width: 950px;
    margin: 0 auto;
}

.hero-highlight {
    color: #654E9F;
    font-weight: 800;
}

.hero p {
    font-size: 18px;
    color: #4a4a68;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 18px;
    width: 100%;
    margin-top: 8px;
}

.see-button {
    background-color: #654E9F;
    color: #ffffff;
    border-radius: 8px;
    padding: 0 28px;
    text-align: center;
    font-size: 16px;
    height: 48px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(101, 78, 159, 0.28);
    transition: all 0.25s ease;
}

.see-button:hover {
    background-color: #543f87;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(101, 78, 159, 0.38);
}

.our-work-button {
    background-color: #ffffff;
    color: #333;
    border-radius: 8px;
    padding: 0 24px;
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.our-work-button:hover {
    border-color: #654E9F;
    color: #654E9F;
    transform: translateY(-2px);
    background: #fdfdfd;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 880px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    color: #444;
}

.service-section {
    padding: 60px 20px;
    width: 100%;
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-main-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.service-main-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(101, 78, 159, 0.16);
    border-color: rgba(101, 78, 159, 0.35);
}

.service-card-img {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(101, 78, 159, 0.9);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-body {
    padding: 25px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-icon {
    width: 46px;
    height: 46px;
    background: rgba(101, 78, 159, 0.1);
    color: #654E9F;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.service-card-body h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card-body p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.service-tags span {
    font-size: 11.5px;
    background: #f0edfb;
    color: #654E9F;
    padding: 3px 9px;
    border-radius: 6px;
    font-weight: 600;
}

.service-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 15px;
}

.btn-scope {
    font-size: 13px;
    font-weight: 700;
    color: #654E9F;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-scope:hover {
    color: #25D366;
}

.btn-details {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-details:hover {
    color: #654E9F;
}

@media (max-width: 1024px) {
    .services-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-top-first-bar {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.service-top-first-bar .service-h2 {
    font-size: 20px;
    font-weight: 400;
}

.service-top-first-bar h3 {
    font-size: 25px;
    font-weight: 400;
    width: 60%;
    text-align: center;
}

.service-top-first-bar p {
    font-size: 18px;
    width: 100%;
    text-align: center;
    font-family: "Lato", sans-serif;
}

.service-top-second-bar {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    /* background-color: red; */
}

.service-card {
    width: 50%;
    height: 710px;
}

.service-top-second-right {
    /* background-color: aliceblue; */
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 10px;
}

.grid {
    width: 100%;
    /* background-color: gold; */
    height: 350px;
    border: 1px solid rgba(0, 0, 0, 0.2);

    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
    border-radius: 8px;
}

.mini {
    font-size: 13px;
    font-weight: 600;
}

.img-border {
    border-radius: 8px 8px 0 0;
    /* background-color: red; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.card-paragraph {
    font-size: 18px;
}

.card {
    flex-direction: column;
    gap: 20px;
    padding-left: 10px;
}

.card h2 {
    font-weight: 400;
    font-size: 25px;
}

.service-second-img {
    width: 100%;
    height: 150px;
    /* background-color: gray; */
}

.learn-more {
    font-size: 18px;
    background: none;
    border: none;
    margin-top: 10px;
    font-family: "Lato", sans-serif;
    color: inherit;
    display: inline-block;
}

.learn-more:hover {
    color: #654E9F;
    cursor: pointer;
}

.service-top-second-left {
    border: 1px solid rgba(0, 0, 0, 0.2);
    height: 710px;
}

.site-footer {
    width: 100%;
    padding: 20px;
    text-align: center;
    background-image: url(/assets/hero-bacground.png);
    background-size: cover;
    background-position: bottom;
    color: black;
    font-family: "Lato", sans-serif;
}

.right-service-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    border-radius: 8px;
}

.right-card-img {
    /* background-color: red; */
    width: 100%;
    height: 300px;
}

.right-mini {
    font-size: 20px;
}

.right-card-paragraph {
    font-size: 30px;
}

.right-card-forth h2 {
    font-size: 50px;
}

.right-learn-more {
    border: 1px solid gray;
    border-radius: 6px;
    background-color: #6d5ef8;
    padding: 10px 15px;
    color: #f4f4f4;
}

.right-learn-more:hover {
    color: #f4f4f4;
    background-color: #6050f6;

}

/* .right-services{
    margin-left: 10px;
    border:1px solid rgba(0, 0, 0, 0.15);
    padding: 10px 15px;
}

.right-services:hover{
    background-color: #99999927;
    transform: translateX(10px);
} */

/* From Uiverse.io by mrhyddenn */
.right-services {
    padding: 10px 15px;
    border: none;
    color: #fff;
    margin-left: 10px;
    border-radius: 6px;
    transition: 0.5s ease-in-out;
    transition-property: box-shadow;

}

.right-services {
    background: #6050f6;
    /* box-shadow: 0 0 25px #6050f6; */
}

.right-services:hover {
    box-shadow: 0 0 20px #3c3c3d67;
    color: #f4f4f4;
    transform: translateX(10px);

}




/* ===== Responsive Design Rules ===== */

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #654E9F;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.mobile-nav-toggle:hover {
    background: rgba(101, 78, 159, 0.08);
}

@media (max-width: 1024px) {
    .hero {
        width: 85%;
    }

    .hero h1 {
        font-size: 38px;
    }

    .service-top-second-bar {
        flex-direction: column;
    }

    .service-card,
    .service-top-second-left {
        width: 100%;
        height: auto;
    }

    .service-top-second-right {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbaar {
        position: relative;
        flex-direction: row;
        height: 65px;
        padding: 0 20px;
    }

    .nav-right {
        width: auto;
    }

    .nav-left {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
        border-bottom: 2px solid #654E9F;
        padding: 20px;
        z-index: 99999;
    }

    .nav-left.open {
        display: block !important;
        animation: mobileMenuSlideDown 0.3s ease forwards;
    }

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

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

    .nav-left ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .nav-left ul li {
        width: 100%;
    }

    .nav-left ul li a {
        font-size: 16px;
        font-weight: 600;
        display: block;
        padding: 8px 0;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(101, 78, 159, 0.05) !important;
        border-radius: 8px;
        padding: 10px 15px !important;
        margin-top: 6px;
    }

    .top-bar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .top-left-info {
        justify-content: center;
        gap: 12px;
        font-size: 12px;
    }

    .top-left-info span {
        display: none;
    }

    .hero {
        width: 95%;
        gap: 14px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 5px 14px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .see-button,
    .our-work-button {
        width: 100%;
        max-width: 320px;
    }

    .hero-trust-bar {
        gap: 12px;
        flex-direction: column;
        margin-top: 18px;
        padding-top: 16px;
    }

    .service-top-second-right {
        grid-template-columns: 1fr;
    }

    .services-main-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .steps-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .testimonial-grid,
    .case-study-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: left !important;
    }

    .footer-grid iframe.google-map,
    .google-map {
        width: 100% !important;
        height: 210px !important;
        border-radius: 12px !important;
    }

    .cta-banner {
        padding: 35px 20px !important;
        text-align: center !important;
    }

    .cta-banner h2 {
        font-size: 24px !important;
    }

    .cta-banner p {
        font-size: 15px !important;
    }

    .roi-calc-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .roi-calc-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 25px 15px !important;
        box-sizing: border-box !important;
    }

    /* Mobile Grid Overrides & Zero Horizontal Overflow */
    .benefits-grid,
    .services-grid,
    .features-grid,
    .contact-grid,
    .subservice-grid,
    .portfolio-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .service-section-block,
    .feature-flex {
        flex-direction: column !important;
        width: 100% !important;
    }

    .feature-img,
    .service-img,
    .before-after-container {
        width: 100% !important;
        height: auto !important;
        min-height: 220px;
    }

    /* Prevent overflow on map, iframe & tables */
    iframe,
    table,
    .comparison-table {
        width: 100% !important;
        max-width: 100% !important;
    }

    .map-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-section {
        min-height: 70vh !important;
        padding: 40px 15px !important;
    }

    .hero h1 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .see-button,
    .our-work-button {
        width: 100% !important;
        margin-bottom: 6px !important;
    }

    .whatsapp-widget {
        right: 15px !important;
        bottom: 15px !important;
    }

    .whatsapp-btn {
        width: 46px !important;
        height: 46px !important;
    }

    .whatsapp-btn i,
    .whatsapp-btn svg {
        width: 22px !important;
        height: 22px !important;
        font-size: 22px !important;
    }

    .whatsapp-popup {
        width: 280px !important;
        max-width: calc(100vw - 30px) !important;
        right: 0 !important;
        left: auto !important;
        bottom: 58px !important;
    }

    .back-to-top {
        right: 70px !important;
        bottom: 15px !important;
        width: 40px !important;
        height: 40px !important;
    }
}

/* ===================================================================
   GROWELL — SITE-WIDE COMPONENTS (added for full multi-page build)
   Reuses existing tokens: Royal Amethyst #654E9F, tint bg #d6e1fc86,
   dark footer #1a1a1a, Lato headings / Lato body, 8px radius,
   1px rgba(0,0,0,.568) borders — matches the Home page exactly.
=================================================================== */

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* ---- Sub-page header (replaces full hero on inner pages) ---- */
.page-header {
    width: 100%;
    padding: 70px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    background-image: url(../assets/hero-bacground.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page-header .mini {
    color: #654E9F;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.page-header h1 {
    font-size: 44px;
    font-weight: 500;
    max-width: 850px;
}

.page-header p {
    font-size: 18px;
    max-width: 650px;
    color: #333;
}

/* ---- Generic section head (eyebrow + title + sub) ---- */
.sec-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 40px;
}

.sec-head .mini {
    color: #654E9F;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.sec-head h2 {
    font-size: 30px;
    font-weight: 500;
    max-width: 700px;
}

.sec-head p {
    font-size: 18px;
    max-width: 600px;
    font-family: "Lato", sans-serif;
}

section {
    padding: 20px 20px;
}

section.tint {
    background-color: #d6e1fc86;
}

/* ---- Buttons (reuse .see-button look) ---- */
.btn-primary,
.see-button {
    background-color: #654E9F;
    color: #f4f4f4;
    border-radius: 6px;
    font-size: 16px;
    padding: 12px 26px;
    border: none;
    display: inline-block;
    font-family: "Lato", sans-serif;
}

.btn-primary:hover,
.see-button:hover {
    background-color: #543f87;
    transition: 200ms ease-in-out;
}

.btn-secondary,
.our-work-button {
    background-color: white;
    border-radius: 6px;
    padding: 12px 26px;
    /* border: 2px solid rgba(0, 0, 0, 0.614); */
    font-family: "Lato", sans-serif;
    display: inline-block;
}

/* ---- Nav dropdown for Services ---- */
.nav-left ul li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    z-index: 50;
}

.nav-left ul li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 8px 18px;
    font-size: 15px;
    color: #333 !important;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #d6e1fc86;
    color: #654E9F !important;
}

/* ---- Feature Section (Why choose us / philosophy spotlight) ---- */
.feature-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    /* background-color: #b8bcf289; */


}

.feature-flex .feature-img {
    flex: 1;
    height: 380px;
    border-radius: 8px;
    background: url(/assets/why-choose-section-home.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

.feature-flex .feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;

}

.feature-flex .feature-text .mini {
    color: #6d5ef8;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 10px;
}

.feature-flex .feature-text h2 {
    font-size: 50px;
    font-weight: 800;
    color: #1b1b3a;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.underline {
    width: 85px;
    height: 4px;
    background: #6d5ef8;
    border-radius: 2px;
    margin-bottom: 25px;
}



.feature-flex .feature-text p {
    font-size: 17px;
}

.feature-flex .feature-text span {
    color: #6d5ef8;
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 0px;

}

.checklist li {
    display: flex;
    align-items: center;
    gap: 16px;
    /* icon aur text ke beech spacing */
    padding: 10px 0;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    /* gol shape */
    background: #6d5ef8;
    /* purple color */
    display: flex;
    align-items: center;
    justify-content: center;
}





@media (max-width: 768px) {
    .page-header {
        padding: 45px 15px 35px !important;
        gap: 10px !important;
    }

    .page-header h1 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .page-header p {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    .feature-flex {
        flex-direction: column !important;
        gap: 25px !important;
        width: 100% !important;
    }

    .feature-flex .feature-img {
        width: 100% !important;
        height: 230px !important;
        border-radius: 12px !important;
    }

    .feature-flex .feature-text {
        width: 100% !important;
    }

    .feature-flex .feature-text h2 {
        font-size: 26px !important;
        line-height: 1.3 !important;
        margin-bottom: 14px !important;
    }

    .feature-flex .feature-text p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 12px !important;
    }

    .pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 35px 12px 25px !important;
    }

    .page-header h1 {
        font-size: 23px !important;
    }

    .page-header p {
        font-size: 14px !important;
    }

    .feature-flex .feature-img {
        height: 190px !important;
    }

    .feature-flex .feature-text h2 {
        font-size: 23px !important;
    }

    .feature-flex .feature-text p {
        font-size: 14.5px !important;
    }
}

/* ---- Stats Section ---- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 30px 15px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 8px;
    background: white;
}

.stat-card .stat-number {
    font-size: 36px;
    font-weight: 600;
    color: #654E9F;
}

.stat-card .stat-label {
    font-size: 17px;
    font-family: "Lato", sans-serif;
}

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

/* ---- How It Works / Steps ---- */
.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: white;
}

.step-card .step-number {
    font-size: 30px;
    font-weight: 500;

}

.step-card h3 {
    font-size: 19px;
    font-weight: 500;
}

.step-card p {
    font-size: 15px;
}

@media (max-width: 1024px) {
    .steps-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .steps-row {
        grid-template-columns: 1fr;
    }
}

/* ---- Testimonials ---- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px;
    padding: 26px 22px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-card .quote {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    color: #333;
}

.testimonial-card .result-tag {
    display: inline-block;
    background: #d6e1fc86;
    color: #654E9F;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #654E9F;
    flex-shrink: 0;
}

.testimonial-person .name {
    font-weight: 600;
    font-size: 15px;
}

.testimonial-person .role {
    font-family: "Lato", sans-serif;
    font-size: 13px;
    color: #666;
}

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

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

/* ---- Case Study / Portfolio Cards ---- */
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.case-study-card {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    display: flex;
    flex-direction: column;
}

.case-study-img {
    height: 160px;
    background-color: #d6e1fc86;
}

.case-study-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.case-study-metric {
    font-size: 28px;
    font-weight: 600;
    color: #654E9F;
}

.case-study-body h3 {
    font-size: 19px;
    font-weight: 500;
}

.case-study-body p {
    font-size: 15px;
}

.case-study-body .tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #654E9F;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .case-study-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- CTA Banner ---- */
.cta-banner {
    background-color: #654E9F;
    border-radius: 12px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    color: #f4f4f4;
}

.cta-banner h2 {
    font-size: 32px;
    font-weight: 500;
    max-width: 700px;
}

.cta-banner p {
    font-size: 17px;
    max-width: 550px;
    font-family: "Lato", sans-serif;
    opacity: .9;
}

.cta-banner .btn-primary {
    background-color: #f4f4f4;
    color: #654E9F;
    font-weight: 600;
    margin-top: 6px;
    padding: 12px 26px;
}

.cta-banner .btn-primary:hover {
    background-color: #e5e0f5;
}

/* ---- FAQ Accordion ---- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* max-width: 800px; */
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px;
    padding: 6px 20px;
    background: white;
}

.faq-item summary {
    cursor: pointer;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 500;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 22px;
    color: #654E9F;
    margin-left: 20px;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    padding-bottom: 18px;
    font-size: 16px;
    color: #333;
}

/* ---- Pricing ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px;
    padding: 30px 24px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.pricing-card.recommended {
    /* border: 2px solid #654E9F; */
    transform: translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: #654E9F;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 500;
}

.pricing-card .price {
    font-size: 34px;
    font-weight: 600;
    color: #654E9F;
}

.pricing-card .price span {
    font-size: 15px;
    color: #666;
    font-family: "Lato", sans-serif;
}

.pricing-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-card ul li {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    padding-left: 24px;
    position: relative;
}

.pricing-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #654E9F;
    font-weight: 700;
}

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

    .pricing-card.recommended {
        transform: none;
    }
}

/* ---- Comparison Table ---- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: left;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.comparison-table th {
    background: #654E9F;
    color: white;
    font-family: "Lato", sans-serif;
    font-weight: 500;
}

.comparison-table td:first-child {
    font-weight: 600;
}

/* ---- Timeline ---- */
.timeline-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}

.timeline-row::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d6e1fc86;
    z-index: 0;
}

.timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 1;
    z-index: 1;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #654E9F;
    border: 3px solid white;
}

.timeline-point h4 {
    font-size: 15px;
    font-weight: 600;
}

.timeline-point p {
    font-size: 13px;
    max-width: 140px;
}

@media (max-width: 768px) {
    .timeline-row {
        flex-direction: column;
        gap: 24px;
    }

    .timeline-row::before {
        display: none;
    }
}

/* ---- Benefits / Pillars grid ---- */
.benefits-grid,
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillars-grid {
    grid-template-columns: repeat(3, 1fr);
}

.benefit-card,
.pillar-card {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px;
    padding: 24px 18px;
    background: white;
}

.benefit-card h3,
.pillar-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.benefit-card p,
.pillar-card p {
    font-size: 15px;
    display: flex;
    flex-direction: column; 
    gap: 3px;
}

.pillar-card-span {
    font-size: 18px;
    font-weight: 500;
}

/* ===== 7 Pillars Framework CSS ===== */
.pillars-grid-7 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.pillar-card-v2 {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.pillar-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(101, 78, 159, 0.14);
    border-color: rgba(101, 78, 159, 0.3);
}

.pillar-num-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 11px;
    font-weight: 800;
    color: #654E9F;
    background: rgba(101, 78, 159, 0.08);
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.pillar-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(101, 78, 159, 0.12), rgba(109, 94, 248, 0.18));
    color: #654E9F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.pillar-card-v2 h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.35;
}

.pillar-card-v2 p {
    font-size: 14px;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 1024px) {
    .pillars-grid-7 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }
}

@media (max-width: 600px) {
    .pillars-grid-7 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* ==========================================================================
   Blog Post Article Custom Layout Styles
   ========================================================================== */
.blog-post-article {
    max-width: 860px;
    margin: 0 auto;
    font-family: 'Lato', sans-serif;
    font-size: 17.5px;
    line-height: 1.85;
    color: #2c2c3e;
}

.blog-breadcrumb {
    font-size: 13.5px;
    color: #654E9F;
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-breadcrumb a {
    color: #654E9F;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-breadcrumb a:hover {
    color: #4b3780;
    text-decoration: underline;
}

.blog-key-takeaway {
    background: linear-gradient(135deg, rgba(101, 78, 159, 0.06), rgba(109, 94, 248, 0.09));
    border-left: 4px solid #654E9F;
    padding: 22px 26px;
    border-radius: 10px;
    margin-bottom: 35px;
    box-shadow: 0 4px 20px rgba(101, 78, 159, 0.05);
}

.blog-key-takeaway h4 {
    margin: 0 0 8px 0;
    color: #654E9F;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-key-takeaway p {
    margin: 0;
    font-size: 16px;
    color: #3b3b52;
    line-height: 1.6;
}

.blog-post-article h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 40px 0 16px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.blog-post-article h3 {
    font-size: 21px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 28px 0 12px 0;
}

.blog-post-article p {
    margin-bottom: 22px;
}

.blog-post-article code {
    background: #f1f3f9;
    color: #d63384;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 14.5px;
    font-family: monospace;
}

.blog-quote-box {
    background: #fdfcff;
    border-left: 4px solid #654E9F;
    padding: 20px 24px;
    font-style: italic;
    margin: 30px 0;
    border-radius: 6px;
    color: #44445c;
    font-size: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.blog-priority-checklist {
    background: #ffffff;
    border: 1.5px solid rgba(101, 78, 159, 0.25);
    padding: 28px 32px;
    border-radius: 14px;
    margin: 38px 0;
    box-shadow: 0 10px 30px rgba(101, 78, 159, 0.07);
}

.blog-priority-checklist h3 {
    margin-top: 0;
    color: #1b1b3a;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-priority-flow {
    background: linear-gradient(135deg, #654E9F, #523b8a);
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    margin: 16px 0;
    letter-spacing: 0.2px;
    line-height: 1.7;
    box-shadow: 0 6px 20px rgba(101, 78, 159, 0.25);
}

.blog-author-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #eaedf5;
    padding: 24px;
    border-radius: 14px;
    margin-top: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.blog-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #654E9F, #6d5ef8);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(101, 78, 159, 0.3);
}

.blog-author-info h4 {
    margin: 0 0 4px 0;
    font-size: 18px;
    color: #1a1a2e;
    font-weight: 700;
}

.blog-author-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Blog Post Specific Utility Classes */
.page-header-left {
    text-align: left !important;
    align-items: flex-start !important;
}

.blog-title {
    text-align: left !important;
    max-width: 920px;
}

.blog-meta-author {
    text-align: left !important;
    color: #555555;
}

.blog-hr {
    border: 0;
    border-top: 1px solid #eeeeee;
    margin: 35px 0;
}

.blog-icon-purple {
    color: #654E9F;
}

.cta-banner-padded {
    text-align: center;
    padding: 45px 20px;
}

.link-inherit {
    color: inherit;
    text-decoration: none;
}

.link-inherit:hover {
    text-decoration: underline;
}

.team-card {
    text-align: center;
    padding: 10px 5px;
}

.team-photo {
    width: 100%;
    height: 220px;
    background-color: #d6e1fc86;
    border-radius: 8px;
    margin-bottom: 12px;
}

.team-card h3 {
    font-size: 18px;
    font-weight: 500;
}

.team-card .role {
    font-family: "Lato", sans-serif;
    color: #654E9F;
    font-size: 14px;
    margin-bottom: 6px;
}

.team-card p.bio {
    font-size: 14px;
}

@media (max-width: 1024px) {

    .benefits-grid,
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .benefits-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Logo strip ---- */
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.logo-placeholder {
    width: 130px;
    height: 50px;
    background-color: #d6e1fc86;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    color: #666;
}

/* ---- Contact / Forms ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px;
    padding: 30px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 6px;
    font-family: "Lato", sans-serif;
    font-size: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid #654E9F;
    border-color: #654E9F;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px;
    padding: 20px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info-card .mini {
    color: #654E9F;
    font-weight: 600;
    font-size: 14px;
}

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

/* ---- Blog ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    display: flex;
    flex-direction: column;
}

.blog-img {
    height: 170px;
    background-color: #d6e1fc86;
}

.blog-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-tag {
    font-size: 12px;
    text-transform: uppercase;
    color: #654E9F;
    font-weight: 600;
}

.blog-card-body h3 {
    font-size: 19px;
    font-weight: 500;
}

.blog-card-body p {
    font-size: 14px;
}

.blog-meta {
    font-size: 13px;
    color: #666;
    font-family: "Lato", sans-serif;
}

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

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

.blog-post-body {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-post-body h2 {
    font-size: 26px;
    font-weight: 500;
    margin-top: 10px;
}

.blog-post-body h3 {
    font-size: 21px;
    font-weight: 500;
    margin-top: 6px;
}

.blog-post-body p,
.blog-post-body li {
    font-family: "Lato", sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

.blog-post-body blockquote {
    border-left: 3px solid #654E9F;
    padding-left: 18px;
    font-style: italic;
    color: #333;
}

.blog-post-body a {
    color: #654E9F;
    font-weight: 600;
}

.blog-post-hero-img {
    width: 100%;
    height: 320px;
    background-color: #d6e1fc86;
    border-radius: 8px;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 6px;
    font-family: "Lato", sans-serif;
}

/* ---- Expanded Footer ---- */
.site-footer {
    /* background-color: #1a1a1a; */
    /* color: #f4f4f4; */
    padding: 30px 20px;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 2fr;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 10px;
}

.footer-grid h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-grid ul {
    flex-direction: column;
    gap: 10px;
}

.footer-grid a {
    color: #141414;
    font-size: 16px;
    font-family: "Lato", sans-serif;
}

.footer-grid a:hover {
    color: #a58fe0;
}

.footer-brand img {
    width: 200px;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 16.5px;
    width: 100%;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 18px;
    text-align: center;
    font-size: 14px;
    color: #999;
}


.google-map {
    border-radius: 5px;
    width: 400px;
    border: none;
    height: 300px;
}

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

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

    .contact-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 50px 15px;
    }
}

/* ===================================================================
   GROWELL — ANIMATIONS & SMOOTH INTERACTIONS LAYER
   Scroll reveals, hover motion, smooth accordion, nav shine,
   count-up stats, back-to-top. Reuses existing tokens/colors.
=================================================================== */

:root {
    --ease-smooth: cubic-bezier(.16, .84, .44, 1);
}

body {
    animation: pageFadeIn .5s ease;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ---- Scroll reveal (driven by script.js) ---- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s var(--ease-smooth), transform .7s var(--ease-smooth);
    will-change: opacity, transform;
}

[data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-delay="1"].in-view {
    transition-delay: .03s;
}

[data-reveal-delay="2"].in-view {
    transition-delay: .03s;
}

[data-reveal-delay="3"].in-view {
    transition-delay: .03s;
}

[data-reveal-delay="4"].in-view {
    transition-delay: .03s;
}

[data-reveal-delay="5"].in-view {
    transition-delay: .03s;
}

[data-reveal-delay="6"].in-view {
    transition-delay: .03s;
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero>*,
    .page-header>* {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ---- Smooth base transitions on all interactive elements ---- */
a,
button,
.btn-primary,
.btn-secondary,
.see-button,
.our-work-button,
.benefit-card,
.pillar-card,
.team-card,
.stat-card,
.step-card,
.testimonial-card,
.case-study-card,
.blog-card,
.pricing-card,
.faq-item,
.contact-info-card,
.logo-placeholder,
.learn-more,
.grid,
.service-card {
    transition: transform .35s var(--ease-smooth), box-shadow .35s var(--ease-smooth),
        background-color .3s ease, border-color .3s ease, color .3s ease;
}

/* ---- Card hover lift ---- */
.benefit-card:hover,
.pillar-card:hover,
.team-card:hover,
.stat-card:hover,
.step-card:hover,
.testimonial-card:hover,
.case-study-card:hover,
.blog-card:hover,
.pricing-card:hover,
.contact-info-card:hover,
.grid:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(101, 78, 159, .16);
    border-color: rgba(101, 78, 159, .35);
}

.pricing-card.recommended:hover {
    transform: translateY(-16px);
}

/* ---- Image / media zoom on card hover ---- */
.blog-img,
.case-study-img,
.team-photo {
    overflow: hidden;
    transition: transform .6s var(--ease-smooth), filter .6s var(--ease-smooth);
}

.blog-card:hover .blog-img,
.case-study-card:hover .case-study-img,
.team-card:hover .team-photo {
    transform: scale(1.06);
    filter: saturate(1.15);
}

.feature-flex .feature-img,
.blog-post-hero-img {
    transition: transform .6s var(--ease-smooth);
}

.feature-flex:hover .feature-img {
    transform: scale(1.02);
}

/* ---- Buttons ---- */
.btn-primary,
.see-button,
.btn-secondary,
.our-work-button {
    position: relative;
}

.btn-primary:hover,
.see-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(101, 78, 159, .38);
}

.btn-secondary:hover,
.our-work-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
}

.btn-primary:active,
.see-button:active,
.btn-secondary:active,
.our-work-button:active {
    transform: translateY(0) scale(.96);
    box-shadow: none;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .25);
}

/* ---- Nav link underline sweep ---- */
.nav-left ul>li>a {
    position: relative;
    padding-bottom: 4px;
    transition: color .25s ease;
}

.nav-left ul>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #654E9F;
    transition: width .3s var(--ease-smooth);
}

.nav-left ul>li>a:hover::after,
.nav-left ul>li.active>a::after {
    width: 100%;
}

/* ---- Dropdown smooth fade (replaces hard display toggle) ---- */
.dropdown-menu {
    display: block !important;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s var(--ease-smooth), transform .28s var(--ease-smooth), visibility .28s;
}

.nav-left ul li:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.dropdown-menu a {
    transition: background .25s ease, color .25s ease, padding-left .25s ease;
}

.dropdown-menu a:hover {
    padding-left: 26px;
}

/* ---- Header shadow on scroll ---- */
header {
    transition: box-shadow .35s ease;
}

header.scrolled {
    box-shadow: 0 8px 26px rgba(0, 0, 0, .14);
}

/* ---- Hero / page-header entrance ---- */
.hero>*,
.page-header>* {
    opacity: 0;
    transform: translateY(22px);
    animation: heroIn .8s var(--ease-smooth) forwards;
}

.hero p,
.page-header p {
    animation-delay: .12s;
}

.hero .hero-buttons,
.page-header .btn-primary {
    animation-delay: .24s;
}

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

/* ---- FAQ accordion (animated by script.js via inline max-height) ---- */
.faq-item summary::after {
    display: inline-block;
    transition: transform .35s var(--ease-smooth);
}

.faq-item[open] summary::after {
    transform: rotate(135deg);
}

.faq-item p {
    transition: max-height .4s var(--ease-smooth), opacity .35s ease;
}

/* ---- Logo strip subtle hover ---- */
.logo-placeholder {
    filter: grayscale(1) opacity(.75);
    transition: filter .3s ease, transform .3s ease;
}

.logo-placeholder:hover {
    filter: grayscale(0) opacity(1);
    transform: translateY(-4px);
}

/* ---- Newsletter / contact form focus polish ---- */
.newsletter-form input,
.contact-form input,
.contact-form select,
.contact-form textarea {
    transition: border-color .25s ease, box-shadow .25s ease;
}

.newsletter-form input:focus {
    outline: 2px solid #654E9F;
    box-shadow: 0 0 0 4px rgba(101, 78, 159, .12);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 4px rgba(101, 78, 159, .12);
}

/* ---- Timeline / step number pop ---- */
.step-card:hover .step-number,
.timeline-point:hover .timeline-dot {
    transform: scale(1.12);
}

.step-card .step-number {
    display: inline-block;
    transition: transform .3s var(--ease-smooth);
    color: #654E9F;
}

.timeline-dot {
    transition: transform .3s var(--ease-smooth);
}

/* ---- Back to top button ---- */
.back-to-top {
    position: fixed;
    right: 95px;
    bottom: 25px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #654E9F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .3s ease, transform .3s var(--ease-smooth), visibility .3s, background .3s ease, box-shadow .3s ease;
    z-index: 999;
    box-shadow: 0 8px 22px rgba(101, 78, 159, .38);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #543f87;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(101, 78, 159, .45);
}

/* ---- Stat / metric count-up container ---- */
.stat-number,
.case-study-metric {
    display: inline-block;
}

/* ===================================================================
   SERVICE SHOWCASE SECTIONS (For dedicated service sections on services.html)
   =================================================================== */
.service-section-block {
    padding: 70px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-section-block:nth-child(even) {
    background-color: #f9fafe;
}

.service-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-showcase-grid.reverse {
    direction: rtl;
}

.service-showcase-grid.reverse>* {
    direction: ltr;
}

.service-showcase-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-showcase-content .mini-badge {
    display: inline-block;
    background-color: #d6e1fc;
    color: #654E9F;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 20px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-showcase-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1b1b3a;
    line-height: 1.25;
}

.service-showcase-content p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 10px 0 15px 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.service-features-list li i {
    color: #654E9F;
    font-size: 14px;
}

.service-showcase-img {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-showcase-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(101, 78, 159, 0.18);
}

/* Pricing Toggle Switch */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 600;
}

.pricing-toggle-wrap .discount-tag {
    background: #e6f4ea;
    color: #137333;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 700;
}

.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #654E9F;
}

input:checked+.slider:before {
    transform: translateX(28px);
}

@media (max-width: 900px) {

    .service-showcase-grid,
    .service-showcase-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 30px;
    }

    .service-features-list {
        grid-template-columns: 1fr;
    }

    .service-showcase-img {
        height: 280px;
    }
}

/* ===================================================================
   1. FLOATING GROWELL AI LEAD CHATBOT WIDGET
   =================================================================== */
.growell-chatbot-container {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    left: auto !important;
    z-index: 999999 !important;
}

.chatbot-teaser {
    position: absolute;
    bottom: 68px;
    right: 0;
    white-space: nowrap;
    background: #1b1b3a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: teaserPulse 3s infinite ease-in-out;
    pointer-events: none;
}

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

.chatbot-toggle-btn {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #654E9F 0%, #6d5ef8 100%) !important;
    color: #ffffff !important;
    border: none !important;
    outline: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    box-shadow: 0 10px 30px rgba(101, 78, 159, 0.45) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
}

.chatbot-toggle-btn:hover {
    transform: scale(1.08) rotate(5deg) !important;
    box-shadow: 0 14px 35px rgba(101, 78, 159, 0.6) !important;
}

.chatbot-toggle-btn .chat-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff3b30;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.chatbot-window {
    position: absolute !important;
    bottom: 75px !important;
    right: 0 !important;
    width: 360px !important;
    max-width: calc(100vw - 30px) !important;
    height: 500px !important;
    max-height: calc(100vh - 100px) !important;
    background: #ffffff !important;
    border-radius: 18px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    display: none;
    flex-direction: column !important;
    overflow: hidden !important;
    z-index: 999999 !important;
    animation: chatWindowIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards !important;
}

.chatbot-window.active {
    display: flex !important;
}

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

.chat-header {
    background: linear-gradient(135deg, #1b1b3a 0%, #3a2e6e 100%) !important;
    color: #ffffff !important;
    padding: 16px 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.chat-header-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #654E9F;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-status-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: #ffffff;
}

.chat-status-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #28a745;
}

.chat-close-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    border: none !important;
    color: #ffffff !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s !important;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

.chat-messages {
    flex-grow: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f8fafe;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-msg {
    display: flex;
    flex-direction: column;
    max-width: 85%;
    animation: msgFade 0.25s ease forwards;
}

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

.chat-msg.bot {
    align-self: flex-start;
}

.chat-msg.user {
    align-self: flex-end;
}

.msg-bubble {
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 13.5px;
    line-height: 1.5;
}

.chat-msg.bot .msg-bubble {
    background: #ffffff;
    color: #222222;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top-left-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.chat-msg.user .msg-bubble {
    background: #654E9F;
    color: #ffffff;
    border-top-right-radius: 4px;
}

.chat-options-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.chat-opt-btn {
    background: #ffffff;
    border: 1.5px solid #654E9F;
    color: #654E9F;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(101, 78, 159, 0.08);
}

.chat-opt-btn:hover {
    background: #654E9F;
    color: #ffffff;
    transform: translateX(4px);
}

.chat-lead-form {
    background: #ffffff;
    border: 1px solid rgba(101, 78, 159, 0.2);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.chat-lead-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    box-sizing: border-box;
}

.chat-lead-form input:focus {
    border-color: #654E9F;
    box-shadow: 0 0 0 3px rgba(101, 78, 159, 0.12);
}

.chat-submit-btn {
    background: #654E9F;
    color: #ffffff;
    border: none;
    padding: 11px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.chat-submit-btn:hover {
    background: #543f87;
}

.chat-whatsapp-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff !important;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    margin-top: 8px;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s;
}

.chat-whatsapp-action:hover {
    transform: translateY(-2px);
}

.chat-input-bar {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    gap: 8px;
}

.chat-input-bar input {
    flex-grow: 1;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    outline: none;
    font-family: "Lato", sans-serif;
}

.chat-input-bar input:focus {
    border-color: #654E9F;
    box-shadow: 0 0 0 2px rgba(101, 78, 159, 0.12);
}

.chat-input-bar button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #654E9F;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.chat-input-bar button:hover {
    background: #543f87;
    transform: scale(1.05);
}

.chat-footer {
    padding: 8px 10px;
    background: #fdfdfd;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    font-size: 10.5px;
    color: #888888;
}

/* Typing Animation Indicator */
.typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: #ffffff;
    border-radius: 14px;
    border-top-left-radius: 4px;
    border: 1px solid rgba(0,0,0,0.08);
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #654E9F;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@media (max-width: 480px) {
    .growell-chatbot-container {
        bottom: 15px !important;
        right: 15px !important;
    }
    .chatbot-toggle-btn {
        width: 52px !important;
        height: 52px !important;
        font-size: 22px !important;
    }
    .chatbot-window {
        bottom: 70px !important;
        right: 0 !important;
        width: calc(100vw - 30px) !important;
        height: 460px !important;
    }
}

/* ===================================================================
   2. FREE INSTANT AUDIT POPUP MODAL
   =================================================================== */
.audit-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(4px) !important;
    z-index: 1000000 !important;
    display: none;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

.audit-modal-overlay.active {
    display: flex !important;
}

.audit-modal-content {
    background: white !important;
    border-radius: 16px !important;
    width: 100% !important;
    max-width: 520px !important;
    padding: 35px 30px !important;
    position: relative !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25) !important;
    animation: modalIn 0.3s ease forwards !important;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close-btn {
    position: absolute !important;
    top: 18px !important;
    right: 20px !important;
    background: none !important;
    border: none !important;
    font-size: 26px !important;
    color: #888 !important;
    cursor: pointer !important;
    transition: color 0.2s !important;
}

.modal-close-btn:hover {
    color: #111 !important;
}

.audit-modal-header {
    text-align: center !important;
    margin-bottom: 25px !important;
}

.audit-modal-header h2 {
    font-size: 26px !important;
    color: #1b1b3a !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
}

.audit-modal-header p {
    font-size: 15px !important;
    color: #666 !important;
}

.audit-form-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.audit-input-wrap input,
.audit-input-wrap select {
    width: 100% !important;
    padding: 13px 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.18) !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-family: "Lato", sans-serif !important;
    outline: none !important;
}

.audit-input-wrap input:focus,
.audit-input-wrap select:focus {
    border-color: #654E9F !important;
    box-shadow: 0 0 0 3px rgba(101, 78, 159, 0.15) !important;
}

.audit-submit-btn {
    width: 100% !important;
    background-color: #654E9F !important;
    color: white !important;
    border: none !important;
    padding: 14px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    margin-top: 10px !important;
}

.audit-submit-btn:hover {
    background-color: #543f87 !important;
}

/* ===================================================================
   3. BEFORE VS AFTER COMPARISON SLIDER
   =================================================================== */
.before-after-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 480px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.1);
    user-select: none;
}

.before-after-bg,
.before-after-fg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.before-after-fg {
    width: 50%;
    overflow: hidden;
    border-right: 3px solid #654E9F;
}

.before-after-badge {
    position: absolute;
    top: 18px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 5;
}

.badge-before {
    left: 18px;
}

.badge-after {
    right: 18px;
    background: #654E9F;
}

.before-after-slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

.before-after-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #654E9F;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 8;
    pointer-events: none;
}

@media (max-width: 768px) {
    .before-after-container {
        height: 300px;
    }
}

/* ===================================================================
   4. INTERACTIVE FILTERABLE PORTFOLIO
   =================================================================== */
.filter-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: white;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #654E9F;
    color: white;
    border-color: #654E9F;
    box-shadow: 0 4px 14px rgba(101, 78, 159, 0.25);
}

.portfolio-card-item {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.portfolio-card-item.hide {
    display: none !important;
}

/* ===================================================================
   5. INFINITE CLIENT LOGO MARQUEE
   =================================================================== */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 25px 0;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: logoMarquee 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    font-size: 18px;
    font-weight: 700;
    color: #654E9F;
    background: #f4f4f4;
    padding: 12px 28px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.marquee-item:hover {
    opacity: 1;
}

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

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

/* ===================================================================
   6. INTERACTIVE ROI / GROWTH CALCULATOR
   =================================================================== */
.roi-calc-section {
    width: 100% !important;
    overflow-x: hidden !important;
}

.roi-calc-section .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
}

.roi-calc-container {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 18px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto;
    box-sizing: border-box !important;
}

.roi-calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100% !important;
}

.roi-slider-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100% !important;
}

.roi-slider-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
}

.roi-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
    flex-wrap: wrap;
}

.roi-traffic-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    font-size: 14.5px;
    color: #444;
    background: rgba(101, 78, 159, 0.07);
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(101, 78, 159, 0.15);
    width: 100%;
    box-sizing: border-box;
}

.roi-traffic-badge strong {
    color: #654E9F;
    font-weight: 700;
    font-size: 16px;
}

.roi-val {
    color: #654E9F;
    font-size: 18px;
    font-weight: 700;
}

.roi-slider-input {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e0e0e0;
    outline: none;
    accent-color: #654E9F;
    cursor: pointer;
}

.roi-results-box {
    background: #f9fafe;
    border: 1px solid #d6e1fc;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100% !important;
    box-sizing: border-box !important;
}

.roi-result-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px dashed rgba(101, 78, 159, 0.2);
    padding-bottom: 12px;
    gap: 6px;
    width: 100% !important;
}

.roi-result-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.roi-result-label {
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

.roi-result-val {
    font-size: 24px;
    font-weight: 700;
    color: #654E9F;
}

@media (max-width: 768px) {
    .roi-calc-container {
        width: 100% !important;
        padding: 18px 14px !important;
        border-radius: 14px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .roi-calc-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .roi-slider-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
        font-size: 14.5px !important;
        width: 100% !important;
    }

    .roi-traffic-badge {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
        padding: 10px 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .roi-val {
        font-size: 18px !important;
    }

    .roi-results-box {
        padding: 16px 12px !important;
        gap: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .roi-result-label {
        font-size: 13px !important;
    }

    .roi-result-val {
        font-size: 19px !important;
    }
}

/* ===================================================================
   7. INTERACTIVE SERVICE SCOPE & DELIVERABLES MODAL
   =================================================================== */
.scope-modal-content {
    max-width: 650px !important;
    background: #ffffff !important;
    border-radius: 18px !important;
    padding: 35px 30px !important;
}

.scope-modal-badge {
    display: inline-block;
    background: rgba(101, 78, 159, 0.1);
    color: #654E9F;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.scope-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}

.scope-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    background: #f9fafe;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(101, 78, 159, 0.1);
}

.scope-check-item i {
    color: #25D366;
    font-size: 16px;
}

@media (max-width: 600px) {

    .scope-checklist,
    .quiz-options-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===================================================================
   8. MULTI-STEP PROPOSAL QUIZ WIZARD MODAL
   =================================================================== */
.quiz-modal-content {
    max-width: 600px !important;
    border-radius: 18px !important;
    padding: 35px 30px !important;
}

.quiz-progress-bar-bg {
    width: 100%;
    height: 6px;
    background: #eef1f8;
    border-radius: 10px;
    margin: 15px 0 22px;
    overflow: hidden;
}

.quiz-progress-bar-fill {
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, #654E9F, #6d5ef8);
    transition: width 0.3s ease;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}

.quiz-option-card {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fafafa;
}

.quiz-option-card:hover,
.quiz-option-card.selected {
    border-color: #654E9F;
    background: rgba(101, 78, 159, 0.06);
    transform: translateY(-2px);
}

.quiz-option-card i {
    font-size: 26px;
    color: #654E9F;
    margin-bottom: 8px;
    display: block;
}

.quiz-option-card span {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    display: block;
}

.quiz-nav-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}