/* universal */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

*,
*:after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: "Figtree", sans-serif; */
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 400 !important;
    font-size: 16px;
}

@media screen and (width <=319px) {

    *,
    *::after,
    *::before {
        display: none;
    }
}

a {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
}

:root {
    --primary: #023E8A;
    --secondary: #daf9ff;
    --tertiary: #daffed;
    --black1: #060606;
    --black2: #050301;
    --white1: #f4f4f4;
    --white2: #d6d6d6;

    --body1: rgba(122, 240, 53, 0.05);
    --body2: rgba(71, 226, 226, 0.05);

    --progress: red;
}

body,
html {
    max-width: 100%;
    scroll-behavior: smooth;
    /* background-image: radial-gradient(circle, #e1ebfc, #f3f7cf, #e3f8cc); */
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('./home/02.avif') no-repeat 50% 50%;
    background-size: cover;
    background-attachment: fixed;
}

body::-webkit-scrollbar {
    display: none;
}

.overflow-control {
    max-width: 100%;
    overflow: hidden;
}

.responsive-height-adjuster {
    height: 5rem;
    /* background: yellow; */
}

@media screen and (width <=1700px) {
    .responsive-height-adjuster {
        height: 4rem;
    }
}

@media screen and (width <=1200px) {
    .responsive-height-adjuster {
        height: 3rem;
    }
}

@media screen and (width <=800px) {
    .responsive-height-adjuster {
        height: 2.5rem;
    }
}

/* ------------------------------- */
/* preloader */
.preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    max-width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    transition: z-index .5s, top 2s ease, opacity .5s;
    background: white;
    z-index: 100000 !important;
}

.preloader img {
    max-width: 7rem;
}

.preloader.hide {
    top: -200vh;
    opacity: 0;
    z-index: -1000 !important;
}

/* ------------------------------- */
/* Fixed container along the very top edge */
.progress-container {
    position: fixed;
    bottom: 0px;
    left: 0%;
    width: 100%;
    height: 6px;
    background-color: var(--white2);
    z-index: 1000 !important;
}

/* Animated active progress fill */
.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--progress);
    transition: width 1s ease-out;
}

@media screen and (max-width: 1200px) {
    .progress-container {
        height: 4px;
    }
}

/* --------------------- */
/* navbar */
.navbar {
    max-width: 100%;
    width: 100%;
    left: 0%;
    top: 0;
    height: 60px;
    background: var(--white1);
    border-radius: 0;
    display: flex;
    align-items: center !important;
    justify-content: space-between !important;
    padding: .75rem 5%;
    border-bottom: 1px solid var(--white2);
    position: fixed;
    z-index: 1000 !important;
}

.navbar-adjuster {
    display: block;
    position: relative;
    height: 60px;
}

.navbar-clickable {
    display: none;
}

.navbar-logo {
    text-transform: capitalize;
    width: max-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    gap: .25rem;
    letter-spacing: -.5px;
    z-index: 100000 !important;
    /* border: 1px solid red; */
}

.navbar-logo img {
    max-height: 50px;
    display: block;
}

.navbar * {
    color: var(--black2);
}

.responsive-lap-mobile {
    display: flex;
    width: max-content;
    gap: 5rem;
    justify-content: space-between;
    height: 100%;
}

.navbar .navbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .1rem;
    height: 100%;
}

.navbar .navbar-menu a {
    position: relative;
    z-index: 100;
    font-size: 1.1rem;
    text-transform: capitalize;
    /* border: 1px solid black; */
    border-right: none;
    padding: 0 1.25rem;
    align-self: stretch;
    display: flex;
    align-items: center;
    border-radius: 2rem;
    font-weight: 400;
    transition: background .3s ease, color .7s ease;
}

.navbar .navbar-menu a:hover {
    background: var(--black2) !important;
    color: var(--white1) !important;
    transition: background .3s ease, color .7s ease;
}

.responsive-lap-mobile a.active2 {
    background: var(--primary) !important;
    color: var(--white1) !important;
}

@media screen and (max-width: 1200px) {

    .navbar {
        padding: .5rem 5%;
    }

    .responsive-lap-mobile {
        position: fixed;
        top: -200vh;
        transition: top .5s ease;
        flex-direction: column;
        width: 100%;
        left: 0%;
        border-radius: 0rem;
        z-index: 1000 !important;
        max-height: 100dvh;
        background: var(--white1);
        padding-inline: 5%;
        padding-top: 65px;
        justify-content: flex-start;
        overflow-y: scroll;
    }

    .navbar .navbar-menu a {
        border: 1px solid var(--white2);
        width: 100%;
        text-align: center;
        padding: .75rem .5rem;
        font-size: 1.1rem;
        background: var(--white1);
    }

    .navbar-logo {
        font-size: 1.25rem;
    }

    .navbar-logo img {
        max-height: 42px;
    }

    .responsive-lap-mobile.active {
        top: 0;
        transition: top .5s ease;
        z-index: 10000 !important;
    }

    .navbar .navbar-menu {
        flex-direction: column;
        gap: .5rem;
        border: none;
        justify-content: flex-start;
    }

    .navbar-menu a {
        font-size: 1.2rem;
        justify-content: center;
        height: 45px;
    }

    .navbar-clickable {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        height: 100%;
        width: 50px;
        transition: transform .5s ease;
        z-index: 100000 !important;
    }

    .navbar-clickable * {
        position: absolute;
        height: 100%;
        width: 1.25rem;
        transition:
            opacity 0.5s ease,
            transform 0.6s ease;
    }

    /* Default State */
    .navbar-clickable .hamIcon {
        opacity: 1;
        transform: rotate(0deg);
    }

    .navbar-clickable .closeIcon {
        opacity: 0;
        width: 1rem;
        transform: rotate(-1080deg);
    }

    /* Active State */
    .navbar-clickable.active .hamIcon {
        opacity: 0;
        transform: rotate(1080deg);
    }

    .navbar-clickable.active .closeIcon {
        opacity: 1;
        transform: rotate(0deg);
    }
}

/* ------------------------- */
/* whatsapp-hanging */

.whatsapp-hanging {
    position: fixed;
    left: 5%;
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    top: 4rem;
    gap: .25rem;
    z-index: 1000 !important;
}

.whatsapp-hanging a {
    background: var(--white1);
    padding: .35rem;
    /* border-radius: .25rem; */
    border: 1px solid var(--white2);
}

.whatsapp-hanging a * {
    max-height: 1.5rem;
    font-size: 1.7rem;
}

.whatsapp-hanging .whatsapp * {
    color: #25D366;
    /* WhatsApp Green */
}

.whatsapp-hanging .phone * {
    color: #0891B2;
    /* Dark Cyan */
}

.whatsapp-hanging .location * {
    color: #16A34A;
    /* Green */
}

.whatsapp-hanging .instagram * {
    color: #D62976;
    /* Instagram Pink */
}

