@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */

/* universal */
*,
*:after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 18px;
    font-family: "Sora", sans-serif;
    /* font-family: "Inter", sans-serif; */
    letter-spacing: -4% !important;
    scroll-behavior: smooth !important;
}

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

    *,
    *:after,
    *::before {
        font-size: 17px;
        letter-spacing: -6.5% !important;
    }
}

:root {
    --blue1: #00008B;
    --blue2: #e2e9ff;
}

/* Html body */
body,
html {
    max-width: 100%;
    scroll-behavior: smooth !important;
    /* min-height: 500vh; */
}

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

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

    html,
    body {
        display: none !important;
        opacity: 0 !important;
    }
}

/* media query width */
/* 400px for low pixels mobiles */
/* 800px for high end mobiles */
/* 1200px for tablets */
/* 1700px for low end laptops */
/* normal css for more than 1700px laptops */

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

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

::selection {
    background: rgb(0, 0, 0);
    color: red;
}


/* ------------------------ */
/* 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: 6rem;
}

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

@media screen and (max-width: 800px) {
    .preloader img {
        max-width: 5rem;
    }
}

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

.whatsapp-hanging {
    position: fixed;
    right: 2rem;
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    bottom: 2rem;
    gap: .25rem;
    z-index: 1000 !important;
}

.whatsapp-hanging a {
    background-color: whitesmoke;
    padding: .75rem .85rem;
    border-radius: 50%;
    color: black;
    /* border: 1px solid; */
}


.whatsapp-hanging .what {
    background: #a9e8a5 !important;
}

.whatsapp-hanging .insta {
    background: #ffbb88 !important;
}

.whatsapp-hanging .phone {
    background: rgb(173, 214, 227) !important;
}

.whatsapp-hanging .yt {
    background: #f99b9b !important;
}

.whatsapp-hanging .ld {
    background: #abcbff !important;
}


@media screen and (max-width: 800px) {
    .whatsapp-hanging {
        gap: .15rem;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        right: 5%;
        bottom: 1rem;
        width: 90%;
        /* background-color: white; */
    }

    .whatsapp-hanging a {
        padding: .65rem .7rem;
    }
}


/* ------------------------ */
/* menu-naming */
.menu-naming {
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-naming * {
    color: white;
}

.menu-naming img {
    filter: invert(2);
    max-width: 32rem;
    padding-block: .75rem;
}

@media screen and (max-width: 800px) {
    .menu-naming img {
        max-width: 17rem;
    }
}

/* ------------------ */
/* mega-menu */
.mega-menu {
    padding: 0rem 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    gap: 3rem;
    border-top: 1px solid var(--blue1);
    position: relative !important;
}

.mega-menu * {
    color: white;
}

.mega-menu a {
    text-decoration: none;
    padding-block: 1rem;
}

.logo-home {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 1001;
}

.logo-home svg {
    margin-top: -.25rem;
    transform: scale(.95);
}

/* ---- Hamburger Button ---- */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 32px;
    height: 32px;
    background-color: rgb(255, 255, 255);
    align-items: center;
    justify-content: center;
}

.hamburger-btn i {
    width: 32px;
    height: 32px;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.hamburger-btn * {
    color: black;
}

.hamburger-btn .fa-xmark {
    display: flex;
    transform: rotate(1080deg);
}

.hamburger-btn.active .fa-bars {
    display: none;
    transform: rotate(1080deg);
}

.hamburger-btn .fa-xmark {
    display: none;
}

.hamburger-btn.active .fa-xmark {
    display: flex;
    transform: rotate(1080deg);
}

/* ---- Desktop Menu ---- */
.resposive-mega-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    width: max-content;
}

.submenu-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.submenu-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

