/* =========================================================
   MOSAB CONSULTANCY
   COMPLETE A TO Z RESPONSIVE CSS
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;

    color: #17202A;
    background: #FFFFFF;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
}


/* =========================================================
   NAVBAR
========================================================= */

nav {
    width: 100%;

    padding: 14px 5%;

    background: #2358A8;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 1000;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}

nav a {
    color: #FFFFFF;

    font-size: 18px;
    font-weight: 600;

    transition: .3s ease;
}

nav a:hover {
    color: #DFF5E5;
}

.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo img {
    width: 120px;
    height: auto;
    display: block;
}

.menu-items {
    display: flex;
    align-items: center;
    gap: 30px;
}

#consult-btn {
    padding: 10px 20px;

    background: #008C2B;
    color: #FFFFFF;

    border: none;
    border-radius: 8px;

    font-weight: bold;

    margin-left: 15px;

    transition: .3s ease;
}

#consult-btn:hover {
    background: #006D22;
    transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.top-section {
    width: 100%;
    min-height: 100vh;

    position: relative;

    overflow: hidden;
}

.top-section > section {
    width: 100%;
    min-height: calc(100vh - 70px);

    position: relative;

    overflow: hidden;
}


/* HERO BACKGROUND */

#hero-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;
}


/* HERO OVERLAY */

.top-section > section::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.70) 0%,
            rgba(0,0,0,.40) 55%,
            rgba(0,0,0,.15) 100%
        );

    z-index: 1;

    pointer-events: none;
}


/* HERO CONTENT ABOVE IMAGE */

.top-section .container,
.top-section .grid,
.top-section .content,
.top-section .hero-stats {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.content {
    width: 100%;

    padding-left: 5%;
    padding-right: 5%;
}

.content h1 {
    color: #8993A8;

    line-height: 1.05;

    margin: 0;
}

.content h1 span {
    color: #2358A8;
}

.content p {
    color: #506078;

    line-height: 1.5;
}


/* =========================================================
   HERO ₹499 BOOK BUTTON
========================================================= */

.offer-btn {
    width: 100%;
    max-width: 400px;

    min-height: 90px;

    padding: 15px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    background: #3F9838;
    color: #FFFFFF;

    border: none;
    border-radius: 16px;

    text-align: left;

    transition: .3s ease;

    box-shadow:
        0 10px 25px rgba(0,0,0,.15);
}

.offer-btn:hover {
    background: #358430;

    transform: translateY(-2px);
}

.offer-btn-content {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 7px;
}

.offer-btn-title {
    color: #FFFFFF;

    font-size: 20px;
    font-weight: 800;

    line-height: 1.2;
}

.offer-price {
    display: flex;
    align-items: center;

    gap: 9px;
}

.offer-old-price {
    position: relative;

    color: #FFFFFF;

    font-size: 16px;
}

.offer-old-price::after {
    content: "";

    position: absolute;

    left: -3px;
    right: -3px;

    top: 50%;

    height: 2px;

    background: #FF0000;

    transform: rotate(-7deg);
}

.offer-new-price {
    color: #FFF200;

    font-size: 28px;

    font-weight: 800;
}

.offer-arrow {
    width: 48px;
    height: 48px;

    min-width: 48px;

    border-radius: 50%;

    background: #FFFFFF;

    color: #2358A8;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;

    transition: .3s ease;
}

.offer-btn:hover .offer-arrow {
    transform: translateX(4px);
}


/* =========================================================
   HERO STATS
========================================================= */

/*
   IMPORTANT:
   Desktop cards intentionally kept around
   the size of the Book Consultation button.
*/

.top-section .hero-stats {
    width: 430px;
    max-width: 430px;

    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-left: auto;
    margin-right: 80px;

    transform: translateX(0);
}


/* HERO CARD */

.top-section .hero-stats .hero-card {
    width: 430px;
    max-width: 430px;

    min-height: 105px;

    padding: 15px 20px;

    border-radius: 16px;

    background: rgba(255,255,255,.94);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow:
        0 8px 25px rgba(0,0,0,.12);

    transition: .3s ease;
}

.top-section .hero-stats .hero-card:hover {
    transform: translateY(-3px);
}

.top-section .hero-stats .hero-card h2 {
    margin: 0;

    color: #315FA8;

    font-size: 42px;

    line-height: 1;

    font-weight: 700;
}

.top-section .hero-stats .hero-card p {
    margin-top: 7px;

    color: #354052;

    font-size: 16px;

    line-height: 1.3;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.whatsapp {
    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background-image:
        url("./images/whatsapp (1).png");

    background-size: cover;
    background-position: center;

    border: 3px solid #FFFFFF;

    z-index: 9999;

    box-shadow:
        0 8px 25px rgba(0,0,0,.20);

    transition: .3s ease;
}

.whatsapp:hover {
    transform: scale(1.08);
}


/* =========================================================
   INDUSTRY MARQUEE
========================================================= */

.industry-marquee {
    width: 100%;

    overflow: hidden;

    background: #2358A8;

    padding: 14px 0;
}

.marquee-track {
    display: flex;

    width: max-content;

    gap: 3rem;

    animation:
        marquee 25s linear infinite;
}

.marquee-track span {
    color: #FFFFFF;

    white-space: nowrap;

    font-size: 14px;

    font-weight: 600;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    width: 100%;

    padding: 100px 5%;

    background: #FFFFFF;
}

.about-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.section-tag {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #008C2B;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.circle {
    width: 11px;
    height: 11px;

    background: #008C2B;

    border-radius: 50%;
}

.about-left h2 {
    color: #17202A;

    font-size: 42px;

    line-height: 1.15;

    margin-bottom: 25px;
}

.about-left h2 span {
    color: #2358A8;
}

.about-left p {
    color: #667085;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 25px;
}

.about-left strong {
    color: #2358A8;
}

.about-left blockquote {
    border-left: 4px solid #008C2B;

    padding-left: 20px;

    color: #2358A8;

    font-size: 25px;

    line-height: 1.5;

    font-style: italic;
}


/* =========================================================
   FACTORY CARD
========================================================= */

.factory-card {
    background: #FFFFFF;

    border: 2px solid #2358A8;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(35,88,168,.12);
}

.card-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 22px 25px;

    background: #2358A8;
}

.card-header h3 {
    color: #FFFFFF;

    font-size: 14px;

    letter-spacing: 2px;
}

.status {
    color: #FFFFFF;

    display: flex;

    align-items: center;

    gap: 7px;
}

.dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #008C2B;
}

