:root {

    --primary-blue: #0A4C9A;
    --secondary-blue: #083B78;
    --teal-green: #0FA6A6;
    --light-bg: #F5F9FF;
    --text-dark: #111827;
    --text-light: #6B7280;
    --white: #ffffff;
    --border-color: #E5E7EB;
}

/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ================= TOP HEADER ================= */

/* ================= TOP HEADER ================= */

.top-header {
    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 30%,
            #2d7bb6 65%,
            #43c5c4 100%);
    padding: 12px 0;
    color: #fff;
}

.top-left a {
    color: var(--white);
    margin-right: 16px;
    font-size: 15px;
    transition: 0.3s;
}

.top-left a:hover {
    color: var(--teal-green);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-right span {
    font-weight: 500;
}

.top-right i {
    margin-right: 8px;
}

/* ================= NAVBAR ================= */

.custom-navbar {

    background: var(--white);

    padding: 10px 0;

    position: sticky;
    top: 0;
    z-index: 999;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}


.navbar-brand img {
    height: 50px;
    margin-left: -40px;
}
.navbar-nav .nav-link {

    color: var(--text-dark);

    font-size: 16px;

    font-weight: 600;

    margin: 0 14px;

    transition: 0.3s;

    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

/* ACTIVE MENU */

.navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

/* BUTTON */

.appoint-btn {
    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);

    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s ease;

    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.appoint-btn:hover {

    background: var(--teal-green);

    color: var(--white);
}

/* ================= MEGA MENU ================= */

.mega-menu {

    width: 550px;

    left: 50%;

    transform: translateX(-50%);

    border: none;

    border-radius: 20px;

    padding: 15px;

    background: var(--white);

    display: none;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.mega-menu .row {
    row-gap: 10px;
}

.mega-menu a {

    display: block;

    padding: 12px 10px;

    color: var(--text-dark);

    border-radius: 10px;

    font-size: 15px;

    font-weight: 500;

    transition: 0.3s;
}

.mega-menu a:hover {

    background: var(--light-bg);

    color: var(--primary-blue);

    padding-left: 18px;
}

/* DESKTOP */

@media(min-width:992px) {

    .nav-item.dropdown:hover .mega-menu {
        display: block;
    }
}

/* ================= HERO ================= */

.hero-section {

    padding: 20px 0;

    background: linear-gradient(135deg,
            #f5f9ff 0%,
            #ffffff 100%);
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {

    font-size: 52px;

    line-height: 1.2;

    font-weight: 800;

    color: var(--primary-blue);

    margin-bottom: 22px;
}

.hero-content p {

    font-size: 18px;

    line-height: 1.9;

    color: var(--text-light);
}

/* ================= MOBILE ================= */

@media(max-width:991px) {

    .top-header {
        text-align: center;
    }

    .top-header .container {
        flex-direction: row;
        gap: 10px;
    }

    .top-right {
        flex-direction: column;
        gap: 5px;
    }

    .navbar-brand img {
        height: 62px;
        margin-left: 0px;
    }

    .navbar-nav {
        margin-top: 20px;
    }

    .navbar-nav .nav-link {
        margin: 0;
        padding: 12px 0;
    }

    .appoint-btn {
        display: none;
    }

    .mega-menu {

        width: 100%;

        position: static;

        transform: none;

        padding: 15px;

        box-shadow: none;

        border-radius: 12px;
    }

    .nav-item.dropdown.active .mega-menu {
        display: block;
    }

    .hero-section {
        padding: 70px 0;
    }

    .hero-content h1 {

        font-size: 34px;
    }

    .hero-content p {

        font-size: 16px;
        line-height: 1.8;
    }
    
    
}


/* ================= HERO SECTION ================= */

.hero-section {

    position: relative;

    overflow: hidden;

    padding: 20px 0 0;

    background:
        linear-gradient(90deg,
            rgba(8, 59, 120, 0.96) 0%,
            rgba(10, 76, 154, 0.92) 35%,
            rgba(15, 166, 166, 0.82) 100%);

}

/* LEFT PATTERN */

.hero-section::before {

    content: "";

    position: absolute;

    left: -120px;

    bottom: -120px;

    width: 500px;

    height: 500px;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.08) 2px,
            transparent 2px);

    background-size: 22px 22px;

    opacity: 0.5;

    z-index: 1;
}

.hero-content {

    position: relative;

    z-index: 2;

    padding-bottom: 70px;
}

/* TAG */

.hero-tag {

    display: inline-block;

    background: rgba(0, 0, 0, 0.35);

    color: var(--white);

    padding: 12px 20px;

    border-radius: 6px;

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 25px;
}

/* HEADING */

.hero-content h1 {

    color: var(--white);

    font-size: 40px;

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 30px;
}

/* PARAGRAPH */

.hero-content p {

    color: rgba(255, 255, 255, 0.9);

    font-size: 21px;

    line-height: 1.8;

    max-width: 760px;

    margin-bottom: 40px;
}

/* BUTTONS */

.hero-btns {

    display: flex;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;
}

/* PRIMARY BTN */

.hero-btn {

    background: var(--white);

    color: var(--primary-blue);

    padding: 16px 34px;

    border-radius: 50px;

    font-size: 17px;

    font-weight: 700;

    transition: 0.4s;
}

.hero-btn:hover {

    background: var(--secondary-blue);

    color: var(--white);
}

/* LINK BTN */

.hero-link {

    color: var(--white);

    font-size: 20px;

    font-weight: 600;

    transition: 0.3s;
}

.hero-link i {

    margin-left: 10px;
}

.hero-link:hover {

    color: #dbeafe;
}

/* RIGHT SIDE */

.hero-image-wrapper {

    position: relative;

    text-align: center;

    z-index: 2;
}

/* ROUND IMAGE */

.hero-circle {

    position: absolute;

    top: 40px;

    left: 50%;

    transform: translateX(-50%);

    width: 620px;

    max-width: 100%;

    opacity: 0.9;

    z-index: 1;

    animation: rotateCircle 25s linear infinite;
}

/* DOCTOR IMAGE */

.doctor-img {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 700px;

    margin-top: 30px;
}

/* ANIMATION */

@keyframes rotateCircle {

    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .hero-section {

        padding: 70px 0 0;
    }

    .hero-content {

        text-align: center;

        padding-bottom: 20px;
    }

    .hero-content h1 {

        font-size: 46px;
    }

    .hero-content p {

        font-size: 18px;

        line-height: 1.8;
    }

    .hero-btns {

        justify-content: center;
    }

    .hero-image-wrapper {

        margin-top: 40px;
    }

    .hero-circle {

        width: 420px;
    }

    .doctor-img {

        max-width: 480px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .hero-section {

        padding: 60px 0 0;
    }

    .hero-tag {

        font-size: 13px;

        padding: 10px 16px;
    }

    .hero-content h1 {

        font-size: 34px;

        line-height: 1.3;
    }

    .hero-content p {

        font-size: 16px;

        line-height: 1.8;
    }

    .hero-btn {

        width: 100%;

        text-align: center;
    }

    .hero-link {

        width: 100%;

        text-align: center;

        font-size: 18px;
    }

    .hero-circle {

        width: 300px;

        top: 20px;
    }

    .doctor-img {

        max-width: 340px;
    }
}


/* ================= COUNTER SECTION ================= */

.counter-section {

    position: relative;

    margin-top: -70px;

    z-index: 20;

    padding-bottom: 80px;
}

.counter-box {
    background: var(--white);
    border-radius: 24px;
    padding: 30px 26px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* TOP BORDER EFFECT */

.counter-box::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(90deg,
            var(--primary-blue),
            var(--teal-green));
}

/* HOVER */

.counter-box:hover {

    transform: translateY(-10px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.15);
}

/* ICON */

.counter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--teal-green));
    color: var(--white);
    font-size: 34px;
    box-shadow: 0 10px 25px rgba(10, 76, 154, 0.25);
}

/* NUMBER */

.counter-box h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1px;
    line-height: 1;
}

/* TEXT */

.counter-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .counter-section {

        margin-top: 0;

        padding-top: 60px;
    }

    .counter-box {

        padding: 35px 25px;
    }

    .counter-box h2 {

        font-size: 42px;
    }

    .counter-box p {

        font-size: 16px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .counter-section {

        padding: 50px 0;
    }

    .counter-box {

        border-radius: 18px;

        padding: 30px 20px;
    }

    .counter-icon {

        width: 75px;

        height: 75px;

        font-size: 28px;
    }

    .counter-box h2 {

        font-size: 36px;
    }

    .counter-box p {

        font-size: 15px;

        line-height: 1.6;
    }
}


/* ================= ABOUT SECTION ================= */

.about-section {

    padding: 60px 0;

    background: #f8fbff;

    overflow: hidden;

    position: relative;
}

.about-image-wrapper {
    position: relative;
    text-align: center;
    padding: 0px;
}

/* BACKGROUND SHAPE */

.about-bg-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background: linear-gradient(180deg, var(--teal-green), var(--primary-blue));
    z-index: 1;
}

/* IMAGE */

.about-doctor-img {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 480px;
}

/* EXPERIENCE CARD */

.experience-card {

    position: absolute;

    right: 0;

    bottom: 40px;

    background: var(--white);

    padding: 20px 28px;

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);

    z-index: 3;

    animation: floatCard 3s ease-in-out infinite;
}

.experience-card h3 {

    font-size: 42px;

    font-weight: 800;

    color: var(--primary-blue);

    margin-bottom: 5px;
}

.experience-card span {

    font-size: 15px;

    color: var(--text-light);

    font-weight: 600;
}