/* Desktop hover dropdown */
.submenu {
    position: absolute;
    top: 53px;
    background: black;
    border-top: 1px solid var(--blue1);
    min-width: min-content;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.submenu a {
    padding: 0.75rem 1.2rem;
    white-space: nowrap;
}

.submenu a:hover {
    background: var(--blue1);
    cursor: pointer;
}

.submenu-2 {
    position: absolute;
    left: 0;
    max-height: 70vh;
    overflow-y: scroll;
    width: 100vw;
    display: flex;
    flex-direction: row;
    max-width: 100%;
    padding: 3rem 15%;
    gap: 2%;
}

.submenu-div {
    max-width: 24%;
    overflow: hidden;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.submenu-div h6 {
    font-size: 1.25rem;
    font-weight: 600;
}

.submenu-div a {
    padding: 0;
}

.submenu-div a:hover {
    background: none;
}

.submenu-div * {
    max-width: 100%;
}

.submenu-2::-webkit-scrollbar {
    display: none;
}


.submenu-div img {
    height: 200px;
    object-fit: cover;
}

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

    .submenu-2 {
        padding-inline: 10%;
    }
}

@media screen and (min-width: 1201px) {
    .has-submenu:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .has-submenu:hover .submenu-arrow {
        transform: rotate(180deg);
    }
}

/* ---- Mobile Styles ---- */
@media screen and (max-width: 1200px) {
    .mega-menu {
        padding: .75rem 5%;
        flex-wrap: wrap;
        justify-content: space-between;
        overflow-x: visible !important;
    }

    .hamburger-btn {
        display: flex;
        position: relative;
    }

    .mega-menu a {
        padding-block: 0;
    }

    .resposive-mega-menu a:last-child {
        padding-bottom: 1.25rem;
    }

    .resposive-mega-menu {
        position: absolute;
        top: 56px;
        left: 0;
        width: 100%;
        display: flex;
        /* Changed to flex layout */
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: black;
        border-top: 1px solid var(--blue1);

        /* Closed state */
        max-height: 0;
        height: max-content;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-20px);
        justify-content: flex-start;
        transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease;
    }

    .resposive-mega-menu.open {
        max-height: calc(100vh - 250px);
        /* Safe container window limit */
        opacity: 1;
        transform: translateY(0);
        overflow-y: auto;
        justify-content: flex-start;
        z-index: 1000000 !important;
        /* Enables clean internal scrolling */
        border-bottom: 2px solid rgb(255, 0, 0);
    }

    .resposive-mega-menu a {
        padding: 1rem 5%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        display: block;
        /* Ensures items clear correctly */
        width: 100%;
    }

    .has-submenu {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative;
    }

    .submenu-toggle {
        justify-content: space-between;
        padding: 1rem 5%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        width: 100%;
    }

    .has-submenu.active .submenu-toggle {
        border-bottom: none;
        background: var(--blue1);
    }

    .has-submenu.active .submenu-arrow {
        transform: rotate(180deg);
    }

    /* Mobile accordion structure */
    .submenu {
        position: static !important;
        /* Forces layout context back to normal flow */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        border: none !important;
        background: rgba(255, 255, 255, 0.05);
        width: 100% !important;

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .submenu a {
        padding: 0.85rem 2.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* ---- Mobile Specific Overrides for Submenu-2 ---- */
    .submenu.submenu-2 {
        display: flex !important;
        flex-direction: column !important;
        max-height: 0;
        /* Controlled entirely by JS dynamic scrollHeight */
        padding: 0 !important;
        gap: 0 !important;
    }

    .submenu-2 .submenu-div {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
        padding: 0.5rem 0 !important;
        gap: 0 !important;
        display: flex;
        flex-direction: column;
    }

    /* Target the layout labels ("Services One") on mobile */
    .submenu-2 .submenu-div h6 {
        font-size: 1.05rem;
        padding: 0.75rem 5%;
        margin: 0;
        border-bottom: none;
    }

    .submenu-2 .submenu-div img {
        display: none !important;
        /* Strip large layout breaks on phone screens */
    }

    /* Adjust nested hyperlinks alignment safely underneath headers */
    .submenu-2 .submenu-div a {
        padding: 0.75rem 7.5% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
        display: block !important;
    }
}

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

.metrics {
    background: var(--blue1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    padding: 3rem 8.5% 3rem;
}

.metrics * {
    color: white;
}

.metrics .number {
    font-size: 3rem;
    text-align: center;
    font-weight: 600;
}

.metrics .namings {
    font-size: 1.1rem;
    text-align: center;
}

.metrics .m-div {
    max-width: 16%;
    min-width: 16%;
}

@media screen and (max-width: 1700px) {
    .metrics .number {
        font-size: 2.5rem;
    }

    .metrics {
        padding-inline: 5%;
    }
}

@media screen and (max-width: 800px) {
    .metrics {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 1rem;
        padding: 2rem 5%;
    }

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

    .metrics .number {
        font-size: 1.75rem;
    }

    .metrics .namings {
        font-size: .9rem;
        padding-inline: 10%;
        text-align: center;
    }
}

/* ----------------------- */
/* tagline */

.tagline {
    padding: 4rem 5% 0;
    display: flex;
    align-items: center;
    margin-bottom: -20rem !important;
    justify-content: center;
    background: black;

}

.tagline h2 {
    font-size: 20vw;
    font-weight: 400;
    opacity: .3 !important;
    color: white;
    /* margin-bottom: -1.5rem; */
    line-height: .75 !important;
}

@media screen and (width <=800px) {
    .tagline {
        padding: 1rem 5% 0;
        padding-bottom: 7.5rem;
    }

    .tagline h2 {
        font-size: 17vw;
    }
}

/* ------------------------ */
/* sec-six */
.sec-six {
    padding: 4rem 10% 0;
    background: black;
}

.sec-six * {
    color: white;
}

.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: 40%;
}

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

.ft-left h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 400;
}

.ft-left p {
    font-size: 1.2rem;
    font-weight: 300;
}

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

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

.ft-middle-div h2 {
    font-size: 1.25rem;
    font-weight: 600;
    /* color: var(--blue1); */
}

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

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

@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 {
        font-size: 1.25rem;
        padding-bottom: .5rem;
        width: 100%;
        /* text-align: center; */
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

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

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

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

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

    .ft-left p {
        font-size: 1.1rem;
        line-height: 1.4;
    }

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

/* -------------------------- */
/* marquee */

.marquee {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: whitesmoke;
    /* border: 2px solid red; */
    position: relative;
}

.marquee-footer {
    margin-bottom: 0 !important;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
}

.marquee-item {
    padding: 5px 2rem;
    font-size: 1.25rem;
    flex-shrink: 0;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    border-right: none;
    padding-block: .75rem;
}

@media screen and (max-width: 800px) {
    .marquee-item {
        padding-block: .75rem;
        font-size: 1.25rem;
    }
}

/* ----------------------- */
/* testimonial-ortho */

.testimonial-ortho-heading,
.faq-heading {
    font-size: 2.25rem;
    text-align: center;
    margin: 3.25rem 0% 2rem;
}

.section-03-h2 {
    font-size: 2.25rem;
    text-align: center;
}

.testimonial-ortho {
    max-width: 80%;
    margin: 0 auto 4rem;
}

.testimonial-ortho .stars {
    margin-bottom: 1rem;
}

.testimonial-ortho .stars * {
    color: goldenrod;
    font-size: 1.25rem;
}

.testimonial-ortho .up {
    background: whitesmoke;
    font-size: 1.5rem;
    padding: 1.75rem;
    font-weight: 300;
    min-height: 350px;
    overflow: hidden;
}

.testimonial-ortho .names {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 1.75rem 0;
}

.testimonial-ortho .areas {
    font-size: 1rem;
    margin-inline: 1.75rem;
}

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

    .testimonial-ortho-heading,
    .faq-heading,
    .section-03-h2 {
        font-size: 2rem;
    }

    .testimonial-ortho-heading,
    .faq-heading {
        margin: 2.75rem 0% 1.5rem;
    }

    .testimonial-ortho {
        max-width: 90%;
        margin-bottom: 3rem;
    }
}

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

    .testimonial-ortho-heading,
    .faq-heading {
        font-size: 1.5rem;
        margin: 2rem 7.5% 1rem;
    }

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

    .testimonial-ortho .stars *,
    .testimonial-ortho .areas {
        font-size: 1rem;
    }

    .testimonial-ortho .up {
        font-size: 1.35rem;
        height: max-content;
        padding: 2rem 1.5rem;
    }

    .testimonial-ortho .areas {
        margin-inline: 1.5rem;
    }

    .testimonial-ortho .names {
        font-size: 1.35rem;
        margin-inline: 1.5rem;
    }

    .testimonial-ortho {
        margin: 0 auto 2rem;
    }
}

