:root {
    /* --primary-font: "DM Serif Display", serif; */
    --primary-font: "Montserrat", sans-serif;
    --secondary-font: "DM Sans", sans-serif;
    --theme-color: #097175;
    --secondary-color: #023d69;
    --primary-color: #2c2924;
    --dark-color: #242424;
    --info-color: #ffffff;
    --text-color: #808080;
    --primary-font-size: 16px;
    --primary-transition-effect: all 0.35s linear;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: var(--primary-font-size);
}

body {
    font-family: var(--secondary-font);
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: inherit;
    color: inherit;
    transition: var(--primary-transition-effect);
}

img {
    max-width: 100%;
}

.link {
    color: var(--theme-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid;
    position: relative;
    margin-right: 20px;
}

.link .lnr {
    font-weight: 600;
    font-size: 15px;
    position: absolute;
    top: 4px;
    right: -19px;
}

.section-padding {
    padding: 70px 0;
}
@media (max-width: 1199px) {
    .section-padding {
        padding: 50px 0;
    }
}
@media (max-width: 767px) {
    .section-padding {
        padding: 40px 0;
    }
}
.section-heading,
.section-heading span,
.section-heading u {
    font-size: 44px;
    font-weight: 800;
    line-height: 60px;
    margin-bottom: 15px;
    /* color: var(--theme-color); */
    /* opacity: 0.9; */
    text-transform: uppercase;
}
@media (max-width: 1440px) {
    .section-heading, 
    .section-heading span, 
    .section-heading u {
        font-size: 34px;
        line-height: 44px;
    }
}
@media (max-width:1199px) {
    .section-heading, 
    .section-heading span, 
    .section-heading u {
        font-size: 30px;
        line-height: 38px;
    }
}
@media (max-width:767px) {
    .section-heading, .section-heading span, .section-heading u {
        font-size: 25px;
        line-height: 34px;
    }
    .section-heading br {
        display: none;
    }
}
@media (max-width:575px) {
    .section-heading, .section-heading span, .section-heading u {
        font-size: 21px;
        line-height: 30px;
    }
}
.section-heading span {
    color: var(--theme-color);
}

.section-heading.white {
    color: var(--info-color);
}

.section-info {
    color: var(--text-color);
    line-height: 30px;
    /* opacity: 0.8; */
    font-size: 18px;
}
@media (max-width: 1367px) {
    .section-info {
        font-size: 16px;
        line-height: 25px;
    }
}
@media (max-width:1199px) {
    .section-info {
        margin-bottom: 10px;
    }
    .section-info br {
        display: none;
    }
}
.section-info.white {
    color: var(--info-color);
}

.primary-color {
    color: var(--primary-color);
}

.container {
    max-width: 1430px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

@media (max-width:1440px) {
    .container {
        max-width: 1360px;
    }
}

@media (max-width:1367px) {
    .container {
        max-width: 1270px;
    }
}
@media (max-width:1280px) {
    .container {
        max-width: 1200px;
    }
}
@media (max-width:1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (max-width:991px) {
    .container {
        max-width: 960px;
    }
}


.primary-button {
    color: var(--info-color);
    /* border: 1px solid #097175; */
    /* background: var(--theme-color); */
    padding: 15px 30px;
    cursor: pointer;
    font-family: var(--primary-font);
    font-weight: 600;
    transition: all 0.35s ease-in-out;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
@media (max-width:1367px) {
    .primary-button {
        padding: 15px 20px;
    }
}
.primary-button::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: linear-gradient(to right, rgba(2, 61, 105, 1) 0%, rgba(9, 113, 117, 1) 100%);
    z-index: 0;
    transition: var(--primary-transition-effect);
}

.primary-button span {
    position: relative;
    z-index: 1;
    font-size: 14px;
}
@media (max-width:1367px) {
    .primary-button span {
        font-size: 13px;
    }
}
.primary-button:hover,
.primary-button:focus {
    color: var(--info-color);
    box-shadow: 0 0 40px rgb(21 39 84 / 33%);
}

.primary-button:hover:before,
.primary-button:focus:before {
    background-image: linear-gradient(to right, rgba(9, 113, 117, 1) 0%, rgba(2, 61, 105, 1) 100%);
    color: var(--info-color);
    box-shadow: 0 0 40px rgb(21 39 84 / 33%);
}

.primary-button .lnr {
    margin-left: 6px;
    font-weight: 600;
}

.primary-button.white-btn {
    border: 1px solid var(--info-color);
    background: var(--info-color);
    color: var(--dark-color);
    /* font-weight: 600; */
}

.primary-button.white-btn .lnr {
    font-weight: 600;
}

.primary-button.white-btn:hover,
.primary-button.white-btn:focus {
    border-color: var(--info-color);
    background: var(--info-color);
    color: var(--dark-color);
    opacity: 0.8;
}

.primary-button.white-btn.shadow-btn {
    box-shadow: 0 0 40px rgb(21 39 84 / 13%);
}

.primary-button.red-btn {
    border: 1px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--info-color);
    /* font-weight: 600; */
}

.primary-button.xl-button {
    padding: 15px 44px;
}

@media (max-width:480px) {
    .primary-button {
        font-size: 16px;
    }
}


/* header css */
.site-wrapper {
    overflow: hidden;
    /* height: 100vh; */
}

.site-logo {
    position: relative;
}

.site-logo img {
    position: relative;
    z-index: 1;
    width: 160px;
}
@media (max-width: 1367px) {
    .site-logo img {
        width: 130px;
    }
}
.site-banner-slider .slick-prev,
.site-banner-slider .slick-next {
    margin: 0;
    z-index: 1;
    width: 55px;
    height: 60px;
    border: 1px solid var(--secondary-color);
    /* border-radius: 60px; */
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-banner-slider .slick-prev {
    left: 10px;
}

.site-banner-slider .slick-next {
    right: 10px;
}

.site-banner-slider .slick-prev:before,
.site-banner-slider .slick-next::before {
    content: "";
    width: 14px;
    height: 14px;
    border-bottom: 2px solid var(--info-color);
    opacity: 1;
}

.site-banner-slider .slick-prev:before {
    border-left: 2px solid var(--info-color);
    transform: rotate(45deg);
    margin-right: -5px;
}

.site-banner-slider .slick-next:before {
    border-right: 2px solid var(--info-color);
    transform: rotate(-45deg);
    margin-left: -5px;
}

.site-navbar li {
    margin: 0 10px;
}
@media (max-width: 1367px) {
    .site-navbar li {
        margin: 0 7px;
    }
}
@media (max-width: 1200px) {
    .site-navbar li.d-xl-none {
        display: none;
    }
}
@media (max-width: 1140px) {
    .site-navbar li {
        margin: 10px 0;
    }
    .site-navbar li.d-xl-none {
        display: block;
    }
}
.site-navbar .nav-link {
    font-size: 14px;
    color: var(--info-color);
    font-family: var(--primary-font);
    font-weight: 700;
    position: relative;
    padding: 20px 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}
@media (max-width: 1367px) {
    .site-navbar .nav-link {
        font-size: 13px;
    }
}
@media (max-width: 1140px) {
    .site-navbar .nav-link {
        display: block;
        padding: 10px 5px;
    }
}
.nav-link::after,
.site-navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: scaleX(0);
    transform-origin: right bottom;
    transition: transform 0.3s ease;
}
@media (max-width: 1140px) {
    .nav-link::after,
    .site-navbar .nav-link.active::after {
        display: none;   
    }
}

.site-navbar .nav-link.active::after {
    transform: none;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left bottom;
}

.has-submenu {
    position: relative;
}

.has-submenu>.nav-link {
    padding-right: 24px;
}

.site-navbar .nav-link.active,
.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.has-submenu:hover>.nav-link {
    color: var(--info-color);
}

.has-submenu>.nav-link:before {
    content: "";
    position: absolute;
    right: 8px;
    top: 24px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    transition: var(--primary-transition-effect);
}
@media (max-width: 1140px) {
    .has-submenu>.nav-link:before {
        top: 12px;
    }
}
.has-submenu>.nav-link:focus::before,
.has-submenu:hover>.nav-link::before
.has-submenu>.nav-link.active::before {
border-color: #fff;
}
 {
    /* color: var(--secondary-color); */
    border-color: var(--theme-color);
}

.submenu {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--info-color);
    z-index: 1;
    width: 220px;
    padding: 15px 5px;
    /* box-shadow: 0 0 40px rgba(0, 0, 0, 0.1); */
    border-radius: 6px;
    max-height: 0;
    overflow: hidden;
    /* transform: translateY(20px); */
    transition: all 0.35s ease-in-out;
}
@media (max-width:1140px) {
    .submenu {
        position: static;
        padding: 0;
        width: 100%;
        background: transparent;
    }
}
.has-submenu:hover .submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    /* transform: none; */
    max-height: 500px;
}

