* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style: none;
}


html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

/* color variable */

:root {
    --main-color: #194a37;
    --golden-color: #ffca8c;
    --bg-white: #ffffff;
    --bg-grey: #eee;
    --text-dark: #000000;
    --text-light: #fff;
}

.bg-green {
    background-color: var(--main-color);
}

.bg-grey {
    background-color: var(--bg-grey);
}

.bg-light {
    background-color: var(--bg-white);
}


/* font family  */

@font-face {
    font-family: futura-regular;
    src: url(../font/futura-regular.OTF);
}

@font-face {
    font-family: futura-heavy;
    src: url(../font/futura-heavy.OTF);
}

@font-face {
    font-family: tt-ramills-bold;
    src: url(../font/tt-ramills-bold.TTF);
}

@font-face {
    font-family: tt-ramills-regular;
    src: url(../font/tt-ramills-regular.TTF);
}

:is(h1, h2, h3, h4, h5, h6, ul) {
    margin: 0 !important;
    padding: 0 !important;
}

:is(h1, h2, h3, h4, h5, h6) {
    font-family: tt-ramills-regular;
}


.heading {
    width: 100%;
    margin: 0 auto 2rem auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}


:is(h3.title, h3.highlight-heading, h3.subheading) {
    font-family: tt-ramills-regular;
    font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}

h3.subheading {
    font-size: clamp(1.8rem, 2.5vw + 1rem, 2.4rem);
}

h3.highlight-heading {
    display: inline-block;
    background-color: var(--main-color);
    color: var(--text-light);
    border-radius: 1rem;
    line-height: normal;
    padding: 0.5rem 1.5rem !important;
    font-weight: bolder;
}

h3.highlight-heading span {
    font-weight: 500;
}


h3.title,
p.subtitle {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
}

.bg-green h3.title,
.bg-green p.subtitle {
    color: var(--text-light);
}


p {
    font-size: 1.4rem !important;
}

ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none !important;
    font-size: 1.6rem !important;
}


table :is(th, td, thead, tbody, tfoot, tr) {
  font-size: 1.4rem !important;
}

.table > thead{
    vertical-align: middle !important;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    font-size: 15px !important;
    border-radius: 50% !important;
    background-color: var(--main-color) !important;
    color: var(--text-light) !important;
    line-height: 0px !important;
    letter-spacing: 0px !important;
    z-index: 9999 !important;
}


.owl-prev {
    left: 25px;
}

.owl-next {
    right: 25px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 15px !important;
    height: 5px !important;
}

.owl-theme .owl-dots .active span {
    width: 25px !important;
    transition: all 0.3s ease-in-out !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--main-color) !important;
}


section {
    width: 100%;
    height: auto;
    padding: 3rem 0;
    margin: 0 auto;
}

/* header section */

.sticky {
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 9999;
    background-color: var(--bg-white);
    animation: fadeInBackground 0.2s ease-in-out forwards;
}

@keyframes fadeInBackground {
    0% {
        opacity: 0.9;
        background-color: transparent;
    }

    100% {
        opacity: 1;
        background-color: var(--bg-white);
    }
}

.header {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    background-color: var(--bg-white);
}


/* social menu */

.media p {
    width: 100%;
    font-size: 1rem !important;
    text-transform: uppercase;
    color: var(--white-color);
}

.media ul {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0 !important;
}

.media ul li a {
    color: inherit;
    font-weight: bold;
}

.media ul li {
    font-size: 1.3rem;
    width: 30px;
    height: 30px;
    background-color: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s ease;
}

.media ul li a i {
    color: var(--main-color);
}

.media ul li:hover {
    background-color: var(--bg-dark);
}

.media ul li:hover a i {
    color: var(--white-color) !important;
}

/* topbar end */

.header-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 10px;
}

.v-center {
    align-items: center;
}

/* logo menu */

.header .item-left {
    /* flex: 0 0 5%; */
}

.header .item-center {
    flex: 0 0 60%;
}

.header .item-right {
    /* flex: 0 0 14%; */
    display: flex;
    justify-content: flex-end;
}

/* header img */

.header .logo a img {
    width: 180px;
    height: auto;
}