/* --------------- */
/* sec-11 */
.sec-11 {
    display: flex;
    max-width: 50%;
    margin: 0 auto 5rem;
    justify-content: center;
    gap: 2rem;
}

/* 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.25rem;
    /* font-weight: 600; */
    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: white;

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

/* OPEN STATE */
.q-a-div.active {
    background: var(--blue1);
}

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

.q-a-div.active .a {
    max-height: 300px;
    /* Increase if your answers are longer */
    opacity: 1;
    transform: translateY(0);
    margin-top: .75rem;
}

/* Desktop */
@media screen and (max-width: 1700px) {
    .sec-11 {
        max-width: 60%;
    }
}

/* Mobile */
@media (max-width: 800px) {
    .sec-11 {
        flex-direction: column;
        max-width: 90%;
        margin: 0 auto 2.5rem;
    }

    .a {
        font-size: 1.05rem;
    }

    .q {
        font-size: 1.2rem;
    }

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

/* ---------------------- */
/* our-specialist */

.our-specialist {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
    padding: 6rem 15%;
    gap: 5%;
    background: var(--blue1);
}

.our-specialist * {
    color: white;
}

.our-specialist img {
    height: 600px;
    max-width: 45%;
    min-width: 45%;
    object-fit: cover;
    border-radius: 1rem;
}

.our-specialist .lefty {
    min-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.our-specialist .lefty h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.our-specialist .lefty h6 {
    font-size: 1.2rem;
    line-height: 1.5;
}

.our-specialist .lefty h5 {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
}

.our-specialist .lefty h5 span {
    background: white;
    color: black;
    display: inline-block;
    padding: .5rem 1.5rem;
    border-radius: 4rem;
    font-size: 1rem;
    text-transform: capitalize;
}

.our-specialist .lefty p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.our-specialist .lefty p strong {
    font-weight: 600;
    font-size: inherit;
}

@media screen and (max-width:1700px) {
    .our-specialist {
        padding-inline: 10%;
    }

    .our-specialist .lefty h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 800px) {
    .our-specialist {
        flex-direction: column-reverse;
        padding: 2.5rem 5%;
        gap: 1.25rem;
    }

    .our-specialist img {
        max-width: 100%;
        width: 100%;
        max-height: 300px;
        border-radius: .5rem;
    }

    .our-specialist .lefty * {
        text-align: center;
    }

    .our-specialist .lefty {
        gap: 1.2rem;
    }

    .our-specialist .lefty h6 {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .our-specialist .lefty h5 {
        align-items: center;
        justify-content: center;
    }

    .our-specialist .lefty h5 span {
        padding: .5rem 1rem;
        font-size: .9rem;
    }

    .our-specialist .lefty p {
        font-size: 1.1rem;
    }

    .our-specialist .lefty h2 {
        font-size: 1.6rem;
    }
}

/* ---------------------- */
/* our-exact-team */

.oet-heading {
    padding: 2rem 15% 0;
    background: whitesmoke;
    font-size: 2.25rem;
    text-align: center;
}

.our-exact-team {
    display: grid;
    background: whitesmoke;
    padding: 1rem 10% 4rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    grid-template-rows: max-content;
}

.our-exact-team .oet-div {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    /* border: 1px solid var(--blue1); */
}

.our-exact-team .oet-div h2 {
    font-weight: 600;
    font-size: 1.2rem;
    position: absolute;
    background: var(--blue1);
    /* border: 1px solid var(--blue1); */
    padding: .5rem 1rem;
    left: .25rem;
    bottom: -10rem;
    transition: bottom 1s ease;
    /* border-radius: 3rem; */
}

.our-exact-team .oet-div * {
    max-width: 100%;
    color: white;
}

.our-exact-team .oet-div img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .5s ease;
}

.our-exact-team .oet-div h6 {
    font-size: 1rem;
    position: absolute;
    background: var(--blue1);
    padding: .5rem 1rem;
    /* border: 1px solid var(--blue1); */
    left: .25rem;
    bottom: -5rem;
    transition: bottom 1s ease;
}

.our-exact-team .oet-div:hover h6 {
    bottom: .25rem;
}

.our-exact-team .oet-div:hover img {
    opacity: .1;
}

.our-exact-team .oet-div:hover h2 {
    bottom: 2.55rem;
}

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

    .oet-heading,
    .our-exact-team {
        padding-inline: 5%;
    }

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

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

    .oet-heading,
    .our-exact-team {
        padding-inline: 5%;
    }

    .oet-heading {
        font-size: 1.75rem;
    }

    .our-exact-team .oet-div h2 {
        font-size: 1.25rem;
    }

    .our-exact-team .oet-div h6 {
        font-size: 1rem;
    }

    .our-exact-team {
        grid-template-columns: repeat(1, 1fr);
        padding-block: 1rem 2rem;
    }

    .our-exact-team .oet-div h6 {
        bottom: .25rem;
    }

    .our-exact-team .oet-div:hover img {
        opacity: .5;
    }

    .our-exact-team .oet-div h2 {
        bottom: 2.65rem;
    }
}

/* -------------------- */
/* section-02 */
.section-02 {
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
    margin-bottom: 4rem;
}

.section-02-services {
    flex-wrap: wrap;
    gap: 3rem 1%;
    justify-content: flex-start;
}

.sec-02-div {
    max-width: 19%;
    min-width: 19%;
    position: relative;
}

.sec-02-div h2 {
    font-size: 1.1rem;
    text-align: center;
    padding: .75rem;
    margin-bottom: .5rem;
    background-color: var(--blue1);
    color: white;
    display: flex;
    align-items: center;
    border-radius: .25rem;
    justify-content: center;
}

.sec-02-div img {
    width: 100%;
    aspect-ratio: 1;
    opacity: .25;
    border: 2px solid var(--blue1);
    object-fit: cover;
    filter: grayscale(1);
    border-radius: 50%;
    display: block;
    transition: opacity .5s ease, border-radius .25s ease;
}

.sec-02-div a {
    background: var(--blue1);
    padding: 1rem;
    display: block;
    max-width: max-content;
    border-radius: 50%;
    margin: auto;
    position: absolute;
    bottom: 2rem;
    right: 5%;
}

.sec-02-div a * {
    color: white;
}

.sec-02-div:hover a {
    background-color: black;
}

.sec-02-div:hover img {
    opacity: 1;
    border-radius: .25rem;
    filter: grayscale(0);
}

.sec-02-div * {
    max-width: 100%;
}

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

    .sec-02-div h2 {
        font-size: 1rem;
    }

    .sec-02-div a {
        right: 1rem;
        bottom: 1rem;
    }

}

