 :root {
            --primary: #5434b8;
            --primary-dark: #392184;
            --green: #08a878;
            --dark: #101936;
            --text: #26304d;
            --muted: #68718b;
            --border: #e1e4ec;
        }

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

        body {
            font-family: "Manrope", sans-serif;
            color: var(--text);
            background: #fff;
        }

        img {
            max-width: 100%;
        }

        a {
            text-decoration: none;
        }


        /* =========================================
           HEADER
        ========================================= */

        .main-header {
            background: rgba(255,255,255,0.94);
            border-bottom: 1px solid rgba(20,30,60,0.06);
            position: relative;
            z-index: 10;
        }

        .header-inner {
            min-height: 88px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .brand-wrapper {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .brand-logo {
            width: 145px;
            height: auto;
        }

        .brand-tagline {
            border-left: 1px solid #d9dce5;
            padding-left: 18px;
            font-size: 12px;
            line-height: 1.45;
            letter-spacing: 1px;
            font-weight: 700;
            color: #3d4560;
            text-transform: uppercase;
        }

        .header-features {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .header-feature {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 12px;
            font-weight: 700;
            color: #202945;
        }

        .header-feature i {
            font-size: 25px;
            color: var(--primary);
        }

        .call-btn {
            background: var(--green);
            color: #fff;
            padding: 13px 22px;
            border-radius: 13px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 800;
            box-shadow: 0 10px 25px rgba(8,168,120,.18);
        }

        .call-btn i {
            font-size: 21px;
        }

        .call-btn:hover {
            color: #fff;
            background: #078f68;
        }


        /* =========================================
           HERO SECTION
        ========================================= */

        .hero {
            position: relative;
            overflow: hidden;
            min-height: 545px;

            /*
             * Soft radiant background instead of coloured boxes
             */
            background:
                radial-gradient(
                    circle at 72% 48%,
                    rgba(224, 209, 255, .72) 0%,
                    rgba(224, 209, 255, .32) 20%,
                    transparent 43%
                ),
                radial-gradient(
                    circle at 12% 72%,
                    rgba(255, 225, 196, .50) 0%,
                    rgba(255, 225, 196, .18) 25%,
                    transparent 48%
                ),
                radial-gradient(
                    circle at 100% 80%,
                    rgba(180, 240, 229, .55) 0%,
                    rgba(180, 240, 229, .20) 22%,
                    transparent 45%
                ),
                linear-gradient(
                    110deg,
                    #fffdf9 0%,
                    #ffffff 43%,
                    #faf9ff 70%,
                    #f6fffd 100%
                );
        }

        /*
         * Decorative blurred colour glow
         */
        .hero::before {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: rgba(115, 70, 205, .12);
            filter: blur(80px);
            top: 80px;
            left: 42%;
            pointer-events: none;
        }

        .hero::after {
            content: "";
            position: absolute;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: rgba(11, 184, 145, .10);
            filter: blur(75px);
            right: -100px;
            bottom: -100px;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 42px 0 38px;
        }


        /* =========================================
           HERO LEFT CONTENT
        ========================================= */

        .hero-left {
            padding-top: 28px;
            position: relative;
            z-index: 3;
        }

        .hero-eyebrow {
            font-size: 12px;
            letter-spacing: 5px;
            font-weight: 800;
            color: #59627a;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .hero-title {
            font-size: clamp(45px, 4.3vw, 65px);
            line-height: .98;
            letter-spacing: -2.5px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 18px;
        }

        .hero-title .gradient-text {
            background: linear-gradient(
                90deg,
                #5130b3,
                #7548c8
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-description {
            font-size: 17px;
            line-height: 1.55;
            color: #29334e;
            max-width: 520px;
            margin-bottom: 28px;
        }


        /* =========================================
           BENEFITS
        ========================================= */

        .hero-benefits {
            display: flex;
            align-items: flex-start;
            gap: 22px;
            margin-top: 25px;
        }

        .benefit {
            width: 95px;
            text-align: center;
        }

        .benefit-icon {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            margin: 0 auto 9px;

            display: flex;
            align-items: center;
            justify-content: center;

            background: rgba(255,255,255,.75);
            border: 1px solid rgba(255,255,255,.9);
            box-shadow: 0 8px 25px rgba(36,44,76,.08);
        }

        .benefit-icon i {
            font-size: 24px;
        }

        .benefit:nth-child(1) .benefit-icon {
            color: #5638b8;
        }

        .benefit:nth-child(2) .benefit-icon {
            color: #08a878;
        }

        .benefit:nth-child(3) .benefit-icon {
            color: #ee4d36;
        }

        .benefit:nth-child(4) .benefit-icon {
            color: #efa900;
        }

        .benefit-title {
            font-size: 11px;
            line-height: 1.35;
            font-weight: 800;
            color: #26304a;
        }


        /* =========================================
           PRODUCT IMAGE AREA
        ========================================= */

        .product-area {
            position: absolute;
            left: 42%;
            bottom: 5px;
            width: 420px;
            z-index: 2;
            text-align: center;
        }

        .product-image {
            width: 100%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 20px 25px rgba(34,30,60,.18));
        }

        /*
         * Handwritten decoration
         */
        .paint-message {
            position: absolute;
            top: -50px;
            left: 70px;
            font-family: cursive;
            font-size: 27px;
            line-height: 1.15;
            color: #18233e;
            transform: rotate(-8deg);
            z-index: 4;
        }

        .paint-message::after {
            content: "";
            position: absolute;
            width: 125px;
            height: 2px;
            background: #e8a800;
            bottom: -9px;
            right: -20px;
            transform: rotate(-5deg);
        }


        /* =========================================
           ENQUIRY FORM
        ========================================= */

        .form-wrapper {
            position: relative;
            z-index: 5;
        }

        .enquiry-card {
            background: rgba(255,255,255,.96);
            border-radius: 20px;
            padding: 25px 27px 23px;

            box-shadow:
                0 25px 60px rgba(34, 41, 76, .14),
                0 5px 20px rgba(34, 41, 76, .05);

            border: 1px solid rgba(255,255,255,.9);
        }

        .form-title {
            font-size: 29px;
            line-height: 1.05;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 7px;
        }

        .form-subtitle {
            font-size: 13px;
            line-height: 1.5;
            color: #6b748c;
            margin-bottom: 17px;
        }

        .form-control,
        .form-select {
            height: 48px;
            border: 1px solid #d9deea;
            border-radius: 8px;
            font-size: 13px;
            color: #34405c;
            padding-left: 15px;
            box-shadow: none !important;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary);
        }

        .input-group-custom {
            position: relative;
            margin-bottom: 10px;
        }

        .input-group-custom i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            color: #7b849a;
            font-size: 16px;
        }

        .input-group-custom .form-control,
        .input-group-custom .form-select {
            padding-left: 40px;
        }

        .submit-btn {
            width: 100%;
            height: 50px;
            border: 0;
            border-radius: 9px;
            background: linear-gradient(
                90deg,
                #5131b2,
                #693dc2
            );
            color: #fff;
            font-size: 15px;
            font-weight: 800;
            transition: .25s ease;
            box-shadow: 0 10px 22px rgba(81,49,178,.22);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 28px rgba(81,49,178,.28);
        }

        .form-security {
            text-align: center;
            margin-top: 13px;
            font-size: 11px;
            color: #7d8495;
        }

        .form-security i {
            color: #657087;
            margin-right: 4px;
        }


        /* =========================================
           WHY CHOOSE SECTION
        ========================================= */

        .why-section {
            padding: 80px 0;
            background: #fff;
        }

        .section-label {
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #6e7891;
            font-weight: 800;
            margin-bottom: 9px;
        }

        .section-title {
            font-size: 40px;
            line-height: 1.1;
            font-weight: 800;
            color: var(--dark);
        }

        .section-description {
            color: var(--muted);
            line-height: 1.7;
        }

        .feature-card {
            padding: 28px 22px;
            border-radius: 16px;
            background: #fff;
            border: 1px solid #edf0f5;
            height: 100%;
            transition: .25s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 40px rgba(30,40,80,.08);
        }

        .feature-icon {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f4f0ff;
            color: var(--primary);
            font-size: 25px;
            margin-bottom: 17px;
        }

        .feature-card h4 {
            font-size: 17px;
            font-weight: 800;
            color: var(--dark);
        }

        .feature-card p {
            font-size: 13px;
            line-height: 1.6;
            color: var(--muted);
            margin-bottom: 0;
        }


        /* =========================================
           DEALERSHIP SECTION
        ========================================= */

        .opportunity-section {
            padding: 80px 0;
            background:
                radial-gradient(
                    circle at 90% 20%,
                    rgba(222,215,255,.45),
                    transparent 35%
                ),
                #f8f9fc;
        }

        .opportunity-image {
            min-height: 350px;
            border-radius: 25px;
            overflow: hidden;
            background:
                linear-gradient(
                    135deg,
                    rgba(84,52,184,.08),
                    rgba(8,168,120,.08)
                );
        }

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

        .check-list {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }

        .check-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 13px;
            font-size: 14px;
            font-weight: 600;
        }

        .check-list i {
            color: var(--green);
            font-size: 19px;
        }

        .green-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 23px;
            border-radius: 9px;
            background: var(--green);
            color: #fff;
            font-size: 13px;
            font-weight: 800;
        }

        .green-btn:hover {
            color: #fff;
            background: #078f68;
        }


        /* =========================================
           HOW IT WORKS
        ========================================= */

        .process-section {
            padding: 80px 0;
            background: #fff;
        }

        .process-item {
            text-align: center;
            position: relative;
        }

        .process-number {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            background: var(--primary);
            font-size: 16px;
            font-weight: 800;
        }

        .process-item h4 {
            font-size: 16px;
            font-weight: 800;
            color: var(--dark);
        }

        .process-item p {
            font-size: 13px;
            line-height: 1.5;
            color: var(--muted);
        }


        /* =========================================
           FAQ SECTION
        ========================================= */

        .faq-section {
            padding: 80px 0;
            background: #f8f9fc;
        }

        .faq-heading {
            font-size: 40px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.1;
        }

        .faq-subtitle {
            font-size: 14px;
            line-height: 1.7;
            color: var(--muted);
            max-width: 390px;
        }

        .accordion-item {
            border: 1px solid #e5e8ef !important;
            border-radius: 9px !important;
            overflow: hidden;
            margin-bottom: 10px;
            background: #fff;
        }

        .accordion-button {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
            padding: 17px 20px;
            background: #fff;
            box-shadow: none !important;
        }

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

        .accordion-button::after {
            background-size: 14px;
        }

        .accordion-body {
            font-size: 13px;
            line-height: 1.7;
            color: var(--muted);
            padding: 0 20px 18px;
        }


        /* =========================================
           FINAL CTA
        ========================================= */

        .cta-section {
            padding: 55px 0;
            background:
                linear-gradient(
                    110deg,
                    #402796,
                    #6440c3
                );
            position: relative;
            overflow: hidden;
        }

        .cta-section::after {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255,255,255,.08);
            right: -120px;
            top: -200px;
        }

        .cta-title {
            color: #fff;
            font-size: 32px;
            font-weight: 800;
        }

        .cta-text {
            color: rgba(255,255,255,.8);
            font-size: 14px;
        }

        .cta-btn {
            background: #fff;
            color: var(--primary);
            padding: 14px 28px;
            border-radius: 9px;
            font-size: 14px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-btn:hover {
            color: var(--primary-dark);
        }


        /* =========================================
           MOBILE
        ========================================= */

        @media (max-width: 1199px) {

            .header-features {
                gap: 15px;
            }

            .header-feature {
                display: none;
            }

            .product-area {
                left: 38%;
                width: 350px;
            }

            .hero-title {
                font-size: 49px;
            }
        }


        @media (max-width: 991px) {

            .header-inner {
                min-height: 75px;
            }

            .brand-logo {
                width: 120px;
            }

            .brand-tagline {
                display: none;
            }

            .hero {
                min-height: auto;
            }

            .hero-content {
                padding: 45px 0;
            }

            .hero-left {
                padding-top: 0;
                text-align: center;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-benefits {
                justify-content: center;
                margin-bottom: 30px;
            }

            .product-area {
                position: relative;
                left: auto;
                bottom: auto;
                width: 400px;
                max-width: 90%;
                margin: 0 auto 25px;
            }

            .paint-message {
                left: 10%;
            }

            .form-wrapper {
                max-width: 500px;
                margin: 0 auto;
            }
        }


        @media (max-width: 575px) {

            .header-inner {
                padding: 0 10px;
            }

            .brand-logo {
                width: 105px;
            }

            .call-btn {
                padding: 10px 13px;
                font-size: 12px;
            }

            .call-btn span {
                display: none;
            }

            .hero-content {
                padding: 35px 15px 45px;
            }

            .hero-eyebrow {
                font-size: 9px;
                letter-spacing: 3px;
            }

            .hero-title {
                font-size: 39px;
                letter-spacing: -1.5px;
            }

            .hero-description {
                font-size: 14px;
            }

            .hero-benefits {
                gap: 5px;
                justify-content: space-between;
            }

            .benefit {
                width: 76px;
            }

            .benefit-icon {
                width: 48px;
                height: 48px;
            }

            .benefit-title {
                font-size: 9px;
            }

            .product-area {
                width: 320px;
            }

            .paint-message {
                font-size: 21px;
                top: -30px;
                left: 5%;
            }

            .enquiry-card {
                padding: 22px 18px;
            }

            .form-title {
                font-size: 25px;
            }

            .section-title,
            .faq-heading {
                font-size: 31px;
            }

            .why-section,
            .opportunity-section,
            .process-section,
            .faq-section {
                padding: 55px 0;
            }

            .opportunity-image {
                min-height: 250px;
                margin-bottom: 30px;
            }

            .cta-title {
                font-size: 26px;
            }
        }



        /* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;

    width: 100%;

    padding: 17px 0;

    background: #ffffff;

    border-top: 1px solid #e9ebf0;
}


/* Main footer row */

.footer-inner {
    min-height: 62px;

    display: flex;
    align-items: center;

    gap: 25px;
}


/* =========================================================
   LOGO
========================================================= */

.footer-brand {
    flex-shrink: 0;

    display: flex;
    align-items: center;
}

.footer-brand img {
    width: 105px;
    height: auto;

    display: block;
}


/* =========================================================
   ADITYA BIRLA GROUP
========================================================= */

.footer-group {
    display: flex;
    align-items: center;

    gap: 9px;

    flex-shrink: 0;
}

.footer-group img {
    width: 43px;
    height: 43px;

    object-fit: contain;
}

.footer-group span {
    color: #555c6d;

    font-size: 8px;
    line-height: 1.35;

    font-weight: 500;

    white-space: nowrap;
}


/* =========================================================
   DIVIDER
========================================================= */

.footer-divider {
    width: 1px;
    height: 42px;

    flex-shrink: 0;

    background: #dfe2e8;
}


/* =========================================================
   VALUES
========================================================= */

.footer-value {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #424a5d;

    font-size: 9px;

    font-weight: 600;

    white-space: nowrap;
}

.footer-value i {
    font-size: 18px;
}


/* Better Homes */

.footer-value:nth-of-type(1) i {
    color: #20a65c;
}


/* Happier Lives */

.footer-value:nth-of-type(2) i {
    color: #ed3e52;
}


/* Brighter Tomorrow */

.footer-value:nth-of-type(3) i {
    color: #0b9e70;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 5px;

    flex-shrink: 0;
}

.social-title {
    color: #666d7d;

    font-size: 8px;

    font-weight: 600;
}

.social-icons {
    display: flex;
    align-items: center;

    gap: 7px;
}

.social-icons a {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eff1f5;

    color: #253c83;

    font-size: 10px;

    transition: all .2s ease;
}

.social-icons a:nth-child(2) {
    color: #e44373;
}

.social-icons a:nth-child(3) {
    color: #2465a8;
}

.social-icons a:nth-child(4) {
    color: #e32d36;
}

.social-icons a:hover {
    transform: translateY(-2px);

    background: #e6e8ee;
}


/* =========================================================
   FOOTER TAGLINE
========================================================= */

.footer-tagline {
    margin-left: auto;

    padding-left: 5px;

    text-align: center;

    color: #626879;

    font-family: cursive;

    font-size: 10px;

    line-height: 1.05;

    white-space: nowrap;

    transform: rotate(-5deg);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .footer-inner {
        gap: 17px;
    }

    .footer-brand img {
        width: 90px;
    }

    .footer-value {
        font-size: 8px;
    }

    .footer-group span {
        display: none;
    }

    .footer-group img {
        width: 40px;
    }

}


@media (max-width: 991px) {

    .site-footer {
        padding: 25px 0;
    }

    .footer-inner {
        flex-wrap: wrap;

        justify-content: center;

        row-gap: 20px;
    }

    .footer-tagline {
        margin-left: 0;
    }

}


@media (max-width: 575px) {

    .site-footer {
        padding: 25px 15px;
    }

    .footer-inner {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px;

        text-align: center;
    }

    .footer-brand,
    .footer-group,
    .footer-value,
    .footer-social,
    .footer-tagline {
        justify-content: center;
        margin: 0;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-brand img {
        width: 110px;
    }

    .footer-group {
        grid-column: span 2;
    }

    .footer-value {
        justify-content: center;
    }

    .footer-divider {
        display: none;
    }

    .footer-social {
        grid-column: span 2;
    }

    .footer-tagline {
        grid-column: span 2;

        padding-top: 5px;
    }

}