.has-submenu.full-width-submenu {
    position: static;
}

.submenu.full-width {
    width: 100%;
    padding: 20px 50px;
    display: flex;
    flex-wrap: wrap;
    border-top: 0;
    border-top: 1px solid #ccc;
}

.submenu-col {
    width: 20%;
    padding: 0 40px;
    border-right: 1px solid #ccc;
}

.submenu-col:last-child {
    border-right: 0;
}

.site-header {
    background: transparent;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 10px;
}

.header-bottom-bar .col {
    position: inherit;
}

.site-navbar .submenu .nav-link-heading {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    /* background: var(--theme-color); */
    color: var(--theme-color);
    padding: 8px 5px;
    display: block;
    transition: all 0.35s ease-in-out;
    border-radius: 5px;
    margin-bottom: 5px;
}

.site-navbar .submenu .nav-link-heading:hover {
    color: var(--secondary-color);
}

/* .site-navbar .submenu .nav-link-heading:after {
    content: "";
    position: absolute;
    right: 17px;
    top: 16px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
} */
.site-navbar .submenu .nav-link {
    position: relative;
    padding: 5px;
    font-size: 13px;
    color: #1e1d1d;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1140px) {
    .site-navbar .submenu .nav-link {
        padding: 5px 5px 5px 20px;
        font-size: 12px;
        color: #fff;
        transition: all 0.35s ease-in-out;
    }
    .site-navbar .submenu .nav-link:before {
        content: "";
        position: absolute;
        left: 4px;
        top: 13px;
        width: 10px;
        height: 1px;
        background: #fff;
    }
}
.submenu.full-width .submenu-col ul li:first-child {
    display: none;
}

