/* =========================================================
   NEXORA CORPORATE TEMPLATE
   HEADER + HERO
========================================================= */


/* =========================================================
   ROOT COLORS
========================================================= */

:root {

    --nexora-primary: #0b5f8a;
    --nexora-primary-dark: #073f5d;
    --nexora-secondary: #16a6a1;
    --nexora-accent: #f4a62a;

    --nexora-dark: #172b3a;
    --nexora-text: #34495e;
    --nexora-light: #f5f8fa;
    --nexora-white: #ffffff;

}


/* =========================================================
   GLOBAL
========================================================= */

body {

    margin: 0;
    padding: 0;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 14px;

    color: var(--nexora-text);

    background: #ffffff;

}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   HEADER TOP
========================================================= */

.header_top {

    position: relative;

    width: 100%;

    background: var(--nexora-white);

    border-bottom: 1px solid #e8edf0;

    z-index: 1000;

}


/* Header inner */

.header_top_inner {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   LOGO
========================================================= */

.nexora_logo {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    color: var(--nexora-dark);

}


/* Logo symbol */

.nexora_logo_mark {

    position: relative;

    width: 37px;
    height: 37px;

    display: block;

    background:
        linear-gradient(
            135deg,
            #16a6a1 0%,
            #0b5f8a 100%
        );

    clip-path: polygon(
        0 20%,
        72% 0,
        100% 15%,
        100% 82%,
        28% 100%,
        0 84%
    );

}


/* Inner logo detail */

.nexora_logo_mark::before {

    content: "";

    position: absolute;

    left: 8px;
    top: 7px;

    width: 19px;
    height: 20px;

    background: #ffffff;

    opacity: 0.92;

}


.nexora_logo_mark span {

    position: absolute;

    right: 4px;
    top: 4px;

    width: 7px;
    height: 29px;

    background: var(--nexora-accent);

}


/* Logo text */

.nexora_logo_text {

    font-size: 27px;

    font-weight: 300;

    letter-spacing: -1px;

    line-height: 1;

}


/* =========================================================
   NAVIGATION
========================================================= */

.nexora_navigation {

    margin-left: auto;

}


/* Menu */

.nexora_nav_menu {

    display: flex;

    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;

    gap: 2px;

}


.nexora_nav_menu li {
    margin: 0;
}


.nexora_nav_menu li a {

    display: flex;

    align-items: center;

    min-height: 46px;

    padding: 0 16px;

    color: #425466;

    font-size: 14px;

    border-radius: 5px;

    transition:
        background 0.25s ease,
        color 0.25s ease;

}


.nexora_nav_menu li a:hover {

    color: var(--nexora-primary);

    background: #edf6f8;

}


.nexora_nav_menu li.active a {

    color: var(--nexora-primary);

    background: #edf3f6;

    font-weight: 500;

}


/* =========================================================
   HEADER CTA
========================================================= */

.nexora_header_cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 42px;

    padding: 0 19px;

    color: #ffffff;

    background: var(--nexora-primary);

    border-radius: 4px;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        transform 0.25s ease;

}


.nexora_header_cta:hover {

    color: #ffffff;

    background: var(--nexora-primary-dark);

    transform: translateY(-1px);

}


/* =========================================================
   MOBILE NAV TOGGLE
========================================================= */

.nexora_nav_toggle {

    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid #dce5e9;

    background: #ffffff;

    color: var(--nexora-dark);

    border-radius: 4px;

    font-size: 22px;

    cursor: pointer;

}


/* ==========================================
   OUR SLIDER
========================================== */

.our_slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #087bb9;
}

.our_slider_slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.our_slider_slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;

    z-index: 1;
}

.our_slider_slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


/* Overlay */

.our_slider_overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 75, 120, 0.78),
            rgba(0, 120, 180, 0.52),
            rgba(0, 80, 130, 0.35)
        );

    z-index: 1;
}


/* Content */

.our_slider_content {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;

    z-index: 3;
}

.our_slider_inner {
    max-width: 850px;
    padding-left: 80px;
    color: #ffffff;
}

.our_slider_eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;

    color: #ffffff;
}

.our_slider_inner h1 {
    margin: 0 0 20px;

    font-size: 54px;
    line-height: 1.12;
    font-weight: 400;

    color: #ffffff;
}