@media screen and (max-width: 1200px) {
    .sec-02-div h2 {
        padding: .6rem .5rem;
    }
}

@media screen and (max-width: 800px) {
    .section-02 {
        flex-wrap: wrap;
        gap: .75rem 5%;
        margin-bottom: 2rem;
        /* justify-content: center; */
        /* overflow-x: scroll !important; */
    }

    .sec-02-div img {
        border-radius: 0rem;
        border-width: 1px;
        height: 120px;
        opacity: 1;
    }

    .sec-02-div h2 {
        background: none;
        color: black;
        text-align: center;
        justify-content: center;
        padding: 0;
    }

    .sec-02-div a {
        padding: .50rem .65rem;
        background: white;
    }

    .sec-02-div:hover a {
        background: white;
    }

    .sec-02-div a * {
        font-size: .85rem;
        color: var(--blue1);
    }

    .sec-02-div {
        max-width: 47.5%;
        min-width: 47.5%;
    }
}

@media screen and (max-width: 400px) {
    .sec-02-div h2 {
        font-size: .85rem;
    }
}

/* ---------------------- */
/* section-03 */

.section-03 {
    padding: 0rem 10% 4rem;
}

.section-03 h6 {
    text-align: center;
    font-size: 1.25rem;
    opacity: .25 !important;
    /* color: red; */
    max-width: 50%;
    margin: auto;
    margin-top: .5rem;
}

