:root {
    --white-color: #ffffff;
    --bg-color: #f8fafc;
    --black-color: #1b1b1b;
    --black-color-dark: #000000;
    --purple-color: #7f00ff;
    --green-color: #15d562;
    --red-color: #E63946;
    --yellow-color: #FBE134;
    --primary-font: "Aspekta", sans-serif;
    --secondary-font: "Roboto", sans-serif;
    --tertiary-font: "Poppins", sans-serif;
    --other-font: "Work Sans", sans-serif;
    --karla-font: "Karla", sans-serif;
    --shadow: 0 0 50px #00000010;
    --shadow-hover: 0 0 50px #16db6550;
    --stroke: 1px solid #00000020;
    --slider-gap: 50px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: var(--bg-color);
    font-family: var(--primary-font);
    color: var(--black-color);
    text-transform: capitalize;
    font-size: 24px;
}

section {
    opacity: 1;
    margin-top: 120px;
}

/* .fade-in {
    opacity: 0.2;
    filter: blur(1px);
    transform: translateY(50px);
    transition: opacity 0.3s ease-out, transform 0.3s 0.1s ease-out, filter 0.3s ease-out;
}

.show-in {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
} */

/* 
::-webkit-scrollbar {
    display: none;
} */


::selection {
    background: #16db6520;
    color: var(--green-color);
}

::-moz-selection {
    background: #16db6520;
    color: var(--green-color);
}

ul {
    list-style: none;
    padding: 0;
    color: var(--black-color);
    font-family: var(--secondary-font);
}

a {
    text-decoration: none;
    white-space: nowrap;
}

h3 {
    font-family: var(--primary-font);
    font-size: 34px;
    font-weight: 600;
    color: var(--black-color);
    letter-spacing: 1px;
}

.fade-out {
    opacity: 0;
    visibility: hidden;
}

.button {
    border: 1px solid var(--balck-color);
    background: var(--black-color);
    color: var(--white-color);
    width: 200px;
    min-width: 150px;
    height: 80px;
    padding: 10px;
    font-size: 26px;
    letter-spacing: 2px;
    font-family: var(--secondary-font);
    font-weight: 300;
    border-radius: 12px;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    outline: none;
    text-transform: uppercase;
}

.btn:hover {
    background: var(--black-color-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 2px #00000030;
}

img {
    font-size: 18px;
    color: var(--black-color);
    text-align: center;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
}

.heading {
    font-family: var(--primary-font);
    font-size: 34px;
    font-weight: 600;
    color: var(--black-color);
    text-align: center;
    width: 100%;
}

.noticeBar {
    width: 100%;
    height: 54px;
    text-align: center;
    align-content: center;
    justify-items: center;
    padding: 10px;
    background: linear-gradient(90deg, var(--white-color) 0%, var(--purple-color) 30%, var(--purple-color) 80%, var(--white-color) 100%);
    visibility: visible;
    z-index: 99999;
    overflow: hidden;
    position: relative;
}

.noticeBar svg {
    min-width: 20px;
}

.noticeBar button {
    position: relative;
    margin-left: 8px;
    border: none;
    background: transparent;
    color: var(--white-color);
    font-size: 16px;
    font-family: var(--tertiary-font);
    font-weight: 300;
    cursor: pointer;
    outline: 1px solid var(--white-color);
    padding: 6px 20px;
    border-radius: 100px;
}

.noticeBar button::after {
    content: "👆";
    position: absolute;
    bottom: -10px;
    transform: rotate(-25deg);
    right: 10px;
    font-size: 18px;
    transition: bottom 0.2s ease-in-out, right 0.2s ease-in-out;
}

.noticeBar button:hover::after {
    bottom: -8px;
    right: 12px;
}

.noticeBar p {
    font-size: 18px;
    font-family: var(--tertiary-font);
    color: var(--white-color);
    text-transform: capitalize;
    font-weight: 400;
}

header {
    position: relative;
    top: 0;
    background: #f8ffff;
    box-shadow: 0 2px 10px #00000020;
    z-index: 99999;
    transition: all 0.3s ease-in-out;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 90px;
    padding: 10px 20px;
    background-color: transparent;
    gap: 20px;
}

.head-divisions {
    width: 33%;
}

.address {
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 250px;
    min-width: 100px;
    height: 60px;
    font-size: 24px;
    font-family: var(--tertiary-font);
    font-weight: 400;
    border: 1px solid var(--purple-color);
    border-radius: 10px;
    padding: 5px;
    overflow: auto;
}

p::-webkit-scrollbar {
    display: none;
}

p::-moz-scrollbar {
    display: none;
}

p {
    overflow-y: hidden;
    overflow-x: auto;
    width: fit-content;
    white-space: nowrap;
}

.address svg {
    min-width: 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    max-width: 200px;
    min-width: 100px;
    cursor: pointer;
}

.navs {
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
    gap: 30px;
    font-family: var(--secondary-font);
    font-size: 24px;
    font-weight: 400;
}

.navs .visible {
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
    gap: 30px;
    font-family: var(--secondary-font);
    font-size: 24px;
    font-weight: 400;
}

.navs .visible a {
    transition: all 0.2s ease-in-out;
}

.navs .visible a:hover {
    color: var(--purple-color);
}

-page\style.css */ .navs {
    position: relative;
}

.navs .dropdown {
    position: relative;
}

.navs .dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white-color);
    box-shadow: var(--shadow);
    border-radius: 10px;
    list-style: none;
    z-index: 1000;
    border: 1px solid var(--purple-color);
}