.factory-video {
    width: 100%;

    height: 320px;

    overflow: hidden;
}

.factory-video iframe {
    width: 100%;
    height: 100%;

    border: none;
}

.card-stats {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);
}

.stat {
    padding: 25px;

    text-align: center;

    border-right: 1px solid #2358A8;
}

.stat:last-child {
    border-right: none;
}

.stat h4 {
    color: #2358A8;

    font-size: 20px;

    margin-bottom: 8px;
}

.stat span {
    color: #667085;

    font-size: 11px;

    letter-spacing: 1px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    width: 100%;

    padding: 100px 5%;

    background: #F7FAF8;
}

.services-header {
    position: relative;

    margin-bottom: 55px;
}

.services-header h2 {
    color: #17202A;

    font-size: 44px;

    line-height: 1.15;

    margin: 20px 0;
}

.services-header h2 span {
    color: #2358A8;
}

.services-header p {
    max-width: 650px;

    color: #667085;

    font-size: 17px;

    line-height: 1.8;
}

.big-number {
    position: absolute;

    right: 0;
    top: -30px;

    font-size: 170px;

    color: rgba(35,88,168,.05);

    pointer-events: none;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    background: #FFFFFF;

    border: 1px solid #DDE7E1;

    border-radius: 15px;

    overflow: hidden;
}

.service-card {
    padding: 30px;

    min-height: 300px;

    border-right: 1px solid #DDE7E1;
    border-bottom: 1px solid #DDE7E1;

    transition: .3s ease;
}

.service-card:hover {
    background: #EAF2FF;
}