/* RIGHT CONTENT */

.about-content {

    padding-left: 30px;
}

.section-tag {

    display: inline-block;

    background: rgba(10, 76, 154, 0.1);

    color: var(--primary-blue);

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 25px;
}

.about-content h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* FEATURES */

.about-features {

    display: flex;

    gap: 25px;

    margin-bottom: 40px;

    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 227px;
    background: var(--white);
    padding: 18px;
    border-radius: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: 0.4s;
    border: 1px solid #edf2f7;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.feature-box:hover {

    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ICON */

.feature-icon {
    min-width: 50px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--teal-green));
    color: var(--white);
    font-size: 28px;
}

.feature-content h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-content p {

    font-size: 16px;

    line-height: 1.8;

    color: var(--text-light);

    margin: 0;
}

/* CHECK LIST */

.about-check-list {

    margin-bottom: 40px;
}

.check-item {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 22px;
}

.check-item i {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    background: var(--primary-blue);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

    margin-top: 5px;
}

.check-item p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-light);
    margin: 0;
}

/* BUTTON */

.about-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background:
        linear-gradient(135deg,
            var(--primary-blue),
            var(--teal-green));

    color: var(--white);

    padding: 16px 34px;

    border-radius: 50px;

    font-size: 16px;

    font-weight: 700;

    transition: 0.4s;
}

.about-btn:hover {

    transform: translateY(-4px);

    color: var(--white);

    box-shadow:
        0 12px 30px rgba(10, 76, 154, 0.3);
}

/* FLOAT CARD */

@keyframes floatCard {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* SCROLL ANIMATION */

.scroll-up {

    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.scroll-up.show {

    opacity: 1;

    transform: translateY(0);
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .about-section {

        padding: 80px 0;
    }

    .about-content {

        padding-left: 0;

        text-align: center;
    }

    .about-content h2 {

        font-size: 42px;
    }

    .about-text {

        font-size: 17px;
    }

    .about-features {

        justify-content: center;
    }

    .check-item {

        text-align: left;
    }

    .experience-card {

        right: 20px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .about-section {

        padding: 70px 0;
    }

    .about-image-wrapper {

        padding: 15px;
    }

    .about-bg-shape {

        border-radius: 24px;
    }

    .about-content h2 {

        font-size: 32px;

        line-height: 1.3;
    }

    .about-text {

        font-size: 15px;

        line-height: 1.8;
    }

    .feature-box {

        padding: 22px;
    }

    .feature-content h4 {

        font-size: 20px;
    }

    .check-item p {

        font-size: 15px;
    }

    .experience-card {

        position: relative;

        right: auto;

        bottom: auto;

        margin-top: 20px;

        display: inline-block;
    }

    .about-btn {

        width: 100%;

        justify-content: center;
    }
}


/* ================= SERVICES SECTION ================= */

.services-section {

    padding: 40px 0;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f8fbff 0%,
            #eef7ff 100%);
}

/* GRID BACKGROUND */

.services-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(10, 76, 154, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 76, 154, 0.05) 1px, transparent 1px);

    background-size: 55px 55px;

    z-index: 1;
}

/* CONTAINER */

.services-section .container {

    position: relative;

    z-index: 2;
}

/* ================= SECTION TITLE ================= */

.section-title {

    max-width: 850px;

    margin: 0 auto 55px;
}

.section-tag {

    display: inline-block;

    background: rgba(10, 76, 154, 0.1);

    color: var(--primary-blue);

    padding: 10px 22px;

    border-radius: 40px;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 18px;
}

.section-title h2 {

    font-size: 42px;

    line-height: 1.3;

    font-weight: 800;

    color: var(--text-dark);

    margin-bottom: 20px;
}

.section-title p {

    font-size: 16px;

    line-height: 1.9;

    color: var(--text-light);
}

/* ================= SERVICE CARD ================= */

.service-card {

    background: var(--white);

    border-radius: 20px;

    padding: 28px 20px;

    text-align: center;

    height: 100%;

    transition: 0.4s;

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(10, 76, 154, 0.08);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05);
}

/* TOP BORDER */

.service-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(90deg,
            var(--primary-blue),
            var(--teal-green));
}

/* HOVER */

.service-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.1);
}

/* ================= ICON ================= */

.service-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            rgba(10, 76, 154, 0.12),
            rgba(15, 166, 166, 0.12));

    display: flex;

    align-items: center;

    justify-content: center;
}

.service-icon img {

    width: 42px;
}

/* ================= TITLE ================= */

.service-card h3 {

    font-size: 18px;

    line-height: 1.5;

    font-weight: 700;

    color: var(--text-dark);

    margin-bottom: 18px;

    min-height: 56px;
}

/* ================= BUTTON ================= */

.service-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(135deg,
            var(--primary-blue),
            var(--teal-green));

    color: var(--white);

    padding: 12px 24px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.4s;
}

.service-btn:hover {

    transform: translateY(-3px);

    color: var(--white);

    box-shadow:
        0 10px 24px rgba(10, 76, 154, 0.25);
}

/* ================= VIEW MORE BUTTON ================= */

.view-more-wrapper {

    text-align: center;

    margin-top: 55px;
}

.view-more-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background:
        linear-gradient(135deg,
            var(--primary-blue),
            var(--teal-green));

    color: var(--white);

    padding: 16px 36px;

    border-radius: 50px;

    font-size: 16px;

    font-weight: 700;

    transition: 0.4s;
}

.view-more-btn:hover {

    transform: translateY(-4px);

    color: var(--white);

    box-shadow:
        0 10px 24px rgba(10, 76, 154, 0.25);
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .services-section {

        padding: 75px 0;
    }

    .section-title h2 {

        font-size: 36px;
    }

    .service-card {

        padding: 24px 18px;
    }

    .service-card h3 {

        min-height: auto;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .services-section {

        padding: 65px 0;
    }

    .section-title {

        margin-bottom: 40px;
    }

    .section-title h2 {

        font-size: 28px;

        line-height: 1.4;
    }

    .section-title p {

        font-size: 15px;

        line-height: 1.8;
    }

    .service-card {

        padding: 22px 16px;

        border-radius: 18px;
    }

    .service-icon {

        width: 68px;

        height: 68px;
    }

    .service-icon img {

        width: 36px;
    }

    .service-card h3 {

        font-size: 17px;

        margin-bottom: 16px;
    }

    .service-btn {

        width: 100%;
    }

    .view-more-btn {

        width: 100%;
    }
}


/* ================= WHY CHOOSE SECTION ================= */

.why-choose-section {
    padding: 60px 0;
    background: #f8fbff;
    overflow: hidden;
    position: relative;
}

.why-content {
    padding-right: 20px;
}

/* TAG */

.why-tag {

    display: inline-block;

    background: rgba(10, 76, 154, 0.08);

    color: var(--primary-blue);

    padding: 10px 20px;

    border-radius: 40px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 20px;
}

/* TITLE */

.why-content h2 {

    font-size: 35px;

    line-height: 1.25;

    font-weight: 800;

    color: var(--text-dark);

    margin-bottom: 22px;
}

/* TEXT */

.why-content p {

    font-size: 16px;

    line-height: 1.9;

    color: var(--text-light);

    margin-bottom: 28px;
}

/* ================= INFO BOX ================= */

.why-box {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    background: var(--white);

    padding: 22px;

    border-radius: 20px;

    margin-bottom: 18px;

    border: 1px solid rgba(10, 76, 154, 0.08);

    transition: 0.4s;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.04);
}

.why-box:hover {

    transform: translateY(-6px);

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.08);
}

/* ICON */

.why-icon {

    min-width: 62px;

    height: 62px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(135deg,
            var(--primary-blue),
            var(--teal-green));

    color: var(--white);

    font-size: 24px;
}

/* BOX CONTENT */

.why-text h4 {

    font-size: 20px;

    line-height: 1.4;

    font-weight: 700;

    margin-bottom: 10px;

    color: var(--text-dark);
}

.why-text p {

    margin: 0;

    font-size: 15px;

    line-height: 1.8;

    color: var(--text-light);
}

/* ================= RIGHT IMAGE ================= */

.why-image-wrapper {

    position: relative;

    padding-left: 40px;
}

/* MAIN IMAGE */

.why-main-img {

    width: 100%;

    max-width: 520px;

    border-radius: 30px;

    display: block;

    margin-left: auto;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}

/* SMALL IMAGE */

.why-small-img {

    position: absolute;

    left: 0;

    bottom: 40px;

    width: 240px;

    border-radius: 20px;

    border: 6px solid var(--white);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}

/* EXPERIENCE BADGE */

.experience-badge {

    position: absolute;

    top: 25px;

    left: 0;

    width: 130px;

    height: 130px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            var(--primary-blue),
            var(--teal-green));

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: var(--white);

    z-index: 3;

    box-shadow:
        0 10px 25px rgba(10, 76, 154, 0.25);

    animation: floatBadge 3s ease-in-out infinite;
}

.experience-badge h3 {

    font-size: 38px;

    font-weight: 800;

    line-height: 1;

    margin-bottom: 5px;
}

.experience-badge span {

    font-size: 13px;

    line-height: 1.5;

    text-align: center;

    font-weight: 600;
}

/* FLOAT */