.navs .dropdown .dropdown-menu li {
    padding: 10px 20px;
    font-size: 18px;
    font-family: var(--secondary-font);
    font-weight: 400;
    white-space: nowrap;
    border-radius: 10px;
}

.navs .dropdown .dropdown-menu li a {
    color: var(--black-color);
    text-decoration: none;
    cursor: pointer;
}

.navs .dropdown .dropdown-menu li:hover {
    background-color: var(--bg-color);
}

.navs .dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-toggle {
    cursor: pointer;
}

.menu {
    display: none;
}

.menu .menuButton {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    background: transparent;
}

.menu .menuButton svg {
    width: 30px;
    height: 30px;
}

.main-container {
    max-width: 100vw;
    margin: 0 auto;
    overflow: hidden;
}

.hero {
    display: flex;
    justify-content: left;
    align-items: top;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 0;
    padding: 30px 30px 50px;
    background-repeat: no-repeat;
    background-image: url(./src/img/new-hero.png);
    background-size: contain;
    background-position: right;
}


.hero .text-area {
    width: 65%;
}

.hero .wrappers h1 {
    font-size: 54px;
    font-family: var(--primary-font);
    font-weight: 600;
    color: var(--black-color);
    line-height: 130%;
}

n {
    font-weight: 700;
}

.hero .wrappers h4 {
    font-size: 28px;
    font-family: var(--tertiary-font);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    margin: 20px 0 60px;
}

.hero .wrappers h4 b {
    position: relative;
    font-weight: 600;
    font-family: var(--tertiary-font);
    color: var(--black-color);
}

.hero .wrappers h4 b::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 28px;
    background-image: url(/src/svg/underline-sketch.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 120px;
    height: 8px;
    scale: 1.2;
}

.hero-bg {
    display: none;
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center;
    object-fit: contain;
    overflow: hidden;
}

.hero-bg img {
    width: auto;
    height: 350px;
    object-fit: contain;
}

.cta-container {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: row;
    width: 100%;
    gap: 50px;
}

.cta-container button {
    border: 1px solid var(--balck-color);
    background: var(--black-color);
    color: var(--white-color);
    width: 200px;
    min-width: 150px;
    height: 80px;
    font-size: 26px;
    letter-spacing: 2px;
    font-family: var(--secondary-font);
    font-weight: 300;
    border-radius: 12px;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


.cta-container .secondary-button {
    background: transparent;
    color: var(--black-color);
    border: 2px solid #00000050;
}

.cta-container a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-container svg {
    width: 80px;
    height: 80px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cta-container svg:hover {
    transform: translateY(-5px);
}

.cta-container svg path {
    fill: var(--black-color);
    transition: all 0.2s ease-in-out;
}

.cta-container svg:hover path {
    fill: #25D366;
}

.hero .img-area img {
    max-width: 100%;
    min-width: 250px;
    height: 100%;
    object-fit: cover;
}

.booking-container {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 50px 80px;
    padding: 0 20px;
}

.services-wrapper {
    text-align: center;
    max-width: 700px;
}

.servicesC-wrapper {
    text-align: center;
    max-width: 500px;
}

.services-wrapper .heading {
    text-align: center;
}

#booking-section .services {
    display: grid;
    grid-template-columns: repeat(3, minmax(80px, 180px));
    grid-template-rows: 1fr 1fr auto;
    justify-content: stretch;
    align-items: start;
    gap: 30px;
    padding: 30px;
    margin-top: 10px;
    width: 100%;
    height: fit-content;
    border: 1px solid #1b1b1b20;
    border-radius: 20px;
    background: var(--white-color);
}

#booking-section .servicesC {
    display: grid;
    grid-template-columns: repeat(2, minmax(80px, 180px));
    grid-template-rows: 1fr 1fr;
    justify-content: stretch;
    gap: 30px;
    padding: 30px;
    margin-top: 10px;
    width: 100%;
    height: fit-content;
    border: 1px solid #1b1b1b20;
    border-radius: 20px;
    background: var(--white-color);
}