.submenu.full-width .submenu-col ul li:first-child+li .nav-link {
    border-top: 0;
}

/* .site-navbar .submenu li + li .nav-link {
    border-top: 1px solid #ccc;
} */
.site-navbar .submenu .nav-link:hover,
.site-navbar .submenu .nav-link:focus {
    color: var(--theme-color);
    transform: translateX(5px);
}
@media (max-width: 1140px) {
    .site-navbar .submenu .nav-link:hover,
    .site-navbar .submenu .nav-link:focus {
        color: #ffffff;
    }
}
.site-navbar>ul.d-flex {
    justify-content: flex-end;
}
@media (max-width: 1140px) {
    .site-navbar>ul.d-flex {
        display: block !important;
    }
}
.header-social-icon a {
    display: block;
    width: 14px;
    padding: 5px 0;
}

.header-social-icon li {
    margin-left: 14px;
}

.header-social-icon label {
    margin-bottom: 0;
    color: var(--info-color);
    font-weight: 600;
    font-size: 14px;
}

.site-banner {
    /* min-height: calc(100vh - 105px); */
    padding: 460px 0 100px;
    background-image: url(../img/bannerImg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.35s linear 0s;
}

@media (max-width: 1440px) {
    .site-banner {
        padding: 420px 0 50px;
    }
}
@media (max-width: 575px) {
    .site-banner {
        padding: 350px 0 30px;
    }
}
.site-banner:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 10%, rgba(0, 0, 0, 0) 100%);
}

.site-banner .container {
    position: relative;
}

.banner-content {
    padding-right: 80px;
}

.banner-content h1 {
    font-size: 70px;
    font-weight: 700;
    color: var(--info-color);
    line-height: 85px;
    margin-bottom: 20px;
}

.banner-content h1 span {
    font-size: 30px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 50px;
}

.banner-content p {
    font-size: 17px;
    color: var(--info-color);
    line-height: 34px;
    margin-bottom: 30px;
}

.banner-img {
    position: absolute;
    right: 140px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 750px;
}

.patern-layer-one {
    position: absolute;
    left: 0;
    top: -140px;
    right: 0;
    bottom: 0;
    width: 180%;
    background-position: left center;
    background-repeat: repeat;
    z-index: -1;
    opacity: 0.4;
}

.subheading {
    color: var(--theme-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    background: var(--info-color);
    padding: 0 5px;
    margin-left: 20px;
    margin-right: 20px;
}
@media (max-width: 1367px) {
    .subheading {
        font-size: 14px;
    }
}
.subheading:before {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    background: var(--theme-color);
    border-bottom: 1px solid;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.site-banner h1 {
    color: var(--info-color);
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 70px;
}
@media (max-width: 1440px) {
    .site-banner h1 {
        font-size: 45px;
        line-height: 60px;
    }
}
@media (max-width: 1367px) {
    .site-banner h1 {
        font-size: 40px;
        line-height: 50px;
    }
}
@media (max-width:1199px) {
    .site-banner h1 {
        font-size: 36px;
        /*line-height: 50px;*/
    }
}
@media (max-width:767px) {
    .site-banner h1 {
        font-size: 30px;
        line-height: 40px;
    }
    .site-banner h1 br {
        display: none;
    }
}
@media (max-width:575px) {
    .site-banner h1 {
        font-size: 25px;
        line-height: 34px;
    }
}

.site-banner p {
    color: var(--info-color);
    margin: 20px 0 30px;
    line-height: 30px;
    font-size: 18px;
}
@media (max-width: 1367px) {
    .site-banner p {
        margin: 20px 0 30px;
        font-size: 16px;
        line-height: 25px;
    }
}
@media (max-width: 767px) {
    .site-banner p br {
        display: none;
    }
}
@media (max-width:575px) {
    .site-banner p {
        margin: 10px 0 20px;
    }
}

.site-banner .subheading {
    color: #4ea8ab;
    margin-bottom: 20px;
    font-weight: 700;
    background: transparent;
    margin: 0 0 15px;
}
@media (max-width: 1367px) {
    .site-banner .subheading {
        font-size: 14px;
    }
}
.site-banner .subheading:before {
    display: none;
}

.about-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 575px) {
   .about-img {
        gap: 10px;
    } 
}
.about-img-col:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.about-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-services-v1 {
    background-image: url(../img/bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    position: relative;
    padding-bottom: 90px;
}

.our-services-v1:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgb(8 111 116 / 66%) 100%, rgba(0, 0, 0, 0) 100%);
}

.subheading.no-bar {
    font-weight: 700;
    color: var(--info-color);
    background: transparent;
}

.subheading.no-bar::before {
    display: block;
}

.service-card-v1 {
    background: var(--info-color);
    display: block;
}

.service-col {
    padding: 0 10px;
}

.service-card-v1-content {
    padding: 30px;
}
@media (max-width: 1440px) {
    .service-card-v1-content {
        padding: 20px;
    }
}
.service-card-v1-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media (max-width: 1440px) {
    .service-card-v1-content h3 {
        font-size: 20px;
    }
}
@media (max-width:575px) {
    .service-card-v1-content h3 {
        font-size: 18px;
    }
}
.service-card-v1-content p {
    margin-bottom: 0;
    color: var(--text-color);
    line-height: 27px;
}