/* menu right */
.header .menu>ul {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.header .menu ul li {
    font-family: tt-ramills-bold;
}

.header .menu>ul>li {
    display: inline-block;
    line-height: 5rem;
    text-align: left;
    text-transform: capitalize;
    font-size: 1.5rem !important;
    font-weight: 100;
}

/* main menu */

.header .menu ul li a {
    transition: color 0.3s ease;
    position: relative;
    color: var(--text-color-dark);
    background-color: transparent;
    transition: background-color 0.3s ease;
    border-radius: 0.5rem;
}

.header .menu ul li a:hover {
    color: var(--main-color);
}


.header .menu>ul>li .sub-menu {
    position: absolute;
    z-index: 400;
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    transition: all 0.3s ease-in-out;
    margin-top: 2.5rem;
    opacity: 0;
    visibility: hidden;
}

.header .menu>ul>li .sub-menu ul li {
    line-height: 20px !important;
    position: relative;
    font-size: 1.5rem !important;
}

.header .menu>ul>li .sub-menu ul li a {
    display: block;
    padding: 1rem 0;
    transition: color 0.3s ease;
    border-bottom: 1px solid var(--bg-grey);
}

.header .menu>ul>li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
}

.menu-item-has-children i {
    margin-left: 0.5rem;
}

.header .menu>ul>li .single-column-menu {
    width: 100%;
    max-width: 250px;
    background-color: var(--bg-white);
}


/* cta menu  */

/* this cta use every where */

.cta-button {
    width: auto;
    height: auto;
}

.cta-primary {
    padding: 1rem 2rem;
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.5s ease-in-out;
    text-align: center;
    border-radius: 0.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-family: futura-heavy;
    border: 1px solid transparent;
}

.cta-fullwidth {
    display: block !important;
    padding: 1rem 1.5rem;
}

.cta-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-white {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.dark-text {
    color: var(--text-color-dark);
}

.dark-btn {
    background-color: var(--main-color);
}

.light-btn {
    background-color: var(--main-color);
}

.cta-button .cta-primary:hover {
    background-color: #256c50;
    border: 1px solid var(--main-color);
}


.header-sidebar-btn-flex {
    display: none;
}

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

/* --------------------------------------------------------------- */



/* footer */

.footer {
    width: 100%;
    height: auto;
    padding: 5rem 0;
    background-color: var(--main-color);
}

.flex-footer {
    width: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.footer-item-logo {
    height: auto;
    color: var(--text-light);
    text-align: center;
    margin: auto;
}

.footer-item-logo a img {
    max-width: 250px;
    height: auto;
}

.footer-item-logo .media {
    margin-top: 2rem;
}

.footer-item-logo .media ul {
    justify-content: center;
}

.footer-item {
    width: 19%;
    height: auto;
    padding: 0.5rem 0;
    color: var(--text-light);
}

h4.footertitle {
    color: var(--white-color);
    font-family: tt-ramills-regular;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: clamp(1.8rem, 2.5vw + 1rem, 2rem);
}

h4.footertitle span {
    display: none;
    font-size: 1.4rem;
}


.footerlinks {
    width: 100%;
    height: auto;
    margin-top: 1.5rem;
    padding-left: 0px;
}

.footerlinks li {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1.4rem !important;
    font-weight: 400;
}

.footerlinks li a,
.footerlinks li span {
    color: var(--white-color);
    transition: all 0.5s ease;
}

.footerlinks li a i {
    color: var(--main-color);
    width: 20px;
    height: 20px;
    background-color: var(--bg-white);
    border-radius: 50%;
    text-align: center;
    font-size: 1rem;
    place-content: center;
    margin: 0 5px 5px 0px;
}

.footer-item .footer-map {
    width: 100%;
    height: auto;
}

.footer-item .footer-map iframe {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}


hr {
    width: 100%;
    margin: 1rem 0 !important;
    display: block;
    outline: none !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.296) !important;
    height: 2px !important;
}

.sticky-cta {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    width: 30px;
    height: auto;
    z-index: 9999;
    display: none;
    animation: move2 0.5s linear;
}


@keyframes move2 {

    0% {
        left: -100px;
    }

    100% {
        left: 0px;
    }


}



.sticky-cta-icon {
    width: 30px;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.sticky-cta-icon i {
    width: 30px;
    height: 50px;
    background-color: var(--main-color);
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--white-color);
    font-size: 20px;
    z-index: 99999999999999999999999;
    border-bottom: 1px solid var(--white-color);
    cursor: pointer;
    font-size: 12px;
}

.sticky-cta-icon:last-child i {
    border-bottom: none;
}

.cta-social {
    height: 50px;
    text-transform: uppercase;
    position: absolute;
    right: 80px;
    width: 80px;
    background-color: #000;
    transition: all 1s ease-in-out;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 10px;
    color: white;
    border-bottom: 1px solid transparent;
    z-index: 999999;
}

.sticky-cta-icon:hover .cta-social {
    right: -80px;
    opacity: 1;
    z-index: 999;
    display: flex;
    transition: all 0.5s ease-in-out;
}

/* ------------------------------------------------- */


/* copyright */

.copyright {
    width: 100%;
    height: auto;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem 0;
}

.copyright p {
    color: var(--bg-white);
}

.copyright p span {
    margin: 0 0.5rem;
}



.scroll {
    position: fixed;
    bottom: 50px;
    right: 55px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--four-color);
    color: var(--black-color);
    display: none;
    overflow: hidden;
    cursor: pointer;
    z-index: 9999999999999999;
    animation: move1 0.5s linear;
}