#booking-section .serv-cards {
    width: auto;
    height: auto;
    font-family: var(--tertiary-font);
    font-size: 20px;
    cursor: pointer;
    padding-bottom: 2px;
}

#booking-section .wide {
    grid-column: 1 / span 3;
}

#booking-section .wide .serv-cards {
    width: 100%;
    padding-bottom: 2px;
}

#booking-section .wide .serv-cards .img {
    max-height: 80px;
}

#booking-section .serv-cards p {
    opacity: 0.8;
    position: relative;
    transition: all 0.3s ease-in-out;
    user-select: none;
    -webkit-user-drag: none;
    text-align: center;
    width: 100%;
    text-align: center;
    padding-bottom: 4px;
    margin-top: 5px;
    font-size: 18px;
    text-wrap: wrap;
}

#booking-section .serv-cards:hover p {
    opacity: 1;
}

#booking-section .serv-cards p::after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
    width: 0;
    min-height: 2px;
    background: var(--black-color);
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
    margin: 0 auto;
}

#booking-section .serv-cards:hover p::after {
    width: 80%;
    min-height: 2px;
    transition: all 0.2s ease-in-out;
}

#booking-section .serv-cards .img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 80px;
    height: auto;
    max-height: 120px;
    aspect-ratio: 1 / 0.6;
    background: #f8f8f8;
    border: 1px solid #00000010;
    border-radius: 15px;
}

#booking-section .serv-cards img {
    height: 80%;
    user-select: none;
    -webkit-user-drag: none;
    /* filter: drop-shadow(5px 5px 20px #00000030); */
}

.images-container {
    display: flex;
    justify-items: end;
}

.img-wrapper {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 20px;
    width: 500px;
    height: fit-content;
    flex-wrap: wrap;
}

.img-wrapper .imgs {
    width: 196px;
    height: 196px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--purple-color);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-wrapper #img2 {
    height: 256px;
    translate: 0 60px;
}

.img-wrapper #img4 {
    height: 136px;
}

.most-pop-container .viewport-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.most-pop-container {
    text-align: center;
    margin-top: 100px;
    padding: 20px 8vw;
    width: 100%;
    height: auto;
}

.most-pop-container .serv-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    width: auto;
    margin-top: 50px;
    transition: transform 0.3s ease-in-out;
}

.most-pop-container .popular-services {
    min-width: 400px;
    height: 260px;
    border-radius: 12px;
    border: 1px solid #1b1b1b20;
    position: relative;
    transition: all 0.3s ease-in-out;
    margin-right: 30px;
}

.most-pop-container .popular-services:last-child {
    margin-right: 0 !important;
}

.most-pop-container .popular-services img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 12px;
}


.lg-slider-heading {
    width: 100%;
    min-width: 800px;
    padding: 0 20vw;
}

#lg-slider {
    width: 70vw;
    margin: 0 auto;
    position: relative;
    margin-top: 20px;
}

.slides-viewport {
    width: 60vw;
    overflow: hidden;
}

.slides-wrapper {
    display: flex;
    align-items: center;
    justify-content: start;
    transition: transform 0.5s;
    min-width: fit-content;
}

.slide {
    width: 50vw;
    aspect-ratio: auto 16/8;
    height: auto !important;
    max-height: 300px;
    margin: 0;
    background: #eee;
    border-radius: 15px;
    transform: scale(0.80);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: background 0.3s 0.2s, opacity 0.3s, transform 0.3s;
}

.slide.active {
    width: 60vw;
    min-width: 200px;
    aspect-ratio: auto 16/8;
    height: auto !important;
    max-height: 400px;
    opacity: 1;
    transform: scale(1);
}

.brand-container {
    width: 100%;
    margin-top: 50px;
}

.brand-container .marquee1 {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    white-space: nowrap;
    gap: var(--slider-gap);
    overflow: hidden;
    padding: 20px;
}

.brand-container .marquee2 {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row;
    white-space: nowrap;
    gap: var(--slider-gap);
    overflow: hidden;
    margin-top: 20px;
    padding: 20px;
}

.brand-container .brand-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: var(--slider-gap);
}

.brand-container .slider1 {
    animation: slide1 20s linear infinite;
}

@keyframes slide1 {
    to {
        transform: translateX(calc(-100% - var(--slider-gap)));
    }
}

.brand-container .slider2 {
    animation: slide2 20s linear infinite;
}

@keyframes slide2 {
    to {
        transform: translateX(calc(100% + var(--slider-gap)));
    }
}

.brand-container .brand {
    background: white;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px #1b1b1b10;
    width: 220px;
    padding: 10px;
    height: 100px;
    overflow: hidden;
    user-select: none;
    -webkit-user-drag: none;
    transition: all 0.1s ease-in-out;
}