.service-slider {
    margin-top: 40px;
}
@media (max-width: 1367px) {
    .service-slider {
        margin-top: 25px;
    }
}
.service-card-v1-img {
    overflow: hidden;
}

.service-card-v1-img img {
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
    transition: var(--primary-transition-effect);
}

.service-card-v1:hover img {
    transform: scale(1.1);
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
    display: flex !important;
}

.slick-slide>div {
    display: flex;
    flex-direction: column;
    height: 100%;
}
@media (max-width: 992px) {
    .about-content {
        margin-bottom: 30px;
    }
}
.about-content ul {
    margin-bottom: 25px;
}

.about-content li {
    margin-top: 7px;
    color: #808080;
    font-size: 18px;
    display: inline-block;
    width: 49%;
    vertical-align: top;
    padding-right: 6px;
}
@media (max-width: 1367px) {
    .about-content li {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .about-content li {
        width: 100%;
    }
}
.about-content.about-content-inner li {
    width: 34%;
}
@media (max-width: 1199px) {
    .about-content.about-content-inner li {
        width: 100%;
    }
}
.about-content li .lnr {
    color: var(--theme-color);
    font-weight: 600;
}

.our-services-v2-content h3 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 5px;
}
@media (max-width: 1440px) {
    .our-services-v2-content h3 {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .our-services-v2-content h3 {
        font-size: 18px;
    }
}
.our-services-v2-content a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--theme-color);
    font-family: var(--primary-font);
    background: var(--info-color);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid;
}
@media (max-width: 767px) {
    .our-services-v2-content a {
        font-size: 12px;
        letter-spacing: 1px;
    }
}
.our-services-v2-content {
    padding-top: 20px;
}

.our-services-v2-content a .lnr {
    position: absolute;
    top: 2px;
    right: 0;
    font-size: 14px;
    font-weight: 600;
    z-index: -1;
    transition: var(--primary-transition-effect);
}

.our-services-v2-card {
    margin-bottom: 30px;
}

.our-services-v2-card:hover .our-services-v2-content a .lnr {
    right: -20px;
}

.our-services-v2-img {
    overflow: hidden;
}

.our-services-v2-img img {
    transition: var(--primary-transition-effect);
}

.our-services-v2-card:hover .our-services-v2-img img {
    transform: scale(1.05);
}

.our-services-v2 .section-info {
    margin-bottom: 30px;
}

.our-services-v2 .section-heading,
.our-services-v2 .section-heading span,
.our-services-v2 .section-heading u {
    margin-bottom: 25px;
}
@media (max-width:767px) {
    .our-services-v2 .section-heading, 
    .our-services-v2 .section-heading span, 
    .our-services-v2 .section-heading u {
        margin-bottom: 15px;
    }
}
.our-services-v2-card p {
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 27px;
}