@keyframes move1 {

    0% {
        bottom: 100px;
    }

    100% {
        bottom: 50px;
    }


}



.scroll div i {
    font-size: 1.4rem;
    animation: move 0.5s linear infinite;
}

.scroll div {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
}


@keyframes move {

    0% {
        transform: translateY(-10px);
    }

    10% {
        transform: translateY(0px);
    }

}


/* --------------------------------------------------------------------- */

/* whatsapp widget */

.footer-mobile {
    display: none;
}


.whatsapp-widget {
    width: auto;
    height: auto;
    position: fixed;
    bottom: 5%;
    left: 5%;
    z-index: 99999;
    overflow: hidden;
}

.whatsapp-widget-inner {
    width: 100%;
    height: 130px;
    margin-bottom: 10px;
    background: #0a5f54;
    border-radius: 10px;
    display: none;
    position: relative;
    animation: whatsappanimation 0.5s linear;
    padding: 20px;
}

.aboutbrand {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.brand-img {
    width: 50px;
    height: 50px;
    border: 2px solid var(--bg1);
    border-radius: 50%;
    background-color: var(--bg1);
    overflow: hidden;
}

.brand-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brandname {
    width: auto;
    height: auto;
}

.brandname h3 {
    font-size: 1.5rem !important;
    font-weight: 600;
}

.brandname p {
    font-size: 1rem !important;
}

.brandname h3,
.brandname p {
    margin-bottom: 0px;
    color: var(--text-light);
}

.buttonlink {
    position: absolute;
    bottom: 0px;
    left: 0px;
    content: ' ';
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
}

.buttonlink a {
    width: 100%;
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border: none;
    outline: none;
    cursor: pointer;
    color: grey;
}

.buttonlink a i {
    color: #4dc247;
    font-size: 1.8rem;
}


@keyframes whatsappanimation {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    50% {
        opacity: 50;

    }

    100% {
        opacity: 100;
        transform: translateY(0%);
    }
}

.whatsapp-widget-inner .close {
    position: absolute;
    top: 10px;
    right: 15px;
    content: ' ';
    cursor: pointer;
}

.whatsapp-widget-inner .close i {
    font-size: 15px;
    color: white;
}

.whatsappbutton {
    width: auto;
    height: auto;
}

.whatsappbutton button {
    padding: 10px 25px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #4dc247;
    color: white;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
}

.whatsappbutton button i {
    font-size: 20px;
    color: white !important;
}

/* footer */



/* banner */

.main-banner-container {
    width: 100%;
    height: auto;
}

.banner-container {
    width: 100%;
    height: auto;
    position: relative;
}

.banner-container .owl-prev,
.banner-container .owl-next {
    border: 2px solid var(--bg-white) !important;
    border-radius: 50% !important;
    background-color: transparent !important;
    color: var(--text-light) !important;
}

.banner-container .owl-prev {
    left: 15px;
}

.banner-container .owl-next {
    right: 15px;
}

.banner-container .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* clinicImg */

.clinicImg,
.clinicContent {
    width: 100%;
    height: auto;
    padding: 1rem;
    text-align: left;
}

.clinicImg img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.text-wrapper {
    width: 100%;
    height: auto;
    text-align: center;
}


/* featured section */


/* treatment box */

.serviceContainer {
    width: 100%;
    height: auto;
    margin: 1rem auto;
}


.service-card {
    width: auto;
    height: auto;
    border-radius: 1rem;
    overflow: hidden;
    padding: 1rem;
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.treatment-card {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 1rem;
}

.treatment-box {
    width: 100%;
    height: 400px;
    position: relative;
}

.category-name {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    content: ' ';
    z-index: 11;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--main-color);
    color: var(--text-light);
    border-radius: 1rem;
    line-height: normal;
}

.treatment-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 2s ease;
}