.service-card > span {
    color: #2358A8;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}

.service-card h3 {
    color: #2358A8;

    margin: 22px 0;

    font-size: 19px;
}

.service-card p {
    color: #667085;

    line-height: 1.8;

    font-size: 14px;
}

.service-card a {
    display: inline-block;

    margin-top: 25px;

    color: #2358A8;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-section {
    width: 100%;

    padding: 100px 5%;

    background: #FFFFFF;
}

.testimonial-header h2 {
    color: #17202A;

    font-size: 44px;

    margin: 20px 0;
}

.testimonial-header h2 span {
    color: #2358A8;
}

.testimonial-header p {
    max-width: 750px;

    color: #667085;

    font-size: 17px;

    line-height: 1.8;
}

.testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;

    margin-top: 50px;
}

.testimonial-card {
    padding: 30px;

    background: #FFFFFF;

    border: 1px solid #DDE7E1;

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(35,88,168,.07);
}

.stars {
    color: #008C2B;

    font-size: 20px;

    margin-bottom: 20px;
}

.review {
    color: #354052;

    line-height: 1.8;

    margin-bottom: 30px;
}

.client {
    display: flex;

    align-items: center;

    gap: 15px;
}

.avatar {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #EAF2FF;

    color: #2358A8;

    font-weight: bold;

    flex-shrink: 0;
}

.client h4 {
    color: #17202A;

    margin-bottom: 4px;
}

.client span {
    color: #667085;

    font-size: 13px;
}


/* =========================================================
   TESTIMONIAL POPUP
========================================================= */

.testimonial-popup {
    display: none;

    position: fixed;

    inset: 0;

    background: rgba(10,25,40,.60);

    backdrop-filter: blur(5px);

    z-index: 999999;

    align-items: center;
    justify-content: center;

    padding: 20px;
}

.testimonial-popup.show {
    display: flex;
}

.testimonial-popup-box {
    width: 100%;
    max-width: 480px;

    max-height: 90vh;

    overflow-y: auto;

    background: #FFFFFF;

    border: 2px solid #2358A8;

    border-radius: 20px;

    padding: 40px 35px;

    text-align: center;

    position: relative;

    box-shadow:
        0 25px 60px rgba(35,88,168,.25);

    animation:
        testimonialPopupIn .35s ease;
}

@keyframes testimonialPopupIn {

    from {
        opacity: 0;

        transform:
            translateY(30px)
            scale(.95);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}

.testimonial-popup-close {
    position: absolute;

    top: 12px;
    right: 15px;

    width: 38px;
    height: 38px;

    border: none;

    background: #F1F5F3;

    color: #2358A8;

    border-radius: 50%;

    font-size: 27px;
}

.testimonial-popup-icon {
    width: 85px;
    height: 85px;

    margin: 0 auto 22px;

    border-radius: 50%;

    background: #FFFFFF;

    border: 3px solid #008C2B;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.testimonial-popup-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.testimonial-popup-box h2 {
    color: #2358A8;

    font-size: 30px;

    margin-bottom: 16px;
}

.testimonial-popup-box p {
    color: #667085;

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 28px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    width: 100%;

    padding: 100px 5%;

    background: #F4F8FD;
}

.process-header {
    max-width: 850px;
}

.process-header h2 {
    color: #17202A;

    font-size: 44px;

    line-height: 1.2;

    margin: 25px 0;
}

.process-header h2 span {
    color: #2358A8;
}

.process-header p {
    color: #667085;

    font-size: 17px;

    line-height: 1.8;
}

.process-timeline {
    position: relative;

    margin-top: 80px;

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    gap: 25px;
}

.timeline-line {
    position: absolute;

    top: 55px;

    left: 55px;
    right: 55px;

    height: 3px;

    background: #2358A8;
}

.process-step {
    position: relative;

    z-index: 2;
}

.step-circle {
    width: 110px;
    height: 110px;

    border: 3px solid #008C2B;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #FFFFFF;

    color: #2358A8;

    font-size: 40px;

    margin-bottom: 25px;
}

.process-step h3 {
    color: #17202A;

    font-size: 19px;

    margin-bottom: 12px;
}

.process-step p {
    color: #667085;

    line-height: 1.7;

    font-size: 14px;
}


/* =========================================================
   CONSULTATION SECTION
========================================================= */

.consultation-section {
    width: 100%;

    padding: 100px 5%;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(35,88,168,.15),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(0,140,43,.15),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #F2F7FD,
            #F2FAF5
        );

    border-top: 1px solid #DDE7E1;
    border-bottom: 1px solid #DDE7E1;
}