.counter-section {
    background-image: url(../img/bg.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.counter-section .container {
    position: relative;
}

.counter-section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #097175d9;
    z-index: 0;
}

.counter-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.counter-list .counter {
    width: 25%;
    text-align: center;
}
@media (max-width: 1199px) {
    .counter-list .counter {
        padding: 0 50px;
    }
}
@media (max-width:991px) {
    .counter-list .counter {
        width: 50%;
        padding: 30px 50px;
    }
}
@media (max-width:575px) {
    .counter-list .counter {
        padding: 30px;
    }
}
@media (max-width:480px) {
    .counter-list .counter {
        padding: 20px;
    }
}
.counter-number,
.counter-number span {
    font-size: 70px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: var(--info-color);
}
@media (max-width: 1440px) {
    .counter-number, .counter-number span {
        font-size: 50px;
        line-height: normal;
    }
}
@media (max-width: 575px) {
    .counter-number, .counter-number span {
        font-size: 40px;
    }
}
@media (max-width:480px) {
    .counter-number, .counter-number span {
        font-size: 30px;
    }
}

.counter h6 {
    margin-bottom: 0;
    letter-spacing: 3px;
    color: var(--info-color);
    margin-top: 10px;
}
@media (max-width:1199px) {
    .counter h6 {
        font-size: 14px;
        letter-spacing: 2px;
    }
}
@media (max-width:480px) {
     .counter h6 {
        font-size: 13px;
        letter-spacing: 1px;
    }   
}
.counter-list .counter+.counter {
    border-left: 1px solid #cccccc5c;
}
@media (max-width:991px) {
    .counter-list .counter:nth-child(n + 3) {
        border-top: 1px solid #cccccc5c;
    }
    .counter-list .counter:nth-child(3n) {
            border-left: 0;
    }
}
.value-card {
    padding: 30px;
    background: var(--theme-color);
    height: 100%;
}

.value-content h3 {
    color: var(--info-color);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 25px 0 15px;
}

.value-content p {
    color: var(--info-color);
    margin-bottom: 0;
    opacity: 0.8;
}

.value-icon img {
    width: 50px;
}

.accordion>.card {
    border: 0;
}

.accordion>.card+.card {
    margin-top: 15px;
}

.card-header {
    padding: 0;
    background-color: transparent;
    border-bottom: 0;
}

.card-header .btn-link {
    background: var(--theme-color);
    border: 0;
    padding: 20px 30px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    color: #f9f9f9;
}
@media (max-width: 1440px) {
    .card-header .btn-link {
        padding: 15px 30px;
        font-size: 18px;
    }
}
@media (max-width: 1280px) {
    .card-header .btn-link {
        padding: 15px 20px;
        font-size: 16px;
    }
}
@media (max-width: 991px) {
    .why-choose-content {
        margin-bottom: 30px;
    }
}
.card-header .btn-link.collapsed {
    background: #f9f9f9;
    color: var(--dark-color);
}

.card-header .btn-link:focus {
    box-shadow: none;
}

.card-body {
    background: var(--theme-color);
    color: var(--info-color);
    line-height: 30px;
    font-size: 18px;
    padding: 20px 30px 20px;
    opacity: 0.8;
}

.card-header .btn-link:before {
    content: "_";
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    line-height: 25px;
    background: #ffffff38;
    border-radius: 4px;
    text-align: center;
}
@media (max-width: 1440px) {
    .card-header .btn-link:before {
        top: 11px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}
.card-header .btn-link.collapsed:after {
    content: "+";
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    line-height: 42px;
    background: #dadada;
    color: var(--info-color);
    border-radius: 4px;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
}
@media (max-width: 1440px) {
    .card-header .btn-link.collapsed:after {
        top: 11px;
        right: 15px;
        width: 35px;
        height: 35px;
        line-height: 37px;
    }
}
.doc-section {
    background: url(../img/doc.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.doc-section:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgb(251 251 251 / 98%) 100%, rgba(0, 0, 0, 0) 100%);
    /* filter: blur(300px); */
}

.doc-content .subheading {
    color: var(--theme-color);
}

.doc-content ul {
    margin-top: 40px;
    margin-bottom: 40px;
}

.doc-content li {
    /* color: var(--info-color); */
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--primary-font);
    opacity: 0.9;
    padding-left: 50px;
    position: relative;
}

.doc-content li+li {
    margin-top: 12px;
}

.doc-content li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 35px;
    height: 1px;
    background: var(--primary-color);
    opacity: 0.9;
}

.doc-ed-img img+img {
    margin-left: 30px;
}

.doc-ed-img img {
    width: 220px;
    background: var(--info-color);
    padding: 17px;
    border-radius: 6px;
}

/* .doc-content .primary-button::before {
    display: none;
}
.doc-content .primary-button {
    color: var(--dark-color);
    border: 1px solid var(--info-color);
    background: var(--info-color);
} */

@media (max-width: 991px) {
    .doc-content {
        margin-bottom: 30px;
        text-align: center;
    }
}

.before-gallery {
    display: flex;
    gap: 20px;
}

.process-section {
    background-image: url(../img/bg.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.process-section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #097175d9;
    z-index: 0;
}

.process-section .container {
    position: relative;
}

.process-section .primary-button {
    background: #ffffff;
    color: var(--theme-color);
}

.process-section .primary-button::before {
    display: none;
}

.process-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 20px;
}
@media (max-width:767px) {
    .process-list {
        margin-top: 30px;
    }
}
.process-col {
    width: 23.8%;
    position: relative;
    text-align: center;
    padding: 40px 20px 30px;
    background: #ffffff1f;
}
@media (max-width: 1440px) {
    .process-col {
        width: 23.6%;
    }
}
@media (max-width: 1199px) {
    .process-col {
        width: 48%;
    }
}
@media (max-width:575px) {
    .process-col {
        width: 100%;
    }
}
.process-col h3 {
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--info-color);
    margin-bottom: 10px;
}
@media (max-width: 1280px) {
    .process-col h3 {
        font-size: 16px;
    }
}
.process-col p {
    margin-bottom: 0;
    color: var(--info-color);
    opacity: 0.8;
    line-height: 25px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: #097579;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.process-icon img {
    width: 45px;
    opacity: 0.9;
}

.process-col>span {
    text-transform: uppercase;
    color: var(--info-color);
    margin-bottom: 20px;
    display: block;
    letter-spacing: 3px;
    font-weight: 900;
}

