﻿body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
html, body {
    overflow-x: clip;
}
:root {
    --primary: #007ACD;
    --secondary: #F6C342;
}
/*===============--fonts --=================*/
.montserrat-medium {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.montserrat-semibold {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.montserrat-bold {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.open-sans-medium {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.open-sans-semibold {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.open-sans-bold {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
/*======= custom classes ==========*/
.border-radius{
    border-radius:20px;
}
.themePrimary{
    color:var(--primary);
}
.themePrimary-bg{
    background-color:var(--primary);
}
.themeSecondary {
    color: var(--secondary);
}
.themePrimary-bg-light {
    background-color: rgb(0, 122, 205,0.4);
}
.themeSecondary-bg {
    background-color: var(--secondary);
}
.theme-light-blue {
    background-color: rgb(0, 122, 205,0.1);
}
.theme-light-yellow {
    background-color: rgb(246, 195, 66,0.1);
}
.btn:focus,
.btn:active {
    box-shadow: none !important;
    outline: none !important;
}
#topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: var(--primary);
    color: white;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 8px 13px;
    cursor: pointer;
    z-index: 1000;
}
/*=============== layout page ==========*/
/*-- header --*/
.logo-symbol {
    height: 70px;
}
.logo-title {
    font-size: 22px;
    font-weight: 700;
}
.logo-sub {
    font-size: 14px;
    letter-spacing: 1px;
}
.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.site-navbar {
    background: transparent;
    padding: 18px 0;
}

.site-header .nav-link {
    color: #000000;
    font-weight: 600;
    margin: 0 8px;
    padding: 6px 14px;
    border-radius: 20px;
    transition: 0.3s ease;
}

    .site-header .nav-link:hover,
    .site-header .nav-link.active {
        color: var(--primary-hover);
    }
.site-header .container{
    border-radius:45px;
}
.header-call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

    .header-call-btn i {
        background: #fff;
        color: var(--primary);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        transition: 0.3s;
    }

    .header-call-btn strong {
        font-weight: 600;
    }

    .header-call-btn:hover {
        background: var(--secondary);
        color: #000 !important;
    }
        .header-call-btn:hover i {
            background-color:#000;
            color: var(--secondary) !important;
        }
/*-- footer --*/
.site-footer {
    background: rgba(0,0,0,0.8);
    color: #cbd5e1;
    padding: 70px 0 25px;
    font-family: 'Open Sans',sans-serif;
}

.footer-brand img {
    height: 55px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 18px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        text-decoration: none;
        color: #cbd5e1 !important;
        transition: .3s;
        font-size: 15px;
    }

        .footer-links a:hover {
            color: var(--secondary) !important;
            padding-left: 6px;
        }

    .footer-contact li {
        margin-bottom: 12px;
        font-size: 15px;
    }

    .footer-contact i {
        color: var(--secondary);
        margin-right: 10px;
    }
.footer-social {
    margin-top: 20px;
}

    .footer-social a {
        text-decoration:none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        color: #fff !important;
        margin-right: 10px;
        font-size: 16px;
        transition: .35s;
    }
        
        .footer-social a:nth-child(1):hover {
            background: #1877f2;
        }
        .footer-social a:nth-child(2):hover {
            background: #e4405f;
        }
        .footer-social a:nth-child(3):hover {
            background: #0a66c2;
        }
        .footer-social a:nth-child(4):hover {
            background: #ff0000;
        }

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
    color: #94a3b8;
}
/*==================== Home page =================*/
.home-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
   /* border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;*/
}
.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 122, 205,0.2);
}
.banner-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.banner-content {
    color: #fff;
    text-align: center;
}

.banner-title {   
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55), 0 0 20px rgba(0,0,0,0.35);
    
}
.banner-subtitle {
    max-width: 650px;
    margin: 20px auto 35px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.banner-btn{
    position:relative;
    overflow:hidden;
    background:var(--secondary);
    color:#000;
    padding:14px 34px;
    border-radius:50px;
    font-weight:700;
    letter-spacing:.5px;
    text-decoration:none;
    transition:.3s;
}

.banner-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.6),transparent);
    transition:.6s;
}

.banner-btn:hover::before{
    left:100%;
}

/* Card */
.highlight-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    position: relative;
    transition: .35s;
    border: 1px solid #edf2f7;
}

    .highlight-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 1px;
        background: linear-gradient(120deg,var(--primary),var(--secondary));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 1;
        transition: .35s;
    }

    .highlight-card:hover {
        box-shadow: 0 10px 20px rgba(246, 195, 66,0.3);
    }

.icon-box {
    min-width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg,var(--primary),#0099ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,122,205,.3);
}

.highlight-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}
/*-- specialties section --*/
.specialty-timeline {
    background: linear-gradient(rgba(0,0,0,0.6), 
    rgba(0, 122, 205,0.3)), url('/images/Specialties-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: var(--secondary);
    }

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 70px;
    position: relative;
}

    .timeline-item:nth-child(odd) {
        flex-direction: row-reverse;
    }
    .timeline-item:last-child {
        margin-bottom: 0;
    }
.timeline-content {
    width: 45%;
    background: #fff;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: .3s;
}

    .timeline-content h4 {
        font-family: "Montserrat", sans-serif;
        color: var(--primary);
        font-weight: 700;
    }

.timeline-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #000;
    z-index: 2;
    margin: 0 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
/*-why & doctors section --*/

/* divider */
.split-divider {
    border-left: 1px solid #e6eef5;
    padding-left: 40px;
}