@keyframes floatBadge {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ================= SCROLL ANIMATION ================= */

.scroll-up {

    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.scroll-up.show {

    opacity: 1;

    transform: translateY(0);
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .why-choose-section {

        padding: 70px 0;
    }

    .why-content {

        padding-right: 0;
    }

    .why-content h2 {

        font-size: 34px;
    }

    .why-image-wrapper {

        padding-left: 0;

        margin-top: 30px;
    }

    .why-main-img {

        max-width: 100%;
    }

    .why-small-img {

        width: 200px;

        left: 20px;

        bottom: 20px;
    }

    .experience-badge {

        width: 110px;

        height: 110px;
    }

    .experience-badge h3 {

        font-size: 30px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .why-choose-section {

        padding: 60px 0;
    }

    .why-tag {

        font-size: 12px;
    }

    .why-content h2 {

        font-size: 28px;

        line-height: 1.3;
    }

    .why-content p {

        font-size: 15px;

        line-height: 1.8;
    }

    .why-box {

        padding: 18px;

        gap: 14px;

        border-radius: 18px;
    }

    .why-icon {

        min-width: 52px;

        height: 52px;

        font-size: 20px;
    }

    .why-text h4 {

        font-size: 18px;
    }

    .why-text p {

        font-size: 14px;
    }

    .why-main-img {

        border-radius: 22px;
    }

    .why-small-img {

        position: relative;

        width: 100%;

        left: auto;

        bottom: auto;

        margin-top: 18px;
    }

    .experience-badge {

        width: 95px;

        height: 95px;

        top: -15px;

        left: 10px;
    }

    .experience-badge h3 {

        font-size: 26px;
    }

    .experience-badge span {

        font-size: 11px;
    }
}


/* ================= PATIENT GALLERY SECTION ================= */

.patient-gallery-section {

    padding: 90px 0;

    background:
        linear-gradient(135deg,
            #f8fbff 0%,
            #eef7ff 100%);

    overflow: hidden;

    position: relative;
}

/* BG EFFECT */

.patient-gallery-section::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    background:
        radial-gradient(rgba(10, 76, 154, 0.08),
            transparent);

    top: -120px;

    right: -100px;

    border-radius: 50%;
}

/* ================= LEFT CONTENT ================= */

.gallery-content {

    max-width: 520px;
}

/* TAG */

.gallery-tag {

    display: inline-block;

    background: rgba(10, 76, 154, 0.1);

    color: var(--primary-blue);

    padding: 10px 20px;

    border-radius: 40px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 20px;
}

/* TITLE */

.gallery-content h2 {

    font-size: 35px;

    line-height: 1.3;

    font-weight: 800;

    color: var(--text-dark);

    margin-bottom: 24px;
}

/* TEXT */

.gallery-content p {

    font-size: 16px;

    line-height: 1.9;

    color: var(--text-light);

    margin-bottom: 20px;
}

/* BUTTON */

.gallery-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background:
        linear-gradient(135deg,
            var(--primary-blue),
            var(--teal-green));

    color: var(--white);

    padding: 15px 30px;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 700;

    margin-top: 15px;

    transition: 0.4s;
}

.gallery-btn:hover {

    transform: translateY(-4px);

    color: var(--white);

    box-shadow:
        0 12px 25px rgba(10, 76, 154, 0.22);
}

/* ================= RIGHT GRID ================= */

.gallery-grid {

    display: flex;

    gap: 18px;

    height: 700px;

    overflow: hidden;
}

/* COLUMN */

.gallery-column {

    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 18px;
}

/* CARD */

.gallery-card {

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);

    transition: 0.4s;
}

.gallery-card:hover {

    transform: translateY(-8px);
}

/* IMAGE */

.gallery-card img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    display: block;
}

/* ================= AUTO SCROLL ANIMATION ================= */

.scroll-column-up {

    animation: scrollUp 18s linear infinite;
}

.scroll-column-down {

    animation: scrollDown 18s linear infinite;
}

@keyframes scrollUp {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-220px);
    }
}

@keyframes scrollDown {

    0% {
        transform: translateY(-220px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .patient-gallery-section {

        padding: 75px 0;
    }

    .gallery-content {

        max-width: 100%;

        text-align: center;
    }

    .gallery-content h2 {

        font-size: 34px;
    }

    .gallery-grid {

        height: 550px;

        margin-top: 20px;
    }

    .gallery-card img {

        height: 220px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .patient-gallery-section {

        padding: 65px 0;
    }

    .gallery-content h2 {

        font-size: 28px;

        line-height: 1.4;
    }

    .gallery-content p {

        font-size: 15px;

        line-height: 1.8;
    }

    .gallery-btn {

        width: 100%;

        justify-content: center;
    }

    .gallery-grid {

        gap: 10px;

        height: 420px;
    }

    .gallery-column {

        gap: 10px;
    }

    .gallery-card {

        border-radius: 16px;
    }

    .gallery-card img {

        height: 160px;
    }
}


/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section {
    padding: 80px 0;
    background: #f7fbff;
    overflow: hidden;
    position: relative;
}

/* LEFT SIDE */

.testimonial-left {
    padding-right: 40px;
}

.testimonial-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 40px;
    background: rgba(14, 76, 154, 0.08);
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

.testimonial-left h2 {
    font-size: 35px;
    line-height: 1.08;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.testimonial-left p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 460px;
}

/* ================= SLIDER ================= */

.testimonial-slider-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonial-track {
    display: flex;
    width: max-content;
    animation: testimonialMove 18s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

/* CARD */

.testimonial-card {
    width: 520px;
    min-height: 280px;

    background: #fff;

    border-radius: 26px;

    padding: 34px;

    margin-right: 28px;

    border: 1px solid rgba(0, 0, 0, 0.04);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);

    flex-shrink: 0;
}

/* STARS */

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #f6b63e;
    margin-right: 4px;
    font-size: 18px;
}

/* REVIEW */

.testimonial-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* USER */

.testimonial-user {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.testimonial-user h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.testimonial-user span {
    font-size: 15px;
    color: var(--text-light);
}

/* QUOTE */

.quote-icon {
    font-size: 58px;
    color: rgba(14, 76, 154, 0.25);
    line-height: 1;
}

/* ================= AUTO SLIDE ================= */

@keyframes testimonialMove {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px) {

    .testimonial-section {
        padding: 70px 0;
    }

    .testimonial-left {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .testimonial-left p {
        margin: auto;
    }

    .testimonial-left h2 {
        font-size: 42px;
    }

    .testimonial-card {
        width: 420px;
        min-height: auto;
    }
}

@media(max-width:576px) {

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-left h2 {
        font-size: 32px;
        line-height: 1.25;
    }

    .testimonial-left p {
        font-size: 15px;
    }

    .testimonial-card {
        width: 300px;
        padding: 24px;
        margin-right: 16px;
        border-radius: 18px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .testimonial-user {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .testimonial-user h4 {
        font-size: 22px;
    }

    .quote-icon {
        font-size: 42px;
    }
}

/* =======================================================
   VIDEO SECTION
======================================================= */

.video-section {
    position: relative;
    padding: 90px 0 80px;
    background: linear-gradient(135deg, #082c66 0%, #0f4fa7 100%);
    overflow: hidden;
}

.video-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    top: -220px;
    left: -180px;
}

.video-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -160px;
    right: -120px;
}

/* ================= HEADING ================= */

.video-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 55px;
}

.video-tag {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.video-heading h2 {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.video-heading p {
    max-width: 760px;
    margin: auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.8;
}

/* ================= VIDEO CARD ================= */

.video-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: 0.45s ease;
    height: 100%;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ================= VIDEO ================= */

.video-frame {
    position: relative;
    overflow: hidden;
}

.video-frame iframe {
    width: 100%;
    height: 280px;
    border: none;
    display: block;
}

/* overlay gradient */

.video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.05));
    pointer-events: none;
}

/* ================= CONTENT ================= */

.video-content {
    padding: 26px 28px 30px;
}

.video-content h4 {
    color: #fff;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
    margin-bottom: 16px;
}

.video-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* ================= BUTTON ================= */

.video-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.35s ease;
}

.video-btn:hover {
    background: var(--light-teal);
    color: #fff;
    transform: translateY(-2px);
}

/* ================= BOTTOM BUTTON ================= */

.video-bottom-btn {
    text-align: center;
    margin-top: 55px;
    position: relative;
    z-index: 2;
}

.all-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 42px;
    border-radius: 60px;
    background: #fff;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.all-video-btn:hover {
    background: var(--light-teal);
    color: #fff;
    transform: translateY(-3px);
}

/* =======================================================
   RESPONSIVE
======================================================= */

@media(max-width:1199px) {

    .video-heading h2 {
        font-size: 48px;
    }

    .video-content h4 {
        font-size: 24px;
    }

    .video-frame iframe {
        height: 250px;
    }
}

@media(max-width:991px) {

    .video-section {
        padding: 75px 0;
    }

    .video-heading {
        margin-bottom: 40px;
    }

    .video-heading h2 {
        font-size: 40px;
    }

    .video-heading p {
        font-size: 16px;
    }

    .video-frame iframe {
        height: 240px;
    }

    .video-content {
        padding: 22px;
    }

    .video-content h4 {
        font-size: 22px;
    }
}

@media(max-width:767px) {

    .video-section {
        padding: 65px 0;
    }

    .video-heading h2 {
        font-size: 32px;
    }

    .video-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .video-card {
        border-radius: 22px;
    }

    .video-frame iframe {
        height: 220px;
    }

    .video-content h4 {
        font-size: 20px;
    }
}

@media(max-width:576px) {

    .video-section {
        padding: 55px 0;
    }

    .video-tag {
        font-size: 12px;
        padding: 8px 18px;
    }

    .video-heading h2 {
        font-size: 27px;
        line-height: 1.3;
    }

    .video-heading p {
        font-size: 14px;
    }

    .video-frame iframe {
        height: 190px;
    }

    .video-content {
        padding: 18px;
    }

    .video-content h4 {
        font-size: 18px;
        line-height: 1.5;
    }

    .video-content p {
        font-size: 13px;
    }

    .video-btn {
        width: 100%;
        justify-content: center;
    }

    .all-video-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}


/* ==========================================
   BLOG SECTION
========================================== */

.blogs-section {
    padding: 80px 0;
    background: #f7fbff;
    position: relative;
}

.blogs-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(13, 76, 161, .08);
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blogs-heading h2 {
    font-size: 35px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.blogs-heading p {
    max-width: 700px;
    margin: auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}


.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 328px;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
    transition: .4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(15, 23, 42, .12);
}



.blog-img {
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .5s;
    display: block;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}



.blog-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-content h4 {
    color: #0f172a;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 0px;
    min-height: 60px;
}

.blog-btn {
    margin-top: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 160px;
    height: 48px;

    border-radius: 50px;

    background: linear-gradient(135deg,
            var(--primary-blue),
            var(--light-teal));

    color: #fff;
    font-size: 15px;
    font-weight: 600;

    transition: .3s;
}

.blog-card:hover .blog-btn {
    transform: translateY(-2px);
}

.blog-btn i {
    transition: .3s;
}

.blog-card:hover .blog-btn i {
    transform: translateX(4px);
}


.blog-bottom {
    text-align: center;
    margin-top: 50px;
}

.all-blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    height: 58px;
    border-radius: 50px;
    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(13, 76, 161, .20);
    transition: .4s;
}