.brand-container .brand:hover {
    box-shadow: 0 4px 15px #1b1b1b20;
}

.brand-container .brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    scale: 0.7;
}

#why-choose-us .card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 100px;
    width: 100%;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-top: 50px;
    padding: 0 10px;
}

#why-choose-us .card-wrapper .wcu-cards {
    max-width: 350px;
    height: 250px;
    border-radius: 15px;
    background: var(--white-color);
    border: var(--stroke);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

#why-choose-us .card-wrapper .wcu-cards:hover {
    box-shadow: var(--shadow-hover);
}

#why-choose-us .card-wrapper .title {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: 60px;
    padding: 10px;
    border-bottom: var(--stroke);
}

#why-choose-us .card-wrapper .title h4 {
    color: var(--black-color);
    font-family: var(--tertiary-font);
    font-size: 24px;
    font-weight: 500;
}

#why-choose-us .card-wrapper .description {
    padding: 15px;
    justify-content: top;
}

#why-choose-us .card-wrapper p {
    color: var(--black-color);
    opacity: 0.9;
    font-family: var(--tertiary-font);
    font-size: 20px;
    font-weight: 400;
    white-space: wrap;
}


#progress-section .progress-container {
    background-size: cover;
    padding: 50px 10px;
}

#progress-section .progress-container .pro-text {
    text-align: center;
}

#progress-section .progress-container h3 {
    font-family: var(--primary-font);
    color: var(--black-color);
    text-align: center;
}

#progress-section .progress-container p {
    font-size: 24px;
    font-family: var(--primary-font) !important;
    color: hsl(0, 0%, 45%);
    font-weight: 400;
    text-align: center;
    width: auto;
}

#progress-section .pro-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px 200px;
    max-width: 1200px;
    height: 350px;
    border-radius: 20px;
    padding: 10px 0;
    margin: 20px auto 0;
    background: linear-gradient(135deg, hsl(270, 100%, 60%), #7f00ff);

}

#progress-section .pro-wrapper:nth-child(3) {
    display: block;
}

#progress-section .pro-wrapper .content {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    width: auto;
    height: auto;
    overflow: hidden;
}

#progress-section .pro-wrapper .content b {
    color: var(--white-color);
    font-family: var(--tertiary-font);
    font-size: 40px;
    font-weight: 600;
}

#progress-section .pro-wrapper .content p {
    color: var(--white-color);
    font-family: var(--tertiary-font);
    font-size: 30px;
    font-weight: 400;
}

#how-it-works .hiw-img-container {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
    text-align: center;
}

#how-it-works .hiw-img-container img {
    width: 100%;
    max-width: 800px;
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
}

#comp-section .hiw-text h3 {
    color: var(--purple-color);

}

#comp-section .img-container {
    margin-top: 100px;
    width: 100%;
    height: auto;
    text-align: center;
    overflow: hidden;
}

#comp-section .img-container img {
    height: auto;
    width: 100%;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
}

#comp-section .btn-container {
    text-align: center;
    width: 100%;
    margin-top: 50px;
}

#comp-section .wide-button {
    width: 50vw;
    min-width: 200px;
}

#rating-section .heading {
    text-align: center;
}

#rating-section .text-rating {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: row;
    width: 100%;
    margin-top: 50px;
    padding: 0 120px;
    font-family: var(--tertiary-font);
    color: var(--black-color);
    font-size: 24px;
    font-weight: 600;
    gap: 5px;
    line-height: 0;
}

#rating-section .review-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
    margin-top: 50px;
    padding: 0 10px;
}

#rating-section .review-wrapper .review-cards {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    width: 400px;
    height: 300px;
    border-radius: 20px;
    background: var(--white-color);
    border: var(--stroke);
    box-shadow: var(--shadow);
    transition: all 0.3s ease-in-out;
}

#rating-section .review-wrapper .review-cards:hover {
    box-shadow: var(--shadow-hover);
}

#rating-section .review-wrapper .review-cards .user-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    height: 80px;
    padding: 10px;
    border-bottom: var(--stroke);
    align-self: flex-start;
}

#rating-section .review-wrapper .review-cards .profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: var(--stroke);
}

#rating-section .review-wrapper .review-cards .profile-pic img {
    width: 100%;
    height: 100%;
    scale: 1.2;
    object-fit: fill;
}

#rating-section .review-wrapper .review-cards .user-name {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 50%;
    overflow: hidden;
}

#rating-section .review-wrapper .review-cards .user-name span {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 5px;
}

#rating-section .review-wrapper .review-cards .user-name p {
    color: var(--black-color);
    font-family: var(--secondary-font);
    font-size: 22px;
    font-weight: 400;
}

#rating-section .review-wrapper .review-cards .user-name span p {
    color: var(--black-color);
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