.feeback-card {
    background: var(--info-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.feeback-card>img {
    width: 50px;
    margin: 0 auto 6px;
}

.feeback-card p {
    margin: 10px 0 20px;
    font-family: var(--primary-font);
    color: var(--text-color);
    text-align: justify;
    text-align-last: center;
}

.feecback-owner {
    position: relative;
    padding: 5px 0 5px 73px;
    /* display: inline-block; */
    margin: 0 auto;
}

.feecback-img {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: -3px;
}

.feecback-owner h5 {
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 600;
}

.feeback-card .rating img {
    width: 80px;
    display: block;
    margin: 0 auto;
}

.feedback-slider .slick-track {
    padding: 20px 0;
}
.before-gallery-col {
    padding: 0 10px;
}
.feeback-col {
    padding: 0 15px;
}

.book-img {
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}
@media (max-width: 1280px) {
    .book-img {
        background-position: center;
    }
}
.book-section {
    background: var(--theme-color);
}

.book-content {
    /* background: var(--theme-color); */
    /* height: 100%; */
    padding-left: 40px;
}
@media (max-width: 1280px) {
        .book-content {
        padding-left: 0;
    }
}
/* .book-content .subheading.no-bar {
    color: var(--theme-color);
} */
.form-control {
    height: 50px;
    padding: 10px 20px;
    font-size: 16px;
    font-family: var(--primary-font);
    background: #dbeeef;
    color: #242424;
    font-weight: 600;
}

.form-control:focus {
    background: #dbeeef;
    border-color: #ced4da;
    box-shadow: none;
}

textarea.form-control {
    height: 200px;
}

.blog-card {
    position: relative;
    overflow: hidden;
}

.blog-img {
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    transform: scale(1.01);
    transition: .7s cubic-bezier(.39, .18, 0, .85);
}

.blog-card:hover .blog-img img {
    transform: scale(1.03);
}

.blog-content {
    margin-top: 30px;
}

.blog-content h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
}

@media (max-width: 1440px) {
    .blog-content h3 {
        font-size: 20px;
        line-height: normal;
    }
}
@media (max-width: 575px) {
    .blog-content h3 {
        font-size: 18px;
    }
}
.blog-content p {
    color: var(--text-color);
}

.link {
    font-family: var(--primary-font);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    border-bottom: 1px solid;
}

.link img {
    width: 10px;
    filter: invert(1);
}

.blog-img .date {
    width: 70px;
    height: 70px;
    font-family: var(--primary-font);
    background: var(--theme-color);
    color: var(--info-color);
    position: absolute;
    top: 15px;
    right: 15px;
    text-align: center;
    line-height: 27px;
    padding: 9px;
}

.blog-img .date span {
    display: block;
    font-family: var(--primary-font);
    font-size: 30px;
    font-weight: 700;
}

.book-content .primary-button {
    background: #2f989c;
    color: var(--info-color);
}

.book-content .primary-button::before {
    display: none;
}

.footer-logo p {
    color: #ffffffc2;
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 26px;
}

.footer-logo h3 {
    color: var(--info-color);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-title {
    color: #208a8e;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
@media (max-width: 1280px) {
    .footer-title {
        font-size: 16px;
    }
}
.footer-links li+li {
    margin-top: 10px;
}

.site-footer {
    background: #151515;
    padding-top: 50px;
    padding-bottom: 60px;
    border-top: 1px solid;
}
@media (max-width: 767px) {
    .site-footer {
        padding-top: 40px;
        padding-bottom: 10px;
    }
}

.footer-logo {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid;
}
@media (max-width: 767px) {
    .footer-logo {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
}
.footer-social-links li+li {
    margin-left: 12px;
}

.footer-social-links a {
    width: 26px;
    height: 26px;
    background: #208a8e;
    display: block;
    text-align: center;
    border-radius: 2px;
}

.footer-social-links a img {
    width: 15px;
}

.footer-links a {
    position: relative;
    color: var(--info-color);
    font-size: 15px;
    display: inline-block;
    font-family: var(--primary-font);
    transition: var(--primary-transition-effect);
}
@media (max-width: 1280px) {
    .footer-links a {
        font-size: 14px;
    }
}
.footer-links a:hover {
    color: var(--info-color);
    transform: translateX(15px);
}

.footer-links a .lnr {
    font-size: 11px;
    margin-right: 3px;
}

.footer-links.address-links a {
    padding-left: 25px;
    display: inline-block;
    position: relative;
}

.footer-links.address-links a .lnr {
    position: absolute;
    left: 0;
    top: 3px;
}

.site-copyright {
    background: #151515;
    border-top: 1px solid;
}
.site-copyright {
    padding: 25px 0;
}
.site-copyright p {
    margin-bottom: 0;
    /* text-align: center; */
    font-size: 15px;
    font-family: var(--primary-font);
    color: var(--info-color);
}

.f-logo img {
    width: 160px;
}
@media (max-width: 1367px) {
    .f-logo img {
        width: 130px;
    }
}
.slick-dots {
    bottom: -55px;
}

.slick-dots li button {
    background: var(--info-color);
    opacity: 0.8;
}

.slick-dots .slick-active button {
    opacity: 1;
}


.about-banner {
    padding: 230px 0 20px;
    /* background-image: url(../img/inner-bg.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: center center; */
    position: relative;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to right, rgba(2, 61, 105, 1) 0%, rgba(9, 113, 117, 1) 100%);
}

.about-banner h1 {
    font-size: 37px;
    font-weight: 800;
    color: #ffffff;
    /* line-height: 60px; */
    margin-bottom: 15px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
}
@media (max-width: 1199px) {
    .about-banner h1 {
        font-size: 35px;
    }
}
@media (max-width: 767px) {
    .about-banner h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }
}
@media (max-width: 575px) {
    .about-banner h1 {
        font-size: 25px;
    }
}
ul.breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background-color: transparent;
    justify-content: center;
    display: none;
}

ul.breadcrumb li {
    display: inline;
    font-size: 18px;
    color: #ffffffe0;
}

ul.breadcrumb li a {
    font-size: 18px;
    color: var(--info-color);
    text-decoration: none;
}

ul.breadcrumb li+li:before {
    padding: 6px;
    color: var(--info-color);
    content: "/\00a0";
    margin-left: 6px;
    vertical-align: text-bottom;
}

.about-section-image img {
    width: 100%;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
    overflow: hidden;
}




.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 700;
    position: relative;
    color: #212529;
    font-size: 20px;
}