.section-03-flex {
    display: flex;
    gap: 0;
    justify-content: space-between;
    align-items: flex-start;
    margin: 3rem auto 0;
}

.section-03-flex .s3f-div {
    max-width: 15%;
    width: 15%;
    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 svg {
    padding: .6rem;
    max-width: 2.5rem;
    max-height: 2.5rem;
    border-radius: .25rem;
    background-color: var(--blue1);
}

.section-03-flex .s3f-div svg * {
    color: white;
    fill: white
}

.section-03-flex .s3f-div h2 {
    font-size: 1.35rem;
    font-weight: 600;
}

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

.s3f-div h5 {
    display: none;
}

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

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

    .section-03-flex .s3f-div p {
        font-size: 1rem;
        margin-top: -.5rem;
    }
}

@media screen and (max-width: 1200px) {
    .section-03 h6 {
        max-width: 70%;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 800px) {
    .section-03 h6 {
        max-width: 100%;
        font-size: 1rem;
    }

    .section-03-flex {
        flex-direction: column;
        margin-top: 1.5rem;
        align-items: center;
        gap: .75rem;
    }

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

    .section-03-flex .s3f-div {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        background: whitesmoke;
        /* padding-inline: 15%; */
        justify-content: flex-start;
        position: relative;
    }

    .s3f-div h5 {
        position: absolute;
        right: 5%;
        display: flex;
        opacity: .25 !important;
    }

    .section-03-flex .s3f-div svg {
        padding: .65rem;
        max-width: 2.5rem;
        max-height: 2.5rem;
        border-radius: .25rem;
    }

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

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

    .section-03 {
        padding: 0rem 5% 2rem;
    }
}

/* ---------------------------- */
/* book-my-appoinment */

.book-my-appoinment {
    padding: 4rem 5%;
    display: flex;
    background: var(--blue1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.book-my-appoinment * {
    color: white;
    text-align: center;
}

.book-my-appoinment h2 {
    font-size: 2.75rem;
}

.book-my-appoinment p {
    font-size: 1.25rem;
    max-width: 40%;
    margin: 1rem auto 2rem;
    opacity: .5 !important;
}

.book-my-appoinment a {
    background: var(--blue2);
    padding: .75rem 2.5rem;
    border-radius: 2rem;
    font-weight: 600;
    color: rgb(0, 0, 0);
    display: inline-block;
}

@media screen and (max-width: 1700px) {
    .book-my-appoinment h2 {
        font-size: 2.5rem;
    }

    .book-my-appoinment {
        padding: 3.5rem 5%;
    }

    .book-my-appoinment a {
        padding: .75rem 2rem;
    }

    .book-my-appoinment p {
        max-width: 70%;
    }
}

@media screen and (max-width: 800px) {
    .book-my-appoinment h2 {
        font-size: 1.25rem;
    }

    .book-my-appoinment {
        padding: 2.5rem 5%;
    }

    .book-my-appoinment a {
        padding: .5rem 1.75rem;
    }

    .book-my-appoinment p {
        max-width: 100%;
        font-size: 1rem;
        margin: .75rem auto 1.2rem;
    }
}

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

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

.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: 1rem;
    justify-content: space-between;
}

.news-articles-content a {
    overflow: hidden;
    width: 100%;
    transition: all 1s ease;
}

.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;
}

.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 {
        padding-inline: 5%;
    }

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

@media screen and (max-width: 800px) {
    .news-articles {
        padding: 0rem 5% 3rem;
        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: 2rem .5rem;
    }

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

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

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

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

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

.sec-two {
    display: flex;
    padding: 3rem 15% 5rem;
    gap: 5rem;
}

.sec-two .two-left {
    max-width: 50%;
    min-width: 50%;
}

.sec-two .two-left img {
    min-width: 100%;
    max-width: 100%;
    border-radius: 1rem;
    height: 450px;
    object-fit: cover;
}

.sec-two .two-right h3 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.sec-two .two-right p {
    font-size: 1.15rem;
    line-height: 1.5;
    opacity: .5 !important;
    margin: 1rem 0 1.5rem;
}

.sec-two .two-right a {
    background: var(--blue1);
    padding: .75rem 2rem;
    border-radius: 2rem;
    color: white;
    font-weight: 600;
    display: inline-block;
}

@media screen and (max-width: 1700px) {
    .sec-two {
        padding-inline: 5%;
        padding-bottom: 4rem;
    }

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

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

    .sec-two {
        flex-direction: column-reverse;
        gap: 2rem;
        padding-inline: 5%;
        padding-top: 0;
        padding-bottom: 2rem;
    }

    .sec-two .two-right p {
        font-size: 1rem;
        margin: 1rem 0;
    }

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

    .sec-two .two-left img {
        height: 250px;
    }

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

/* -------------------------- */
/* articles-grid */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 4rem 10%;
}

.articles-grid-div {
    max-width: 100%;
    background: whitesmoke;
    padding: 1rem;
    overflow: hidden;
    border: 1px solid gainsboro;
    transition: opacity .6s ease;
}

.articles-grid-div img {
    border: 1px solid gainsboro;
    object-fit: cover;
    height: 300px;
    width: 100%;
}

.articles-grid-div h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--blue1);
}