.treatment-card-absolute {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent 1%, rgba(255, 255, 255, 0.61) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
    transition: all 0.4s ease-in-out;
    padding: 1rem;
}

.treatmentname-flex {
    width: 100%;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    transform: translateY(0);
}

.treatmentname-flex h4 {
    font-size: 2.5rem !important;
}

.treatmentname-flex h4 span {
    display: block;
    font-size: 1.8rem !important;
}

.hover-treatmenttext {
    width: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    transform: translateY(0);
}

.treatment-card-absolute:hover .treatmentname-flex {
    transform: translateY(-20px);
}

.treatment-card-absolute:hover .hover-treatmenttext {
    opacity: 1;
    max-height: 200px;
    overflow: visible;
    transform: translateY(-20px);
}

.treatment-card:hover .treatment-box>img {
    transform: scale(1.1);
}

/* dr-section  */

.dr-section {
    overflow: hidden;
    padding: 3rem 0;
}

.dr-text-content,
.banner-text-content {
    padding: 0 100px 0 100px;
}

.dr-text-content h3 {
    font-size: 2.5rem !important;
    font-weight: 700;
    color: var(--main-color);
}

.dr-img {
    width: auto;
    height: 100%;
    position: relative;
}

.shadoweffect {
    position: relative;
}

.shadoweffect::after {
    width: 200px;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgb(255, 255, 255, 0.8), rgb(255, 255, 255), rgb(255, 255, 255, 0.5));
    z-index: 2;
    filter: blur(15px);
}

.dr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 1rem;
}


/* problem card */

.problemslider .owl-carousel .owl-stage {
    display: flex !important;
}


.p-card {
    border-radius: 2rem;
    text-align: center;
    position: relative;
    padding: 20px;
    height: 100% !important;
}

.p-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 133.5px);
    border-radius: 20px;
    z-index: -1;
}

.p-card:hover .p-card-inner-container {
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
}


.p-card-inner-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.p-card-inner-container hr {
    background-color: rgba(0, 0, 0, 0.1) !important;
    width: 70% !important;
    margin: auto !important;
}

.p-card::after,
.circle-img {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--bg-white);
}

.circle-img {
    width: 200px;
    height: 200px;
    overflow: hidden;
    margin: auto;
    padding: 5px;
    position: relative;
    z-index: 2;
    border-radius: 50%;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* hair section */

.treatmentvideo {
    width: 100%;
    padding: 1rem;
}

.video-img {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/9;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.video-img img,
.video-img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-img.fade-out {
    opacity: 0;
}

.playbtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.692);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    font-size: 2rem;
    border-radius: 50%;
}

.playbtn::after {
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 50%;
    position: absolute;
    background-color: #000;
    z-index: -1;
    background-color: rgba(255, 255, 255, 0.692);
    animation: wave 2s infinite linear;
}


@keyframes wave {
    0% {
        width: 80px;
        height: 80px;
        opacity: 1;
        background-color: #f1f6ffbd;
    }

    50% {
        width: 120px;
        height: 120px;
        opacity: 0.5;
        background-color: #f1f6ffbc;
    }

    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
        background-color: #f1f6ff6e;
    }
}

.image-slider-container {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    padding: 1rem;
}

.slider-btns {
    width: 100%;
    display: flex;
    gap: 0.5rem;
}

.slider-btns a {
    flex: 1;
    background-color: var(--main-color);
    display: inline-block;
    text-align: center;
    padding: 1rem 0;
    color: var(--text-light) !important;
    font-size: 1.4rem !important;
    border-radius: 1rem 1rem 0 0;
}

.img-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    margin-top:10px;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
}

.fade-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
}

.fade-image.active {
    opacity: 1;
    z-index: 2;
}


/* More Cosmetic */

.hidden-cards {
    max-height: 100px;
    opacity: 0.5;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease;
}

