@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url(layout.min.css);
html {
    font-size: 16px;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
}

:root {
    --white: #ffffff;
    --black: #000;
    --theme-color: #D85500;
    --primary: #f37138;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.67;
    margin-bottom: 2rem;
    color: #282828;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

h1 div {
    display: inline-block;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
    position: relative;
}


/* Home Page CSS Start  */

.main-Banner {
    background: #FBFBFB url(../images/banner/1.webp) right center / contain no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    min-height: 57rem;
}

.bannertext h1 {
    font-size: 3.438rem;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--theme-color);
}

.bannertext h1 span {
    position: relative;
}

.bannertext h1 span::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/mix/1.webp) bottom center / contain no-repeat;
    bottom: -1.5rem;
}

.bannertext h2 {
    font-size: 3.25rem;
    font-weight: 600;
    color: var(--black);
}

.trustBox {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.trustBox li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bannerLine h3 {
    font-size: 2.188rem;
    font-weight: 700;
    color: var(--theme-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    padding: 1rem;
    justify-content: center;
}

.bannerLineWhite {
    background: var(--white);
    box-shadow: 0 0 20px #0000002e;
    padding: 10px;
    border-radius: 10px;
}

.bannerLine {
    margin-top: -3rem;
}

h4 {
    font-size: 3.275rem;
    font-weight: 700;
    line-height: 1.2;
}

h4 span {
    position: relative;
    color: var(--theme-color);
    display: inline-block;
}

h4 span::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/mix/1.webp) bottom center / contain no-repeat;
    bottom: -1.5rem;
    display:none;
}

.bgGradient {
    background: linear-gradient(0deg, #fcf3ed, transparent);
}

.abtImg img {
    clip-path: polygon(0 0, 81% 0, 95% 72%, 21% 100%);
    position: relative;
    z-index: 1;
}

.abtSec h4 span::before {
    bottom: -0.5rem;
}

.abtImg {
    position: relative;
    margin-right: 4rem;
}

.abtImg::before,
.abtImg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    clip-path: polygon(0 0, 75% 0, 94% 72%, 17% 100%);
    width: 25rem;
    height: 20rem;
    left: -2rem;
    top: -1rem;
    animation: zoomIn 2s ease infinite;
}

@keyframes zoomIn {
    0% {
        left: -2rem;
        top: -1rem;
    }
    50% {
        left: -1rem;
        top: -1.5rem;
    }
    100% {
        left: -2rem;
        top: -1rem;
    }
}

.abtImg::after {
    z-index: 0;
    right: 4.5rem;
    left: auto;
    clip-path: polygon(0 0, 83% 0, 97% 70%, 29% 98%);
    width: 18rem;
    height: 18rem;
    top: auto;
    bottom: 5rem;
    animation: zoomIn2 2.5s ease infinite;
}

@keyframes zoomIn2 {
    0% {
        right: 1rem;
        bottom: 5rem;
    }
    50% {
        right: 0rem;
        bottom: 5.5rem;
    }
    100% {
        right: 1rem;
        bottom: 5rem;
    }
}

.abtSec {
    padding: 7rem 0;
}

.ctaSec {
    background: #FBFBFB;
}

.ctaSec .ctaBoxWhite {
    box-shadow: 0 0 20px #0000001f;
    padding: 2rem;
    align-items: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.ctaSec .ctaBoxWhite h3 {
    font-size: 2.813rem;
    font-weight: 700;
    color: var(--black);
}

.ctaSec .ctaBoxWhite h3 span {
    color: var(--theme-color);
}

.ctaSec .ctaBoxWhite h6 {
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--theme-color);
    margin: 1rem 0;
}

.ctaSec .ctaBoxWhite::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #f7ddcc;
    border-radius: 100%;
    width: 20rem;
    height: 20rem;
    left: auto;
    right: -8rem;
    top: -8rem;
    animation: zoomInCta 2s ease infinite;
}

@keyframes zoomInCta {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.why-chooseBox {
    background: #fbfbfb;
    border: 1px solid #e3e3e3;
    height: 100%;
    padding: 2rem 2rem 0;
    border-radius: 10px;
    transition: all 0.5s ease;
}

.why-chooseBox h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 1rem 0;
}

.why-chooseBox:hover {
    background: #f3ccb2;
    border-color: var(--theme-color);
}

.why-chooseBox .iconImg {
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 1px solid var(--theme-color);
}

.packageBox {
    border: 1px solid #D9D9D9;
    padding: 1rem;
    border-radius: 10px;
    margin: 0;
    transition: all 0.5s ease;
    background: #FBFBFB;
}

.packageHead {
    text-align: left;
}

.packageHead .iconBox {
    border: 1px solid var(--theme-color);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    font-weight: 600;
    margin: -5rem auto 1rem;
    transition: all 0.5s ease;
}

.packageHead .tagHead {
    display: inline-block;
    font-size: 1.4rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 1rem;
}

