@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    line-height: normal;
    font-family: "Montserrat", sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background: var(--bg1);
}


:root {
    --whitecolor: #FFFFFF;
    --blackcolor: #000000;
    --greycolor: #6c757d;
    --lightbg: #e2effb;
    --darkbluecolor: #2459c3;
    --orangecolor: #fc5c12;

    --bg1: linear-gradient(to top, #f5f9ff, #fdfdff);
    --bg1-border: #d5e5fd;

    --bg2: linear-gradient(to top, #fff8e6, #fdfdff);
    --bg2-border: #fae9be;

    --bg3: linear-gradient(to top, #ffe6f5, #fdfdff);
    --bg3-border: #ffcceb;

    --bg4: linear-gradient(to top, #e2f9f0, #fdfdff);
    --bg4-border: #b0fadd;

    --bg5: linear-gradient(to top, #e4e2f9, #fdfdff);
    --bg5-border: #c0b0fa;

    --bg6: linear-gradient(to top, #f6e2f9, #fdfdff);
    --bg6-border: #c2acc6;

    --bg7: linear-gradient(to top, #f9e2e2, #fdfdff);
    --bg7-border: #c65e5e;

    --bg8: linear-gradient(to top, #f7e2f9, #fdfdff);
    --bg8-border: #7a527d;
}

/* container  */

.fullwidth {
    width: 100%;
    height: auto;
    padding: 0rem 0;
    padding-bottom: 5rem;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* heading-block  */

.heading-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

h3.heading {
    width: 100%;
    font-size: 4rem;
    color: var(--darkbluecolor);
    font-weight: bold;
}

p.subheading {
    font-size: 2.5rem;
}

p {
    font-size: 1.8rem;
    font-weight: 500;
}

h4 {
    font-size: 2.5rem;
    color: var(--blackcolor);
}

/* heading-block  */

/* cta */

.cta a {
    padding: 1rem 1.5rem;
    background: var(--darkbluecolor);
    color: var(--whitecolor);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 2rem;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta a:hover {
    outline: 2px solid var(--whitecolor);
    outline-offset: 2px;
}

/* header  */

header {
    width: 100%;
    height: auto;
    background: var(--whitecolor);
}

nav {
    width: 100%;
    height: auto;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav img {
    height: auto;
    width: 250px;
}

nav a {
    color: var(--orangecolor);
    font-size: 1.8rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    font-weight:bold;
}

/* --------------------------------------------- */

.flex {
    display: flex;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.flex-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-sm {
    gap: 1rem;
}

.gap-md {
    gap: 2rem;
}

.gap-lg {
    gap: 4rem;
}

i.flex-shrink {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-content: center;
}


/* hero section */

.herosection {
    position: relative;
    background: var(--lightbg);
    padding: 5rem 0;
}


.hero-inner {
    flex: 1;
    flex-basis: calc(50% - 1rem);
    padding: 1rem;
}


.herotext {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bannertext {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bannertext h1 {
    font-size: 7rem;
    color: #d63434;
}

.bannertext h3 {
    font-size: 2.5rem;
    font-weight: 500;
}

.bannertext h3 span {
    font-size: 3.5rem;
    font-weight: 800;
}

.herotext ul li {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
}

.herotext ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--whitecolor);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--orangecolor);
    width: 3rem;
    height: 3rem;
    display: grid;
    place-content: center;

}

.form-div {
    flex-basis: 250px;

}

.form-div-box {
    padding: 20px;
    border-radius: 5px;
    background: var(--darkbluecolor);
    transition: transform 0.4s ease;
}

.fixedform {
    position: fixed;
    top: 20%;
    right: 5%;
    width: 300px;
    z-index: 9999999;
    transform: translateY(-10px);
}

.form-div-box h3 {
    margin: 0 0 10px 0;
    font-weight: 600;
    color: var(--whitecolor);
    font-size: 1.4rem;
}

.form-div-box label {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 600;
    display: block;
}

.form-div-box input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-div-box input:focus {
    border-color: #3399cc;
    box-shadow: 0 0 0 3px rgba(51, 153, 204, 0.1);
}

.form-div-box button {
    width: 100%;
    padding: 14px;
    background: var(--orangecolor);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-div-box button:hover {
    filter: brightness(0.9);
}

.form-div-box button:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-6px);
    }

    80% {
        transform: translateX(6px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.4s ease-in-out;
}


/* ----------------------------------------------------- */

.overviewsectioncontainer,
.numbersection,
.faqsection {
    padding-top: 5rem;
}

.overview-inner {
    flex: 1;
    flex-basis: calc(50% - 4rem);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.overview-inner i {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: grid;
    place-content: center;
    border-radius: 5px;
    flex-shrink: 0;
}

.overview-inner h4 {
    font-size: 2.5rem;
    color: var(--darkbluecolor);
    font-weight: 500;
}

.overview-inner h4 small {
    font-size: 1.8rem;
    color: var(--greycolor);
    display: block;
}

/* -------------------------------------------------------  */

.relativeclass {
    position: relative;
    z-index: 1;
}

.relativeclass span {
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translate(-50%);
    content: ' ';
    color: color-mix(in srgb, #a4b0bc64, #a4b0bc67 95%);
    font-size: 8rem;
    z-index: -1;
    text-transform: uppercase;
    font-weight: 600;
}

.resultcontainer {
    width: 60%;
    margin: auto;
}

.resultnumberbox {
    flex: 0;
    flex-basis: calc(50% - 2rem);
    padding: 1.5rem;
    border: 1px solid var(--bg1-border);
    background: var(--bg1);
    border-radius: 10px;
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 5px 0px rgba(210, 210, 210, 0.4);
    transition: all 0.3s ease;
}

.resultnumberbox:hover {
    transform: translateY(-10px);
}

.resultnumberbox i {
    font-size: 3rem;
    padding: 5px;
}

.resultnumbertext p {
    font-size: 5rem;
}


/* -------------------------------------------------------  */


.flex-box-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 30px; */
}

/* Hide scrollbar (optional – clean UI) */
.flex-box-container::-webkit-scrollbar {
    height: 6px;
}

.flex-box-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.service-box {
    flex: 0 0 0;
    flex-basis: calc(33.3% - 20px);
    padding: 10px;
    border-radius: 2rem;
    display: flex;
    justify-items: center;
    flex-direction: column;
    gap: 10px;
    border: 1px solid;
}

.service-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}


/* Card Background Classes */
.bg1 {
    background: var(--bg1);
    border-color: var(--bg1-border);
}

.bg2 {
    background: var(--bg2);
    border-color: var(--bg2-border);
}

.bg3 {
    background: var(--bg3);
    border-color: var(--bg3-border);
}

.bg4 {
    background: var(--bg4);
    border-color: var(--bg4-border);
}

.bg5 {
    background: var(--bg5);
    border-color: var(--bg5-border);
}

.bg6 {
    background: var(--bg6);
    border-color: var(--bg6-border);
}

.bg7 {
    background: var(--bg7);
    border-color: var(--bg7-border);
}

.bg8 {
    background: var(--bg8);
    border-color: var(--bg8-border);
}

.pil1 {
    color: #9aa6c8;
    background: var(--bg1);
}

.pil2 {
    color: #dbbd75;
    background: var(--bg2);
}

.pil3 {
    background: var(--bg3);
    color: #e89fcc;
}

.pil4 {
    color: #9dd7c2;
    background: var(--bg4);
}

.pil5 {
    color: #9895d3;
    background: var(--bg5);
}

.pil6 {
    color: #b584be;
    background: var(--bg6);
}

.pil7 {
    color: #e2898e;
    background: var(--bg7);
}

.service-title h5 {
    font-size: 2.5rem;
}

.service-title h5 span {
    display: block;
    font-size: 1.5rem;
}

.service-info p {
    font-size: 1.6rem;
    font-weight: 500;
}

.servicecta {
    text-align: center;
    margin-top: 20px;
}

.servicecta a {
    margin: 1rem auto 0 auto;
}

/* yt video section  */


.yt-gallery-flex {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}


.yt-thumb {
    flex: 1;
    flex-basis: calc(33.3% - 2rem);
    position: relative;
    max-width: 100%;
    cursor: pointer;
}

.yt-thumb img {
    width: 100%;
    border-radius: 16px;
}

.yt-thumb:hover .play-btn {
    background: red;
    color: white;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    color: #fff;
    display: inline-block;
    padding: 5px 25px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* popup */
.yt-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.yt-popup.active {
    display: flex;
}

.yt-popup-inner {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 16px;
    z-index: 11;
}

.yt-popup-inner iframe {
    width: 100%;
    height: 450px;
    border-radius: 16px;
}

.yt-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}


/* review  */

.review-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.review-box {
    flex: 1 0 calc(33.3% - 20px);
    background: var(--bg1, #fff);
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-name {
    font-size: 1.6rem;
    margin: 0;
}

.review-location {
    font-size: 1.2rem;
    opacity: 0.7;
}

.review-condition {
    font-size: 1.3rem;
    margin: 8px 0;
    font-weight: 600;
}

.review-stars {
    color: #f4b400;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.review-text {
    font-size: 1.4rem;
    line-height: 1.5;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 1.2rem;
    opacity: 0.8;
}

.verified {
    color: green;
    font-weight: 600;
}

.unverified {
    color: red;
}


/* belowform */

.belowform {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.belowformsection .heading-block h5.heading {
    font-size: 3rem;
    color: var(--whitecolor);
}

.belowform input,
.belowform button {
    flex: 1 0 calc(33.3% - 10px);
    margin-bottom: 0;
}

/* faq */


.faqsection {
    background: var(--darkbluecolor);
}

.faqsection h3.heading {
    color: var(--whitecolor);
}

.faq-flex {
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.faq-flex-inner {
    flex: 1;
    flex-basis: calc(50% - 20px);
}

.faq-container {
    width: 100%;
    height: 100%;
}

.innerfaq-container {
    width: 100%;
    height: auto;
    padding: 10px;
    background: rgb(255 255 255 / .07) !important;
    margin-bottom: 1rem;
    transition: all 0.5s ease;
    border-radius: 10px;
    color: var(--whitecolor);
}

.active2 .accordion__question {
    border-bottom: 3px solid;
    border-image: linear-gradient(120deg, #6a5cff, #00eaff, #b16cff, #ff6ec7, #6a5cff) 1;
}

.accordion__question {
    width: 100%;
    height: auto;
    padding: 10px;
    transition: all 0.5s ease;
}

.accordion__question h3 {
    font-size: 1.8rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.active2 .accordion__question h3 {
    color: var(--whitecolor);
}

.accordion__answer {
    width: 100%;
    height: auto;
    margin-top: 0px;
}


.accordion:hover {
    cursor: pointer;
}

.accordion__answer {
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s ease;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
}

.answer-inner {
    padding: 1rem;

}

.innerfaq-container.active2 .accordion__answer {
    display: block;
    max-height: 200px;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
}

/* keywordlist */

.keywordlist {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 1rem;
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.keyword-item {
    flex: 1 0 1;
}

.keywordlist span {
    padding: 5px 10px;
    border-radius: 5px;
    display: grid;
    place-content: center;
}


/* footer  */

.copy-right {
    width: 100%;
    height: 50px;
    font-size: 1.3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    color: var(--whitecolor);
}


.footer-mobile {
    display: none;
}


.scroll {
    position: fixed;
    bottom: 180px;
    right: 5%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: lightgreen;
    color: var(--sec-color-light);
    display: none;
    overflow: hidden;
    cursor: pointer;
    z-index: 999999999;
}

.scroll div i {
    font-size: 1.4rem;
    animation: move 0.5s linear infinite;
}

.scroll div {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}


@keyframes move {

    0% {
        transform: translateY(-10px);
    }

    10% {
        transform: translateY(0px);
    }

}

/* -------------------------------------------------------------- */


.fa-whatsapp {
    color: #4dc247;
}


/* footer-cta  */

.footer-cta {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    background: var(--greengradient);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    transition: opacity 0.5s ease, transform 0.5s ease;
}


/*location*/

.thankyoubody {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--darkbluecolor);
}


.thank-you-content {
    max-width: 650px;
    width: 90%;
    margin: auto;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    background: var(--whitecolor);
}

.thank-you-content .cta {
    margin: auto;
}

.thankyou-headingblock p.subheading {
    background: #eeeeee;
    padding: 20px 5px;
    font-size: 1.8rem
}

.thankyou-cta {
    display: flex;
    z-index: 998;
    width: 100%;
    height: 48px;
    padding: 0 10px;
    align-items: center;
    background-color: var(--lightbg);
}

.thankyou-cta a {
    flex: 1;
    color: #000;
    text-decoration: none;
    font-size: 10px;
    text-transform: uppercase;
    margin: 1px 0 0 0;
    text-align: center;
    float: left;
    font-weight: 500;
    border-right: 1px solid #ccc;
}

.thankyou-cta a i {
    margin-right: 5px;
}