#rating-section .review-wrapper .review-cards .user-name span svg {
    width: 20px;
    height: 20px;
}

#rating-section .review-wrapper .review-cards .user-name span svg path {
    stroke: var(--green-color);
    stroke-width: 2;
}

#rating-section .review-wrapper .review-cards .date {
    display: flex;
    justify-content: end;
    align-items: center;
    color: var(--black-color);
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: 400;
    width: 30%;
    text-align: right;
    overflow: hidden;
    justify-self: flex-end;
}

#rating-section .review-wrapper .review-cards .date p {
    text-align: right;
}

#rating-section .review-wrapper .review-cards .review-description {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 20px 15px;
    gap: 5px;
    overflow: hidden;
    font-size: 20px;
    font-family: var(--secondary-font);
    font-weight: 400;
}

#rating-section .review-wrapper .review-cards .review-description .stars {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}

#rating-section .review-wrapper .review-cards .review-description p {
    color: var(--black-color);
    font-family: var(--secondary-font);
    font-size: 20px;
    font-weight: 400;
    text-align: left;
}

#rating-section .review-wrapper .review-cards .review-description .review-title {
    margin-top: 10px;
}

#rating-section .review-wrapper .review-cards .review-description .review-title p {
    color: var(--black-color);
    font-family: var(--secondary-font);
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    overflow: hidden;
}

#rating-section .review-wrapper .review-cards .review-description .review {
    overflow: auto;
}

#rating-section .review-wrapper .review-cards .review-description .review p {
    font-family: var(--tertiary-font);
    opacity: 0.8;
    color: var(--black-color);
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    white-space: wrap;
    overflow: hidden;
}

#contact-section .contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 100px;
}

#contact-section .form-container {
    width: 40%;
    text-align: center;

}

#contact-section .form-container .input-container label {
    display: block;
    text-align: left;
    font-family: var(--tertiary-font);
    font-size: 24px;
    color: var(--black-color);
    transform-origin: left;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    transition: all 0.2s ease-out;
}


#contact-section .form-container .input-container form input,
#contact-section .form-container .input-container form select {
    outline: none;
    width: 100%;
    min-width: 200px;
    height: 60px;
    border: 1px solid var(--purple-color);
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 24px;
    font-family: var(--tertiary-font);
}

#contact-section .form-container .input-container form select::selection {
    background: transparent;
}

#contact-section .form-container .input-container form .input-field {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 35px;
    position: relative;

}

#contact-section .form-container .input-container form .input-field input:focus+label,
#contact-section .form-container .input-container form .input-field select:active+label {

    transform: translateY(0);
    top: -30px;
    left: 0;
    font-size: 20px;
}

#contact-section .form-container .input-container form .message textarea {
    width: 100%;
    max-height: 120px;
    resize: none;
    justify-content: top;
    font-size: 24px;
    padding: 15px;
    font-family: var(--tertiary-font);
    border: 1px solid var(--purple-color);
    border-radius: 10px;
    outline: none;
    color: var(--black-color);
}

#contact-section .form-container .input-container form .message label {
    display: block;
    text-align: left;
    font-family: var(--tertiary-font);
    font-size: 24px;
    color: var(--black-color);
    transform-origin: left;
    position: absolute;
    top: 25%;
    left: 15px;
    transition: all 0.2s ease-out;
}

#contact-section .form-container .input-container form button {
    width: 100%;
    height: 60px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#contact-section .form-container .input-container form button svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

#contact-section .form-container .input-container form button:hover {
    background: var(--black-color-dark);
}

#contact-section .form-container .input-container form button:hover svg {
    transform: translateX(10px);
}

#contact-section .contact-img-container {
    width: 40%;
    height: auto;
    text-align: center;
    overflow: hidden;
}

#contact-section .contact-img-container img {
    width: 100%;
    height: auto;
}

#form-result {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: #00000050;
    transition: all 0.3s ease-in-out;
}

.form-result-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    width: 600px;
    height: 400px;
    border-radius: 20px;
    background: var(--white-color);
    border: var(--stroke);
    overflow: hidden;
    padding: 20px;
    box-shadow: var(--shadow-hover);
}

.form-result-content h3 {
    font-size: 40px;
    font-family: var(--secondary-font);
    font-weight: 600;
    color: var(--purple-color);
}

.form-result-content p {
    font-size: 24px;
    font-family: var(--tertiary-font);
    font-weight: 400;
    color: var(--green-color);
    white-space: wrap;
}

#scroll-top {
    outline: none;
    border: none;
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    background: var(--purple-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    filter: blur(2px);
    transform: translateY(100px);
}

#scroll-top svg {
    rotate: -90deg;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease-in-out;
}

#scroll-top svg path {
    stroke: var(--white-color);
    stroke-width: 1.5;
}