.articles-grid-div p {
    font-size: 1.25rem;
    opacity: .5;
}

.articles-grid-div a {
    display: inline-block;
    padding: .75rem 2rem;
    background: var(--blue1);
    color: white;
    border-radius: 3rem;
    margin-top: 1rem;
    cursor: pointer;
}

.articles-grid-div a svg {
    transform: rotate(-90deg);
    display: none;
}

.articles-grid-div * {
    max-width: 100%;
}

/* .articles-grid:hover .articles-grid-div:hover {
    opacity: 1;
}

.articles-grid:hover .articles-grid-div:not(:hover) {
    opacity: .2;
} */

@media screen and (max-width: 1700px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 3rem 5%;
    }
}

@media screen and (max-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles-grid:hover .articles-grid-div:not(:hover) {
        opacity: 1;
    }
}

@media screen and (max-width: 800px) {
    .articles-grid-div h2 {
        font-size: 1.25rem;
        margin: .75rem 0;
    }

    .articles-grid-div p {
        font-size: 1rem;
    }

    .articles-grid-div a {
        padding: .5rem 1.5rem;
        margin-top: .75rem;
    }

    .articles-grid {
        grid-template-columns: repeat(1, 1fr);
        padding: 1.5rem 5%;
    }
}

/* -------------------------- */
/* articles-main */