.all-blog-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    background: var(--teal-green);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1199px) {

    .blog-content h4 {
        font-size: 20px;
        min-height: 90px;
    }
}

@media(max-width:991px) {

    .blogs-heading h2 {
        font-size: 38px;
    }

    .blog-card {
        min-height: 400px;
    }

    .blog-content h4 {
        min-height: auto;
    }
}

@media(max-width:767px) {

    .blogs-section {
        padding: 60px 0;
    }

    .blogs-heading {
        margin-bottom: 35px;
    }

    .blogs-heading h2 {
        font-size: 30px;
    }

    .blogs-heading p {
        font-size: 15px;
    }

    .blog-card {
        min-height: auto;
    }

    .blog-img img {
        height: 200px;
    }

    .blog-content {
        padding: 18px;
    }

    .blog-content h4 {
        font-size: 18px;
        min-height: auto;
    }

    .blog-btn {
        width: 100%;
    }

    .all-blog-btn {
        width: 100%;
        min-width: 100%;
    }
}


/* =========================
   FAQ SECTION
========================= */

.faq-section {
    background: linear-gradient(135deg, #0d4ca1, #11458f);
    padding: 80px 0;
    position: relative;
}

.faq-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* =========================
   HEADING
========================= */

.faq-heading {
    text-align: center;
    margin-bottom: 45px;
}

.faq-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-heading h2 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.faq-heading p {
    color: rgba(255, 255, 255, .85);
    font-size: 17px;
    margin: 0;
}

/* =========================
   FAQ WRAPPER
========================= */

.faq-wrapper {
    max-width: 1100px;
    margin: auto;
}

/* =========================
   FAQ CARD
========================= */

.faq-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, .08);

    transition: .3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, .12);
}

/* =========================
   QUESTION
========================= */

.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 19px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: .3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question span {
    font-size: 28px;
    font-weight: 700;
    color: #0d4ca1;
    transition: .3s;
    flex-shrink: 0;
}

/* =========================
   ANSWER
========================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    background: #fff;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 22px;

    font-size: 15px;
    line-height: 1.9;

    color: #475569;
}

/* =========================
   ACTIVE STATE
========================= */

.faq-item.active {
    box-shadow:
        0 15px 35px rgba(20, 184, 166, .15);
}

.faq-item.active .faq-question {
    background: #14b8a6;
    color: #fff;
}

.faq-item.active .faq-question span {
    color: #fff;
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    background: #ffffff;
    border-top: 1px solid rgba(20, 184, 166, .15);
}

.faq-item.active .faq-answer p {
    padding-top: 20px;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .faq-section {
        padding: 70px 0;
    }

    .faq-heading h2 {
        font-size: 38px;
    }

    .faq-question {
        font-size: 17px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:767px) {

    .faq-section {
        padding: 60px 0;
    }

    .faq-heading {
        margin-bottom: 35px;
    }

    .faq-heading h2 {
        font-size: 30px;
    }

    .faq-heading p {
        font-size: 15px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
        line-height: 1.5;
    }

    .faq-question span {
        font-size: 22px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.8;
        padding: 0 18px 18px;
    }

}

/* =========================
   EXTRA SMALL
========================= */

@media(max-width:480px) {

    .faq-heading h2 {
        font-size: 26px;
    }

    .faq-tag {
        font-size: 13px;
        padding: 7px 16px;
    }

}


/* ===================================
FOOTER
=================================== */

.footer-area {
    background: #0b0b0b;
    padding: 70px 0 25px;
    color: #fff;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quick-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.quick-links span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.quick-links a {
    color: #d6d6d6;
    font-size: 16px;
    transition: .3s;
}

.quick-links a:hover {
    color: #ffffff;
}

/* SOCIAL */

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #002050;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: .3s;
}

.footer-social a:hover {
    background: #002050;
    color: #fff;
    transform: translateY(-4px);
}

/* DIVIDER */

.footer-divider {
    border-color: rgba(255, 255, 255, .08);
    margin-bottom: 50px;
}

/* LOGO */

.footer-logo img {
    max-width: 250px;
    margin-bottom: 25px;
}

.footer-about {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 2;
    margin: 0;
}

/* TITLES */

.footer-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #1d5db3;
}

/* LINKS */

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.7;
    transition: .3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

/* CONTACT */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d8d8d8;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact i {
    color: #1d5db3;
    font-size: 18px;
    margin-top: 4px;
}

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 40px;
    padding-top: 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom div {
    color: #d6d6d6;
    font-size: 15px;
}

.developer-text {
    text-align: center;
}

.developer-text a {
    color: #5d9cff;
    font-weight: 700;
    text-decoration: none;
}

.developer-text a:hover {
    color: #fff;
}

.privacy-link {
    color: #d6d6d6;
}

.privacy-link:hover {
    color: #fff;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .footer-main {
        row-gap: 40px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-title {
        margin-top: 10px;
    }

}

@media(max-width:767px) {

    .footer-area {
        padding: 50px 0 20px;
    }

    .quick-links {
        gap: 12px;
    }

    .quick-links span {
        width: 100%;
    }

    .footer-social {
        margin-top: 10px;
    }

    .footer-logo img {
        max-width: 200px;
    }

    .footer-about {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-contact li {
        font-size: 14px;
    }

}



/* ===============================
   HERO SECTION
================================ */

.rirs-hero {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}

/* BLUE OVERLAY */

.rirs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 32, 80, 0.95) 0%,
            rgba(0, 51, 102, 0.92) 40%,
            rgba(0, 32, 80, 0.65) 70%,
            rgba(0, 0, 0, 0.20) 100%);
}

/* CONTENT */

.rirs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* BREADCRUMB */

.rirs-breadcrumb {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
}

.rirs-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.rirs-breadcrumb a:hover {
    color: #7db3ff;
}

.rirs-breadcrumb span {
    margin: 0 6px;
    color: rgba(255, 255, 255, .8);
}


.rirs-hero-content h1 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #ffffff;
}

.rirs-hero-content p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .95);
    margin: 0;
}

.rirs-btn-wrap {
    margin-top: 35px;
}

.rirs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #002050 0%, #003366 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .4s;
}

.rirs-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 32, 80, .25);
}

/* ===============================
   TABLET
================================ */

@media (max-width: 992px) {

    .rirs-hero {
        padding: 100px 0;
        background-position: center;
    }

    .rirs-hero-content {
        max-width: 100%;
    }

    .rirs-hero-content h1 {
        font-size: 38px;
    }

    .rirs-hero-content p {
        font-size: 17px;
        line-height: 1.8;
    }

}

/* ===============================
   MOBILE
================================ */

@media (max-width: 767px) {

    .rirs-hero {
        padding: 80px 0;
    }

    .rirs-hero::before {
        background: linear-gradient(180deg,
                rgba(0, 32, 80, .95) 0%,
                rgba(0, 51, 102, .90) 100%);
    }

    .rirs-breadcrumb {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .rirs-hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .rirs-hero-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .rirs-btn {
        width: 100%;
        justify-content: center;
    }

}

/* ===============================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .rirs-hero {
        padding: 70px 0;
    }

    .rirs-hero-content h1 {
        font-size: 24px;
    }

    .rirs-hero-content p {
        font-size: 14px;
    }

}



/* ================= SECTION ================= */

.herobar-section {
    margin-top: 0px;
    position: relative;
    z-index: 20;
}

.herobar-form {
    background: #fff;
    padding: 30px;
    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(0, 32, 80, .12);

    border: 1px solid rgba(0, 32, 80, .08);
}

.herobar-form .form-control,
.herobar-form .form-select {

    height: 55px;

    border-radius: 12px;

    border: 1px solid #dfe7f4;

    font-size: 14px;

    padding: 12px 18px;

    color: #1f1f1f;
}

.herobar-form .form-control:focus,
.herobar-form .form-select:focus {

    border-color: #0b5a8f;

    box-shadow:
        0 0 0 4px rgba(11, 90, 143, .12);

    outline: none;
}

/* BUTTON */

.herobar-btn {
    width: 100%;

    height: 55px;

    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;

    color: #fff;
    background: linear-gradient(90deg, #184f96 0%, #215fa8 35%, #2d7bb6 70%, #43c5c4 100%);
    transition: .35s ease;
}

.herobar-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px rgba(0, 32, 80, .25);
    background: var(--teal-green);
    color: #fff;
}

.herobar-form input::placeholder {
    color: #888;
}

@media(max-width:991px) {

    .herobar-section {
        margin-top: 0px;
    }

    .herobar-form {
        padding: 20px;
    }

    .herobar-btn {
        margin-top: 5px;
    }
}

/* ===================================
DR RAJESH SECTION
=================================== */

.dr-rajesh-section {
    padding: 90px 0;
    background: #f8fbff;
    overflow: hidden;
    padding-bottom: 20px;
}

.dr-rajesh-content h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
    color: #184f96;
}