.faq-item.active .faq-question {
    color: #fff;
}

.faq-item.active {
    background-color: var(--theme-color);
    /* color: #fff; */
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
    color: var(--text-color);
    font-size: 18px;
    line-height: 28px;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 300px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 8px 25px rgb(0 0 0 / 15%);
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.testimonial-card__stars {
    color: #ffc107;

    font-size: 26px;
}

.testimonial-card__text {
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 10px;
    color: #444;
}

.testimonial-card__name {
    font-weight: 700;
    color: #097175;
    font-size: 20px;
    margin-bottom: 0;
}

.testimonial-cta {
    margin: 80px auto;
    max-width: 900px;
    text-align: center;
    padding: 50px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #05506d, #086f74);
    color: white;
    /* box-shadow: 0 10px 30px rgb(6 87 111); */
}

.testimonial-cta__title {
    font-size: 28px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.testimonial-cta__text {
    margin-bottom: 25px;
    opacity: 0.9;
}

.testimonial-cta__button {
    display: inline-block;
    background: white;
    color: #076872;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.testimonial-card img {
    max-width: 60px;
    margin-bottom: 15px;
}


/* LEFT SIDE */
.values-left {
    text-align: center;
}

.values-left i {
    font-size: 40px;
    margin-bottom: 20px;
}

.values-left h1 {
    font-size: 42px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.values-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


.card-dark,
.card-gold {
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
}
@media (max-width: 1280px) {
   .card-dark,
    .card-gold {
        padding: 25px 15px;
    } 
}
.card-dark {
    border: 2px solid #097175eb;
    /* color: #fff; */
}


.card-icon img {

    margin-bottom: 15px;
    max-width: 80px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--primary-font);
}
@media(max-width: 1366px) {
    .card-title {
        font-size: 18px;
    }
}
.card-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
}

@media(max-width: 1366px) {
    .card-text {
        font-size: 16px;
        line-height: 22px;
    }
}
@media(max-width: 767px) {
    .values-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .values-right {
        grid-template-columns: 1fr;
    }
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #097175;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 70px;
    position: relative;
    width: 50%;
}


.timeline-item.left {
    left: 0;

}


.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: white;
    border: 4px solid #023f6a;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -10px;
}

.content {
    background: #0975790f;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.content:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 18px;
    /* color: #097175; */
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.content h3 {
    margin: 5px 0 10px;
    font-size: 23px;
    font-weight: 700;
    color: #097175;
    text-transform: uppercase;
}

.content p {
    font-size: 18px;
    color: #666;
}


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

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        margin-bottom: 30px;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }

    .timeline-item::after {
        left: 10px;
    }
}

.hair-treatment-section .row+ .row [class^="col-"] {
    margin-bottom: 40px;
}

.hair-transplant-card {

    box-shadow: 0 0 25px rgb(0 0 0 / 17%);
    margin-bottom: 30px;
    background: var(--info-color);
    height: 100%;
}

.hair-transplant-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #097175;
}

.hair-transplant-card p {
    margin-bottom: 0;
    color: var(--text-color);
    line-height: 27px;
}