#scroll-top:hover {
    box-shadow: 0 0 100px var(--purple-color);
}

#scroll-top:hover svg {
    transform: translateX(3px);
}

#scroll-top:active svg {
    transform: translateX(1000px);
}

.scrollBtnShow {
    visibility: visible !important;
    opacity: 1 !important;
    filter: blur(0) !important;
    transform: translateY(0) !important;
}

@media (max-width: 1200px) {
    .button {
        font-size: 20px !important;
    }

    .header-container {
        height: 80px;
    }

    #head-logo {
        max-width: 180px;
    }

    .address {
        max-width: 200px;
        height: 50px;
    }

    .address svg {
        width: 30px;
        height: 30px;
    }

    .address p {
        font-size: 20px;
    }

    .navs .visible {
        font-size: 20px;
        gap: 20px;
    }

    main .button {
        width: 150px;
        height: 60px !important;
        font-size: 24px;
        border-radius: 10px;
    }

    .most-pop-btn {
        max-width: 200px;
        border-radius: 12px !important;
    }

    .main .hero {
        flex-wrap: wrap;

    }

    .main .hero h1 {
        font-size: 44px;
    }

    .main .hero h4 {
        font-size: 20px;
    }

    .main .hero .features {
        gap: 20px 150px;
        margin: 40px 0;
    }

    .main .hero .features svg {
        width: 40px;
        height: 40px;
    }

    .main .hero .features span {
        font-size: 28px;
    }

    .main .hero button {
        max-width: 150px;
        height: 60px;
        font-size: 24px;
        border-radius: 10px !important;
    }

    .main .hero .cta-container svg {
        width: 60px;
        height: 60px;
    }

    .main .hero .features :nth-child(3) {
        margin-left: 0;
    }

    .heading h3 {
        font-size: 32px;
    }


    .slide.active {
        max-height: 380px;
    }

    .booking-container .images-container {
        display: none;
    }

    .most-pop-container .most-pop-btn-container .button {
        border-radius: 10px !important;
    }

    .brand-container .brand {
        width: 200px;
        height: 80px;
    }

    #contact-section .form-container .input-container form button svg {
        width: 16px;
        height: 16px;
    }

    #progress-section .progress-container h3 {
        font-size: 38px;
    }

    #progress-section .pro-wrapper .content {
        max-width: 400px;
        height: 200px;
        white-space: nowrap;
    }

    #progress-section .pro-wrapper .content svg {
        width: 80px;
        height: 80px;
    }

    #progress-section .pro-wrapper .content strong {
        font-size: 34px;
    }

    #progress-section .pro-wrapper .content p {
        font-size: 24px;
    }

    .footer-container {
        gap: 100px !important;
    }

    #footer .footer-links-container .title h4 {
        font-size: 28px;
    }

    #footer .footer-links-container ul a {
        font-size: 20px;
    }

    .logo-container img {
        width: 150px;
    }

}

@media (max-width: 1000px) {
    section {
        margin-top: 100px;
    }

    .main .hero h1 {
        font-size: 40px;
    }

    .main .hero .features {
        margin: 30px 0;
    }

    .main .hero .features span {
        font-size: 24px;
    }

    .hero {
        padding: 30px;
        background-size: 60%;
    }

    .heading h3 {
        font-size: 30px;
    }

    .trust .img-cont {
        width: 60px;
        height: 60px;
    }

    .trust h5 {
        font-size: 30px;
    }

    .trust p {
        font-size: 22px;
        letter-spacing: 5px;
    }

    .most-pop-container {
        margin-top: 80px;
    }

    .lg-slider-heading svg {
        width: 24px;
    }

    .lg-slider-heading h3 {
        font-size: 24px;
    }

    .lg-slider-heading p {
        font-size: 16px;
    }

    .slide {
        max-height: 200px;
    }

    .slide.active {
        max-height: 300px;
    }

    #progress-section .progress-container h3 {
        font-size: 34px;
    }

    #contact-section .contact-container {
        gap: 50px;
    }

    #contact-section .form-container .input-container form button {
        font-size: 20px !important;
    }

    #footer .footer-links-container {
        max-width: 600px;
    }

    #footer .footer-links-container .title h4 {
        font-size: 24px;
    }

    #footer .footer-links-container ul {
        margin-top: 0;
    }

    #footer .footer-links-container ul a {
        font-size: 16px;
    }

    #footer .logo-container img {
        max-width: 100px;
    }

    #footer li {
        line-height: 25px;
    }

    #footer .footer-container {
        gap: 80px !important;
        padding: 100px 20px 0;
    }

    .copyright {
        font-size: 16px;
    }

}