.dr-rajesh-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--teal-green);
}

.dr-rajesh-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 22px;
}

.dr-rajesh-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 18px 34px;

    border-radius: 60px;

    text-decoration: none;

    color: #fff;

    font-size: 17px;
    font-weight: 700;

    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);

    transition: .35s ease;
}

.dr-rajesh-btn:hover {
    background: var(--teal-green);
    color: #fff;
    transform: translateY(-3px);
}

.dr-rajesh-image {
    position: relative;
    text-align: center;
}

.dr-rajesh-image .shape-box {

    position: absolute;

    width: 140px;
    height: 140px;

    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);

    border-radius: 24px;

    top: -40px;
    left: 0px;

    z-index: 1;
}

.dr-rajesh-image img {

    width: 100%;
    max-width: 500px;

    border-radius: 28px;

    position: relative;
    z-index: 2;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .15);
}

/* ===================================
TABLET
=================================== */

@media(max-width:991px) {

    .dr-rajesh-section {
        padding: 70px 0;
    }

    .dr-rajesh-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .dr-rajesh-content h2 {
        font-size: 42px;
    }

    .dr-rajesh-content h3 {
        font-size: 20px;
    }

    .dr-rajesh-content p {
        font-size: 17px;
    }

    .dr-rajesh-image .shape-box {
        left: 50%;
        transform: translateX(-180px);
    }
}

/* ===================================
MOBILE
=================================== */

@media(max-width:767px) {

    .dr-rajesh-section {
        padding: 55px 0;
    }

    .dr-rajesh-image {
        margin-bottom: 30px;
        text-align: center;
    }

    .dr-rajesh-image img {
        max-width: 100%;
        border-radius: 20px;
    }

    .dr-rajesh-image .shape-box {
        width: 100px;
        height: 84px;
        top: -32px;
        left: 30%;
        transform: translateX(-120px);
    }


    .dr-rajesh-content {
        text-align: left;
        margin-bottom: 0;
    }

    .dr-rajesh-content h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .dr-rajesh-content h3 {
        font-size: 17px;
        line-height: 1.5;
    }

    .dr-rajesh-content p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .dr-rajesh-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 15px;
    }
}

/* ===================================
ROBOTIC HERNIA SECTION
=================================== */

.robotic-hernia-section {
    padding: 90px 0;
    background: #ffffff;
}

.robotic-hernia-image img {
    width: 100%;
    border-radius: 24px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .12);

    transition: .4s;
}

.robotic-hernia-image img:hover {
    transform: translateY(-5px);
}

.robotic-hernia-content {
    padding-left: 30px;
}

.robotic-hernia-content h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.robotic-hernia-content h2 span {
    color: var(--teal-green);
}

.section-line {
    width: 180px;
    height: 4px;
    border-radius: 50px;
    margin-bottom: 30px;

    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);
}

.robotic-hernia-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 22px;
}

.robotic-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: #fff;

    font-size: 16px;
    font-weight: 700;

    padding: 16px 30px;

    border-radius: 60px;

    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);

    transition: .35s ease;
}

.robotic-btn:hover {
    background: var(--teal-green);
    color: #fff;
    transform: translateY(-3px);
}

/* ===================================
TABLET
=================================== */

@media(max-width:991px) {

    .robotic-hernia-section {
        padding: 70px 0;
    }

    .robotic-hernia-content {
        padding-left: 0;
        margin-bottom: 40px;
    }

    .robotic-hernia-content h2 {
        font-size: 38px;
    }

    .robotic-hernia-image {
        text-align: center;
    }
}

/* ===================================
MOBILE
=================================== */

@media(max-width:767px) {

    .robotic-hernia-section {
        padding: 55px 0;
    }

    .robotic-hernia-content {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .robotic-hernia-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .robotic-hernia-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .section-line {
        width: 120px;
        margin-bottom: 20px;
    }

    .robotic-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }

    .robotic-hernia-image img {
        border-radius: 18px;
    }
}

/* ===================================
TYPES OF HERNIA SECTION
=================================== */

.hernia-types-section {
    padding: 90px 0;
    background: #eef5fb;
}

.hernia-types-heading {
    text-align: center;
    margin-bottom: 50px;
}

.hernia-types-heading h2 {
    font-size: 35px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}


.hernia-types-heading h2 span {
    color: var(--teal-green);
}

.hernia-type-box {
    background: linear-gradient(90deg, #184f96 0%, #215fa8 35%, #2d7bb6 70%, #43c5c4 100%);
    color: #fff;
    padding: 20px 25px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 600;
    transition: .35s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(24, 79, 150, .12);
}

.hernia-type-box:hover {

    background: var(--teal-green);

    transform:
        translateY(-5px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, .15);
}

/* ======================
TABLET
====================== */

@media(max-width:991px) {

    .hernia-types-section {
        padding: 70px 0;
    }

    .hernia-types-heading h2 {
        font-size: 34px;
    }

    .hernia-type-box {
        font-size: 19px;
        padding: 20px 22px;
    }
}

/* ======================
MOBILE
====================== */

@media(max-width:767px) {

    .hernia-types-section {
        padding: 55px 0;
    }

    .hernia-types-heading {
        margin-bottom: 35px;
    }

    .hernia-types-heading h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hernia-type-box {
        font-size: 17px;
        padding: 18px 20px;
        border-radius: 14px;
    }
}


/* ===================================
HERNIA SYMPTOMS SECTION
=================================== */

.hernia-symptoms-section {
    padding: 90px 0;
    background: #ffffff;
}

.hernia-symptoms-heading {
    text-align: center;
    margin-bottom: 70px;
}

.hernia-symptoms-heading h2 {
    font-size: 35px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
}

.hernia-symptoms-heading h2 span {
    color: var(--teal-green);
}

.heading-line {
    width: 170px;
    height: 4px;
    margin: 0 auto;

    border-radius: 30px;

    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);
}

/* CARD */

.symptom-card {
    position: relative;
    background: #fff;
    padding: 50px 25px 24px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e7eef6;
    transition: .35s ease;
    height: 100%;
}

.symptom-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);
}

/* ICON */

.symptom-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: absolute;
    left: 50%;
    top: -45px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #184f96 0%, #215fa8 35%, #2d7bb6 70%, #43c5c4 100%);
    box-shadow: 0 10px 25px rgba(24, 79, 150, .20);
}

.symptom-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.symptom-card h3 {

    font-size: 25px;
    font-weight: 700;

    color: var(--primary-blue);

    margin-bottom: 18px;
}

.symptom-card p {

    font-size: 14px;
    line-height: 1.9;

    color: #555;

    margin: 0;
}

/* TABLET */

@media(max-width:991px) {

    .hernia-symptoms-section {
        padding: 70px 0;
    }

    .hernia-symptoms-heading h2 {
        font-size: 38px;
    }

    .symptom-card h3 {
        font-size: 24px;
    }
}

/* MOBILE */

@media(max-width:767px) {

    .hernia-symptoms-section {
        padding: 55px 0;
    }

    .hernia-symptoms-heading {
        margin-bottom: 55px;
    }

    .hernia-symptoms-heading h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .symptom-card {
        padding: 60px 25px 25px;
    }

    .symptom-card h3 {
        font-size: 21px;
    }

    .symptom-card p {
        font-size: 15px;
        line-height: 1.8;
    }

    .symptom-icon {
        width: 75px;
        height: 75px;
        top: -38px;
    }

    .symptom-icon img {
        width: 34px;
        height: 34px;
    }
}


/* ===================================
WHEN ROBOTIC HERNIA SURGERY RECOMMENDED
=================================== */

.hernia-recommended-section {
    padding: 90px 0;
    background: #f8fbff;
}

.hernia-recommended-content h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hernia-recommended-content h2 span {
    color: var(--teal-green);
}

.recommended-line {

    width: 170px;
    height: 4px;

    border-radius: 50px;

    margin-bottom: 30px;

    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);
}

.hernia-recommended-content p {

    font-size: 15px;
    line-height: 1.9;

    color: #444;

    margin-bottom: 22px;
}

.hernia-recommended-image img {

    width: 100%;

    border-radius: 24px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .12);

    transition: .4s;
}

.hernia-recommended-image img:hover {

    transform: translateY(-6px);
}

/* ======================
TABLET
====================== */

@media(max-width:991px) {

    .hernia-recommended-section {
        padding: 70px 0;
    }

    .hernia-recommended-content {
        margin-bottom: 35px;
    }

    .hernia-recommended-content h2 {
        font-size: 34px;
    }

    .hernia-recommended-content p {
        font-size: 16px;
    }
}

/* ======================
MOBILE
====================== */