.banner {
    background: linear-gradient(to right, #4facfe, #00f2fe);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.banner h1 {
    font-size: 36px;
}

.banner p {
    margin-top: 10px;
    opacity: 0.9;
}





/* TOP */
.contact-section__top {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.contact-card {
    flex: 1;
    background: #f3f4f6;
    padding: 30px;
    border-radius: 15px;
    /* display: flex; */
    /* gap: 15px; */
    /* align-items: center; */
    text-align: center;
}

.contact-card__icon {
    font-size: 20px;
    background: #097175;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
}

.contact-card__title {
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #097175;
}

.contact-card__text {
    font-size: 18px;
}

.contact-section__box {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    background: #097175;
}

.contact-section__map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

/* FORM */
.contact-form {
    flex: 1;
    padding: 40px;
    color: #fff;
    width: 50%;
}

.contact-section__map {
    width: 50%;
}

.contact-form__subtitle {
    font-size: 12px;
    letter-spacing: 2px;
}

.contact-form__title {
    font-size: 27px;
    margin: 10px 0 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-form__row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.contact-form textarea {
    height: 120px;
    margin-bottom: 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ddd;
}

.contact-form__btn {
    background: #fff;
    color: #097175;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-section__top {
        flex-direction: column;
    }

    .contact-section__box {
        flex-direction: column;
    }

    .contact-form__row {
        flex-direction: column;
    }
}

/*.contact_us {
    padding: 100px;
}
*/
p.contact-card__text a {
    font-size: 18px;
}

.ux-body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    background: #eef3f4;
}

/* ===== MAIN FIRST (LEFT SIDE) ===== */
.ux-main {
    /* flex: 1; */
    padding: 100px;
}

.ux-sidebar {
    /* width: 270px; */
    min-height: 60vh;
    padding: 30px 20px;
    background: linear-gradient(180deg, #03476b, #097175);
    color: #fff;
}

.ux-sidebar-heading {
    font-size: 16px;
    margin-bottom: 12px;
}

.ux-search-box {
    position: relative;
    margin-bottom: 30px;
}

.ux-search-input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: none;
    border-radius: 6px;
}

.ux-search-icon {
    position: absolute;
    right: 12px;
    top: 10px;
    color: #0f6b6f;
}

/* Categories */
.ux-category-list {
    list-style: none;
    padding: 0;
}

.ux-category-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.ux-category-item:hover {
    background: #fff;
    color: #0f6b6f;
    transform: translateX(-5px);
}

/* ===== CARDS ===== */
.ux-card-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.ux-card-box {
    background: #fff;
    width: 340px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.ux-card-box:hover {
    transform: translateY(-8px);
}

.ux-card-image-wrapper {
    overflow: hidden;
}

.ux-card-image {
    width: 100%;
    transition: 0.4s;
}

.ux-card-box:hover .ux-card-image {
    transform: scale(1.08);
}

/* Date */
.ux-date-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0f6b6f;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
}

.ux-date-day {
    font-weight: bold;
}

.ux-date-month {
    font-size: 12px;
}

/* Content */
.ux-card-content {
    padding: 20px;
}

.ux-card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.ux-card-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.ux-card-link {
    text-decoration: none;
    color: #0f6b6f;
    font-weight: bold;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .ux-body {
        flex-direction: column;
    }

    .ux-sidebar {
        width: 100%;
        order: 2;
        /* sidebar goes below */
    }

    .ux-main {
        order: 1;
        padding: 20px;
    }

    .ux-card-wrapper {
        justify-content: center;
    }
}

/* Gallery Item */
.gallery a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.gallery img {
    width: 100%;
    /* height: 250px; */
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery a:hover img {
    transform: scale(1.08);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery a:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay img {
    width: 50px;
    height: 50px;
}

/*.gallery-section {
    padding: 100px;
}*/

/* .primary-button.header-button {
    background: #033e6a;
}
.primary-button.header-button::before {
    display: none;
} */
 .hair-transplant-content {
    padding: 30px;
}
.before-section {
    BACKGROUND: linear-gradient(to right, rgb(251 251 251 / 98%) 100%, rgba(0, 0, 0, 0) 100%);
}

.benefit-section {
    background-image: url(../img/bg.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.benefit-section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #097175d9;
    z-index: 0;
}
.benefit-section .container {
    position: relative;
}

.benefit-content li .lnr {
    color: var(--info-color);
    font-weight: 600;
    margin-right: 8px;
}
.benefit-content ul li {
    color:  var(--info-color);
    font-size: 18px;
}
.benefit-content ul li+li {
    margin-top: 7px;
}
.benefit-image {
    padding-right: 30px;
}
.benefit-content-inner .section-info b {
    font-size: 20px;
}

.procedure-list .col-md-3 {
    margin-bottom: 30px;
}
.procedure-col {
    position: relative;
    text-align: center;
    padding: 40px 20px 30px;
    background: #f2f2f2;
    /* box-shadow: 0 0 30px rgb(0 0 0 / 10%); */
    height: 100%;
}

.procedure-col>span {
    text-transform: uppercase;
    color: #097579ad;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 3px;
    font-weight: 900;
    display: none;
}

.procedure-icon {
    width: 80px;
    height: 80px;
    background:  #ddddddd4;;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.procedure-col h3 {
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 700;
    color: #097175;
    margin-bottom: 10px;
}

.procedure-col p {
    margin-bottom: 0;
    color: var(--dark-color);
    opacity: 0.8;
    line-height: 25px;
}

.procedure-icon img {
    max-width: 49px;
}

.procedure-list [class^="col-"] {
    margin-bottom: 30px;
}

#toggle-btn {
    background: transparent;
    border: 0;
    width: 35px;
    margin-left: 30px;
    display: none;
}
@media (max-width: 1140px) {
    #toggle-btn {
        display: block;
    }
    .site-navbar {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        background: #096f74;
        width: 350px;
        z-index: 2;
        padding: 70px 30px 30px;
        transform: translateX(100%);
        transition: all 0.35s linear 0s;
    }
}
@media (max-width: 767px) {
    .site-navbar {
        width: 320px;
    }
}
#toggle-close-btn {
    background: #055e62;
    border: 0;
    display: none; 
    color: #fff;
    font-family: var(--primary-font);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    font-size: 13px;
}
@media (max-width: 1140px) {
    #toggle-close-btn {
        display: block; 
    }
}
#toggle-close-btn .lnr {
    font-weight: 600;
    vertical-align: top;
    margin-right: 10px;
    position: relative;
    top: 2px;
}
#faded-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000a3;
    z-index: 1;
}
@media (max-width: 575px) {
    .header-btn .primary-button {
        display: none;
    }
}

.social-li-nks {
    position: fixed;
    z-index: 999;
    bottom: 25px;
    right: 25px;
    width: 40px;
    animation: bounce2 2s ease infinite 1s;
}

.call-us {
    position: fixed;
    z-index: 999;
    bottom: 25px;
    right: 80px;
    width: 40px;
    animation: bounce2 2s ease infinite;
}
@keyframes bounce2 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}