.whatsapp-hanging .youtube * {
    color: #FF0000;
    /* YouTube Red */
}

.whatsapp-hanging .facebook * {
    color: #1877F2;
    /* Facebook Blue */
}

.whatsapp-hanging .linkedin * {
    color: #0A66C2;
    /* LinkedIn Blue */
}

@media screen and (max-width: 800px) {
    .whatsapp-hanging {
        gap: .15rem;
        top: auto;
        bottom: 5vh;
        justify-content: center;
        flex-direction: row;
    }

    .whatsapp-hanging a {
        padding: .5rem;
        border-radius: 50%;
        border-color: var(--white2);
    }

    .whatsapp-hanging a * {
        font-size: 1.25rem;
    }

}

/* ----------------------- */
/* last-name */
.last-name {
    padding: 0rem 5% 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.last-name h2 {
    font-size: 17vw;
    font-weight: 900;
    opacity: .15 !important;
    letter-spacing: -7.5%;
    color: rgb(0, 0, 0);
    line-height: 1 !important;
}

@media screen and (max-width: 800px) {
    .last-name {
        padding-bottom: 6rem;
    }
}

/* ------------------------ */
/* sec-six */
.sec-six {
    padding: 3rem 5% 0;
    /* background: whitesmoke; */
}

.sec-six * {
    color: rgb(0, 0, 0);
}

.sec-six .footer-bottom {
    border-top: 1px solid gainsboro;
    padding-top: 1rem;
    font-size: 1.25rem;
    text-align: center;
}

.sec-six .footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
    gap: 2rem;
}

.ft-left {
    max-width: 50%;
}

.ft-left h2 {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 600 !important;
}

.ft-left p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.25;
    opacity: .5 !important;
}

.ft-middle {
    display: flex;
    gap: 3rem;
}

.ft-middle-div {
    display: flex;
    flex-direction: column;
}

.ft-middle-div h2 {
    font-size: 1.5rem;
    font-weight: 600 !important;
    color: var(--primary);
}

.ft-middle-div a {
    margin-top: 1rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    overflow-wrap: break-word;
    /* Recommended for general use */
}

.ft-middle-div a::before {
    content: '-';
    position: absolute;
    left: 0rem;
    font-weight: 600 !important;
}

@media screen and (max-width: 1700px) {
    .ft-left {
        max-width: 60%;
    }
}