.packageHead h2 {
    font-size: 2.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.packageHead h2 sub {
    font-size: 14px;
    font-weight: 500;
    bottom: 0;
}

.packageHead p {
    color: #504f4f;
    margin-bottom: 1rem;
}

.packageBody {
    border-top: 2px solid var(--theme-color);
    text-align: center;
}

.packageBody ul {
    padding: 2rem 0;
    height: 350px;
}

.packageBody ul li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 5px 0;
    color: #504f4f;
    font-weight: 500;
    text-align: left;
}

.mCSB_inside>.mCSB_container {
    margin-left: 0;
}

.packageBox .themeBtn {}

.packageBox:hover {
    background: #f3ccb2;
    transform: scale(1.05);
    border-color: var(--theme-color);
}

.packageBox:hover .packageHead .iconBox {
    background: var(--theme-color);
}

.packageBox:hover .packageHead .iconBox img {
    filter: invert(1) brightness(10.5);
}

.packageBox.packageHead .iconBox img {
    transition: all 0.5s ease;
}

.packageBox:hover .themeBtn {
    background: var(--theme-color);
    color: #fff;
}

.packageBody ul li i {
    color: var(--theme-color);
    font-weight: 600;
}

.packageWhiteBox {
    background: #fff;
    border-radius: 10px;
    padding: 3rem 2rem;
}


/* accordion css */

.accordian {
    margin-top: 2rem;
    margin-left: 0;
}

.accordian li {
    margin-bottom: 25px;
    border-radius: 6px;
    box-shadow: 0 0 10px #00000024;
    border: 1px solid #D9D9D9;
    background: #fff;
    overflow: hidden;
}

.accordian li h4 {
    color: var(--black);
    font-size: 1.125rem;
    padding: 1.4rem;
    position: relative;
    cursor: pointer;
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
    padding-left: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordian h4::after,
.accordian h4::after {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: 20px;
    line-height: normal;
    transition: all 0.3s ease-in-out;
    transform: translateY(-50%);
}

.accordian p {
    margin: 0;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 1rem;
}

.accordian li>div {
    display: none;
    background: #fff;
    padding: 0 1.5rem;
}

.accordian li.active h4::after {
    content: "\f068";
}

.accordian li.active {
    background: #f3ccb2;
    border: 1px solid var(--theme-color);
}

.accordian li.active h4 {
    background: #f3ccb2;
    padding: 1.4rem;
}

.accordian li.active>div {
    background: #f3ccb2;
}

.accordian li.active>div p {}

.accordianInner li {
    margin-bottom: 3rem;
}

.accordian li h4 .faqIcon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 100px;
    border: 1px solid #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faqSec .accordian li h4 {
    padding: 10px 3rem 10px 1rem;
}

.faqSec .accordian li>div {
    padding: 0rem 2rem 1rem 6rem;
}

.accordian li h4 .faqIcon::before {
    display: none;
}

.accordian li.active .faqIcon {
    border-color: var(--theme-color);
}

.accordian li h4 .faqIcon img {
    filter: brightness(0);
}

.accordian li.active .faqIcon img {
    filter: unset;
}


/* accordian End */

.saveSec .iconImg {
    width: 64px;
    height: 64px;
    border-radius: 10px;
}

.reviewsSec {
    overflow: hidden;
    padding: 6rem 0;
}

.reviewsSec .container-fluid {
    padding: 0;
}

.reviewsSec h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.reviewHeader h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.reviewsSec p {
    margin: 0;
    text-align: center;
}