.articles-main {
    display: flex;
    min-height: 300px;
    background: var(--blue1);
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 3rem 15%;
    justify-content: center;
}

.articles-main * {
    color: white;
    text-align: center;
}

.articles-main h2 {
    font-size: 2.25rem;
    line-height: 1.3;
    max-width: 70%;
    font-weight: 600;
}

.articles-main h4 {
    opacity: .5;
    max-width: 60%;
    font-size: 1.15rem;
}

.articles-main h5 {
    font-size: 1rem;
    background: var(--blue2);
    color: black;
    border-radius: .25rem;
    padding: .75rem 1rem;
}

.image-for-blogs {
    padding: 0 15%;
}

.image-for-blogs img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: 50% 30%;
}

@media screen and (max-width: 1700px) {
    .articles-main {
        padding-inline: 10%;
    }

    .image-for-blogs {
        padding: 0 10%;
    }

    .articles-main h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 1200px) {
    .articles-main {
        padding-inline: 5%;
    }

    .image-for-blogs {
        padding: 0 5%;
    }
}

@media screen and (max-width: 800px) {
    .articles-main {
        min-height: 250px;
    }

    .articles-main h4,
    .articles-main h5 {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .articles-main h5 {
        padding: .45rem 1rem;
        font-size: .85rem;
    }

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

    .articles-main h2 {
        font-size: 1.5rem;
        max-width: 100%;
    }
}

@media screen and (max-width: 400px) {
    .articles-main h5 {
        padding: .5rem .75rem;
        font-size: .75rem;
        margin-top: .75rem;
    }
}

/* ---------------------- */
/* content-articles */

.content-articles {
    display: flex;
    gap: 5%;
    padding: 4rem 15%;
}

.content-articles-services {
    padding-bottom: 4rem !important;
}

.content-articles-left {
    min-width: 20%;
    /* background-color: whitesmoke; */
    height: 800px;
    top: 50px;
    position: sticky;
}

.content-articles-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.content-articles-left a {
    text-decoration: none;
    color: #333;
    border: 1px solid gainsboro;
    background: whitesmoke;
    padding: .75rem 1rem;
}

.content-articles-left a:hover {
    color: var(--blue1);
    background: white;
    font-weight: 600;
}

.content-articles-right * {
    font-size: 1.25rem;
    line-height: 1.5;
}

.content-articles-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-articles-right p,
.content-articles-right ul {
    margin-top: -1rem;
}

.content-articles-right p:last-child {
    margin-top: 0 !important;
    /* background-color: red; */
}

.content-articles-right ul li {
    margin-left: 1.5rem;
    margin-bottom: .5rem;
}

.content-articles-right h4 {
    font-size: 1.75rem;
    font-weight: 600;
}

.content-articles-right a {
    background: var(--blue1);
    max-width: max-content;
    padding: .5rem 2rem;
    color: white;
    border-radius: .5rem;
}

.div-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.div-table-row {
    display: table-row;
}

.div-table-cell {
    display: table-cell;
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

/* Optional header styling */
.header {
    font-weight: bold;
    background-color: #f4f4f4;
}

@media screen and (max-width: 1700px) {
    .content-articles {
        padding: 3rem 10%;
    }

    .content-articles-services {
        padding-bottom: 3rem !important;
    }
}

@media screen and (max-width: 1200px) {
    .content-articles {
        padding: 2.25rem 5%;
    }
}

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

    .content-articles-services {
        padding-bottom: 2rem !important;
    }

    .content-articles-right * {
        font-size: 1.1rem;
    }

    .content-articles-right h4 {
        font-size: 1.25rem;
    }

    .content-articles-right {
        gap: 1rem;
    }

    .content-articles-right a {
        padding-inline: 1rem;
    }

    .content-articles-right p,
    .content-articles-right ul {
        margin-top: 0rem;
    }

    .content-articles-left {
        min-width: 100%;
        height: max-content;
        top: 0px;
        position: relative;
    }
}

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

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

.back2normal-services {
    margin-bottom: 0 !important;
}

.back2normal img {
    max-width: 60%;
    display: block;
    /* border: 1px solid red; */
    z-index: 10;
    margin-top: -4rem;
}

.back2normal * {
    text-align: center;
}

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

.back2normal a:hover {
    background: var(--blue1);
}

.back2normal p {
    font-size: 1.5rem;
    opacity: .5;
    line-height: 1.5;
}

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

.back2normal h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

@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 {
        padding-top: 3rem;
    }

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

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

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

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

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

    .back2normal {
        padding-top: 2.5rem;
        margin-bottom: 1.75rem;
    }
}

/* -------------------------- */
/* emergency */

#emergency {
    background: #ff000f;
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 1000 !important;
    padding: 1rem .5rem;
    color: white;
    writing-mode: sideways-lr;
    font-weight: 600;
    display: none;
}

#emergency-menu {
    color: #ff000f;
}

#emergency-menu * {
    color: #ff000f;
}

#emergency svg,
#emergency-menu svg {
    margin-bottom: -.1rem;
    /* transform: rotate(-90deg); */
    margin-right: .25rem;

}

#emergency * {
    color: white;
    fill: white;
}