.consultation-container {
    max-width: 1000px;

    margin: auto;

    text-align: center;
}

.center-tag {
    justify-content: center;
}

.consultation-container h2 {
    color: #17202A;

    font-size: 46px;

    line-height: 1.15;

    margin: 30px 0;
}

.consultation-container h2 span {
    color: #2358A8;
}

.consultation-container p {
    color: #354052;

    max-width: 800px;

    margin: auto;

    font-size: 17px;

    line-height: 1.9;
}

.consult-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-top: 45px;
}

.whatsapp-btn {
    padding: 20px 40px;

    background: #2358A8;

    color: #FFFFFF;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: .3s ease;
}

.whatsapp-btn:hover {
    background: #17457F;

    color: #FFFFFF;
}

.consult-note {
    margin-top: 30px;

    color: #667085;

    font-size: 11px;

    letter-spacing: 2px;
}


/* =========================================================
   BOOKING MODAL
========================================================= */

.booking-modal {
    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.75);

    z-index: 99999;

    justify-content: center;
    align-items: center;

    padding: 15px;

    overflow-y: auto;
}


/* BOOKING BOX */

.booking-box {
    width: 100%;

    max-width: 500px;

    max-height: 90vh;

    overflow-y: auto;

    background: #FFFFFF;

    border-radius: 18px;

    padding: 25px;

    position: relative;

    animation:
        popup .3s ease;
}

@keyframes popup {

    from {
        transform: scale(.8);

        opacity: 0;
    }

    to {
        transform: scale(1);

        opacity: 1;
    }
}


/* CLOSE BUTTON */

.close-btn {
    position: absolute;

    top: 12px;
    right: 15px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 32px;

    font-weight: bold;

    color: #333333;

    cursor: pointer;

    border-radius: 50%;

    transition: .3s ease;
}

.close-btn:hover {
    background: #F2F2F2;
}

.booking-box h2 {
    margin-bottom: 18px;

    padding-right: 45px;

    font-size: 26px;

    color: #17202A;
}


/* BOOKING FORM */

.booking-box form {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.booking-box input,
.booking-box select,
.booking-box textarea {
    width: 100%;

    padding: 14px;

    border: 1px solid #CCCCCC;

    border-radius: 10px;

    font-size: 16px;

    outline: none;

    background: #FFFFFF;

    color: #17202A;
}

.booking-box input:focus,
.booking-box select:focus,
.booking-box textarea:focus {
    border-color: #2358A8;

    box-shadow:
        0 0 0 3px rgba(35,88,168,.10);
}

.booking-box label {
    color: #17202A;

    font-size: 15px;
}


/* PAYMENT BUTTON */

.booking-box button {
    padding: 15px;

    border: none;

    background: #00B140;

    color: #FFFFFF;

    font-weight: bold;

    font-size: 17px;

    border-radius: 10px;

    cursor: pointer;

    transition: .3s ease;
}

.booking-box button:hover {
    background: #00D84F;
}


/* =========================================================
   TIME SLOTS
========================================================= */

.slots {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 10px;
}

.slot {
    padding: 12px;

    border: 2px solid #00B140;

    background: #FFFFFF;

    color: #17202A;

    cursor: pointer;

    border-radius: 10px;

    transition: .3s ease;

    font-weight: bold;
}

.slot:hover {
    background: #00B140;

    color: #FFFFFF;
}

.slot.active {
    background: #00B140;

    color: #FFFFFF;

    border-color: #00B140;
}

.slot.booked {
    background: #FF4D4D !important;

    color: #FFFFFF !important;

    border-color: #FF4D4D;

    cursor: not-allowed;

    opacity: .6;
}


/* =========================================================
   PAYMENT PRICE
========================================================= */

.payment-btn-wrap {
    width: 100%;

    text-align: center;
}

.payment-btn-wrap button {
    width: 100%;
}

.payment-price {
    margin-top: 10px;

    color: #667085;

    font-size: 15px;
}

.payment-price strong {
    color: #008C2B;

    font-size: 20px;
}


/* =========================================================
   SUCCESS POPUP
========================================================= */

.success-popup {
    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.75);

    z-index: 100000;

    justify-content: center;
    align-items: center;

    padding: 20px;
}