.reviewSlider {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reviewSwiper {
    width: 100%;
    overflow: hidden;
}

.reviewSwiper .swiper-wrapper {
    display: flex;
}

.reviewSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.reviewSwiper .reviewCard {
    background: #fff;
    border-radius: 10px;
    padding: 23px 18px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e3e3e3;
    transition: all 0.5s ease;
}

.reviewHeader {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.reviewHeader img {
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #cdcdcd;
    width: 50px;
    height: 50px;
}

.reviewSwiper .reviewCard:hover {
    background: #f3ccb2;
    border-color: var(--theme-color);
}

.ctaBottomBox {
    text-align: center;
    box-shadow: 0 0 20px #0000001a;
    border-radius: 10px;
    padding: 2rem;
    background: #fff;
}

.ctaBottomBox h4 {
    margin-bottom: 2rem;
}

.ctaBottomBox img {
    margin-top: -5rem;
}

.ctaBottom {
    background: #2B2B2B url(../images/bg/2.webp) center center / cover no-repeat;
    padding-top: 7rem;
}

.contactForm h4 span::before {
    bottom: 0;
}

.contactForm input {
    height: 3.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.contactForm .themeBtn {
    margin-top: 8px;
}

.contactForm {
    background: #fbfbfb;
    padding: 2rem;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    margin-bottom: -6rem;
}

.contactForm h4 {
    font-size: 3rem;
}

ul.contactInfoList {}

ul.contactInfoList li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #000;
    margin: 2rem 0;
}

ul.contactInfoList li a i {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #fff;
    border: 1px solid #d5d5d5;
    font-size: 1.5rem;
}

ul.contactInfoList li h3 span {
    display: block;
    font-size: 1.135rem;
    font-weight: 700;
    margin-bottom: 10px;
}

ul.contactInfoList li h3 {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    width: 80%;
}

.contactSec {
    padding-bottom: 0;
}


/* Home Page CSS End */


/* Inner Pages CSS Start */

.innerBanner {
    height: 80vh;
        min-height: 50rem;
}

.abtInnerImg img {
    clip-path: polygon(13% 11%, 100% 0, 88% 100%, 0 85%);
}

.abtInnerImg figure {
    position: relative;
}

.abtInnerImg {
    position: relative;
}

.abtInnerImg figure:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    height: 13rem;
    width: 13rem;
    clip-path: polygon(16% 0%, 100% 0, 88% 100%, 0 80%);
    top: auto;
    bottom: 2.35rem;
    left: -2rem;
}

.abtInnerImg img {
    clip-path: polygon(13% 11%, 100% 0, 88% 100%, 0 85%);
}

.abtInnerImg figure {
    position: relative;
}

.abtInnerImg {
    position: relative;
}

.abtInnerImg figure:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    height: 13rem;
    width: 13rem;
    clip-path: polygon(16% 0%, 100% 0, 88% 100%, 0 82%);
    top: auto;
    bottom: 2.5rem;
    left: -1.5rem;
}

.abtInnerImg::before,
.abtInnerImg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    width: 3rem;
    left: auto;
    transform: rotate(6deg);
    clip-path: polygon(0 2%, 100% 0%, 100% 100%, 0% 98%);
    height: 95%;
    top: 50%;
    transform: translateY(-50%) rotate(6deg);
    right: 0rem;
}

.abtInnerImg::after {
    background: var(--black);
    height: 85%;
    right: -4.5rem;
}

.contactInfoInner {
    display: flex;
    justify-content: center;
    gap: 10rem;
    margin-top: 2rem;
}

ul.contactInfoInner li a {
    flex-direction: column;
}

ul.contactInfoInner li a i {
    width: 160px;
    height: 160px;
    font-size: 2.5rem;
    background: var(--theme-color);
    color: var(--white);
    border: 10px solid #ebaa80;
}

.contactInner .contactForm label {
    text-align: left;
    display: block;
}

.contactInner .contactForm {
    margin: 3rem 0 0;
}

.contactPage footer {
    padding-top: 4rem;
}

.bannerImgService {
    position: relative;
}

.bannerImgService img {
    clip-path: polygon(13% 5%, 100% 0, 90% 100%, 0 81%);
    width: 100%;
}

.bannerImgService figure:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    height: 13rem;
    width: 13rem;
    clip-path: polygon(16% 0%, 100% 0, 88% 100%, 0 82%);
    top: auto;
    bottom: 3.5rem;
    left: -0.2rem;
}

.abtInnerImg {
    margin-right: 6rem;
}

.lpBanner {
    height: 100vh;
    padding-top: 6rem;
    min-height: 50rem;
}

.lpWhyChoose .why-chooseBox {
    padding: 0 2rem 0;
}

.lpWhyChoose .iconImg {
    margin-top: -5rem;
}

.lpNewSec figure img {
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
}

.lpNewSec {
    background: url(../images/bg/3.webp) center center / cover no-repeat;
    padding: 0;
}

.lpNewSec .inner {
    padding: 0 0 0 9rem;
}

.lpNewSec .inner h4,
.lpNewSec .inner p {
    color: #ffffff;
}

.lpNewSec figure::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    width: 3rem;
    left: auto;
    transform: rotate(12deg) !important;
    clip-path: polygon(0 2%, 100% 0%, 100% 100%, 0% 98%);
    height: 95%;
    top: 2%;
    transform: translateY(-50%) rotate(6deg);
    left: 5rem;
}

.lpFooter .footer-social {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}

.lpBanner .contactForm {
    margin-left: 3rem;
    margin-bottom: 0;
}

.lpBanner .contactForm h4 {
    font-size: 2rem;
}

.lpFooter {
    position: relative;
    border-top: 20px solid #d85500;
    margin-top: -6rem;
    padding: 4rem 0 0;
}

.lpFooter .footer-bottom {
    padding: 20px 60px;
}

.lpFooter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fcf4ee;
    z-index: -1;
}

.lpFaq {
    padding-bottom: 12rem;
}

.lpWhyChoose .iconImg {
    padding: 10px;
}

.closeico i {
    color: var(--theme-color);
}

/* Inner Pages CSS End */

.logo img {
    width: 12rem;
}