.our_slider_inner h1 strong {
    display: block;

    font-weight: 700;
    color: #ffffff;
}

.our_slider_inner p {
    max-width: 650px;

    margin: 0 0 30px;

    font-size: 18px;
    line-height: 1.7;

    color: #ffffff;
}


/* Buttons */

.our_slider_actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.our_slider_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 13px 22px;

    border-radius: 4px;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.our_slider_btn_primary {
    background: #087bb9;
    border: 1px solid #087bb9;
    color: #ffffff;
}

.our_slider_btn_primary:hover {
    background: #066697;
    border-color: #066697;
    color: #ffffff;
}

.our_slider_btn_outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.8);
    color: #ffffff;
}

.our_slider_btn_outline:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #087bb9;
}


/* ==========================================
   ARROWS
========================================== */

.our_slider_arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50%;

    background: rgba(0,0,0,0.15);

    color: #ffffff;

    font-size: 22px;

    cursor: pointer;

    z-index: 10;

    transition: all 0.3s ease;
}

.our_slider_arrow:hover {
    background: #087bb9;
    border-color: #087bb9;
}

.our_slider_prev {
    left: 30px;
}

.our_slider_next {
    right: 30px;
}


/* ==========================================
   INDICATORS
========================================== */

.our_slider_indicators {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;

    z-index: 10;
}

.our_slider_indicators button {
    width: 10px;
    height: 10px;

    padding: 0;

    border: 1px solid #ffffff;
    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition: all 0.3s ease;
}

.our_slider_indicators button.active {
    background: #ffffff;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .our_slider {
        height: 500px;
    }

    .our_slider_inner {
        padding-left: 50px;
        padding-right: 50px;
    }

    .our_slider_inner h1 {
        font-size: 44px;
    }

}


@media (max-width: 767px) {

    .our_slider {
        height: 550px;
    }

    .our_slider_inner {
        padding: 30px;
        text-align: center;
    }

    .our_slider_eyebrow {
        font-size: 12px;
    }

    .our_slider_inner h1 {
        font-size: 36px;
    }

    .our_slider_inner p {
        font-size: 16px;
    }

    .our_slider_actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .our_slider_arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .our_slider_prev {
        left: 15px;
    }

    .our_slider_next {
        right: 15px;
    }

}


@media (max-width: 480px) {

    .our_slider {
        height: 520px;
    }

    .our_slider_inner {
        padding: 20px;
    }

    .our_slider_inner h1 {
        font-size: 30px;
    }

    .our_slider_btn {
        padding: 11px 17px;
        font-size: 14px;
    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .header_top_inner {
        gap: 20px;
    }

    .nexora_nav_menu li a {
        padding: 0 11px;
    }

    .nexora_header_cta {
        padding: 0 14px;
    }

}


@media (max-width: 991px) {

    .header_top_inner {

        min-height: 70px;

        position: relative;

    }


    .nexora_navigation {

        margin-left: auto;

    }


    .nexora_nav_toggle {

        display: flex;

        align-items: center;

        justify-content: center;

    }


    .nexora_nav_menu {

        position: absolute;

        left: 15px;
        right: 15px;

        top: calc(100% + 1px);

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 8px;

        background: #ffffff;

        border: 1px solid #e5ebee;

        border-radius: 0 0 6px 6px;

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.10);

    }


    .nexora_nav_menu.show {

        display: flex;

    }


    .nexora_nav_menu li a {

        min-height: 44px;

        padding: 0 14px;

    }


    .nexora_header_cta {

        display: none;

    }


    .our_slider {

        min-height: 530px;

    }


    .our_slider_inner {

        padding: 60px 30px;

    }

}