.hidden-cards.show {
    max-height: 1000px;
    opacity: 1;
}

.show-more-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: background 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
    width: 50px !important;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--main-color);
    cursor: pointer;
    font-size: 3rem;
    z-index: 99;
}

.show-more-btn:hover {
    background: #f0f0f0;
}


/* before -after tab  */

.tab-navs-container {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.nav-tabs {
    border: none !important;
    justify-content: center;
    gap: 1rem;
}

.nav-item {
    background-color: var(--bg-grey);
    position: relative;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--main-color);
}


.nav-tabs .nav-link {
    height: 100%;
    border: none !important;
    color: var(--text-color-dark) !important;
    text-transform: uppercase;
    padding-left: 2rem;
    padding-right: 2rem;
    transition: all 0.3s ease-in-out;
    font-size: clamp(1rem, 1.5vw + 1rem, 1.4rem) !important;
}

.nav-tabs .nav-link.active {
    background: var(--main-color) !important;
    color: var(--text-light) !important;
    position: relative !important;
}


.slider-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slider-item img {
    width: 100%;
    height: auto;
}

.tab-content {
    width: 100%;
    height: auto;
    padding: 1rem;
}


.ytplaylist, .ytplaylist iframe{
    width: 100%;
    height: 400px;
}
/* why us */

.whyus-card {
    width: 100%;
    padding: 1rem;
}

.whyus-icon {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction:column;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.whyus-icon img {
    width: 100px;
}

.whyus-icon p {
    font-weight: 600;
}

/* home form   */

.formbg {
    background: url(../media/main-assets/form-bg.jpg) no-repeat;
    background-position: bottom;
    background-size: cover;
}

.form-img {
    width: 100%;
    padding: 1rem;
}

.form-img img {
    width: 100%;
}

.form-container {
    width: 100%;
    padding: 1rem;
}

.form-container .heading,
.form-container h3.title {
    text-align: left;
    align-self: start;
}

.form-container h3.title,
.form-container p.subtitle {
    color: var(--text-light) !important;
}


.formbg .form-container .heading,
.formbg .form-container h3.title {
    text-align: center;
    align-self: center;
}


.inputwrapper{
    width:100%;
    height:auto;
    position:relative;
}


input,
select,
textarea {
    width: 100%;
    background: var(--bg-white);
    border: none;
    padding: 10px 20px;
    font-size: 16px !important;
    border: 1px solid black !important;
    color: var(--black-color);
}

input:focus,
select:focus,
extarea:focus {
    outline: none;
}

option {
    color: var(--black-color);
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold !important;
    font-style: normal !important;
}

input[type="submit"] {
    background: var(--golden-color);
    color: var(--main-color);
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* Fix for iOS input styling */
input,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* Fix for select arrow */
select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1em !important;
}

.error-message {
    width: 100%;
    text-align: right;
    margin-top: 5px;
    font-size: 1.2rem !important;
}
.recaptcha-container {
    /*display: inline-block;*/
    transform-origin: left center;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
    margin: 0;
    padding: 0;
}

.g-recaptcha iframe {
    height: none !important; /* let the iframe adapt to scale */
}

@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 576px) {
    .g-recaptcha {
        transform: scale(0.75);
    }
}

@media (max-width: 400px) {
    .g-recaptcha {
        transform: scale(0.65);
    }
}


/* faq  */

.accordion {
    width: 100%;
}

.at-tab {
    display: none;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.at-title {
    cursor: pointer;
    background-color: var(--main-color);
    position: relative;
}

.at-title:after {
    content: "";
    background: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5H7z"/></svg>') no-repeat center;
    background-size: contain;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.at-title.active:after {
      background: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7 14l5-5 5 5H7z"/></svg>') no-repeat center;
}


.at-item {
    border-radius: 5px;
    margin-bottom: 15px;
}

.at-title h4 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 15px !important;
    padding-right: 27px !important;
    color: var(--text-light);
    font-size: 1.6rem !important;
}

/* service page  */

.serviceBanner {
    width: 100%;
    height: auto;
    background: url(../media/main-assets/sevice.jpg) no-repeat center center/cover;
}

.banner-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--text-light);
}

.banner-text-content h3.subheading {
    font-size: clamp(3rem, 2.5vw + 2rem, 5rem) !important;
    color: var(--golden-color);
}