@media (max-width: 850px) {
    main .button {
        font-size: 22px !important;
    }

    .hero {
        padding: 20px;
    }

    .main .hero h1 {
        font-size: 34px;
    }

    .hero h4 {
        font-size: 18px !important;
        margin: 10px 0 !important;
    }

    .trust {
        margin: 40px 0;
    }

    .cta-container {
        gap: 20px;
    }

    .cta-container .button {
        font-size: 20px !important;
    }

    .services-wrapper {
        max-width: 550px;
    }

    #booking-section .services {
        padding: 25px !important;
        gap: 20px !important;
    }

    #booking-section .services .wide {
        gap: 20px !important;
    }

    .booking-container .serv-cards {
        width: 150px;
    }

    #booking-section .servicesC {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .booking-container .img {
        height: 100px !important;
        min-width: 100%;
        border-radius: 12px !important;
    }

    .booking-container .services-wrapper .services .serv-cards p {
        font-size: 16px !important;
    }


    .slide.active {
        max-height: 250px;
    }

    .most-pop-container .popular-services {
        min-width: 340px;
        height: 200px;
    }

    #why-choose-us .card-wrapper {
        gap: 60px;
    }

    #why-choose-us .card-wrapper .wcu-cards {
        width: 300px;
        height: 200px;
        border-radius: 12px;
    }

    #why-choose-us .card-wrapper .title svg {
        width: 35px;
    }

    #why-choose-us .card-wrapper .title h4 {
        font-size: 20px;
    }

    #why-choose-us .card-wrapper .description p {
        font-size: 18px;
    }

    #progress-section .progress-container h3 {
        font-size: 30px;
    }

    #progress-section .pro-wrapper .content {
        gap: 10px;
        width: 300px;
        height: 100px;
    }

    #progress-section .pro-wrapper {
        gap: 20px;
    }

    #progress-section .progress-container {
        padding: 20px 10px;
    }

    #progress-section .pro-wrapper .content span {
        line-height: 30px;
    }

    #progress-section .pro-wrapper .content svg {
        width: 60px;
        height: 60px;
    }

    #progress-section .pro-wrapper .content strong {
        font-size: 24px;

    }

    #progress-section .pro-wrapper .content p {
        font-size: 20px;
    }

    #progress-section .pro-wrapper .map-container {
        height: 150px;
        border-radius: 12px;
    }

    #comp-section .wide-button {
        border-radius: 10px;
    }

    #rating-section .text-rating {
        padding: 0 20px;
    }

    #rating-section .review-wrapper {
        flex-wrap: nowrap;
        overflow: auto;
        justify-content: left;
        padding: 0 20px;
    }

    #rating-section .review-wrapper .review-cards {
        min-width: 400px;
    }

    #contact-section .form-container .input-container label {
        font-size: 20px;
    }

    #contact-section .form-container .input-container form input,
    #contact-section .form-container .input-container form select {
        height: 50px;
        font-size: 20px;
        border-radius: 10px !important;
    }

    #contact-section .form-container .input-container form .message label {

        font-size: 20px;
    }

    #contact-section .form-container .input-container form .message textarea {
        font-size: 20px;
        max-height: 100px;
        border-radius: 10spx !important;
    }

    .form-result-content h3 {
        font-size: 34px;
    }

    .form-result-content p {
        font-size: 20px;
    }

    .form-result-content button {
        height: 60px;
        font-size: 24px;
        border-radius: 10px;
    }

    #footer .footer-container {
        gap: 50px !important;
    }

    #footer .footer-links-container {
        gap: 30px;
        flex-wrap: wrap;
    }

    #footer .footer-links-container .title h4 {
        font-size: 20px;
    }

    #footer .footer-links-container ul a {
        font-size: 14px;
        line-height: 20px;
    }

    #footer .footer-links-container ul {
        margin-top: 0;
    }

    #footer .social-links-container a svg {
        width: 30px;
        height: 30px;
    }

    #footer .social-links-container {
        gap: 20px;
    }
}