@media(max-width:767px) {

    .hernia-recommended-section {
        padding: 55px 0;
    }

    .hernia-recommended-content {
        margin-bottom: 25px;
        margin-top: 25px;
    }

    .hernia-recommended-content h2 {
        font-size: 28px;
        line-height: 1.35;
    }

    .recommended-line {
        width: 120px;
        margin-bottom: 20px;
    }

    .hernia-recommended-content p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .hernia-recommended-image img {
        border-radius: 18px;
    }
}



/* ===============================
   RECOVERY TIMELINE SECTION
================================ */
.recovery-timeline {
    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);
    padding: 90px 0;
    color: #fff;
}

.timeline-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 80px;
}

.timeline-layout {
    display: grid;
    grid-template-columns: 1.2fr 80px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.timeline-scroll {
    max-height: 520px;
    overflow-y: auto;
    padding: 60px 20px 120px 20px;
    /* top less, bottom more */
    position: relative;
}

.timeline::after {
    content: "";
    display: block;
    height: 120px;
}


.timeline-scroll::-webkit-scrollbar {
    width: 0;
}

.timeline-scroll {
    scrollbar-width: none;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 95%;
    top: 0;
    width: 3px;
    height: 85%;
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-50%);
}

.timeline-row {
    position: relative;
    min-height: 90px;
    margin-bottom: 60px;
    opacity: 0.15;
    transition: 0.4s ease;
}

.timeline-row {
    margin-bottom: 60px;
}

.timeline-row.active {
    opacity: 1;
}


.timeline-center {
    position: absolute;
    left: 95%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.timeline-icon {
    width: 75px;
    height: 75px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.15);
}


.timeline-icon img {
    width: 50px;
    height: 50px;
}

.timeline-right {
    padding-right: 80px;
}

.timeline-right p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.timeline-image {
    position: sticky;
    top: 120px;
}

.timeline-image img {
    width: 480px;
    height: 440px;
    object-fit: cover;
    border-radius: 26px;
}

@media (max-width: 992px) {

    .recovery-timeline {
        padding: 60px 15px;
        padding-bottom: 140px;
    }

    .timeline-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline::before {
        display: none;
    }

    .timeline-scroll {
        max-height: 420px;
        overflow-y: auto;
        padding-right: 5px;
    }

    .timeline-row {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 45px;
        opacity: 0.3;
        transition: 0.3s ease;
    }

    .timeline-row.active {
        opacity: 1;
    }

    .timeline-center {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        flex-shrink: 0;
    }

    .timeline-icon {
        width: 55px;
        height: 55px;
    }

    .timeline-icon img {
        width: 28px;
        height: 28px;
    }

    .timeline-right {
        padding: 0;
        flex: 1;
    }

    .timeline-right p {
        font-size: 15px;
        line-height: 1.6;
        margin: 0;
    }

    .timeline-image {
        position: relative;
        margin-top: 40px;
        width: 100%;
        overflow: hidden;
    }

    .timeline-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 18px;
        display: block;
    }

    .timeline-heading {
        font-size: 22px;
        margin-bottom: 30px;
    }
}


.uro-care-section {
    padding: 80px 0;
    background: #ffffff;
}

.uro-care-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* LEFT */
.uro-care-left {
    width: 48%;
}

.uro-care-left img {
    width: 100%;
    border-radius: 20px;
    margin-left: 40px;
}

/* RIGHT */
.uro-care-right {
    width: 52%;
    background: linear-gradient(90deg, #184f96 0%, #215fa8 35%, #2d7bb6 70%, #43c5c4 100%);
    padding: 50px;
    border-radius: 10px;
    color: #fff;
}

.uro-care-right h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.uro-care-right p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #fff;
}

/* STATS */
.uro-stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.uro-stat {
    flex: 1;
    background: #fff;
    color: #000;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
}

.uro-stat .num {
    font-size: 26px;
    font-weight: 700;
    display: block;
}

.uro-stat .label {
    font-size: 13px;
    margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .uro-care-wrapper {
        flex-direction: column;
    }

    .uro-care-left,
    .uro-care-right {
        width: 100%;
    }

    .uro-care-right {
        padding: 30px;
    }

    .uro-stats {
        flex-direction: column;
    }
}

/* ===================================
RECOVERY VS RISK SECTION
=================================== */

.hernia-recovery-risk {
    padding: 90px 0;
    background: #edf5fb;
}

/* Cards */

.recovery-card,
.risk-card {

    height: 100%;

    border-radius: 30px;

    padding: 40px;

    overflow: hidden;

    transition: .35s ease;
}

/* Left Card */

.recovery-card {

    background: #ffffff;

    border: 1px solid rgba(24, 79, 150, .08);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .05);
}

/* Right Card */

.risk-card {

    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);

    box-shadow:
        0 20px 50px rgba(24, 79, 150, .18);
}

/* Headings */

.recovery-card h2,
.risk-card h2 {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.recovery-card h2 {
    color: #184f96;
}

.risk-card h2 {
    color: #fff;
}

/* Lists */

.recovery-card ul,
.risk-card ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

.recovery-card li,
.risk-card li {

    position: relative;

    margin-bottom: 14px;

    padding: 18px 20px 18px 58px;

    border-radius: 16px;

    font-size: 17px;

    line-height: 1.6;

    font-weight: 600;

    transition: .3s ease;
}

/* Left List */

.recovery-card li {

    background: #f5f8fc;

    color: #222;
}

.recovery-card li::before {

    content: "✓";

    position: absolute;

    left: 20px;
    top: 50%;

    transform: translateY(-50%);

    width: 26px;
    height: 26px;

    border-radius: 50%;

    background: #43c5c4;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 700;
}

.recovery-card li:hover {

    background: #184f96;

    color: #fff;

    transform: translateX(8px);
}

/* Right List */

.risk-card li {

    background: rgba(255, 255, 255, .12);

    color: #fff;

    backdrop-filter: blur(6px);
}

.risk-card li:hover {
    background: var(--primary-blue);
    color: #fff;
    backdrop-filter: blur(6px);
}

.risk-card li::before {
    content: "✓";

    position: absolute;

    left: 20px;
    top: 50%;

    transform: translateY(-50%);

    width: 26px;
    height: 26px;

    border-radius: 50%;

    background: #fff;

    color: #184f96;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;
}

.risk-card li:hover {

    background: #184f96;

    color: #fff;

    transform: translateX(8px);
}

/* Hover Cards */

.recovery-card:hover,
.risk-card:hover {

    transform: translateY(-6px);
}

/* ===================================
TABLET
=================================== */

@media(max-width:991px) {

    .hernia-recovery-risk {
        padding: 70px 0;
    }

    .recovery-card,
    .risk-card {
        padding: 30px;
    }

    .recovery-card h2,
    .risk-card h2 {
        font-size: 32px;
    }
}

/* ===================================
MOBILE
=================================== */

@media(max-width:767px) {

    .hernia-recovery-risk {
        padding: 55px 0;
    }

    .recovery-card,
    .risk-card {
        padding: 25px;
        border-radius: 22px;
    }

    .recovery-card h2,
    .risk-card h2 {

        font-size: 26px;

        margin-bottom: 20px;
    }

    .recovery-card li,
    .risk-card li {

        font-size: 15px;

        padding: 15px 15px 15px 50px;
    }

    .recovery-card li:hover,
    .risk-card li:hover {
        transform: none;
    }
}


/* ===================================
CTA SECTION
=================================== */

.rj-cta-section {

    padding: 90px 0;

    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);

    position: relative;

    overflow: hidden;
}

/* Decorative Circles */

.rj-cta-section::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .05);

    top: -150px;
    left: -100px;
}

.rj-cta-section::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .05);

    right: -80px;
    bottom: -80px;
}

.rj-cta-content {

    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 950px;

    margin: auto;
}

.rj-cta-content h2 {

    color: #fff;

    font-size: 35px;

    font-weight: 800;

    margin-bottom: 25px;

    line-height: 1.2;
}

.rj-cta-content p {
    color: rgba(255, 255, 255, .95);
    font-size: 15px;
    line-height: 1.9;
    max-width: 850px;
    margin: 0 auto 40px;
}

/* Buttons */

.rj-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rj-btn-primary {

    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 38px;
    border-radius: 60px;
    background: #fff;
    color: #184f96;
    transition: .35s ease;
}

.rj-btn-primary:hover {
    background: var(--teal-green);
    color: #fff;
    transform: translateY(-4px);
}

.rj-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 38px;
    border-radius: 60px;
    border: 2px solid #fff;
    transition: .35s ease;
}

.rj-btn-outline:hover {

    background: #fff;

    color: #184f96;

    transform: translateY(-4px);
}

/* ===================================
TABLET
=================================== */

@media(max-width:991px) {

    .rj-cta-section {
        padding: 70px 0;
    }

    .rj-cta-content h2 {
        font-size: 40px;
    }

    .rj-cta-content p {
        font-size: 18px;
    }
}

/* ===================================
MOBILE
=================================== */

@media(max-width:767px) {

    .rj-cta-section {
        padding: 55px 0;
    }

    .rj-cta-content h2 {

        font-size: 30px;

        margin-bottom: 18px;
    }

    .rj-cta-content p {

        font-size: 16px;

        line-height: 1.8;

        margin-bottom: 25px;
    }

    .rj-btn-primary,
    .rj-btn-outline {

        width: 100%;

        justify-content: center;

        padding: 16px 20px;

        font-size: 16px;
    }
}


/* About SECTION */
.spine-about-section {
    background: #eef3f7;
    padding: 70px 0;
    padding-bottom: 0px;
}