.success-box {
    width: 100%;

    max-width: 400px;

    background: #FFFFFF;

    border-radius: 20px;

    padding: 35px 25px;

    text-align: center;

    box-shadow:
        0 15px 50px rgba(0,0,0,.30);

    animation:
        successPopup .3s ease;
}

.success-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    background: #00B140;

    color: #FFFFFF;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 40px;

    font-weight: bold;
}

.success-box h2 {
    color: #111111;

    margin-bottom: 12px;

    font-size: 28px;
}

.success-box p {
    color: #666666;

    line-height: 1.6;

    margin-bottom: 25px;
}

.success-box button {
    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 10px;

    background: #00B140;

    color: #FFFFFF;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;
}

.success-box button:hover {
    background: #00D84F;
}

@keyframes successPopup {

    from {
        transform: scale(.8);

        opacity: 0;
    }

    to {
        transform: scale(1);

        opacity: 1;
    }
}


/* =========================================================
   TABLET - 1200px
========================================================= */

@media (max-width: 1200px) {

    .menu-items {
        gap: 20px;
    }

    nav a {
        font-size: 16px;
    }

    .top-section .hero-stats {
        width: 380px;

        max-width: 380px;

        margin-right: 25px;
    }

    .top-section .hero-stats .hero-card {
        width: 380px;

        max-width: 380px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .process-timeline {
        grid-template-columns:
            repeat(2,1fr);
    }

    .timeline-line {
        display: none;
    }
}


/* =========================================================
   TABLET - 992px
========================================================= */

@media (max-width: 992px) {

    .about-container {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .content h1 {
        font-size: 3.5rem;
    }

    .top-section .hero-stats {
        width: 340px;

        max-width: 340px;

        margin-right: 15px;
    }

    .top-section .hero-stats .hero-card {
        width: 340px;

        max-width: 340px;

        min-height: 95px;
    }

    .top-section .hero-stats .hero-card h2 {
        font-size: 38px;
    }

    .top-section .hero-stats .hero-card p {
        font-size: 14px;
    }
}


/* =========================================================
   MOBILE - 768px
========================================================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;

        max-width: 100%;

        overflow-x: hidden;
    }


    /* =========================
       NAVBAR
    ========================= */

    nav {
        padding: 10px 15px;

        min-height: 62px;
    }

    .site-logo img {
        width: 85px;
    }

    .menu-items {
        display: none;

        position: absolute;

        top: 62px;
        left: 0;

        width: 100%;

        background: #2358A8;

        flex-direction: column;

        padding: 22px;

        gap: 20px;

        text-align: center;
    }

    .menu-items.active {
        display: flex;
    }

    .menu-items a {
        font-size: 16px;
    }

    #consult-btn {
        margin-left: 0;

        padding: 8px 12px;

        font-size: 12px;
    }


    /* =========================
       HERO
    ========================= */

    .top-section {
        min-height: auto;
    }

    .top-section > section {
        min-height: 760px;

        width: 100%;

        overflow: hidden;
    }

    #hero-bg {
        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: center;
    }

    .top-section > section::after {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.35),
                rgba(0,0,0,.55)
            );
    }


    /* HERO GRID */

    .top-section .grid {
        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 20px;

        padding-top: 40px;

        padding-bottom: 35px;
    }


    /* HERO CONTENT */

    .content {
        width: 100%;

        max-width: 350px;

        padding-left: 0;
        padding-right: 0;

        text-align: center;

        margin: 0 auto;
    }

    .content h1 {
        font-size: 32px;

        line-height: 1.12;
    }

    .content h1 span {
        display: block;

        margin-top: 4px;
    }

    .content p {
        font-size: 14px;

        line-height: 1.5;

        max-width: 300px;

        margin:
            12px auto 0;
    }


    /* =========================
       ₹499 BUTTON
    ========================= */

    .content .offer-btn {
        width: 100%;

        max-width: 330px;

        min-height: 76px;

        margin:
            20px auto 0;

        padding: 11px 13px;

        border-radius: 15px;
    }

    .content .offer-btn-title {
        font-size: 17px;
    }

    .content .offer-old-price {
        font-size: 14px;
    }

    .content .offer-new-price {
        font-size: 22px;
    }

    .content .offer-arrow {
        width: 40px;
        height: 40px;

        min-width: 40px;

        font-size: 22px;
    }


    /* =====================================================
       MOBILE HERO STATS
       SMALL + CENTERED
    ===================================================== */

    .top-section .hero-stats {
        width: 330px;

        max-width: 330px;

        margin:
            0 auto;

        transform: none;

        gap: 9px;
    }

    .top-section .hero-stats .hero-card {
        width: 330px;

        max-width: 330px;

        min-height: 72px;

        padding: 10px 12px;

        border-radius: 13px;
    }

    .top-section .hero-stats .hero-card h2 {
        font-size: 29px;

        line-height: 1;
    }

    .top-section .hero-stats .hero-card p {
        font-size: 12px;

        margin-top: 5px;

        line-height: 1.2;
    }


    /* =========================
       WHATSAPP
    ========================= */

    .whatsapp {
        width: 54px;
        height: 54px;

        right: 14px;
        bottom: 14px;
    }


    /* =========================
       ABOUT
    ========================= */

    .about-section {
        padding: 70px 20px;
    }

    .about-left h2 {
        font-size: 31px;
    }

    .about-left p {
        font-size: 15px;
    }

    .about-left blockquote {
        font-size: 21px;

        padding-left: 18px;
    }


    /* =========================
       FACTORY
    ========================= */

    .card-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

        padding: 20px;
    }

    .factory-video {
        height: 220px;
    }

    .card-stats {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;

        border-bottom:
            1px solid #2358A8;
    }

    .stat:last-child {
        border-bottom: none;
    }


    /* =========================
       SERVICES
    ========================= */

    .services-section {
        padding: 70px 20px;
    }

    .services-header h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;

        border-right: none;

        padding: 28px;
    }

    .big-number {
        display: none;
    }


    /* =========================
       TESTIMONIAL
    ========================= */

    .testimonial-section {
        padding: 70px 20px;
    }

    .testimonial-header h2 {
        font-size: 32px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .testimonial-card {
        padding: 25px;
    }


    /* =========================
       PROCESS
    ========================= */

    .process-section {
        padding: 70px 20px;
    }

    .process-header h2 {
        font-size: 32px;
    }

    .process-timeline {
        grid-template-columns: 1fr;

        gap: 40px;

        margin-top: 55px;
    }

    .process-step {
        display: flex;

        flex-direction: column;

        align-items: center;

        text-align: center;
    }

    .step-circle {
        width: 85px;
        height: 85px;

        font-size: 30px;
    }


    /* =========================
       CONSULTATION
    ========================= */

    .consultation-section {
        padding: 70px 20px;
    }

    .consultation-container h2 {
        font-size: 32px;
    }

    .consultation-container p {
        font-size: 15px;
    }

    .consult-buttons {
        flex-direction: column;

        margin-top: 35px;
    }

    .consult-buttons .offer-btn {
        max-width: 330px;
    }

    .whatsapp-btn {
        width: 100%;

        max-width: 330px;

        padding: 17px 20px;
    }


    /* =========================
       BOOKING MODAL
    ========================= */

    .booking-modal {
        padding: 12px;
    }

    .booking-box {
        max-width: 100%;

        max-height: 92vh;

        padding: 20px;

        border-radius: 15px;
    }

    .booking-box h2 {
        font-size: 23px;

        margin-bottom: 16px;
    }

    .booking-box input,
    .booking-box select,
    .booking-box textarea {
        padding: 12px;

        font-size: 15px;
    }

    .booking-box button {
        padding: 13px;

        font-size: 16px;
    }

    .close-btn {
        top: 9px;
        right: 9px;

        width: 38px;
        height: 38px;

        font-size: 28px;
    }


    /* =========================
       SLOTS
    ========================= */

    .slots {
        grid-template-columns:
            repeat(3,1fr);

        gap: 8px;
    }

    .slot {
        padding: 11px 6px;

        font-size: 13px;
    }


    /* =========================
       SUCCESS POPUP
    ========================= */

    .success-popup {
        padding: 15px;
    }

    .success-box {
        max-width: 350px;

        padding: 30px 20px;
    }

    .success-box h2 {
        font-size: 25px;
    }
}