@media (max-width: 767px) {

    .header_top .container {

        padding-left: 15px;
        padding-right: 15px;

    }


    .nexora_logo_text {

        font-size: 23px;

    }


    .nexora_logo_mark {

        width: 33px;
        height: 33px;

    }


    .our_slider {

        min-height: 600px;

        background-position:
            62% center;

    }


    .our_slider_overlay {

        background:
            linear-gradient(
                90deg,
                rgba(5, 38, 57, 0.91),
                rgba(8, 76, 106, 0.68)
            );

    }


    .our_slider_inner {

        padding:
            65px 20px 80px;

    }


    .our_slider_eyebrow {

        font-size: 11px;

        letter-spacing: 1.5px;

    }


    .our_slider_inner h1 {

        font-size: 42px;

        line-height: 1.12;

    }


    .our_slider_inner p {

        font-size: 16px;

        line-height: 1.6;

    }


    .our_slider_actions {

        flex-wrap: wrap;

    }


    .our_slider_btn {

        min-height: 45px;

        padding: 0 18px;

    }


    .our_slider_arrow {

        width: 40px;
        height: 40px;

        font-size: 17px;

    }


    .our_slider_prev {

        left: 12px;

    }


    .our_slider_next {

        right: 12px;

    }

}


@media (max-width: 480px) {

    .nexora_logo_text {

        font-size: 21px;

    }


    .our_slider {

        min-height: 620px;

    }


    .our_slider_inner h1 {

        font-size: 36px;

    }


    .our_slider_actions {

        flex-direction: column;

        align-items: flex-start;

    }


    .our_slider_btn {

        width: auto;

    }

}

/* ==========================================
   OUR INTRO
========================================== */

.our_intro {
    padding: 70px 0;
    background: #ffffff;
}

.our_intro_item {
    text-align: center;
    padding: 10px 25px 5px;
    height: 100%;
}

.our_intro_icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #087db9;
    color: #ffffff;

    border-radius: 50%;

    font-size: 38px;

    box-shadow: 0 10px 25px rgba(8, 125, 185, 0.18);

    transition: all 0.3s ease;
}

.our_intro_item:hover .our_intro_icon {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(8, 125, 185, 0.25);
}

.our_intro_item h3 {
    margin: 0 0 12px;

    font-size: 20px;
    font-weight: 500;

    color: #263746;
}

.our_intro_item p {
    max-width: 360px;
    margin: 0 auto;

    font-size: 14px;
    line-height: 1.75;

    color: #64748b;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .our_intro {
        padding: 60px 0;
    }

    .our_intro_item {
        padding: 10px 20px;
    }

}


@media (max-width: 767px) {

    .our_intro {
        padding: 50px 0;
    }

    .our_intro_item {
        padding: 5px 25px 20px;
    }

    .our_intro_icon {
        width: 85px;
        height: 85px;
        font-size: 32px;
    }

    .our_intro_item h3 {
        font-size: 19px;
    }

    .our_intro_item p {
        max-width: 500px;
    }

}

/* ==========================================
   ABOUT US
========================================== */

.about_us {
    padding: 80px 0;
    background: #f8fafc;
}


/* ==========================================
   HIGHLIGHTS
========================================== */

.about_us_highlights {
    margin-bottom: 70px;
}

.about_us_highlight {
    height: 100%;
    padding: 35px 25px;
    text-align: center;

    background: #087db9;
    color: #ffffff;

    transition: all 0.3s ease;
}

.about_us_highlight:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(8, 125, 185, 0.20);
}


.about_us_highlight_icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;

    font-size: 30px;

    background: rgba(255, 255, 255, 0.08);
}


.about_us_highlight h3 {
    margin: 0 0 14px;

    font-size: 21px;
    font-weight: 500;

    color: #ffffff;
}


.about_us_highlight p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.92);
}


/* ==========================================
   ABOUT CONTENT
========================================== */

.about_us_content {
    background: #ffffff;
}


.about_us_image {
    height: 100%;
    overflow: hidden;
}