.spine-about-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.spine-about-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

.spine-qualification {
    margin-top: 20px;
}

.spine-qualification h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.spine-qualification ul {
    padding-left: 18px;
}

.spine-qualification ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}


.spine-about-img {
    padding-top: 80px;
}

.spine-about-img img {
    max-width: 100%;
    height: auto;
}

.spine-about-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-top: -20px;
}

.spine-about-form h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.spine-about-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spine-about-form input,
.spine-about-form select,
.spine-about-form textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-size: 14px;
}

.spine-about-form button {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.spine-about-form button:hover {
    background: var(--primary-color);
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .spine-about-section {
        text-align: center;
    }

    .spine-about-title {
        font-size: 26px;
    }

    .spine-about-img {
        margin: 25px 0;
    }

    .spine-about-form {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .spine-qualification h4 {
        text-align: left;
    }

    .spine-qualification ul li {
        text-align: left;
    }

    .spine-about-img img {
        max-width: 100%;
        height: auto;
        margin-top: -110px;
        margin-bottom: -47px;
    }
}


/* ===================================
ABOUT DR RAJESH
=================================== */

.spine-about-section {
    padding: 70px 0;
    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);
    overflow: hidden;

    padding-bottom: 0px;
}

/* CONTENT */

.spine-about-content {
    color: #fff;
}

.spine-about-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.about-intro {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .95);
}

.about-intro strong {
    color: #fff;
}

.spine-qualification {
    margin-top: 35px;
}

.spine-about-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #fff;
}

.qualification-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.qualification-title i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.qualification-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.spine-qualification ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spine-qualification ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
}

.spine-qualification ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 2px;
    color: #43c5c4;
}

.spine-about-content p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.8;
}

/* IMAGE */

.spine-about-img {
    text-align: center;
}

.spine-about-img img {
    width: 100%;
    max-width: 360px;
    object-fit: contain;
}

/* FORM */

.spine-about-form {
    background: #fff;
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.spine-about-form h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #184f96;
}

/* Form Inputs */

.spine-about-form input,
.spine-about-form select,
.spine-about-form textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-size: 14px;
}

.spine-about-form textarea {
    height: 120px;
    padding-top: 15px;
}

.spine-about-form button,
.spine-about-form .btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;

    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);

    transition: .3s;
}

.spine-about-form button:hover,
.spine-about-form .btn:hover {
    background: var(--teal-green);
    transform: translateY(-2px);
}

/* TABLET */

@media(max-width:991px) {

    .spine-about-section {
        padding: 60px 0;
    }

    .spine-about-content {
        margin-bottom: 40px;
    }

    .spine-about-title {
        font-size: 36px;
    }

    .spine-about-img {
        margin-bottom: 40px;
    }

    .spine-about-form h3 {
        font-size: 40px;
    }
}

/* MOBILE */

@media(max-width:767px) {

    .spine-about-section {
        padding: 50px 0;
    }

    .spine-about-title {
        font-size: 30px;
    }

    .about-intro {
        font-size: 15px;
    }

    .qualification-title h4 {
        font-size: 24px;
    }

    .spine-qualification ul li,
    .spine-qualification p {
        font-size: 15px;
    }

    .spine-about-img img {
        max-width: 260px;
    }

    .spine-about-form {
        padding: 25px;
    }

    .spine-about-form h3 {
        font-size: 32px;
        text-align: center;
    }
}

/* ==========================
MISSION & VISION
========================== */

.mission-vision-section {
    padding: 70px 0;
    background: #f5f9fc;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 0;

    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mv-card {
    background: #fff;
    padding: 30px;
    border-radius: 22px;
    height: 100%;
    border-left: 4px solid #43c5c4;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    transition: .35s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    border-left-color: #184f96;
}

/* Header */
.mv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mv-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg,
            #184f96 0%,
            #215fa8 35%,
            #2d7bb6 70%,
            #43c5c4 100%);
    color: #fff;
    font-size: 15px;
}

.mv-header h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 800;
    color: #184f96;
}

/* Text */

.mv-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 14px;
}

.mv-card p:last-child {
    margin-bottom: 0;
}

/* Tablet */

@media(max-width:991px) {

    .mission-vision-section {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .mv-card {
        padding: 25px;
    }

    .mv-header h3 {
        font-size: 28px;
    }
}

/* Mobile */

@media(max-width:767px) {

    .mission-vision-section {
        padding: 50px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .mv-card {
        padding: 22px;
    }

    .mv-header {
        gap: 12px;
        margin-bottom: 15px;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
    }

    .mv-header h3 {
        font-size: 24px;
    }

    .mv-card p {
        font-size: 15px;
        line-height: 1.8;
    }
}


/*====================================
MEDIA BANNER SECTION
====================================*/

.media-banner-section {
    position: relative;
    height: 350px;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.media-banner-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(11, 90, 143, 0.65) 0%,
            rgba(24, 79, 150, 0.55) 35%,
            rgba(33, 95, 168, 0.45) 70%,
            rgba(67, 197, 196, 0.35) 100%);

    z-index: 1;
}

.media-banner-content {
    position: relative;
    z-index: 2;

    text-align: center;
}

.media-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 5px 14px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;

    margin-bottom: 25px;
}

.media-breadcrumb a {
    text-decoration: none;
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}

.media-breadcrumb a:hover {
    color: #43c5c4;
}

.media-breadcrumb span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.media-banner-content h1 {
    color: #fff;

    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;

    margin: 0;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.media-banner-content h1::after {
    content: "";

    display: block;

    width: 120px;
    height: 4px;

    margin: 18px auto 0;

    border-radius: 50px;

    background: linear-gradient(90deg,
            #ffffff,
            #43c5c4);
}

/*====================================
TABLET
====================================*/

@media (max-width: 991px) {

    .media-banner-section {
        height: 360px;
    }

    .media-banner-content h1 {
        font-size: 52px;
    }

    .media-breadcrumb {
        margin-bottom: 20px;
    }
}

/*====================================
MOBILE
====================================*/

@media (max-width: 767px) {

    .media-banner-section {
        height: 280px;
        padding: 20px;
    }

    .media-banner-content h1 {
        font-size: 34px;
    }

    .media-banner-content h1::after {
        width: 80px;
        margin-top: 12px;
    }

    .media-breadcrumb {
        padding: 8px 16px;
        gap: 8px;
        margin-bottom: 15px;
    }

    .media-breadcrumb a,
    .media-breadcrumb span {
        font-size: 13px;
    }
}

/*====================================
SMALL MOBILE
====================================*/

@media (max-width: 480px) {

    .media-banner-section {
        height: 240px;
    }

    .media-banner-content h1 {
        font-size: 28px;
    }

    .media-breadcrumb {
        padding: 7px 14px;
    }

    .media-breadcrumb a,
    .media-breadcrumb span {
        font-size: 12px;
    }
}

/*=================================
FEATURED MEDIA SECTION
=================================*/

.featured-media-section {
    padding: 80px 0;
    background: #f8fbff;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading span {
    display: inline-block;
    padding: 8px 18px;

    background: rgba(67, 197, 196, .12);
    color: #184f96;

    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;

    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #184f96;

    margin-bottom: 15px;
}

.section-heading p {
    max-width: 700px;
    margin: auto;

    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.media-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.media-logo-card {
    background: #fff;

    border-radius: 20px;

    padding: 25px;

    min-height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    border: 1px solid #e7edf5;

    transition: .35s ease;

    box-shadow: 0 5px 25px rgba(0, 0, 0, .05);
}

.media-logo-card:hover {
    transform: translateY(-8px);

    border-color: #43c5c4;

    box-shadow: 0 15px 40px rgba(24, 79, 150, .15);
}

.media-logo-card img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
}

/*=========================
TABLET
=========================*/

@media(max-width:991px) {

    .media-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2 {
        font-size: 34px;
    }
}

/*=========================
MOBILE
=========================*/

@media(max-width:767px) {

    .featured-media-section {
        padding: 60px 0;
    }

    .media-logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .media-logo-card {
        min-height: 140px;
        padding: 20px;
    }

    .media-logo-card img {
        max-height: 90px;
    }
}


/*=================================
NEWS GALLERY
=================================*/

.news-gallery-section {
    padding: 80px 0;
    background: #f8fbff;
}

.news-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.news-item {
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;

    background: #fff;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

    transition: .35s ease;
}

.news-item:hover {
    transform: translateY(-8px);
}

.news-item img {
    width: 100%;
    height: 320px;

    object-fit: cover;
    display: block;

    transition: .4s ease;
}

.news-item:hover img {
    transform: scale(1.05);
}

/*=================================
MODAL
=================================*/

.news-modal {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, .92);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 99999;

    padding: 40px;
}

.news-modal.active {
    display: flex;
}

.news-modal img {
    max-width: 90%;
    max-height: 90vh;

    border-radius: 12px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.news-close {
    position: absolute;

    top: 20px;
    right: 30px;

    color: #fff;

    font-size: 55px;
    font-weight: 700;

    cursor: pointer;

    line-height: 1;
}

/*=================================
TABLET
=================================*/

@media(max-width:991px) {

    .news-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-item img {
        height: 280px;
    }
}

/*=================================
MOBILE
=================================*/

@media(max-width:767px) {

    .news-gallery-section {
        padding: 60px 0;
    }

    .news-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-item img {
        height: auto;
    }

    .news-modal {
        padding: 20px;
    }

    .news-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}


.gallery-section {
    padding: 70px 0;
    background: #f5f7fb;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 350px;
}

.gallery-item:hover {
    transform: translateY(-6px);
}

.gallery-item img {
    width: 100%;
    display: block;
    height: 350px;
    object-fit: cover;

    border-radius: 20px;
}


.gallery-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    justify-content: center;
    align-items: center;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 15px;
    object-fit: contain;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
}

.gallery-close:hover {
    opacity: .8;
}

/* Tablet */
@media(max-width:991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 300px;
    }
}