.banner-text-content h3.subheading span {
    color: var(--text-light);
}

.banner-text-content p {
    margin-bottom: 0 !important;
}

/* benifitsbg section */


.benifitsbg {
    width: 100%;
    height: auto;
    background: url(../media/main-assets/benifits-bg.webp) no-repeat center center/cover;
    padding-bottom: 0;
}

.benifitscontainer {
    width: 100%;
    height: auto;
    padding: 2rem;
    display: flex;
}

.moveright,
.moveleft {
    position: relative;
}

.moveright {
    right: -100px;
}

.moveleft {
    left: -100px;
}


.benifitscontainer ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benifitscontainer ul li {
    width: 100%;
    padding: 2rem;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}



.flex-left {
    align-items: flex-end;
}

.flex-left li {
    padding-left: 4rem !important;
    background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 65%, transparent 100%) !important;
}

.flex-left li::after {
    border-image: linear-gradient(to right, transparent, #d8d8d8) 1;
}

.flex-right li::after,
.flex-left li::after {
    content: "";
    position: absolute;
    left: 0%;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-style: solid;
    border-width: 1px;
    pointer-events: none;
}


.flex-right {
    align-items: flex-start;
}

.flex-right li {
    padding-right: 4rem !important;
    background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 65%, transparent 100%) !important;
}

.flex-right li::after {
    border-image: linear-gradient(to left, transparent, #d8d8d8) 1;
    border-style: solid;

}

.benifitscontainer ul li img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}


/* contact us page  */

.glassmorpheffect {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.address-card {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    flex-direction: column;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.address-card p>a {
    color: var(--text-light);
}

.address-card p>i {
    margin-right: 0.5rem;
}

/* 404 */

.section404 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.section404::after {
    position: absolute;
    top: calc(0% + 25%);
    left: calc(0% + 5%);
    content: '404: PAGE NOT FOUND';
    white-space: pre-wrap;
    width: 90%;
    height: 50%;
    margin: auto;
    pointer-events: none;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: clamp(3rem, 10vw, 10rem);
    font-weight: bolder;
    color: #d4d4d4;
    opacity: 0.5;
    border-radius: 2rem;
    background: linear-gradient(135deg, transparent, #3a8a6b);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.img404 {
    width: 100%;
    height: auto;
    padding: 2rem;
    text-align: center;
}

.img404 img {
    width: 100%;
}

/* thankyou  */

.thankyoubox {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.envelope-wrapper {
    position: relative;
    width: 150px;
    height: 100px;
    background: var(--main-color);
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.envelope-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    border-style: solid;
    bottom: 100%;
    left: 0;
    border-width: 75px 75px 75px 75px;
    border-color: transparent transparent var(--main-color) transparent;
    opacity: 0.8;
    transform-origin: bottom center;
    transform: rotateX(0deg);
    animation: flapOpen 2s infinite;
    z-index: 221;
    pointer-events: none;
}


@keyframes flapOpen {
    0% {

        transform: rotateX(0deg);
    }

    100% {

        transform: rotateX(-180deg);
    }
}

.paper {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 80px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 5;
    overflow: hidden;
}

.paper::after {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 70px;
    background-color: var(--main-color);
    z-index: 1;
    content: ' ';
    animation: paperdown 2s infinite;
    opacity: 0;
}

@keyframes paperdown {

    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }

    75% {
        opacity: 0.5;
    }

    100% {
        opacity: 0.7;
        bottom: 20%;
    }
}


/* policycontent */

.policycontent {
    text-align: left;
    width: 100%;
    font-style: italic;
}

.policycontent h3.subheading {
    margin-bottom: 1rem !important;
}


/* out team */

.teamcontainer {
    padding: 10px;
}

.teamcard-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(to right, #194a37, #194a37 50%, white 51%, white 100%);
    text-align: center;
    z-index: 2;
    transition: transform 0.5s ease;
}

.teamcard-container:hover {
    transform: translateY(-10px);
}

.teamcard-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

.vertical-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    font-size: 7rem !important;
    font-weight: bold;
    letter-spacing: 2px;
    color: transparent;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: var(--text-light);
    opacity: 0.5;
}

.team-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, #194a37bc, transparent);
    color: var(--text-light);
    padding: 2rem;
    text-align: left;
}

.team-info h5 {
    margin-bottom: 1rem;
    font-size: 2rem;
}