.about_us_image img {
    width: 100%;
    height: 100%;
    min-height: 470px;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


.about_us_image:hover img {
    transform: scale(1.03);
}


/* ==========================================
   ABOUT TEXT
========================================== */

.about_us_text {
    padding: 45px 45px 45px 35px;
}


.about_us_subtitle {
    display: inline-block;

    margin-bottom: 10px;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.5px;

    color: #087db9;
}


.about_us_text h2 {
    margin: 0;

    font-size: 32px;
    line-height: 1.3;
    font-weight: 400;

    color: #263746;
}


.about_us_text h2 strong {
    display: block;

    font-weight: 600;
    color: #087db9;
}


.about_us_line {
    width: 65px;
    height: 3px;

    margin: 18px 0 22px;

    background: #087db9;
}


.about_us_text p {
    margin-bottom: 18px;

    font-size: 14px;
    line-height: 1.8;

    color: #64748b;
}


/* ==========================================
   ABOUT LIST
========================================== */

.about_us_list {
    margin: 25px 0 0;
    padding: 0;

    list-style: none;
}


.about_us_list li {
    position: relative;

    margin-bottom: 12px;
    padding-left: 28px;

    font-size: 14px;
    line-height: 1.5;

    color: #3f5263;
}


.about_us_list li i {
    position: absolute;
    left: 0;
    top: 2px;

    color: #087db9;

    font-size: 16px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .about_us {
        padding: 65px 0;
    }

    .about_us_highlights {
        margin-bottom: 50px;
    }

    .about_us_text {
        padding: 40px 30px;
    }

    .about_us_text h2 {
        font-size: 28px;
    }

}


@media (max-width: 767px) {

    .about_us {
        padding: 50px 0;
    }

    .about_us_highlight {
        padding: 30px 25px;
    }

    .about_us_image img {
        min-height: 350px;
    }

    .about_us_text {
        padding: 35px 25px;
    }

    .about_us_text h2 {
        font-size: 25px;
    }

}


@media (max-width: 575px) {

    .about_us_image img {
        min-height: 280px;
    }

    .about_us_text {
        padding: 30px 20px;
    }

}

/* ==========================================
   CONTACT INFO
========================================== */

.contact_info {
    padding: 26px 0;
    background: #087db9;
    color: #ffffff;
}

.contact_info_item {
    text-align: center;
    padding: 5px 15px;
}

.contact_info_item h3 {
    margin: 0 0 8px;

    font-size: 19px;
    font-weight: 500;

    color: #ffffff;
}

.contact_info_item a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 17px;
    font-weight: 400;

    color: #ffffff;
    text-decoration: none;

    transition: opacity 0.3s ease;
}

.contact_info_item a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.contact_info_item i {
    font-size: 16px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 767px) {

    .contact_info {
        padding: 35px 0;
    }

    .contact_info_item {
        padding: 12px 15px;
    }

    .contact_info_item h3 {
        font-size: 18px;
    }

    .contact_info_item a {
        font-size: 16px;
    }

}

/* ==========================================
   OUR SERVICES
========================================== */

.our_services {
    padding: 80px 0;
    background: #ffffff;
}


/* Section Heading */

.our_services .section_heading {
    text-align: center;
    margin-bottom: 50px;
}

.our_services .section_heading span {
    display: block;

    font-size: 28px;
    font-weight: 400;

    color: #263746;
}

.our_services .section_heading_line {
    width: 80px;
    height: 3px;

    margin: 12px auto 0;

    background: #087db9;

    position: relative;
}

.our_services .section_heading_line::after {
    content: "";

    position: absolute;

    width: 35px;
    height: 3px;

    left: 50%;
    top: 6px;

    transform: translateX(-50%);

    background: #087db9;
}


/* Service Item */

.our_service_item {
    height: 100%;

    padding: 10px 8px 5px;

    text-align: center;

    transition: all 0.3s ease;
}


/* Icon */

.our_service_icon {
    width: 94px;
    height: 94px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #087db9;

    color: #ffffff;

    font-size: 36px;

    transition: all 0.3s ease;
}

.our_service_item:hover .our_service_icon {
    transform: translateY(-7px);

    box-shadow:
        0 12px 25px rgba(8, 125, 185, 0.25);
}


/* Title */

.our_service_item h3 {
    margin: 0 0 10px;

    font-size: 19px;
    font-weight: 400;

    color: #263746;
}


/* Description */

.our_service_item p {
    max-width: 190px;

    margin: 0 auto;

    font-size: 13px;
    line-height: 1.65;

    color: #64748b;
}


/* Responsive */

@media (max-width: 991px) {

    .our_services {
        padding: 65px 0;
    }

    .our_services .section_heading {
        margin-bottom: 40px;
    }

}


@media (max-width: 767px) {

    .our_services {
        padding: 55px 0;
    }

    .our_services .section_heading span {
        font-size: 25px;
    }

    .our_service_item {
        padding-bottom: 20px;
    }

}

/* ==========================================
   OUR DOCTORS
========================================== */

.our_doctors {
    padding: 80px 0;

    background: #f8fafc;
}


/* Heading */