/* Mobile */
@media(max-width:576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item img {
        height: 280px;
    }
}


/* =========================
   BLOG PAGE SECTION
========================= */

.blog-page-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 35px;
    align-items: start;
}

/* =========================
   BLOG GRID
========================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    border: 1px solid #e8edf5;
    transition: .4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(29, 79, 163, .18);
}

/* =========================
   IMAGE
========================= */

.blog-image {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.blog-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #fff;
    display: block;
    transition: .5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.03);
}

/* =========================
   TAG
========================= */

.blog-tag {
    position: absolute;
    top: 18px;
    left: 18px;

    background: linear-gradient(90deg,
            #1d4fa3,
            #45c4c6);

    color: #fff;
    padding: 10px 18px;
    border-radius: 40px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;

    z-index: 2;
}


.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 22px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;
    color: #1d4fa3;

    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;

    transition: .3s ease;
}

.read-more:hover {
    color: #45c4c6;
}

.read-more i {
    font-size: 16px;
}

/* =========================
   SIDEBAR
========================= */

.category-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #e8edf5;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

    position: sticky;
    top: 120px;
}

.category-card h3 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.category-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-card li {
    border-bottom: 1px solid #edf2f7;
}

.category-card li:last-child {
    border-bottom: none;
}

.category-card a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 0;

    color: #475569;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;

    transition: .3s ease;
}

.category-card a:hover {
    color: #1d4fa3;
    padding-left: 10px;
}

.category-card a::after {
    content: "›";
    font-size: 24px;
    color: #45c4c6;
    font-weight: 700;
}

/* =========================
   PAGINATION
========================= */

.blog-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.blog-pagination a,
.blog-pagination span {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #fff;
    color: #1d4fa3;

    text-decoration: none;
    font-weight: 700;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);

    transition: .3s;
}

.blog-pagination a:hover,
.blog-pagination .active {
    background: linear-gradient(90deg,
            #1d4fa3,
            #45c4c6);
    color: #fff;
}

/* =========================
   TABLET
========================= */

@media(max-width:1200px) {

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        position: relative;
        top: 0;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .blog-page-section {
        padding: 50px 0;
    }

    .blog-layout {
        gap: 25px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-image img {
        height: 220px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 22px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .read-more {
        font-size: 16px;
    }

    .category-card {
        padding: 25px;
    }

    .category-card h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .category-card a {
        font-size: 16px;
        padding: 14px 0;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px) {

    .blog-image img {
        height: 200px;
    }

    .blog-tag {
        font-size: 11px;
        padding: 8px 14px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .category-card {
        border-radius: 18px;
    }

    .blog-card {
        border-radius: 18px;
    }
}


/*=========================
CONTACT SECTION
=========================*/

.contact-connect-section {
    padding: 90px 0;
    background: #f5f8fc;
}

.contact-connect-wrapper {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
    align-items: start;
}

/* LEFT */

.contact-tag {
    display: inline-block;
    color: #45c4c6;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-form-area h2 {
    font-size: 54px;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-desc {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    border-left: 4px solid #45c4c6;
    padding-left: 18px;
    margin-bottom: 35px;
}

.contact-form-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

/*=========================
FORM DESIGN
=========================*/

.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    height: 58px;
    border: 1px solid #dbe4ee;
    border-radius: 14px;
    padding: 0 20px;
    font-size: 16px;
    background: #fff;
    transition: .3s;
}

.contact-form-card textarea {
    height: 130px;
    padding-top: 15px;
    resize: none;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: #45c4c6;
    outline: none;
    box-shadow: 0 0 0 4px rgba(69, 196, 198, .15);
}

.contact-form-card button,
.contact-form-card input[type="submit"] {
    border: none;
    height: 60px;
    border-radius: 14px;

    background: linear-gradient(90deg,
            #1d4fa3,
            #45c4c6);

    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.contact-form-card button:hover,
.contact-form-card input[type="submit"]:hover {
    transform: translateY(-3px);
}

/*=========================
RIGHT CARD
=========================*/

.contact-info-card {
    padding: 40px;

    background: linear-gradient(135deg,
            #1d4fa3,
            #45c4c6);

    border-radius: 30px;
    color: #fff;

    box-shadow: 0 15px 40px rgba(29, 79, 163, .25);
}

.contact-info-card h3 {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;

    background: rgba(255, 255, 255, .15);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.contact-info-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-info-item p {
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
    color: rgba(255, 255, 255, .92);
}

/*=========================
SOCIAL ICONS
=========================*/

.contact-socials {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.contact-socials a {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: #fff;
    color: #1d4fa3;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    transition: .3s;
}

.contact-socials a:hover {
    transform: translateY(-5px);
}

/*=========================
TABLET
=========================*/

@media(max-width:991px) {

    .contact-connect-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-area h2 {
        font-size: 42px;
    }

    .contact-info-card {
        margin-top: 10px;
    }
}

/*=========================
MOBILE
=========================*/

@media(max-width:576px) {

    .contact-connect-section {
        padding: 60px 0;
    }

    .contact-form-area h2 {
        font-size: 32px;
    }

    .contact-desc {
        font-size: 15px;
    }

    .contact-form-card {
        padding: 20px;
        border-radius: 20px;
    }

    .contact-info-card {
        padding: 25px;
        border-radius: 20px;
    }

    .contact-info-card h3 {
        font-size: 28px;
    }

    .contact-info-item {
        gap: 12px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 16px;
    }

    .contact-info-item h4 {
        font-size: 17px;
    }

    .contact-info-item p {
        font-size: 14px;
    }
}

/* =========================
   FULL WIDTH MAP
========================= */

.contact-map-section {
    padding: 0;
    margin: 0;
}

.contact-map-wrapper {
    width: 100%;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 550px;
    border: none;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {

    .contact-map-wrapper iframe {
        height: 450px;
    }

}

/* Mobile */
@media (max-width: 576px) {

    .contact-map-wrapper iframe {
        height: 350px;
    }

}


/* ================= Mdal Form ================= */

.consultation-modal .modal-dialog {
    max-width: 500px;
}

.consultation-modal .modal-content {
    border-radius: 26px;
    padding: 35px 32px;
    border: none;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.modal-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* FORCE ONE COLUMN LAYOUT */
.modal-form-fix .row {
    display: block !important;
}

.modal-form-fix [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
}

.modal-form-fix input,
.modal-form-fix select,
.modal-form-fix textarea {
    width: 100% !important;
    height: 50px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px !important;
    background: #f8f9fb;
    transition: all 0.2s ease;
}

.modal-form-fix input:focus,
.modal-form-fix select:focus {
    border-color: #3d6de0;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(61, 109, 224, 0.1);
}

.modal-form-fix select {
    height: 52px;
}

.modal-form-fix button,
.modal-form-fix input[type="submit"] {
    width: 100%;
    border: none;
    height: 52px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
   background: linear-gradient(135deg, var(--primary-blue), var(--teal-green));
    color: #fff;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.modal-form-fix button:hover,
.modal-form-fix input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 109, 224, 0.3);
    background: var(--teal-green);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .consultation-modal .modal-content {
        padding: 25px 20px;
    }
}




.blog-breadcrumb {
   background: linear-gradient(90deg, #184f96 0%, #215fa8 30%, #2d7bb6 65%, #43c5c4 100%);
    padding: 18px 0;
}
.blog-breadcrumb {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ddd;
}

.blog-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.blog-breadcrumb span {
    margin: 0 6px;
    color: #fff;
}

@media (max-width: 991px) {

    .blog-hero-sec {
        height: 220px;
    }

    .blog-hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {

    .blog-hero-sec {
        height: 180px;
    }

    .blog-hero-content h1 {
        font-size: 26px;
    }

    .blog-breadcrumb {
        font-size: 12px;
    }
}


.blog-detail-section {
    padding: 90px 0;
    background: #ffffff;
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}


.blog-feature-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 35px;
}

.blog-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.blog-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #333;
}

.blog-content h2 {
    margin-top: 45px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.blog-category-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
    border: 1px solid #f0f0f0;
}

.blog-category-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.blog-category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-card ul li {
    margin-bottom: 14px;
}

.blog-category-card ul li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f5f7fb;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s ease;
}

.blog-category-card ul li a:hover {
    background: var(--teal-green);
    color: #ffffff;
    transform: translateX(5px);
}

.blog-form-card {
    background: var(--primary-blue);
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.blog-form-card h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.blog-form-card form {
    width: 100%;
}

.blog-form-card form input,
.blog-form-card form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.blog-form-card form input::placeholder,
.blog-form-card form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.blog-form-card form textarea {
    min-height: 120px;
    resize: none;
}

.blog-form-card form button {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: var(--accent-red);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.blog-form-card form button:hover {
    background: var(--teal-green);
    color: #fff;
}

.blog-form-card form select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.blog-form-card form select {
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5H5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.blog-form-card form select {
    color: #fff;
}

.blog-form-card form select option {
    color: #000;
    background: #fff;
}

a {
    text-decoration: none;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 992px) {

    .blog-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-feature-image img {
        border-radius: 15px;
    }

    .blog-category-card,
    .blog-form-card {
        padding: 25px;
    }
}