.section-sub {
    color: #6b7a8c;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* list */
.why-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .why-list li {
        margin-bottom: 14px;
        font-weight: 500;
    }

    .why-list i {
        color: var(--secondary);
        margin-right: 10px;
    }


/* doctor card */
.doctor-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
}

    .doctor-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.doc-info {
    padding: 18px;
    text-align: center;
}

    .doc-info h5 {
        margin-bottom: 5px;
        font-weight: 700;
    }

    .doc-info span {
        font-size: 14px;
        color: #6c7a89;
    }

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
}


.view-all {
    text-align: center;
    margin-top: 20px;
}

    .view-all a {
        display: inline-block; 
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        font-size: 30px;
        transition: .35s ease;
    }

        .view-all a:hover {
            transform: translateX(20px);
        }
/*-- testimonial section --*/

.t-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    padding: 35px 25px;
    border-radius: 20px;
    position: relative;
    transition: .4s;
    border: 1px solid rgba(255,255,255,0.4);
}

.t-profile {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    margin: -70px auto 15px;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
}

    .t-profile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.t-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.t-card h5 {
    font-weight: 700;
    margin-bottom: 4px;
}

.t-card span {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}
.testimonial-btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg,var(--primary),#0099ff);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .5px;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(0,122,205,.3);
}

    .testimonial-btn:hover {
        color: var(--secondary);
    }

/*-- facilities--*/
.facility-left img {
    width: 100%;
    height:300px;
    object-fit:cover;
    border-radius: 20px;
}

.facility-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 22px;
    text-align: center;
    transition: .35s;
    border: 1px solid var(--secondary);
}

    .facility-card i {
        font-size: 28px;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .facility-card h5 {
        font-weight: 700;
        margin-bottom: 8px;
    }
    /*- cta strip --*/
.cta-strip {
    background-color: rgb(0, 122, 205,0.6);
    padding: 40px 0;
    color: #fff;
}

.cta-sub {
    margin: 0;
    opacity: .9;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--primary) !important;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
}

    .cta-btn:hover {
        background: var(--secondary);
    }

/*======================== inner-hero ======================*/
.inner-hero {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
   text-shadow: 1px 2px 5px #000;
}

    .inner-hero .banner-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: rgba(0, 122, 205,0.3);
    }

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.breadcrumb-wrap {
    font-size: 19px;
    color: #fff;
    text-shadow: 1px 2px 5px #000;
}

    .breadcrumb-wrap a {
        color:#fff;
        text-decoration: none;
    }

        .breadcrumb-wrap a:hover {
            color: var(--secondary) !important;
        }

.about-hero {
    background: url('../images/banner/about-banner.jpg') center / cover no-repeat;
}
.doctors-hero {
    background: url('../images/banner/doctor-banner.jpg') center / cover no-repeat;
}
.CasesStudies-hero {
    background: url('../images/banner/CasesStudies-banner.jpg') center / cover no-repeat;
}
.testim-hero {
    background: url('../images/banner/testimonial-banner.jpg') center / cover no-repeat;
}
.Appointment-hero {
    background: url('../images/banner/appointment-banner.jpg') center / cover no-repeat;
}
.contact-hero {
    background: url('../images/banner/contact-banner.jpg') center / cover no-repeat;
}
.news-hero {
    background: url('../images/banner/news-banner.jpg') center / cover no-repeat;
}
.event-hero {
    background: url('../images/banner/event-banner.jpg') center / cover no-repeat;
}
/*==================== About Page ===========================*/
.vm-card {
    position: relative;
    background-color: rgb(0, 122, 205,0.1);
    padding: 45px;
    transition: .35s;
}

/* ---------- LEFT CARD BORDERS ---------- */

.vm-left::before,
.vm-left::after {
    content: "";
    position: absolute;
}

.vm-left::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,var(--primary),var(--secondary));
}

.vm-left::after {
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,var(--primary),var(--secondary));
}


/* ---------- RIGHT CARD BORDERS ---------- */

.vm-right::before,
.vm-right::after {
    content: "";
    position: absolute;
}

.vm-right::before {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,var(--secondary),var(--primary));
}

.vm-right::after {
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,var(--secondary),var(--primary));
}

.vm-card p {
    line-height: 1.7;
}

/*====================== case studies ================*/
.case-card {
    background-color: rgb(0, 122, 205,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all .35s ease;
    position: relative;
}

.case-img {
    position: relative;
    overflow: hidden;
}

    .case-img img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        transition: .5s;
    }

.case-card:hover img {
    transform: scale(1.08);
}

.case-btn {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 15px;
    transition: .3s;
}
.case-btn:hover{
    color:#000;
    background:var(--secondary); 
}
/*-- detail page --*/


.related-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: .3s;
}

    .related-images img:hover {
        transform: scale(1.05);
    }

/*================== Appointment page ===============*/
.modern-form {
    border: none;
    transition: .3s;
}

.form-control,
.form-select {
    border-radius: 12px;
}
textarea.form-control {
    height: auto !important;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--primary); 
    box-shadow: none;
}
/*================= news page  ========================*/
.news-img{
    height:250px;
    width:100%;
    object-fit:cover;
    transition:.3s ease;
}

.news-img:hover{
    transform: scale(1.05);
}

.news-detail-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover; 
    border-radius: 18px;
    display: block;
}

/*================== Event Gallery ======================*/
.event-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

    .event-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: 0.4s;
    }

.event-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 12px;
    transform: translateY(100%);
    transition: 0.4s;
}

.event-card:hover img {
    transform: scale(1.08);
}

.event-card:hover .event-overlay {
    transform: translateY(0);
}
/*------------detail -------------*/
.event-img{
    height:400px;
    width:100%;
    object-fit:cover;
}
.sticky-sidebar {
    position: sticky;
    top: 70px; 
}