.our_doctors .section_heading {
    text-align: center;

    margin-bottom: 45px;
}

.our_doctors .section_heading span {
    display: block;

    font-size: 28px;
    font-weight: 400;

    color: #263746;
}

.our_doctors .section_heading_line {
    width: 80px;
    height: 3px;

    margin: 12px auto 0;

    background: #087db9;

    position: relative;
}

.our_doctors .section_heading_line::after {
    content: "";

    position: absolute;

    width: 35px;
    height: 3px;

    left: 50%;
    top: 6px;

    transform: translateX(-50%);

    background: #087db9;
}


/* Doctor Card */

.our_doctor_card {
    height: 100%;

    padding: 35px 30px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    transition: all 0.3s ease;
}


.our_doctor_card:hover {
    transform: translateY(-7px);

    border-color: #087db9;

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.10);
}


/* Doctor Icon */

.our_doctor_icon {
    width: 100px;
    height: 100px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9eef2;

    border: 1px solid #d5dce2;

    color: #087db9;

    font-size: 42px;

    transition: all 0.3s ease;
}


.our_doctor_card:hover .our_doctor_icon {
    background: #087db9;
    color: #ffffff;

    border-color: #087db9;
}


/* Doctor Title */

.our_doctor_card h3 {
    margin: 0 0 15px;

    font-size: 25px;
    font-weight: 400;

    color: #087db9;
}


/* Description */

.our_doctor_card p {
    max-width: 390px;

    margin: 0 auto 22px;

    font-size: 14px;
    line-height: 1.75;

    color: #64748b;
}


/* Meta */

.our_doctor_meta {
    padding-top: 17px;

    border-top: 1px solid #edf1f4;
}


.our_doctor_meta span {
    display: inline-flex;

    align-items: center;
    gap: 7px;

    font-size: 13px;
    font-weight: 500;

    color: #087db9;
}


/* Responsive */

@media (max-width: 991px) {

    .our_doctors {
        padding: 65px 0;
    }

}


@media (max-width: 767px) {

    .our_doctors {
        padding: 55px 0;
    }

    .our_doctors .section_heading span {
        font-size: 25px;
    }

    .our_doctor_card {
        padding: 30px 25px;
    }

}

/* ==========================================
   DOCTOR PROFILE
========================================== */

.doctor_profile {
    padding: 80px 0;

    background: #087db9;
}


/* ==========================================
   SECTION HEADING
========================================== */

.doctor_profile_heading {
    text-align: center;

    margin-bottom: 45px;
}

.doctor_profile_heading span {
    display: block;

    font-size: 28px;
    font-weight: 400;

    color: #ffffff;
}

.doctor_profile_heading .section_heading_line {
    width: 80px;
    height: 3px;

    margin: 12px auto 0;

    background: #ffffff;

    position: relative;
}

.doctor_profile_heading .section_heading_line::after {
    content: "";

    position: absolute;

    width: 35px;
    height: 3px;

    left: 50%;
    top: 6px;

    transform: translateX(-50%);

    background: #ffffff;
}


/* ==========================================
   DOCTOR CARD
========================================== */

.doctor_profile_card {
    height: 100%;

    background: #ffffff;

    overflow: hidden;

    transition: all 0.3s ease;
}

.doctor_profile_card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.18);
}


/* ==========================================
   DOCTOR IMAGE
========================================== */

.doctor_profile_image {
    width: 100%;

    height: 310px;

    overflow: hidden;

    background: #e9eef2;
}

.doctor_profile_image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}

.doctor_profile_card:hover .doctor_profile_image img {
    transform: scale(1.04);
}


/* ==========================================
   DOCTOR CONTENT
========================================== */

.doctor_profile_content {
    padding: 18px 20px 25px;

    text-align: center;
}

.doctor_profile_content h3 {
    margin: 0 0 7px;

    font-size: 19px;
    font-weight: 500;

    color: #263746;
}

.doctor_profile_speciality {
    display: block;

    margin-bottom: 12px;

    font-size: 14px;
    font-weight: 500;

    color: #087db9;
}

.doctor_profile_content p {
    margin: 0;

    font-size: 13px;
    line-height: 1.7;

    color: #64748b;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .doctor_profile {
        padding: 65px 0;
    }

    .doctor_profile_image {
        height: 290px;
    }

}