@media (max-width : 640px) {

    :root {
        --slider-gap: 25px;
    }

    .button {
        border-radius: 8px;
    }

    .noticeBar {
        display: none;
    }

    section {
        margin-top: 60px;
    }

    .hero {
        padding: 10px 0;
    }

    .main .hero h1 {
        font-size: 28px;
        text-wrap: balance;
    }

    .hero .text-area {
        width: 100%;
        text-align: center;
    }

    .main .hero h4 {
        font-size: 20px !important;
        margin: 0 !important;
    }

    .hero {
        background: none;
    }

    .lg-slider-heading {
        padding: 0;
    }

    .trending-services-container #lg-slider {
        width: 100%;
        overflow: hidden;
        margin-top: 0;
    }

    .trending-services-container .slides-wrapper {
        min-width: 100%;
        gap: 20px;
    }

    .trending-services-container .slides-wrapper .slide {
        transform: scale(1);
        opacity: 1;
        min-width: 100%;
        aspect-ratio: 16 / 8;
        height: auto;
        max-height: none;
        border-radius: 12px;
    }

    .noticeTxt {
        padding: 4px;
        text-align: center;
    }

    .noticeTxt svg {
        min-width: 20px;
    }

    .noticeTxt p {
        font-size: 16px;
        text-align: left;
        text-wrap: balance;
    }

    .most-pop-container .popular-services {
        min-width: 300px;
        width: 100%;
        height: 160px;
    }

    .most-pop-container {
        padding: 0;
        margin-top: 60px;
    }

    .most-pop-container .heading h3 {
        text-align: left;
    }

    .hero-bg {
        display: block;
    }

    .trust {
        justify-content: center;
        margin: 0 0 30px;
    }

    .trust h5 {
        font-size: 24px;
    }

    .trust p {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .cta-container {
        justify-content: center;
        gap: 30px;
    }

    .heading h3 {
        font-size: 24px;
    }

    .booking-container {
        padding: 0;
    }

    #booking-section .serv-cards {
        width: auto;
        min-width: 80px;
    }

    #booking-section .serv-cards .img {
        max-height: 80px;
        border-radius: 10px !important;
    }

    #booking-section .serv-cards p {
        font-size: 14px !important;
    }

    .brand-container .brand {
        width: 140px;
        height: 60px;
    }

    .brand-container .marquee2 {
        margin-top: -10px;
    }

    .most-pop-container .most-pop-btn-container {
        gap: 30px;
    }

    .most-pop-container .slider {
        margin-top: 20px;
    }

    .most-pop-container .slider svg {
        width: 24px;
        height: 24px;
    }

    .most-pop-container .serv-wrapper {
        margin-top: 10px;
    }


    .comp-container {
        display: none;
    }

    #comp-section .wide-button {
        border-radius: 10px;
        font-size: 20px !important;
    }

    #rating-section .text-rating {
        font-size: 22px;
    }

    #contact-section .form-container {
        width: 100%;
        padding: 0;
    }

    #contact-section .contact-img-container {
        display: none;
        width: 0;
    }

    #footer .footer-container {
        flex-wrap: wrap;
    }

    #scroll-top {
        display: none;
    }

    .copyright p {
        text-align: center;
        font-size: 14px;
        white-space: wrap;
    }

    #footer {
        margin-top: 60px;
    }

}

@media (max-width: 500px) {
    .button {
        font-size: 18px !important;
        border-radius: 10px !important;
    }

    main .button {
        font-size: 20px !important;
    }

    .noticeBar p {
        font-size: 14px;
    }

    .main .hero h1 {
        font-size: 22px;
    }

    .main .hero h4 {
        font-size: 18px !important;
    }

    .heading h3 {
        font-size: 22px;
    }

    .lg-slider-heading p {
        font-size: 14px;
    }

    .main .hero button {
        min-width: 100px !important;
        height: 50px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
    }

    .main .hero .secondary-button {
        border-width: 1px;
    }

    .cta-container {
        gap: 20px;
    }

    .main .hero .cta-container svg {
        max-width: 50px !important;
        height: 50px;
    }

    .main .hero .features span {
        gap: 10px;
        font-size: 22px;
    }

    .main .hero .features svg {
        width: 35px;
        height: 35px;
    }

    .booking-container .services-wrapper .services .serv-cards .img {
        height: 80px !important;
    }

    .booking-container .services-wrapper .services .serv-cards p {
        font-size: 14px !important;
    }

    #booking-section .services,
    .servicesC {
        padding: 20px !important;
        border-radius: 12px !important;
    }

    .most-pop-container .most-pop-btn-container {
        gap: 20px;
    }

    .most-pop-container .most-pop-btn-container button {
        font-size: 16px !important;
    }

    .most-pop-container .most-pop-btn-container .secondary-button {
        border-width: 1px;
    }

    #pgrSec svg {
        width: 32px;
    }

    #pgrSec p.font-semibold {
        font-size: 20px;
    }

    #pgrSec p.font-normal {
        font-size: 14px;
    }

}

@media (max-width: 450px) {
    #pgrSec .pgrCont {
        flex-direction: column;
        align-items: start;
        justify-content: center;
        padding: 0 20px;
    }
}

@media (max-width: 400px) {

    .main .hero {
        padding: 0;
    }

    .trending-services-container .slides-wrapper .slide {
        border-radius: 10px;
    }

    #booking-section .wide {
        grid-column: 1 / span 2;
    }

    #booking-section .services-wrapper .services {
        display: grid;
        grid-template-columns: repeat(2, minmax(100px, 140px)) !important;
        grid-template-rows: repeat(4, 1fr);
    }

    .most-pop-container .popular-services {
        min-width: 280px;
        width: 100%;
        height: 160px;
    }

}