@font-face {
    font-family: 'head-font';
    src: url('../fonts/ibrand.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'body-font';
    src: url('../fonts/Inter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ::selection {
    color: var(--color-white) !important;
    background-color: var(--color-primary, #d6f5d6);
    text-shadow: none;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    color: #ffffff;
    overflow-x: hidden !important;
}

:root {
    --primary-color: #0E8D84;

    --font-head: 'head-font';
    --font-para: 'body-font';

    --white: #ffffff;
    --black: #000000;

}



a {
    text-decoration: none;
}

a,
button,
.nav-link {
    transition: 0.3s ease;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-head);
}

a {
    font-family: var(--font-head);

}

p {
    font-family: var(--font-body);
}

h2 {
    color: rebeccapurple;
}

.container-fluid {
    width: 80%;
}


/* =======================================================================================
                           common code
========================================================================================= */
.color-primary {
    color: var(--primary-color);
}

.color-white {
    color: var(--white);
}

.color-black {
    color: var(--black);
}

.sub-main-white {
    color: var(--white);
}

.sub-main {
    font-size: 16px;
    margin-bottom: 15px;
}

.main-head {
    font-size: 36px;
}

.custom-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 44px 10px 26px;
    border: 1.5px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease, padding 0.3s ease;
}

.custom-btn a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.custom-btn a:hover::after {
    transform: translateX(0);
}

.custom-btn a:hover {
    color: #0f9d8a;
}

.custom-btn a i {
    position: absolute;
    right: 22px;
    font-size: 16px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
    font-weight: 900;
}

.custom-btn a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.custom-btn-full a {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}





/* =================================top bar ============================*/

/* TOP BAR */
.topbar {
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    padding: 9px;
}

.top-link {
    color: #fff;
    text-decoration: none;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.top-link i {
    transition: transform 0.25s ease;
}

.top-link:hover {
    color: var(--black);
}

.top-link:hover i {
    animation: topicon 0.45s ease;
    color: var(--black);
}

.navbar-nav .dropdown-menu {
    position: absolute !important;
}

@keyframes topicon {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    70% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar-nav .dropdown.show>.dropdown-toggle::after {
    transform: rotate(180deg);
}

.top-icon {
    color: #fff;
    margin-left: 16px;
    display: inline-block;
    transition: color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.top-icon:hover {
    color: #111;
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.top-divider {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
}

.top-tag {
    color: #fff;
    font-size: 13px;
}


.main-header {
    border-bottom: 1px solid #eee;
    padding: 6px 0;
}

.main-header .container-fluid {
    justify-content: left !important;
}

.logo {
    width: 100%;
    height: 60px;
}

.navbar-nav .nav-link {
    font-size: 20px !important;
}

.offcanvas {
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
    border-left: 2px solid var(--primary-color) !important;
}

.navbar-nav {
    gap: 90px;
    margin-left: 100px;
}

.brand-text {
    font-size: 20px;
    color: var(--primary-color);
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    padding: 8px 0 !important;
    position: relative;
}

.nav-link.active,
.nav-link:hover {
    color: var(--black) !important;
}


.offcanvas-header img {
    width: 100%;
    height: 50px;
}

.offcanvas-header {
    background: linear-gradient(135deg, #13b5ac, #0E8D84, #0a6a64);
    border-top-left-radius: 8px;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 400px;
}

.offcanvas-header a {
    display: flex;
    align-items: center;
}

.offcanvas-header img {
    max-height: 40px;
    filter: brightness(0) invert(1);
}

.offcanvas-footer h6 {
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 12px;
}

.offcanvas-footer {
    overflow: hidden;
}

.offcanvas-footer h6::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 90%;
    height: 2px;
    background: #0E8D84;
    transform: translateX(-50%);
}


.navbar-toggler:focus {
    box-shadow: none !important;
}

.offcanvas-header .btn-close {
    filter: invert(1);
    transition: transform .3s ease, filter .3s ease;
}

.offcanvas-header .btn-close:hover {
    transform: rotate(90deg) scale(1.1);
    filter: invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.offcanvas-footer {
    background: #f8f9fa !important;
    padding: 18px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.offcanvas-footer h6 {
    font-weight: 600 !important;
    color: #0E8D84 !important;
    margin-bottom: 6px !important;
}

.offcanvas-footer p {
    margin: 8px 0 !important;
    display: flex !important;
    align-items: center !important;
    font-size: 14px !important;
    color: #444 !important;
    font-size: 16px;
    transition: all .25s ease-in-out !important;
}

.offcanvas-footer p i {
    color: #0E8D84 !important;
    font-size: 15px !important;
    margin-right: 6px !important;
}

.offcanvas-footer p:hover {
    color: #0E8D84 !important;
    transform: translateX(4px) !important;
}

.contact-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-card .card-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
}

.offcanva-social .social-icons {
    display: flex;
    gap: 14px;
}

.offcanva-social .social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.offcanva-social .social-icons a i {
    transition: transform 0.3s ease;
    color: var(--primary-color) !important;
    font-size: 16px;
}

.offcanva-social .social-icons a:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 22px rgba(15, 143, 133, 0.35);
}

.offcanva-social .social-icons a:hover i {
    animation: iconJump 0.5s ease;
}

@keyframes iconJump {
    0% {
        transform: translateY(0) scale(1);
    }

    30% {
        transform: translateY(-8px) scale(1.1);
    }

    60% {
        transform: translateY(0) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.contact-list i {
    color: var(--primary-color);
    font-size: 15px;
}

.contact-list a {
    color: inherit;
    text-decoration: none;
}

.contact-list a:hover {
    color: var(--primary-color);
}

.offcanvas{
    width: 100%;
    background-image: url('../images/bg/off-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.offcanvas-footer .social-icons a {
    width: 34px !important;
    height: 34px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 50% !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    color: #555 !important;
    transition: .3s ease-in-out !important;
    text-decoration: none !important;
}

.offcanvas-footer .social-icons a:hover {
    background: #0E8D84 !important;
    color: #fff !important;
    border-color: #0E8D84 !important;
    transform: translateY(-3px) !important;
}

.offcanvas-footer .copyright {
    font-size: 12px !important;
    color: #777 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding-top: 8px !important;
    margin-top: 10px !important;
    text-align: center !important;
}

.navbar-nav .nav-link {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    padding: 8px 18px;
    transition: color 0.3s ease;
}

/* hover */
.navbar-nav .nav-link:hover {
    color: #000;
}

/* active text */
.navbar-nav .nav-link.active {
    color: #000;
}

/* bottom center dot */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: -0px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scale(1);
}

.navbar-nav .nav-link:hover::after {
    transform: translateX(-50%) scale(1);
}


/* =======================footer========================== */
.footer-overlay {
    position: relative;
    background-color: var(--primary-color);
    color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0 40px;
    overflow: hidden;
}

.footer-overlay .row {
    position: relative;
    z-index: 50;
}

.footer-overlay-1 {
    position: absolute;
    left: 0%;
    top: 0%;
    z-index: 0 !important;
    opacity: 0.5;
}

.footer-overlay-2 {
    position: absolute;
    right: 0%;
    top: 0%;
    z-index: 0 !important;
    opacity: 0.2;
}

.footer-brand img {
    height: 140px;


}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #ffffff;
    display: block;
    margin-top: 6px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact a {
    font-size: 16px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #e6f6f4;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    font-weight: 400 !important;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-contact li {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.95;
}

.footer-bottom {
    background: #ffffff;
    color: #0a6f68;
    padding: 2px 0;
    font-size: 14px;
}
.footer-bottom p{
    font-size: 16px;
}

.footer-bottom strong {
    color: var(--primary-color);
    font-weight: 700;
}

.footer-bottom-links a {
    color: #0a6f68;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #0f9d8a;
}



/* =========banner section============ */
.banner-carousel-wrapper .banner-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.banner-carousel-wrapper {
    position: relative;
    overflow: visible !important;
}

.banner-carousel-wrapper .owl-left-btn,
.banner-carousel-wrapper .owl-right-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}


.banner-carousel-wrapper:hover .owl-left-btn,
.banner-carousel-wrapper:hover .owl-right-btn {
    opacity: 1;
}


.banner-carousel-wrapper .owl-left-btn::before,
.banner-carousel-wrapper .owl-right-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0E8D84;
    z-index: -1;
    opacity: 1.6;
}

.banner-carousel-wrapper .owl-left-btn:hover,
.banner-carousel-wrapper .owl-right-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.banner-carousel-wrapper .owl-left-btn {
    left: 15px;
}

.banner-carousel-wrapper .owl-right-btn {
    right: 15px;
}

.banner-item img {
    height: 480px;
    object-fit: cover;
}

.banner-overlay-cards {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 5;
    overflow: visible;
    border-radius: 14px;
}

.overlay-card h5 {
    color: var(--primary-color);
    font-size: 22px;
}

.banner-sub-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.banner-sub-card img {
    transition: transform 0.3s ease;
}

.banner-sub-card:hover img {
    animation: iconJump 0.6s ease;
}

@keyframes iconJump {
    0% {
        transform: translateY(0) scale(1);
    }

    30% {
        transform: translateY(-10px) scale(1.08);
    }

    60% {
        transform: translateY(0) scale(1.03);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}


.overlay-card p {
    font-size: 14px;
}

.bg-green h5 {
    color: var(--white) !important;
}

.bg-green {
    background-color: var(--primary-color) !important;
}

.overlay-card {
    width: 260px;
    padding: 25px 20px;
    text-align: center;
    border-radius: 14px;
    background: #fff;

}

.overlay-card-active {
    padding: 0px 10px;
}

.overlay-card img {
    width: 70px;
}



.overlay-card.overlay-card-active h5 {
    color: var(--white);
    font-size: 22px;
}

.overlay-card.overlay-card-active {
    background: var(--primary-color);
    color: #fff;
    width: 300px;
    border-radius: 0;
}



/* ====================================about us section============== */
.home-about {
    margin-top: 150px;
    padding-bottom: 20px;
}

.home-about .container-fluid {
    width: 100%;
}

.home-about .col-lg-12 {
    padding: 0px !important;
}

.home-about .col-lg-7 {
    padding: 0px !important;
}

.about-left {
    flex: 1;
}

.about-right {
    background-color: var(--primary-color);
    padding-left: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 500px;
    border-radius: 3px;
}

.about-right p {
    font-size: 16px;
    color: var(--white);
}

.about-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 20px 0;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 50%;
    align-items: center;
}

.about-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.about-grid {
    position: relative;
    padding-bottom: 25px;
}

.about-grid::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transform: translateX(-50%);
}



.about-item ul {
    padding-left: 20px;
    margin: 0;
}

.about-item ul li {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
}


/* ===============================expect section======================== */
.inner-expect {
    padding: 60px 0px 30px 0px;
}

.expect-header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.expect-wrap {
    margin-top: 20px;
}

.expect-wrap .expert-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
}

.expect-wrap .expert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.expect-wrap .expert-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.expert-content:hover .expert-img {
    background-color: var(--primary-color);
}

.inner-expect .owl-stage-outer {
    padding: 30px 0px;
}

.expect-wrap .expert-content {
    position: relative;
    padding: 18px;
    text-align: center;
    background-color: var(--primary-color);
    overflow: hidden;
    z-index: 10;
}

.expect-wrap .expert-content::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}


.expect-wrap .expert-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.expect-wrap .expert-content p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
}



.expect-wrap .view-btn {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.expect-wrap .view-btn:hover {
    background: #ffffff;
    color: #0f9d8a;
}


.inner-expect .owl-dots {
    text-align: center;
    margin-top: 10px;
}

.inner-expect .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    border-radius: 50%;
    background: rgba(15, 143, 133, 0.3);
    transition: all 0.3s ease;
}

.inner-expect .owl-dots .owl-dot.active {
    width: 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f8f85, #16b3a8);
}

.inner-expect .owl-dots .owl-dot:hover {
    background: #0f8f85;
}



/* =================================cta section=============================== */
.inner-cta {
    background-color: var(--primary-color);
    padding: 80px 0px;
    margin: 20px 0px;
    position: relative;
}

.inner-cta .main-head {
    font-size: 60px !important;
}

.cta-overlay-1 img {
    width: 450px;
    height: auto;
}

.cta-overlay-1 {
    position: absolute;
    top: 40%;
    left: 53%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* ============================= service section ==========================*/
.inner-services {
    padding: 20px 0px;
}

.services-wrap .owl-stage-outer {
    padding: 25px 0px;
}

.services-wrap {
    margin-top: 30px;
}

.services-card {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background: #fff;
}

.services-cotent {
    border: 1px solid rgba(128, 128, 128, 0.308);
    text-align: center;
    padding: 20px 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.services-cotent p {
    color: #333;
}

.services-cotent h5 {
    color: var(--black);
}

.services-wrap .item h5 {
    transition: color 0.3s ease;
}

.services-wrap .item a:hover h5 {
    color: var(--primary-color);
}

.services-card {
    overflow: hidden;
    border-radius: 8px;
}

.services-card img {
    display: block;
    width: 100%;
    transition: transform 0.45s ease;
}

.services-card:hover img {
    transform: scale(1.08) rotate(0.6deg);
}


/* ===================================help section====================== */
.inner-help {
    padding: 100px 0px 20px 0px;
}

.inner-help .container-fluid {
    width: 100%;
}

.inner-help .col-lg-6 {
    padding: 0px !important;
}

.right-help {
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.inner-help .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.inner-help .row {
    margin-left: 0;
    margin-right: 0;
}

.left-help {
    height: 100%;
}

.left-help img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.right-help {
    background: linear-gradient(135deg, #0f8f85 0%, #16b3a8 100%);
    color: #fff;
    height: 100%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hover effect only */
.stat-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box i,
.stat-box h3 {
    transition: transform 0.3s ease, color 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-box:hover i {
    transform: scale(1.15);
}

.stat-box:hover h3 {
    color: var(--primary-color);
}




.inner-services .owl-dots {
    text-align: center;
    margin-top: 10px;
}

.inner-services .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    border-radius: 50%;
    background: rgba(15, 143, 133, 0.3);
    transition: all 0.3s ease;
}

.inner-services .owl-dots .owl-dot.active {
    width: 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f8f85, #16b3a8);
}

.inner-services .owl-dots .owl-dot:hover {
    background: #0f8f85;
}

.inner-help {
    position: relative;
}

.help-stats {
    position: absolute;
    left: 50%;
    top: 34px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    z-index: 10;
}


.stat-box {
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid #eaeaea;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box i {
    font-size: 28px;
    color: #0f8f85;
    margin-bottom: 10px;
    display: inline-block;
}

.stat-box h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000;
}

.stat-box p {
    font-size: 14px;
    margin: 0;
    color: #555;
}



/* ===========================home appointment section===================== */
.inner-appointment {
    background: #f6fbfb;
    padding: 80px 0px 0px 0;
}

.inner-appointment .container-fluid {
    padding: 0;
}

.inner-appointment .row {
    margin: 0;
}

.appointment-left {
    height: 100%;
}

.appointment-left {
    display: flex;
    justify-content: end;
    align-items: center;
}

.inner-appointment .col-lg-7 {
    padding: 0px !important;
}

.inner-appointment .col-lg-5 {
    padding: 0px !important;
}

.appointment-left img {
    width: 80%;
    height: auto;
    object-fit: cover;
}

.inner-appointment,
.inner-appointment .row {
    display: flex;
    align-items: stretch;
}

.inner-appointment .col-lg-5,
.inner-appointment .col-lg-7 {
    display: flex;
}

.appointment-left {
    width: 100%;
    height: 100%;
}

.appointment-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment-left img {
    border-top-left-radius: 15px;
}

.appointment-right {
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 40px 60px;
    border-top-right-radius: 15px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.appointment-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.appointment-form input,
.appointment-form select {
    width: 100%;
    height: 48px;
    padding: 0 18px;
    border-radius: 30px;
    border: 1px solid #0f8f85;
    outline: none;
    font-size: 14px;
}

.appointment-form input::placeholder {
    color: #b5b5b5;
}

.appointment-form select {
    appearance: none;
    background:
        url("data:image/svg+xml,%3Csvg fill='%230f8f85' viewBox='0 0 24 24' width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 16px center;
}

.appointment-btn {
    margin-top: 30px;
    padding: 14px 34px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #0f8f85, #16b3a8);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 143, 133, 0.3);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    padding-left: 15px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #0f8f85;
    font-size: 16px;
}

.input-icon input,
.input-icon select {
    width: 100%;
    height: 48px;
    padding-left: 48px;
    padding-right: 18px;
    border-radius: 30px;
    border: 1px solid #0f8f85;
    font-size: 14px;
    outline: none;
}

.input-icon select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg fill='%230f8f85' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 18px center;
    background-size: 16px;
}

.input-icon input:focus,
.input-icon select:focus {
    border-color: #16b3a8;
    box-shadow: 0 0 0 3px rgba(22, 179, 168, 0.15);
}


.form-group.full-width {
    grid-column: 1 / -1;
}

.textarea-icon i {
    top: 20px;
    transform: none;
}

.input-icon textarea {
    width: 100%;
    min-height: 120px;
    padding: 14px 18px 14px 48px;
    border-radius: 20px;
    border: 1px solid #0f8f85;
    font-size: 14px;
    resize: none;
    outline: none;
}

.input-icon textarea:focus {
    border-color: #16b3a8;
    box-shadow: 0 0 0 3px rgba(22, 179, 168, 0.15);
}

.form-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ==========================testionial section ======================*/
.inner-testimonial {
    /* background: linear-gradient(135deg, #0f8f85 0%, #16b3a8 100%); */
    background-image: url('../images/bg/testimonial-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0px;
}

.inner-testimonial .header-center {
    text-align: center;
}

.testimonial-wrap {
    margin-top: 40px;
}

/* card */
.testimonial-card {
    background: #fff;
    padding: 30px 35px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    min-height: 300px;
}

.testi-head {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 0px auto;
    gap: 15px;
    margin-bottom: 20px;
}

.testi-head img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    object-fit: cover;
}

.testi-head h4 {
    color: var(--black);
    font-size: 16px;
    margin: 0;
}

.testi-head span {
    font-size: 13px;
    color: #0f8f85;
}

.testi-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0px auto;
    width: 100%;
    max-width: 490px;
}

.testimonial-wrap .owl-stage-outer {
    padding: 30px 0px !important;
}

.testimonial-wrap .owl-nav button {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-size: 24px !important;
    font-weight: bolder !important;
}

.testimonial-wrap .owl-nav button.owl-prev {
    left: -60px;
}

.testimonial-wrap .owl-nav button.owl-next {
    right: -60px;
}

.testimonial-wrap .owl-nav button span {
    font-size: 24px;
    color: #0f8f85;
}

.texti-content {
    position: relative;
    padding: 30px 0;
}

.texti-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
}

.texti-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
}

.testimonial-overlay-1 {
    position: absolute;
    top: 22%;
    left: 10%;
}

.testimonial-overlay-2 {
    position: absolute;
    bottom: 12%;
    right: 5%;

}

/* ==============home blog secion ==============*/
.inner-blog {
    padding: 50px 0px 30px 0px;
}

.blog-wrap .owl-stage-outer {
    padding: 30px 0px;
}

.blog-wrap {
    margin: 30px 0px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 22px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 13px;
}

.blog-tag {
    background: #0f8f85;
    color: #fff;
    font-size: 14px;
    padding: 4px 14px;
    border-radius: 20px;
}

.blog-date i {
    color: var(--primary-color)
}

.blog-date {
    color: var(--black);
}

.blog-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card a {
    color: var(--primary-color);
}

.blog-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.blog-content h4 {
    color: #000;
    transition: color 0.35s ease, transform 0.35s ease;
}

.blog-card:hover .blog-content h4 {
    color: var(--primary-color);
}


.blog-wrap .owl-dot span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.blog-wrap .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color) !important;
}

.blog-wrap .owl-dot.active span {
    width: 26px;
    background: #0f8f85;
    border-radius: 20px;
}


/* ============================client section====================== */
.inner-client {
    padding: 00px 0px;
}

.inner-client .header-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.client-wrap {
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
    position: relative;
    margin-top: 20px;
}

.client-wrap::before,
.client-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.client-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.client-logo img {
    height: 120px;
    width: auto;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-wrap:hover .client-track {
    animation-play-state: paused;
}