/* =========================================================
   SMALL MOBILE - 480px
========================================================= */

@media (max-width: 480px) {

    /* NAV */

    nav {
        padding: 9px 12px;
    }

    .site-logo img {
        width: 78px;
    }

    #consult-btn {
        font-size: 11px;

        padding: 7px 9px;
    }


    /* HERO */

    .top-section > section {
        min-height: 700px;
    }

    .top-section .grid {
        padding-top: 35px;

        gap: 17px;
    }

    .content {
        max-width: 320px;
    }

    .content h1 {
        font-size: 29px;
    }

    .content p {
        font-size: 13px;

        max-width: 280px;
    }


    /* BOOK BUTTON */

    .content .offer-btn {
        max-width: 300px;

        min-height: 72px;

        padding: 10px 12px;
    }

    .content .offer-btn-title {
        font-size: 16px;
    }

    .content .offer-old-price {
        font-size: 13px;
    }

    .content .offer-new-price {
        font-size: 21px;
    }

    .content .offer-arrow {
        width: 38px;
        height: 38px;

        min-width: 38px;

        font-size: 20px;
    }


    /* =====================================================
       SMALL HERO STATS
    ===================================================== */

    .top-section .hero-stats {
        width: 300px;

        max-width: 300px;

        gap: 7px;
    }

    .top-section .hero-stats .hero-card {
        width: 300px;

        max-width: 300px;

        min-height: 65px;

        padding: 8px 10px;

        border-radius: 11px;
    }

    .top-section .hero-stats .hero-card h2 {
        font-size: 26px;
    }

    .top-section .hero-stats .hero-card p {
        font-size: 11px;

        margin-top: 4px;
    }


    /* WHATSAPP */

    .whatsapp {
        width: 50px;
        height: 50px;

        right: 12px;
        bottom: 12px;
    }


    /* ABOUT */

    .about-section {
        padding: 60px 15px;
    }

    .about-left h2 {
        font-size: 28px;
    }


    /* SERVICES */

    .services-section {
        padding: 60px 15px;
    }

    .services-header h2 {
        font-size: 29px;
    }


    /* TESTIMONIAL */

    .testimonial-section {
        padding: 60px 15px;
    }

    .testimonial-header h2 {
        font-size: 29px;
    }


    /* PROCESS */

    .process-section {
        padding: 60px 15px;
    }

    .process-header h2 {
        font-size: 29px;
    }


    /* CONSULTATION */

    .consultation-section {
        padding: 60px 15px;
    }

    .consultation-container h2 {
        font-size: 29px;
    }


    /* BOOKING */

    .booking-box {
        padding: 18px;

        border-radius: 14px;
    }

    .booking-box h2 {
        font-size: 21px;
    }

    .booking-box input,
    .booking-box select,
    .booking-box textarea {
        padding: 11px;

        font-size: 14px;
    }

    .slots {
        gap: 7px;
    }

    .slot {
        padding: 10px 4px;

        font-size: 12px;
    }

    .success-box {
        max-width: 330px;

        padding: 28px 18px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE - 360px
========================================================= */

@media (max-width: 360px) {

    .content {
        max-width: 290px;
    }

    .content h1 {
        font-size: 27px;
    }

    .content p {
        font-size: 12px;

        max-width: 260px;
    }

    .content .offer-btn {
        max-width: 280px;
    }


    /* STATS */

    .top-section .hero-stats {
        width: 275px;

        max-width: 275px;
    }

    .top-section .hero-stats .hero-card {
        width: 275px;

        max-width: 275px;

        min-height: 61px;
    }

    .top-section .hero-stats .hero-card h2 {
        font-size: 24px;
    }

    .top-section .hero-stats .hero-card p {
        font-size: 10px;
    }


    /* SLOTS */

    .slots {
        grid-template-columns:
            repeat(2,1fr);
    }
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #F1F5F3;
}

::-webkit-scrollbar-thumb {
    background: #2358A8;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #008C2B;
}


/* =========================================================
   SELECTION
========================================================= */

::selection {
    background: #2358A8;

    color: #FFFFFF;
}