@media screen and (max-width: 800px) {
    .sec-six .footer-bottom {
        font-size: 1rem;
    }

    .sec-six {
        padding: 2rem 5% 0;
    }

    .sec-six .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .ft-middle-div h2 {
        padding-bottom: .5rem;
        font-size: 1.25rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .ft-left h2 {
        font-size: 1.75rem;
    }

    .ft-middle {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .ft-middle-div {
        min-width: calc(50% - 1rem);
        max-width: 50%;
    }

    .ft-middle-div a {
        margin-top: .5rem;
        font-size: 1rem;
    }

    .ft-left p {
        font-size: 1rem;
    }

    .ft-left {
        max-width: 100%;
    }
}

/* =========================
   Infinite Marquee
========================= */

.marquee-loop {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-loop-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;

    will-change: transform;

    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    animation: marqueeLoop 100s linear infinite;
}

/* .marquee-loop:hover .marquee-loop-track {
    animation-play-state: paused;
} */

.marquee-item {
    flex: 0 0 auto;
    white-space: nowrap;

    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    background: white;
    border-right: 1px solid var(--white2);
}

@keyframes marqueeLoop {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Tablet */

@media (max-width:800px) {

    .marquee-item {
        padding: .75rem 1.5rem;
        font-size: 1.1rem;
    }

}

/* Mobile */

@media (max-width:480px) {

    .marquee-item {
        padding: .65rem 1.2rem;
        font-size: 1rem;
    }

}

/* Accessibility */

@media (prefers-reduced-motion:reduce) {

    .marquee-loop-track {
        animation: none;
    }

}

/* ------------------------- */
/* news-articles */

.news-articles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0rem 5% 0;
}

.news-articles-blog {
    padding-inline: 15%;
}

.news-articles-head {
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-articles-head h2 {
    font-size: 2.25rem;
    text-align: center;
}

.news-articles-content {
    display: flex;
    gap: 3rem 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news-articles-content a {
    overflow: hidden;
    max-width: calc(16% - .5rem);
    transition: all 1s ease;
}

.news-articles-content-blog {
    justify-content: flex-start;
}

.news-articles-content-blog a {
    max-width: calc(25% - 1rem);
}

.news-articles-content a img {
    max-width: 100%;
    min-width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: .25rem;
}

.news-articles-content a h2 {
    font-size: 1.15rem;
    margin: 1.25rem 0 .5rem;
    opacity: .5 !important;
}

.news-articles-content a h3 {
    font-size: 1.35rem;
    font-weight: 600 !important;
}

.news-articles a p {
    font-size: 1rem;
    margin-top: .5rem;
    line-height: 1.5;
}

.news-articles-content:hover div:not(:hover) {
    filter: grayscale(2);
    transform: scale(.98);
    transition: all 1s ease;
}

@media screen and (max-width: 1700px) {
    .news-articles-head h2 {
        font-size: 2rem;
    }

    .news-articles-content a h2 {
        font-size: 1.15rem;
    }

    .news-articles-content {
        justify-content: flex-start;
    }

    .news-articles-content a {
        max-width: calc(25% - 1rem);
    }

    .news-articles-content-blog a {
        max-width: calc(25% - .75rem);
    }

    .news-articles {
        padding-inline: 5%;
    }

    .news-articles-content a h3 {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 1200px) {
    .news-articles-content a {
        max-width: calc(33% - .5rem);
    }

    .news-articles-content-blog a {
        max-width: calc(33% - .75rem);
    }

    .news-articles-content {
        justify-content: space-between;
    }

}

@media screen and (max-width: 800px) {
    .news-articles {
        padding: 0rem 5% 0;
        gap: 1rem;
    }

    .news-articles-head h2 {
        font-size: 1.5rem;
    }

    .news-articles-head a {
        padding: .75rem 1.5rem;
    }

    .news-articles-content {
        /* flex-direction: column; */
        flex-wrap: wrap;
        gap: 1.5rem .5rem;
    }

    .news-articles-content a {
        max-width: calc(50% - .25rem);
    }

    .news-articles-content-blog a {
        max-width: 100%;
        min-width: 100%;
    }

    .news-articles-content a h2 {
        font-size: 1rem;
        margin: 1rem 0 .5rem;
    }

    .news-articles-content a img {
        height: 200px;
    }

    .news-articles-content-blog a img {
        height: 250px;
    }

    .news-articles-content a h3 {
        font-size: 1rem;
    }
}

/* ------------------- */
/* faq-main */
.faq-main {
    display: flex;
    max-width: 40%;
    margin: 0 auto 0;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
}

/* ACCORDION ITEM */
.q-a-div {
    border: 1px solid gainsboro;
    border-radius: 6px;
    margin-bottom: .25rem;
    padding: .75rem 1rem;
    cursor: pointer;
    overflow: hidden;
    transition:
        background-color .35s ease,
        border-color .35s ease;
}

/* QUESTION */
.q {
    font-size: 1.5rem;
    line-height: 1.5;
    transition: color .35s ease, font-weight .45s ease;
}

/* ANSWER */
.a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    margin-top: 0;
    color: var(--black1);
    line-height: 1.5;
    font-size: 1.2rem;

    transition:
        max-height .6s ease,
        opacity .35s ease,
        transform .35s ease,
        margin-top .35s ease;
}

.a svg {
    font-size: .5rem;
    margin-right: .5rem;
    margin-bottom: .2rem;
}

/* OPEN STATE */
.q-a-div.active {
    background: var(--secondary);
    border-color: var(--black1);
}

.q-a-div.active .q {
    color: red;
    /* font-weight: 600 !important; */
}

.q-a-div.active .a {
    max-height: 300px;
    /* color: var(--white1); */
    opacity: 1;
    transform: translateY(0);
    margin-top: .25rem;
}

.faq-heading {
    font-size: 2.25rem;
    text-align: center;
    padding: 0 5% 1rem;
}

/* Desktop */
@media screen and (max-width: 1700px) {
    .faq-main {
        max-width: 50%;
    }

    .faq-heading {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 800px) {
    .faq-main {
        flex-direction: column;
        max-width: 90%;
        margin: 0 auto 0;
        gap: .1rem;
    }

    .faq-heading {
        font-size: 1.5rem;
    }

    .a {
        font-size: 1rem;
    }

    .q {
        font-size: 1.1rem;
    }

    .q-a-div.active .a {
        margin-top: .5rem;
    }
}

/* ---------------- */
.iframe-info {
    display: flex;
    padding: 0 5%;
    gap: 4%;
    /* background: red; */
}

.iframe-info .iframe-left {
    max-width: 55%;
    min-width: 55%;
}

.iframe-info .iframe-left iframe {
    width: 100%;
    height: 600px;
}

.iframe-info .info-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    /* border-right: 1px solid var(--white2); */
}

.info-right div,
.info-right a {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    justify-content: flex-start;
}

.info-right div svg,
.info-right a svg {
    margin-top: .25rem;
}

.info-right div h2,
.info-right a h2 {
    min-width: 110px;
    font-weight: 400;
}

.info-right div p,
.info-right a p {
    text-align: left;
    max-width: 60%;
    word-break: normal;
    /* Keeps standard word boundaries */
    overflow-wrap: break-word;
    /* Wraps whole words, breaks only if forced */
}

.info-right div *,
.info-right a * {
    font-size: 1.25rem;
    line-height: 1.5;
}

@media screen and (max-width: 1700px) {
    .iframe-info {
        padding-inline: 5%;
    }

    .iframe-info .iframe-left {
        max-width: 50%;
        min-width: 50%;
    }
}

@media screen and (max-width: 800px) {
    .iframe-info {
        flex-direction: column;
    }

    .iframe-info .iframe-left {
        max-width: 100%;
        min-width: 100%;
    }

    .info-right div h2,
    .info-right a h2 {
        min-width: 90px;
    }

    .info-right div,
    .info-right a {
        gap: .5rem;
    }

    .info-right div svg,
    .info-right a svg {
        margin-top: .2rem;
    }

    .info-right div *,
    .info-right a * {
        font-size: 1rem;
        line-height: 1.4;
    }

    .iframe-info .iframe-left iframe {
        height: 350px;
        margin-bottom: 2rem;
    }
}

/* ------------------ */
/* services-one */

.services-one {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-inline: 5%;
}

.services-one * {
    text-align: center;
}

.services-one h2,
.services-one h1 {
    font-size: 2.25rem;
    font-weight: 600 !important;
    line-height: 1.2;
}

.services-one p {
    font-size: 1.1rem;
    max-width: 80%;
}

.services-one-blogs p {
    display: block !important;
}

@media screen and (max-width: 1700px) {

    .services-one h2,
    .services-one h1 {
        font-size: 1.85rem;
    }

    .services-one p {
        max-width: 100%;
    }
}

@media screen and (max-width:1200px) {
    .services-one p {
        max-width: 90%;
    }
}

@media screen and (max-width: 800px) {

    .services-one h2,
    .services-one h1 {
        font-size: 1.5rem;
        max-width: 100%;
    }

    .services-one h1 br {
        display: none;
    }

    .services-one p {
        display: none;
        max-width: 100%;
    }
}

/* ----------------------- */
/* metrics-automatic */

.metrics-automatic {
    display: flex;
    padding: 2.5rem 5%;
    justify-content: space-between;
    gap: 1rem;
    background: var(--primary);
}

.metrics-automatic .metrics-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: calc(25% - 2rem);
    max-width: calc(25% - 2rem);
}

.metrics-automatic .metrics-div * {
    text-align: center;
}

.metrics-automatic .metrics-div .value {
    font-size: 3rem;
    font-weight: 900 !important;
    max-width: max-content;
    position: relative;
    line-height: 1;
}

.metrics-automatic .metrics-div .value::after {
    content: '+';
    font-size: inherit;
}

.metrics-automatic .metrics-div .value.value-last::after {
    content: '%';
    font-size: inherit;
}

.metrics-automatic .metrics-div .value-description {
    font-size: 1.25rem;
    line-height: 1.5;
}

.metrics-automatic .metrics-div .value-description span {
    font-weight: 900 !important;
    font-size: inherit;
    line-height: 1.5;
}

.metrics-automatic * {
    color: white;
}

@media screen and (max-width: 1700px) {
    .metrics-automatic .metrics-div .value {
        font-size: 2.75rem;
    }

    .metrics-automatic .metrics-div .value-description {
        font-size: 1.05rem;
    }
}

@media screen and (max-width: 800px) {
    .metrics-automatic {
        padding-block: 2rem;
        gap: 2rem 1rem;
        flex-wrap: wrap;
    }

    .metrics-automatic-about {
        padding-bottom: 3rem;
    }

    .metrics-automatic .metrics-div {
        gap: .5rem;
        max-width: calc(50% - .5rem);
        min-width: calc(50% - .5rem);
    }

    .metrics-automatic .metrics-div .value {
        font-size: 2rem;
    }

    .metrics-automatic .metrics-div .value-description,
    .metrics-automatic .metrics-div .value-description span {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* -------------------------- */
/* gallery */
.gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 1rem;
    padding: 0 5%;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-wrapper {
    position: relative;
}

/* Large vertical images
.gallery .big {
    grid-row: span 2;
}

Wide horizontal images
.gallery .wide {
    grid-column: span 2;
} */

#absolute-logo {
    position: absolute;
    height: 3rem;
    width: 3rem;
    left: 5%;
    top: 1rem;
}


/* Tablet */
@media (max-width: 1200px) {

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }

}


/* Mobile */
@media (max-width: 800px) {

    .gallery {
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: 250px;
    }

    #absolute-logo {
        height: 2.4rem;
        width: 2.4rem;
    }

}

/* ------------------- */
/* images for blogs */
.image-for-blogs {
    padding: 0 20%;
}

.image-for-blogs img {
    width: 100%;
    height: 600px;
    display: block;
    border: 1px solid var(--white2);
    border-radius: 1rem;
    object-fit: cover;
    object-position: 50% 0%;
}

@media screen and (max-width: 1700px) {
    .image-for-blogs {
        padding: 0 15%;
    }
}

@media screen and (max-width: 1200px) {
    .image-for-blogs {
        padding: 0 5%;
    }

    .image-for-blogs img {
        height: 400px;
    }
}

@media screen and (max-width: 800px) {
    .image-for-blogs img {
        height: 250px;
    }
}

/* ------------------- */
/* main blog content */
.blogs-content-div-main {
    padding: 0 20%;
}

.blogs-content-div-main h2 {
    font-weight: 600 !important;
    font-size: 2rem;
    line-height: 1.1;
}

.blogs-content-div-main h3 {
    font-style: italic;
    font-weight: 600 !important;
}

.blogs-content-div-main * {
    margin-top: 2rem;
    font-size: 1.2rem;
    line-height: 1.5;
}

.blogs-content-div-main p,
.blogs-content-div-main ul,
.blogs-content-div-main h3 {
    margin-top: 1rem;
}

.blogs-content-div-main ul li {
    margin-top: .25rem;
}

.blogs-content-div-main ul {
    padding-left: 1.5rem;
}

.blogs-content-div-main h6 {
    border-top: 1px solid var(--white2);
    padding-top: 1rem;
    margin-top: 1rem;
}

.blogs-content-div-main p strong,
.blogs-content-div-main h6 strong,
.blogs-content-div-main ul strong {
    font-weight: 600 !important;
}

@media screen and (max-width: 1700px) {
    .blogs-content-div-main {
        padding: 0 15%;
    }
}

@media screen and (max-width: 800px) {

    .blogs-content-div-main * {
        font-size: 1rem;
    }

    .blogs-content-div-main h2 {
        font-size: 1.5rem;
    }

    .blogs-content-div-main {
        padding: 0 5%;
    }
}

/* ---------------------------- */
/* google-review-main */

/* .google-review-main{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 5%;
    grid-template-rows: auto;
    gap: 1rem;
}

.google-review-item {
    height: 100%;
    overflow: hidden;
}

.google-review-item img{
    width: 100%;
    /* height: 100%; */
/* object-fit: cover; */

.google-review-main {
    /* Defines the number of columns and spacing */
    column-count: 3;
    column-gap: .75rem;
    width: 100%;
    padding: 0 5%;
    display: none !important;
}

.google-review-item {
    /* Prevents cards from breaking across columns */
    break-inside: avoid;
    margin-bottom: .75rem;
    width: 100%;
}

.google-review-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    border: 1px solid var(--white2);
}

@media (max-width: 1200px) {
    .google-review-main {
        column-count: 2;
    }
}

@media (max-width: 800px) {
    .google-review-main {
        column-count: 1;
    }

    .google-review-item {
        margin-bottom: .5rem;
    }

    .google-review-main {
        column-gap: .5rem;
    }
}

/* --------------------------------- */
/* thank-you */

.thank-you {
    padding: 0 15%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.thank-you * {
    text-align: center;
}

.thank-you h2 {
    font-size: 2.5rem;
    font-weight: 600 !important;
    line-height: 1.1;
}

.thank-you img {
    max-width: 100%;
}

.thank-you p {
    font-size: 1.5rem;
    max-width: 90%;
}

.thank-you a {
    padding: 1rem 2rem;
    background: var(--primary);
    border-radius: 2rem;
    color: var(--white1);
    font-weight: 600 !important;
    text-transform: capitalize;
}

@media screen and (width <=800px) {
    .thank-you h2 {
        font-size: 1.5rem;
    }

    .thank-you {
        padding: 0 5%;
    }

    .thank-you p {
        font-size: 1rem;
        max-width: 100%;
    }
}

/* ---------------------------- */
/* actual-services */

.actual-services {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 0rem 20%;
}

.actual-services .actual-services-div {
    display: flex;
    gap: 5%;
}

.actual-services .actual-services-div:nth-child(even) {
    flex-direction: row-reverse;
}

.actual-services .asd-left {
    max-width: 50%;
    min-width: 50%;
}

.actual-services .asd-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.actual-services .asd-left img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 350px;
    border-radius: .5rem;
    border: 1px solid var(--white2);
}

.actual-services .actual-services-div a {
    /* background: var(--secondary); */
    background: var(--white1);
    padding: 1rem 2rem;
    display: inline-block;
    border-radius: 3rem;
    max-width: max-content;
    border: 1px solid var(--black1);
    font-weight: 600 !important;
}

.actual-services .actual-services-div h2 {
    font-weight: 600 !important;
    font-size: 2rem;
}

.actual-services .actual-services-div h4 {
    opacity: .5;
    font-size: 1.25rem;
}

.actual-services .actual-services-div h6 {
    display: flex;
    gap: .25rem;
    flex-wrap: wrap;
}

.actual-services .actual-services-div h6 span {
    background: var(--primary);
    color: white;
    border-radius: 3rem;
    padding: .5rem 1.25rem;
}

@media screen and (max-width: 1700px) {
    .actual-services {
        gap: 4rem;
        padding: 0 5%;
    }
}

@media screen and (max-width: 1200px) {
    .actual-services {
        gap: 3rem;
        padding: 0rem 5%;
    }

    .actual-services .actual-services-div h2 {
        font-size: 1.5rem;
    }

    .actual-services .actual-services-div h4 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 800px) {

    .actual-services .actual-services-div,
    .actual-services .actual-services-div:nth-child(even) {
        flex-direction: column;
        gap: 1rem;
    }

    .actual-services .actual-services-div a {
        padding: .75rem 1rem;
    }

    .actual-services .asd-left img {
        height: 200px;
        border-width: 1px;
        border-color: gainsboro;
    }

    .actual-services .actual-services-div h2 {
        font-size: 1.25rem;
    }

    .actual-services .asd-right {
        gap: .8rem;
    }

    .actual-services .actual-services-div h6 span {
        padding: .5rem 1rem;
        font-size: .9rem;
    }

    .actual-services .asd-left {
        max-width: 100%;
        min-width: 100%;
    }
}

/* ---------------------------- */
/* clinic-patients-slider */

.clinic-patients-slider {
    height: 350px;
    max-width: 90%;
    margin: auto;
}

.clinic-patients-slider .swiper-wrapper {
    height: 100%;
}

.clinic-patients-slider .swiper-wrapper .swiper-slide {
    height: 100%;
    /* border: 1px solid red; */
    position: relative;
    background-size: cover !important;
}

.clinic-patients-slider .swiper-btns-common {
    background: var(--primary);
    padding: 1rem;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 0;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 0;
}

.clinic-patients-slider .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.clinic-patients-slider .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    color: white;
    font-size: 1.5rem;
    font-weight: 600 !important;
}