@media (max-width: 767px) {

    .doctor_profile {
        padding: 55px 0;
    }

    .doctor_profile_heading {
        margin-bottom: 35px;
    }

    .doctor_profile_heading span {
        font-size: 25px;
    }

    .doctor_profile_image {
        height: 320px;
    }

}


@media (max-width: 575px) {

    .doctor_profile_image {
        height: 350px;
    }

}

/* =========================================
   LATEST BLOG
========================================= */

.latest_blog {
    padding: 70px 0;
    background: #ffffff;
}

.latest_blog .container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Section Heading */

.latest_blog .section_heading {
    margin-bottom: 30px;
}

.latest_blog .section_heading h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    color: #263746;
}

.latest_blog .section_heading span {
    display: block;
    width: 70px;
    height: 2px;
    margin: 10px 0 12px;
    background: #087db8;
}

.latest_blog .section_heading p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #596b78;
}


/* Blog Grid */

.latest_blog_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


/* Blog Item */

.latest_blog_item {
    min-width: 0;
    background: #fff;
}


/* Image */

.latest_blog_image {
    width: 100%;
    height: 165px;
    overflow: hidden;
    background: #f1f4f6;
}

.latest_blog_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.latest_blog_item:hover .latest_blog_image img {
    transform: scale(1.04);
}


/* Content */

.latest_blog_content {
    padding-top: 12px;
}

.latest_blog_content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    color: #263746;
}

.latest_blog_content p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.65;
    color: #44515b;
    text-align: justify;
}


/* Button */

.latest_blog_btn {
    display: inline-block;
    padding: 8px 14px;
    background: #087db8;
    border: 1px solid #087db8;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.latest_blog_btn:hover {
    background: #065f8b;
    border-color: #065f8b;
    color: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .latest_blog {
        padding: 60px 0;
    }

    .latest_blog_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }

    .latest_blog_image {
        height: 190px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .latest_blog {
        padding: 50px 0;
    }

    .latest_blog .container {
        padding: 0 15px;
    }

    .latest_blog .section_heading h2 {
        font-size: 26px;
    }

    .latest_blog_grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .latest_blog_image {
        height: 220px;
    }

    .latest_blog_content h3 {
        font-size: 19px;
    }
}

/* =========================================
   OUR FOOTER
========================================= */

.our_footer {
    background: #087db8;
    color: #ffffff;
    padding: 50px 0;
}

.our_footer .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.our_footer_grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
    gap: 55px;
    align-items: start;
}


/* Logo */

.our_footer_logo {
    margin-bottom: 15px;
}

.our_footer_logo img {
    display: block;
    max-width: 175px;
    width: auto;
    height: auto;
}


/* Footer Text */

.our_footer_column p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

.our_footer_column a {
    color: #ffffff;
    text-decoration: none;
}

.our_footer_column a:hover {
    text-decoration: underline;
}


/* Headings */

.our_footer_column h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
}

.our_footer_line {
    display: block;
    width: 55px;
    height: 2px;
    margin: 8px 0 14px;
    background: #ffffff;
}


/* Lists */

.our_footer_column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.our_footer_column ul li {
    margin: 0;
    padding: 0;
}

.our_footer_column ul li a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    transition: padding-left 0.25s ease;
}

.our_footer_column ul li a:hover {
    padding-left: 5px;
    text-decoration: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .our_footer {
        padding: 45px 0;
    }

    .our_footer_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 45px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .our_footer {
        padding: 40px 0;
    }

    .our_footer .container {
        padding: 0 20px;
    }

    .our_footer_grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .our_footer_logo img {
        max-width: 160px;
    }

    .our_footer_column h3 {
        font-size: 19px;
    }

}

/* =========================================
   COPYRIGHT
========================================= */

.copyright {
    background: #076d9f;
    color: #ffffff;
    padding: 12px 0;
    font-size: 14px;
}

.copyright .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.copyright_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.copyright_text,
.copyright_powered {
    font-size: 14px;
    line-height: 1.5;
}

.copyright_powered {
    text-align: right;
}

.copyright_powered a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.copyright_powered a:hover {
    text-decoration: underline;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .copyright {
        padding: 14px 0;
    }

    .copyright_inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .copyright_powered {
        text-align: center;
    }

}