.clinic-patients-slider .swiper-wrapper .ss-1 {
    background: url(./gallery/gal-1.jpeg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-2 {
    background: url(./gallery/gal-2.jpg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-3 {
    background: url(./gallery/gal-3.jpg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-4 {
    background: url(./gallery/gal-4.jpg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-5 {
    background: url(./gallery/gal-5.jpg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-6 {
    background: url(./gallery/gal-6.jpg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-7 {
    background: url(./gallery/gal-7.jpg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-8 {
    background: url(./gallery/gal-8.jpg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-9 {
    background: url(./gallery/gal-9.jpg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-10 {
    background: url(./gallery/gal-10.jpg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-11 {
    background: url(./gallery/gal-11.jpg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-12 {
    background: url(./gallery/gal-12.jpg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-13 {
    background: url(./gallery/gal-13.jpg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-14 {
    background: url(./gallery/gal-14.jpg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-15 {
    background: url(./gallery/gal-15.jpeg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-16 {
    background: url(./gallery/gal-16.jpeg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-17 {
    background: url(./gallery/gal-17.jpeg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-18 {
    background: url(./gallery/gal-18.jpeg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-19 {
    background: url(./gallery/gal-19.jpeg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-20 {
    background: url(./gallery/gal-20.jpeg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-21 {
    background: url(./gallery/gal-21.jpeg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-22 {
    background: url(./gallery/gal-22.jpeg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-23 {
    background: url(./gallery/gal-23.jpeg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-24 {
    background: url(./gallery/gal-24.jpeg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-25 {
    background: url(./gallery/gal-25.jpeg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-26 {
    background: url(./gallery/gal-26.jpeg) no-repeat 50% 50%;
}

.clinic-patients-slider .swiper-wrapper .ss-27 {
    background: url(./gallery/gal-27.webp) no-repeat 50% 50%;
}

@media screen and (max-width: 800px) {
    .clinic-patients-slider {
        height: 250px;
    }
}

/* --------------------- */
/* restroom */

.restroom {
    display: flex;
    gap: 1%;
    justify-content: space-between;
    padding: 0rem 5% 0;
    /* background-color: red; */
}

.restroom-heading {
    font-size: 2.25rem;
    text-align: center;
    padding-inline: 5%;
    padding-bottom: 1rem;
    font-weight: 600 !important;
}

.restroom .rest-div {
    width: 25%;
    border: 1px solid var(--white2);
    max-width: 25%;
    padding: 2rem;
}

.restroom .rest-div:hover {
    background: var(--secondary);
    cursor: pointer;
}

.restroom h2 {
    margin: 1rem 0 .75rem;
    font-size: 1.5rem;
    font-weight: 600 !important;
}

.restroom svg {
    font-size: 1.25rem;
    /* background: linear-gradient(120deg, var(--color1), var(--color2)); */
    background: var(--primary);
    padding: .75rem;
    border-radius: .5rem;
}

.restroom svg * {
    color: var(--white1);
}

.restroom p {
    font-size: 1.1rem;
    line-height: 1.5;
}

@media screen and (max-width: 1700px) {
    .restroom {
        padding: 0rem 5% 0;
    }

    .restroom-heading {
        font-size: 2rem;
    }
}

@media screen and (max-width: 800px) {
    .restroom {
        flex-direction: column;
        gap: .5rem;
    }

    .restroom-heading {
        font-size: 1.5rem;
        padding-bottom: .5rem;
    }

    .restroom h2 {
        font-size: 1.2rem;
        margin: .5rem 0 .25rem;
    }

    .restroom svg,
    .restroom p {
        font-size: 1rem;
    }

    .restroom svg {
        padding: .75rem;
        border-radius: .5rem;
    }

    .restroom .rest-div {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
}

/* ------------------------------- */
/* about-the-surgeon */

.about-the-surgeon {
    display: flex;
    justify-content: center;
    /* background: var(--secondary); */
    position: relative;
    padding-top: 15rem;
}

.about-the-surgeon img {
    z-index: 100;
    max-width: 100%;
}

.about-the-surgeon h2 {
    font-size: 140px;
    position: absolute;
    opacity: .1 !important;
    top: 10%;
    text-align: center;
    font-weight: 900 !important;
    line-height: .85;
}

@media screen and (max-width: 1700px) {
    .about-the-surgeon h2 {
        font-size: 130px;
    }

    .about-the-surgeon {
        padding-top: 11rem;
    }
}

@media screen and (max-width: 1200px) {
    .about-the-surgeon h2 {
        font-size: 100px;
        max-width: 100%;
    }

    .about-the-surgeon {
        padding-top: 9rem;
    }
}

@media screen and (max-width: 800px) {
    .about-the-surgeon h2 {
        font-size: 40px;
        line-height: 1.1;
        padding-inline: 5%;
        top: 4%;
        opacity: .2 !important;
    }

    .about-the-surgeon {
        padding-top: 6rem;
    }
}

@media screen and (max-width: 400px) {
    .about-the-surgeon h2 {
        font-size: 35px;
        top: 6%;
    }
}

@media screen and (max-width: 350px) {
    .about-the-surgeon h2 {
        font-size: 30px;
        top: 8%;
    }
}


/* -------------------------------- */
/* about-ceo */
.about-ceo {
    padding: 0 15%;
    display: flex;
    justify-content: space-between;
}

.about-ceo-right {
    width: 45%;
    max-width: 45%;
}

.about-ceo img {
    max-width: 50%;
    width: 50%;
    max-height: 800px;
    object-fit: cover;
    object-position: 0% 0%;
    border-radius: .5rem;
}

.about-ceo-right h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.about-ceo-right h3 {
    font-size: 1.75rem;
}

.about-ceo-right p {
    margin-top: 2rem;
    /* opacity: .75; */
    padding-left: 2rem;
    font-size: 1.35rem;
    line-height: 1.3;
    position: relative;
}

.about-ceo-right p strong {
    font-size: inherit;
    font-weight: 600;
}

.about-ceo-right p::before {
    height: 10px;
    width: 10px;
    top: 10px;
    content: '';
    background: var(--primary);
    left: 0;
    position: absolute;
}

@media screen and (max-width: 1700px) {

    .about-ceo img {
        max-height: 750px;
    }

    .about-ceo {
        padding-inline: 5%;
    }
}

@media screen and (max-width : 800px) {
    .about-ceo {
        flex-direction: column;
    }

    .about-ceo-right h2 {
        font-size: 1.75rem;
        margin-top: 1.5rem;
    }

    .about-ceo-right h3 {
        font-size: 1.25rem;
        line-height: 1.2;
        margin-top: .5rem;
    }

    .about-ceo-right p {
        margin-top: 1rem;
        font-size: 1rem;
        line-height: 1.5;
    }

    .about-ceo img,
    .about-ceo-right {
        width: 100%;
        max-width: 100%;
    }

    .about-ceo img {
        height: 450px;
    }
}

/* ------------------------- */
/* home-01 */
.home-01 {
    display: flex;
    flex-direction: column;
    padding: 0rem 5%;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 100%;
    overflow-x: hidden;
}

.home-01 h2 {
    line-height: 1.2;
    font-size: 4rem;
    z-index: 10;
    font-weight: 200 !important;
    max-width: 80%;
    letter-spacing: -2%;
}

.home-01 h2 span {
    font-size: inherit;
    font-weight: 900 !important;
    font-style: italic;
    line-height: inherit;
    z-index: 10;
}

.home-01 h4 {
    font-size: 1.75rem;
    max-width: 50%;
    opacity: .5 !important;
    font-style: italic;
    z-index: 10;
}

.home-01 .ctas {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
    z-index: 10;
}

.home-01 .ctas a {
    background: rgb(0, 0, 0);
    padding: .75rem 2.5rem;
    border-radius: 2rem;
    color: rgb(255, 255, 255);
    display: inline-block;
    z-index: 10;
    /* text-transform: uppercase; */
    font-weight: 600 !important;
}

.home-01 .ctas a:last-child {
    background: var(--primary);
    color: rgb(255, 255, 255);
}

.home-01 .ctas a:hover {
    background: var(--primary);
    color: rgb(255, 255, 255);
}

.home-01 .trusted {
    background: rgb(255, 255, 255);
    max-width: max-content;
    padding: .75rem 1.5rem .75rem 2.5rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
    border: 1px solid gainsboro;
}

.home-01 .trusted img {
    height: 25px;
    width: 25px;
    margin-left: -1.25rem;
}

.home-01 .trusted span {
    font-weight: 600;
    margin-right: -.5rem;
}

.home-01 * {
    text-align: center;
}

.home-01 .img1 {
    border-radius: 1rem;
    width: 80%;
    height: 600px;
    object-fit: cover;
    margin-top: 1.5rem;
    z-index: 10;
    object-position: 50% 60%;
}

.home-01 .absolute-img {
    position: absolute;
    opacity: .4;
    z-index: 0;
    max-width: 100%;
    filter: blur(100px);
    width: 50%;
    left: 0%;
    top: 0%;
    /* animation: zigzag 60s linear infinite; */
    display: none;
}

/* 1. Define the spin animation */
@keyframes zigzag {
    0% {
        left: -20%;
        top: 0%;
    }

    25% {
        left: 80%;
        top: 10%;
    }

    50% {
        left: 50%;
        top: -10%;
    }

    75% {
        left: 20%;
        top: 10%;
    }

    100% {
        left: -20%;
        top: 0%;
    }
}

@media screen and (max-width: 1700px) {
    .home-01 h2 {
        font-size: 3.1rem;
        max-width: 60%;
    }

    .home-01 .img1 {
        width: 100%;
        height: 500px;
    }

    .home-01 {
        gap: 1.5rem;
    }

    .home-01 h4 {
        max-width: 60%;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1200px) {
    .home-01 h2 {
        padding-top: 2rem;
        max-width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .home-01 {
        flex-direction: column;
        gap: 1.25rem;
    }

    .home-01 h2 {
        font-size: 1.4rem;
        padding-top: 0;
    }

    /* .home-01 h2 br {
        display: none;
    } */

    .home-01 h4 {
        font-size: 1rem;
        max-width: 100%;
        line-height: 1.25;
    }

    .home-01 .trusted {
        padding: .5rem 1rem .5rem 2rem;
        gap: .95rem;
    }

    .home-01 .trusted span {
        margin-left: -.5rem;
    }

    .home-01 .trusted img {
        height: 20px;
        width: 20px;
        margin-left: -1.2rem;
    }

    .home-01 .ctas {
        gap: .25rem;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .home-01 .ctas a {
        padding: .65rem 2rem;
        font-size: .9rem;
    }

    .home-01 .img1 {
        width: 100%;
        height: 200px;
        margin-top: 0;
    }
}

@media screen and (max-width: 400px) {
    .home-01 h2 {
        font-size: 1.3rem;
    }
}

/* ---------------------- */
/* sec-two */

.sec-two {
    display: flex;
    padding: 0rem 15%;
}

.sec-two-left {
    width: 40%;
    opacity: .75;
    display: flex;
    height: max-content;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.sec-two-left * {
    font-size: 1.5rem;
}

.sec-two-left svg {
    font-size: 1rem;
}

.sec-two-right {
    max-width: 70%;
}

.sec-two-right h3 {
    font-size: 1.75rem;
}

.sec-two-right h3 * {
    font-size: .75rem;
    opacity: .5;
    margin-bottom: .25rem;

}

.sec-two-right a {
    background: gainsboro;
    color: black;
    display: block;
    max-width: max-content;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    border-radius: 2rem;
}

.sec-two-right a svg {
    margin-left: .5rem;
    transform: rotate(-40deg);
}

.sec-two-right a:hover {
    background: var(--primary);
    color: var(--white1);
}


.sec-two-right a:hover * {
    color: var(--white1);
}

@media screen and (width <=1700px) {
    .sec-two-right h3 {
        font-size: 1.5rem;
    }

    .sec-two {
        padding-inline: 5%;
    }
}

@media screen and (width <=800px) {
    .sec-two {
        padding: 0 5% 0;
        flex-direction: column;
        gap: 1.5rem;
    }

    .sec-two-right,
    .sec-two-left {
        max-width: 100%;
        width: 100%;
    }

    .sec-two-left {
        gap: .5rem;
    }

    .sec-two-left * {
        font-size: 1.25rem;
    }

    .sec-two-left svg {
        font-size: .75rem;
    }

    .sec-two-right h3 {
        font-size: 1.1rem;
    }

    .sec-two-right a,
    .sec-two-right a svg {
        font-size: 1rem;
    }

    .sec-two-right a {
        padding: .75rem 1.25rem;
    }
}

/* ----------------------- */
/* services main home */

.services-main {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 20% 0;
    max-width: 100%;
}

.google-review-heading {
    font-size: 2.25rem;
    font-weight: 600 !important;
    text-align: center;
    padding-inline: 5%;
}

/* LEFT IMAGE */
.sm-left {
    /* border: 1px solid red; */
    min-width: 50%;
    height: max-content;
    position: sticky;
    top: 150px;
}

.sm-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid gainsboro;
    display: block;
    transition: opacity 1s ease;
    border-radius: 3rem;
}

.sm-left #logo-sm-left {
    height: 50px;
    width: 50px;
    position: absolute;
    left: 5%;
    top: 1rem;
}

/* RIGHT LIST */
.sm-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding-right: 10px;
}

/* EACH ITEM */
.sm-right-div {
    padding: .75rem 1rem .75rem 2rem;
    border-radius: 2rem;
    cursor: pointer;
    background: whitesmoke;
    border: 1px solid black;
    transition: all 0.5s ease, height 2s ease !important;
}

.sm-right-div h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600 !important;
}

.sm-right-div p {
    display: none;
    font-size: 1.25rem;
    opacity: .5;
    margin-top: .75rem;
    line-height: 1.5;
}

/* ACTIVE STATE */
.sm-right-div.active {
    background: var(--primary);
    padding-block: 1rem;
    border-radius: 1.25rem;
}

.sm-right-div.active h2 {
    background: var(--secondary);
    background-clip: text;
    color: transparent;
}

.sm-right-div.active * {
    color: white;
}

.sm-right-div.active p {
    display: block;
}


@media screen and (max-width: 1700px) {
    .services-main {
        padding: 2rem 15% 0;
    }

    .google-review-heading {
        font-size: 2rem;
    }
}

@media screen and (max-width: 1200px) {
    .services-main {
        padding: 2rem 5% 0;
    }
}

/* RESPONSIVE */
@media screen and (max-width: 800px) {
    .services-main {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }

    .sm-right-div h2 {
        margin: 0;
        font-size: 1.25rem;
    }

    .sm-right-div {
        padding: .5rem 1rem .5rem 1.5rem;
        border-radius: 1rem;
    }

    .google-review-heading {
        font-size: 1.5rem;
    }

    .sm-right-div p {
        font-size: 1.1rem;
    }

    .sm-right-div p br {
        display: none;
    }

    .sm-right-div.active {
        padding-block: 1rem;
    }

    .sm-left img {
        border-radius: 1rem;
    }

    .sm-left {
        position: relative;
        top: 0;
        width: 100%;
    }

    .sm-right {
        max-height: none;
        gap: .5rem;
    }
}

/* ---------------------- */
/* back2normal */

.back2normal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0rem 15% 0;
    /* background: whitesmoke; */
    position: relative;
    border-bottom: 1px solid gainsboro;
}

.back2normal img {
    max-width: 60%;
    display: block;
    z-index: 10;
    margin-top: -4rem;
}

.back2normal * {
    text-align: center;
}

.back2normal a {
    background: black;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600 !important;
    border-radius: 2rem;
    z-index: 100;
}

.back2normal a:hover {
    background: var(--primary);
    color: var(--white1);
}

.back2normal p {
    font-size: 1.5rem;
    opacity: .5 !important;
}

.back2normal h6 {
    position: absolute;
    font-size: 450px;
    bottom: 10%;
    z-index: 0;
    line-height: 1;
    opacity: .05 !important;
    font-weight: 900 !important;
    letter-spacing: -5%;
}

.back2normal h2 {
    font-size: 3rem;
    font-weight: 600 !important;
    line-height: 1;
    letter-spacing: -5%;
}

@media screen and (max-width: 1700px) {
    .back2normal h6 {
        font-size: 25vw;
    }

    .back2normal {
        padding-inline: 5%;
    }

    .back2normal p {
        font-size: 1.25rem;
    }

    .back2normal h2 {
        font-size: 2.75rem;
    }

    .back2normal img {
        margin-top: -2rem;
    }
}

@media screen and (max-width: 1200px) {
    .back2normal h2 {
        font-size: 2rem;
    }

    .back2normal img {
        max-width: 50%;
    }
}

@media screen and (max-width: 800px) {
    .back2normal img {
        max-width: 100%;
        margin-top: 0rem;
    }

    .back2normal {
        gap: 1rem;
    }

    .back2normal h6 {
        bottom: 15%;
    }

    .back2normal p {
        font-size: 1rem;
    }

    .back2normal a {
        padding: .75rem 1.5rem;
    }

    .back2normal h2 {
        font-size: 1.75rem;
    }
}

/* ---------------------- */
/* section 3 flex */

.section-03-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0rem 5% 0;
    position: relative;
}

.section-03-flex .s3f-div {
    max-width: 14%;
    width: 14%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-03-flex .s3f-div * {
    text-align: center;
}

.section-03-flex .s3f-div h2 {
    font-size: 1.75rem;
    font-weight: 900 !important;
}

.section-03-flex .s3f-div p {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: .5;
    margin-top: -.5rem;
}

.section-03-flex .s3f-div h5 {
    background: var(--primary);
    padding: 1rem;
    color: var(--white1);
    font-weight: 900 !important;
    z-index: 100;
    position: relative;
    border-radius: 2rem;
}

.section-03-flex .s3f-div h5::before {
    content: '>';
    position: absolute;
    font-size: 2rem;
    font-weight: 900 !important;
    left: -250%;
    top: .35rem;
    color: var(--primary);
}

.section-03-flex>div:nth-child(2) h5:before {
    display: none;
}

.absol-line {
    position: absolute;
    height: 4px;
    width: 87%;
    left: 6.5%;
    top: 1.5rem;
    background: var(--white2);
}

.sec-03-flex-head {
    font-size: 2.25rem;
    text-align: center;
    padding-bottom: 2rem;
    padding-inline: 5%;
}

@media screen and (max-width: 1700px) {
    .section-03-flex .s3f-div h5::before {
        left: -180%;
    }

    .sec-03-flex-head {
        font-size: 2rem;
    }

    .section-03-flex .s3f-div h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1200px) {
    .section-03-flex .s3f-div h5::before {
        left: -50px;
    }

    .section-03-flex .s3f-div h2 {
        font-size: 1.25rem;
    }

}

@media screen and (max-width: 800px) {
    .section-03-flex {
        flex-direction: row;
        flex-wrap: wrap;
        gap: .5rem;
    }

    .sec-03-flex-head {
        font-size: 1.5rem;
        padding-bottom: 1rem;
    }

    .section-03-flex .s3f-div {
        width: 90%;
        max-width: 95%;
        margin: auto;
        flex-direction: row;
        justify-content: flex-start;
        background: var(--white2);
        border-radius: 2rem;
    }

    .section-03-flex .s3f-div h5::before {
        display: none;
    }

    .section-03-flex .s3f-div h2 {
        font-size: 1.1rem;
    }

    .section-03-flex .s3f-div p {
        font-size: .85rem;
        display: none;
    }

    .absol-line {
        /* transform: rotate(90deg);
        height: 4px;
        width: 100%;
        left: -150px;
        top: 10rem !important; */
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .section-03-flex .s3f-div {
        width: 100%;
        max-width: 100%;
    }

    .section-03-flex .s3f-div h2 {
        font-size: 1rem;
    }

}


/* ------------------------- */
/* slider-usp */
.slider-usp {
    max-width: 90%;
    margin: auto;
    height: 650px;
}

.slider-usp .swiper-wrapper {
    height: 100%;
    width: 100%;
}

.slider-usp .swiper-slide {
    height: 100%;
    width: 60%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 2rem;
    gap: .5rem;
    box-sizing: border-box;
    border-radius: 1rem;
    background-size: cover !important;
    /* opacity: 0.5; */
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.9);
}

/* Targets only the center/active 70% slide */
.slider-usp .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    border: 5px solid var(--primary);
}

.slider-usp .swiper-slide h2 {
    font-size: 2.5rem;
    font-weight: 900 !important;
    margin: 0;
}

.slider-usp .swiper-slide h6 {
    font-size: 1.5rem;
    line-height: 1.5;
    max-width: 70%;
    margin: 0;
}

.slider-usp * {
    color: var(--white1);
}

.usp-1 {
    background:
        linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, .05)),
        url("./flex/1.jpg") 50% 70% no-repeat;
}

.usp-2 {
    background:
        linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, .05)),
        url("./flex/2.jpg") 50% 70% no-repeat;
}

.usp-3 {
    background:
        linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, .05)),
        url("./flex/3.jpeg") 50% 70% no-repeat;
}

.usp-4 {
    background:
        linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, .05)),
        url("./flex/4.jpg") 50% 70% no-repeat;
}

.usp-5 {
    background:
        linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, .05)),
        url("./flex/5.jpeg") 50% 70% no-repeat;
}

@media screen and (max-width: 800px) {
    .slider-usp .swiper-slide {
        width: 100%;
        padding: 1.25rem;
    }

    .slider-usp .swiper-slide h2 {
        font-size: 1.5rem;
    }

    .slider-usp .swiper-slide h6 {
        font-size: 1rem;
        max-width: 100%;
    }

    .slider-usp .swiper-slide-active {
        border-width: 2px;
    }

    .slider-usp {
        height: 400px;
    }
}

/* ----------------------------- */
/* yt-slider */

.yt-slider {
    max-width: 90%;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.yt-slider .swiper-wrapper {
    height: 100%;
}

.yt-slider .swiper-slide {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.yt-slider .swiper-slide iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* .yt-slider .swiper-slide iframe {
    pointer-events: none;
} */

/* .yt-slider .swiper-slide-active iframe {
    pointer-events: auto;
} */

/* Navigation Buttons */

.yt-slider .swiper-btns-common {
    width: 45px;
    height: 45px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-slider .swiper-button-prev::after,
.yt-slider .swiper-button-next::after {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900 !important;
}

/* Tablet */

@media (max-width: 1200px) {
    .yt-slider {
        height: 250px;
    }
}

/* Mobile */

@media (max-width: 800px) {
    .yt-slider {
        height: 220px;
    }


    .yt-slider .swiper-button-prev:after,
    .swiper-rtl .swiper-button-next:after,
    .yt-slider .swiper-button-next:after,
    .swiper-rtl .swiper-button-prev:after {
        font-size: 1rem;
    }

    .yt-slider .swiper-btns-common {
        padding: .5rem;
        height: 40px;
    }
}

/* -------------------------- */
/* testy-arunkannan */

.testy-arunkannan {
    max-width: 90%;
    margin: auto;
    overflow: visible;
}

.testy-arunkannan .ta-head {
    font-size: 2.25rem;
    font-weight: 600 !important;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-inline: 5%;
}

.testy-arunkannan .swiper-pagination {
    /* background: red !important; */
    margin-top: 20px;
    position: relative;
}

.testy-arunkannan .swiper-wrapper {
    max-width: 95% !important;
    /* padding-top: 4rem; */
}

.testy-arunkannan .swiper-pagination-bullet {
    /* width: 50px; */
    height: 10px;
    width: 10px;
    border-radius: 1rem;
    transition: width 1s ease;
}

.testy-arunkannan .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 100px;
}

.testy-arunkannan .swiper-slide {
    padding: 2.5rem;
    width: 100%;
    border: 1px solid var(--white2);
}

.testy-arunkannan .swiper-slide .line1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    position: relative;
    padding-right: 40px;
}

.testy-arunkannan .swiper-slide .line1 h3 {
    font-size: 1.25rem;
    font-weight: 600 !important;
}

.testy-arunkannan .swiper-slide .line1::after {
    content: url('https://cdn.trustindex.io/assets/platform/Google/icon.svg');
    position: absolute;
    height: 30px;
    width: 30px;
    right: 0;
}

.testy-arunkannan .swiper-slide .line1 img {
    height: 40px;
}

.testy-arunkannan .swiper-slide .line2 {
    margin: 1rem 0;
}

.testy-arunkannan .swiper-slide .line2 * {
    color: goldenrod;
}

.testy-arunkannan .swiper-slide .line3 {
    font-size: 1.1rem;
    /* max-height: 200px; */
    overflow: hidden;
}

.testy-arunkannan .swiper-slide:hover .line3 {
    max-height: max-content;
}

.testy-arunkannan .swiper-btns-common {
    background: var(--primary);
    padding: 1rem;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 0;
}

/* .swiper-button-prev,
.swiper-button-next {
    bottom: auto !important;
    top: 1.25rem !important;
} */

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 0;
}

.testy-arunkannan .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.testy-arunkannan .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    color: white;
    font-size: 1.5rem;
    font-weight: 600 !important;
}

@media screen and (max-width: 1700px) {
    .testy-arunkannan .ta-head {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 1200px) {
    .testy-arunkannan .ta-head {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 800px) {
    .testy-arunkannan .ta-head {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .testy-arunkannan .swiper-slide {
        padding: 1.5rem 2rem;
    }

    .testy-arunkannan .swiper-button-prev:after,
    .swiper-rtl .swiper-button-next:after,
    .testy-arunkannan .swiper-button-next:after,
    .swiper-rtl .swiper-button-prev:after {
        font-size: 1rem;
    }

    .testy-arunkannan .swiper-btns-common {
        padding: .5rem;
        height: 40px;
    }

    .testy-arunkannan .swiper-pagination-bullet {
        /* width: 20px; */
        height: 5px;
    }
}

/* ------------------ */
/* timings */

.timing-table {
    max-width: 60%;
    margin: auto;
    width: 60%;
    border-collapse: collapse;
    /* Merges adjacent cell borders into single lines */
}

th,
td {
    border: 1px solid #dddddd;
    background: white;
    /* Adds clean boundaries around cells */
    padding: .75rem;
    /* Creates interior space around text */
    text-align: center;
    /* Aligns cell data consistently */
}

th{
    background: var(--primary);
    color: white;
}

@media screen and (max-width: 800px) {
    .timing-table {
        max-width: 90%;
        width: 90%;
    }
}