﻿
/* =========================================================
   RANA HOSPITAL
   PREMIUM HEADER CSS
   Prefix: rh-
   ========================================================= */
/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */
:root {
    /* Brand Colors */
    --rh-primary: #26235F;
    --rh-primary-dark: #1d1a4d;
    --rh-secondary: #284B9B;
    --rh-green: #159447;
    --rh-red: #D52B2B;
    /* Neutral Colors */
    --rh-white: #ffffff;
    --rh-black: #111318;
    --rh-heading: #20243a;
    --rh-text: #45474a;
    --rh-muted: #858b9b;
    /* Background */
    --rh-light: #f5f8fc;
    --rh-light-blue: #f1f5fb;
    --rh-light-green: #e8f8cb;
    --rh-border: rgba(38, 35, 95, 0.10);
    /* Effects */
    --rh-shadow-sm: 0 5px 20px rgba(25, 32, 60, 0.06);
    --rh-shadow: 0 15px 45px rgba(25, 32, 60, 0.12);
    --rh-shadow-lg: 0 25px 70px rgba(25, 32, 60, 0.16);
    /* Radius */
    --rh-radius-sm: 8px;
    --rh-radius: 12px;
    --rh-radius-lg: 18px;
    /* Transition */
    --rh-transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    /* Typography */
    --rh-font-heading: "Plus Jakarta Sans", sans-serif;
    --rh-font-body: "Inter", sans-serif;
}


/* =========================================================
   02. GLOBAL HEADER RESET
   ========================================================= */

.rh-header,
.rh-header * {
    box-sizing: border-box;
}

    .rh-header ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .rh-header a {
        text-decoration: none;
    }

    .rh-header button {
        font-family: inherit;
    }

.rh-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}


/* =========================================================
   03. TOP UTILITY BAR
   ========================================================= */

.rh-topbar {
    position: relative;
    z-index: 1002;
    background: var(--rh-primary);
    color: rgba(255, 255, 255, 0.90);
    font-family: var(--rh-font-body);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

    .rh-topbar .rh-container {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

.rh-topbar-left,
.rh-topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.rh-topbar a,
.rh-topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.90);
    transition: var(--rh-transition);
}

    .rh-topbar a:hover {
        color: var(--rh-white);
    }

.rh-topbar i {
    font-size: 12px;
}

.rh-topbar-left a:first-child {
    color: #ffffff;
    font-weight: 600;
}

    .rh-topbar-left a:first-child i {
        color: #ff7777;
    }

.rh-topbar-right {
    color: rgba(255, 255, 255, 0.70);
}

    .rh-topbar-right i {
        color: rgba(255, 255, 255, 0.55);
    }


/* =========================================================
   04. MAIN HEADER
   ========================================================= */

.rh-main-header {
    position: relative;
    z-index: 1001;
    width: 100%;
    background: var(--rh-white);
    border-bottom: 1px solid rgba(38, 35, 95, 0.07);
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

    .rh-main-header .rh-container {
        min-height: 92px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }


/* =========================================================
   05. LOGO
   ========================================================= */

.rh-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

    .rh-logo img {
        display: block;
        width: auto;
        max-width: 220px;
        height: auto;
        max-height: 65px;
        object-fit: contain;
        transition: var(--rh-transition);
    }

    .rh-logo:hover img {
        transform: translateY(-1px);
    }


/* =========================================================
   06. DESKTOP NAVIGATION
   ========================================================= */

.rh-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.rh-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.rh-nav-item {
    position: relative;
}

    .rh-nav-item > a {
        position: relative;
        min-height: 92px;
        padding: 0 8px;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: var(--rh-heading);
        font-family: var(--rh-font-body);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: -0.1px;
        transition: color 0.3s ease, background-color 0.3s ease;
    }


    /* ---------------------------------------------------------
   MENU HOVER / ACTIVE COLOR
   --------------------------------------------------------- */

    .rh-nav-item:hover > a,
    .rh-nav-item.active > a {
        color: var(--rh-secondary);
    }


    /* Dropdown arrow */

    .rh-nav-item > a > i {
        font-size: 9px;
        opacity: 0.65;
        transition: transform 0.35s ease, color 0.3s ease;
    }

    .rh-nav-item:hover > a > i,
    .rh-nav-item.active > a > i {
        color: var(--rh-secondary);
        transform: rotate(180deg);
    }


/* =========================================================
   07. DESKTOP DROPDOWN
   ========================================================= */

.rh-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    min-width: 255px;
    padding: 10px;
    background: var(--rh-white);
    border: 1px solid rgba(38, 35, 95, 0.08);
    border-radius: 14px;
    box-shadow: var(--rh-shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 12px) scale(0.97);
    transform-origin: top center;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.rh-nav-item:hover > .rh-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}


/* Dropdown top accent */

.rh-dropdown::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--rh-white);
    border-left: 1px solid rgba(38, 35, 95, 0.08);
    border-top: 1px solid rgba(38, 35, 95, 0.08);
    transform: translateX(-50%) rotate(45deg);
}


/* Dropdown items */

.rh-dropdown li {
    position: relative;
}

    .rh-dropdown li + li {
        margin-top: 2px;
    }

    .rh-dropdown li a {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 45px;
        padding: 0 14px;
        border-radius: 8px;
        color: var(--rh-text);
        font-family: var(--rh-font-body);
        font-size: 13.5px;
        font-weight: 600;
        transition: color 0.25s ease, background-color 0.25s ease, padding-left 0.25s ease;
    }

        .rh-dropdown li a::before {
            content: "";
            width: 0;
            height: 2px;
            margin-right: 0;
            background: var(--rh-green);
            border-radius: 5px;
            transition: width 0.25s ease, margin-right 0.25s ease;
        }

        .rh-dropdown li a:hover {
            color: var(--rh-primary);
            background: var(--rh-light-blue);
            padding-left: 11px;
        }

            .rh-dropdown li a:hover::before {
                width: 8px;
                margin-right: 8px;
            }


/* =========================================================
   08. HEADER ACTIONS
   ========================================================= */

.rh-header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}


/* =========================================================
   09. APPOINTMENT BUTTON
   ========================================================= */

.rh-appointment-btn {
    position: relative;
    overflow: hidden;
    min-height: 48px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--rh-white);
    background: linear-gradient(135deg, #af1c16, #db443c);
    border-radius: 9px;
    font-family: var(--rh-font-body);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(38, 35, 95, 0.18);
    transition: var(--rh-transition);
}

    .rh-appointment-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.20), transparent );
        transform: skewX(-20deg);
        transition: left 0.7s ease;
    }

    .rh-appointment-btn:hover::before {
        left: 140%;
    }

    .rh-appointment-btn span,
    .rh-appointment-btn i {
        position: relative;
        z-index: 1;
    }

    .rh-appointment-btn i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .rh-appointment-btn:hover {
        color: var(--rh-white);
        transform: translateY(-2px);
        box-shadow: 0 13px 28px rgba(38, 35, 95, 0.25);
    }

        .rh-appointment-btn:hover i {
            transform: translateX(4px);
        }


/* =========================================================
   10. MOBILE MENU BUTTON
   ========================================================= */

.rh-mobile-toggle {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(38, 35, 95, 0.12);
    border-radius: 9px;
    background: var(--rh-white);
    cursor: pointer;
    transition: var(--rh-transition);
}

    .rh-mobile-toggle span {
        display: block;
        width: 19px;
        height: 2px;
        background: var(--rh-primary);
        border-radius: 10px;
        transition: var(--rh-transition);
    }

    .rh-mobile-toggle:hover {
        background: var(--rh-light-blue);
        border-color: rgba(38, 35, 95, 0.20);
    }


/* =========================================================
   11. MOBILE MENU OVERLAY
   ========================================================= */

.rh-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.4s ease;
}

    .rh-mobile-menu::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(17, 19, 24, 0.55);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

.rh-mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 92%);
    height: 100%;
    padding: 25px;
    overflow-y: auto;
    background: var(--rh-white);
    box-shadow: -20px 0 60px rgba(17, 19, 24, 0.18);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.rh-mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
}

    .rh-mobile-menu.active::before {
        opacity: 1;
    }

    .rh-mobile-menu.active .rh-mobile-menu-inner {
        transform: translateX(0);
    }


/* =========================================================
   12. MOBILE MENU HEADER
   ========================================================= */

.rh-mobile-menu-header {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rh-border);
}

.rh-mobile-logo {
    display: inline-flex;
    align-items: center;
}

    .rh-mobile-logo img {
        display: block;
        width: auto;
        max-width: 155px;
        max-height: 55px;
        object-fit: contain;
    }

.rh-mobile-close {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--rh-light);
    color: var(--rh-primary);
    font-size: 18px;
    cursor: pointer;
    transition: var(--rh-transition);
}

    .rh-mobile-close:hover {
        background: var(--rh-primary);
        color: var(--rh-white);
        transform: rotate(90deg);
    }


/* =========================================================
   13. MOBILE NAVIGATION
   ========================================================= */

.rh-mobile-navigation {
    padding: 25px 0;
}

    .rh-mobile-navigation > ul > li {
        border-bottom: 1px solid rgba(38, 35, 95, 0.07);
    }

        .rh-mobile-navigation > ul > li > a {
            min-height: 54px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: var(--rh-heading);
            font-family: var(--rh-font-body);
            font-size: 15px;
            font-weight: 600;
            transition: var(--rh-transition);
        }

            .rh-mobile-navigation > ul > li > a:hover {
                color: var(--rh-secondary);
                padding-left: 5px;
            }

            .rh-mobile-navigation > ul > li > a i {
                font-size: 10px;
                transition: transform 0.3s ease;
            }


    /* Mobile submenu */

    .rh-mobile-navigation .rh-mobile-dropdown > ul {
        display: none;
        padding: 0 0 12px 14px;
    }

    .rh-mobile-navigation .rh-mobile-dropdown.active > ul {
        display: block;
    }

    .rh-mobile-navigation
    .rh-mobile-dropdown.active > a > i {
        transform: rotate(180deg);
    }

    .rh-mobile-navigation .rh-mobile-dropdown > ul li a {
        min-height: 42px;
        display: flex;
        align-items: center;
        padding: 0 12px;
        color: var(--rh-text);
        font-size: 13.5px;
        font-weight: 500;
        border-radius: 7px;
        transition: var(--rh-transition);
    }

        .rh-mobile-navigation .rh-mobile-dropdown > ul li a:hover {
            color: var(--rh-primary);
            background: var(--rh-light-blue);
        }


/* =========================================================
   14. MOBILE ACTIONS
   ========================================================= */

.rh-mobile-actions {
    display: grid;
    gap: 10px;
    padding-top: 5px;
}

    .rh-mobile-actions a {
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 9px;
        font-size: 14px;
        font-weight: 700;
        transition: var(--rh-transition);
    }

.rh-mobile-appointment {
    color: var(--rh-white);
    background: linear-gradient( 135deg, var(--rh-primary), var(--rh-secondary) );
}

.rh-mobile-emergency {
    color: var(--rh-red);
    background: rgba(213, 43, 43, 0.07);
    border: 1px solid rgba(213, 43, 43, 0.15);
}

.rh-mobile-actions a:hover {
    transform: translateY(-2px);
}


/* =========================================================
   15. STICKY HEADER
   ========================================================= */

.rh-header.rh-header-sticky .rh-main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 35px rgba(25, 32, 60, 0.10);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

    .rh-header.rh-header-sticky .rh-main-header .rh-container {
        min-height: 76px;
    }

.rh-header.rh-header-sticky .rh-nav-item > a {
    min-height: 76px;
}

.rh-header.rh-header-sticky .rh-logo img {
    max-height: 55px;
}


/* =========================================================
   16. HEADER SCROLL PROGRESS LINE
   ========================================================= */

/* Removed intentionally.
   Menu hover should use text color only.
*/


/* =========================================================
   17. TABLET
   ========================================================= */

@media (max-width: 1250px) {

    .rh-container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .rh-nav-item > a {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 13px;
    }

    .rh-appointment-btn {
        padding-left: 15px;
        padding-right: 15px;
    }

        .rh-appointment-btn span {
            display: none;
        }

    .rh-appointment-btn {
        width: 48px;
        padding: 0;
    }

        .rh-appointment-btn i {
            font-size: 14px;
        }
}


/* =========================================================
   18. SMALL TABLET / LARGE MOBILE
   ========================================================= */

@media (max-width: 1050px) {

    .rh-navigation {
        display: none;
    }

    .rh-mobile-toggle {
        display: inline-flex;
    }

    .rh-main-header .rh-container {
        min-height: 82px;
    }

    .rh-logo img {
        max-height: 58px;
    }

    .rh-appointment-btn {
        width: auto;
        min-width: 48px;
        padding: 0 16px;
    }

        .rh-appointment-btn span {
            display: inline;
        }
}


/* =========================================================
   19. MOBILE TOP BAR
   ========================================================= */

@media (max-width: 767px) {

    .rh-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .rh-topbar .rh-container {
        min-height: 38px;
        justify-content: center;
    }

    .rh-topbar-left {
        width: 100%;
        justify-content: center;
        gap: 0;
    }

        .rh-topbar-left a {
            display: none;
        }

            .rh-topbar-left a:first-child {
                display: inline-flex;
            }

    .rh-topbar-right {
        display: none;
    }

    .rh-topbar-left a:first-child {
        font-size: 12px;
    }

    .rh-main-header .rh-container {
        min-height: 76px;
        gap: 10px;
    }

    .rh-logo img {
        max-width: 155px;
        max-height: 53px;
    }

    .rh-header-actions {
        gap: 7px;
    }

    .rh-appointment-btn {
        width: 43px;
        min-width: 43px;
        height: 43px;
        min-height: 43px;
        padding: 0;
    }

        .rh-appointment-btn span {
            display: none;
        }

        .rh-appointment-btn i {
            font-size: 13px;
        }

    .rh-mobile-toggle {
        width: 43px;
        height: 43px;
    }

    .rh-mobile-menu-inner {
        width: min(390px, 94%);
        padding: 20px;
    }
}


/* =========================================================
   20. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .rh-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .rh-logo img {
        max-width: 140px;
        max-height: 48px;
    }

    .rh-mobile-menu-inner {
        width: 100%;
        padding: 18px;
    }

    .rh-mobile-menu-header {
        min-height: 65px;
    }

    .rh-mobile-navigation {
        padding: 18px 0;
    }

        .rh-mobile-navigation > ul > li > a {
            min-height: 50px;
        }
}


/* =========================================================
   21. ACCESSIBILITY
   ========================================================= */

.rh-header a:focus-visible,
.rh-header button:focus-visible {
    outline: 3px solid rgba(21, 148, 71, 0.35);
    outline-offset: 3px;
}


/* =========================================================
   22. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .rh-header *,
    .rh-header *::before,
    .rh-header *::after {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}
/* =========================================================
   RANA HOSPITAL - PREMIUM HERO SLIDER
   ========================================================= */

.rh-hero {
    position: relative;
    width: 100%;
    min-height: 620px;
    height: calc(100vh - 108px);
    max-height: 860px;
    overflow: hidden;
    background: #111318;
    isolation: isolate;
}


/* ---------------------------------------------------------
   SLIDER
   --------------------------------------------------------- */

.rh-hero-slider {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.rh-hero-slide {
    position: absolute;
    inset: -2%;
    width: 104%;
    height: 104%;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 1.8s cubic-bezier(.22, 1, .36, 1), transform 8s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

.rh-hero-slide-active {
    opacity: 1;
    transform: scale(1);
}


/* ---------------------------------------------------------
   OVERLAY
   --------------------------------------------------------- */

/*
   Overlay intentionally remains subtle.
   Stronger gradient stays around the content area,
   while the right side keeps the image visible.
*/

.rh-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient( 90deg, rgba(15, 18, 40, .88) 0%, rgba(15, 18, 40, .72) 47%, rgba(15, 18, 40, .42) 72%, rgba(15, 18, 40, .10) 98%, rgba(15, 18, 40, .04) 100% );
    pointer-events: none;
}


/*
   Very subtle lower gradient to blend the hero
   naturally with the next section.
*/

.rh-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 150px;
    background: linear-gradient( to top, rgba(15, 18, 40, .35), transparent );
    z-index: -1;
    pointer-events: none;
}


/* ---------------------------------------------------------
   CONTAINER
   --------------------------------------------------------- */

.rh-hero .rh-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}


/* ---------------------------------------------------------
   HERO CONTENT
   --------------------------------------------------------- */

.rh-hero-content {
    width: 100%;
    max-width: 760px;
    padding: 80px 0 100px;
    position: relative;
    z-index: 5;
}


/* ---------------------------------------------------------
   EYEBROW
   --------------------------------------------------------- */

.rh-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #80b12b;
    font-family: var(--rh-font-body);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.rh-hero-eyebrow-line {
    display: block;
    width: 38px;
    height: 2px;
    background: #80b12b;
}


/* ---------------------------------------------------------
   HERO TITLE
   --------------------------------------------------------- */

.rh-hero-title {
    margin: 0;
    max-width: 760px;
    color: #d2d0f8;
    font-family: var(--rh-font-heading);
    font-size: clamp(48px, 4vw, 76px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 1px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, .18);
}

    .rh-hero-title span {
        display: block;
        color: #80b12b;
    }


/* ---------------------------------------------------------
   NABH ACCREDITATION
   --------------------------------------------------------- */

.rh-hero-accreditation {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    padding: 12px 18px 12px 12px;
    background: rgba(128, 177, 43, .60);
    border: 1px solid #80b12b;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rh-nabh-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 42px;
    padding: 0 9px;
    background: #fff;
    color: #26235F;
    border-radius: 6px;
    font-family: var(--rh-font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
}

.rh-accreditation-text {
    
    color: #fff;
}

    .rh-accreditation-text span {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.35;
    }

    .rh-accreditation-text small {
       
        font-size: 14px;
        font-weight: 600;
    }
.rh-hero-text {
    font-weight: 400;
    line-height: 1.8;
    color: #fff;
    max-width: 600px;
    margin-top:25px;
}
/* ---------------------------------------------------------
   HERO BUTTONS
   --------------------------------------------------------- */
.rh-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.rh-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 20px;
    gap: 12px;
    border-radius: 7px;
    font-family: var(--rh-font-body);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--rh-transition);
}

    .rh-hero-btn i {
        font-size: 13px;
        transition: transform .3s ease;
    }

    .rh-hero-btn:hover i {
        transform: translateX(3px);
    }


/* Primary */

.rh-hero-btn-primary {
    background: #fff;
    color: #26235F;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .15);
}

    .rh-hero-btn-primary:hover {
        background: #f4f6fb;
        color: #26235F;
        transform: translateY(-2px);
    }


/* Find Doctor */

.rh-hero-btn-light {
    color: #fff;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .rh-hero-btn-light:hover {
        color: #26235F;
        background: #fff;
        transform: translateY(-2px);
    }


/* Emergency */

.rh-hero-btn-emergency {
    color: #fff;
    background: #D52B2B;
    box-shadow: 0 10px 30px rgba(213, 43, 43, .25);
}

    .rh-hero-btn-emergency:hover {
        color: #fff;
        background: #bd2020;
        transform: translateY(-2px);
    }


/* ---------------------------------------------------------
   SLIDER CONTROLS
   --------------------------------------------------------- */

.rh-hero-controls {
    position: absolute;
    right: 50px;
    bottom: 82px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rh-hero-arrow {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--rh-transition);
}

    .rh-hero-arrow:hover {
        background: #fff;
        color: #26235F;
        transform: translateY(-2px);
    }


.rh-hero-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.rh-hero-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: all .4s ease;
}

.rh-hero-dot-active {
    width: 28px;
    border-radius: 20px;
    background: #fff;
}


/* ---------------------------------------------------------
   SCROLL INDICATOR
   --------------------------------------------------------- */

.rh-hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .65);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    z-index: 10;
}

    .rh-hero-scroll i {
        animation: rhHeroScroll 1.8s ease-in-out infinite;
    }

@keyframes rhHeroScroll {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 1199px) {

    .rh-hero {
        min-height: 680px;
        height: 680px;
    }

    .rh-hero-title {
        font-size: 62px;
    }

    .rh-hero-content {
        max-width: 680px;
    }

    .rh-hero-controls {
        right: 35px;
    }
}


@media (max-width: 991px) {

    .rh-hero {
        min-height: 650px;
        height: 650px;
    }

    .rh-hero-overlay {
        background: linear-gradient( 90deg, rgba(15, 18, 40, .86) 0%, rgba(15, 18, 40, .64) 48%, rgba(15, 18, 40, .25) 100% );
    }

    .rh-hero-title {
        font-size: 56px;
        letter-spacing: -2px;
    }

    .rh-hero-content {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .rh-hero-scroll {
        display: none;
    }
}


@media (max-width: 767px) {

    .rh-hero {
        min-height: 720px;
        height: 720px;
    }

    .rh-hero-slide {
        background-position: 62% center;
    }

    .rh-hero-overlay {
        background: linear-gradient( 90deg, rgba(15, 18, 40, .90) 0%, rgba(15, 18, 40, .76) 58%, rgba(15, 18, 40, .40) 100% );
    }

    .rh-hero .rh-container {
        align-items: center;
    }

    .rh-hero-content {
        max-width: 100%;
        padding: 60px 0 90px;
    }

    .rh-hero-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .rh-hero-title {
        font-size: clamp(40px, 11vw, 54px);
        line-height: 1.08;
        letter-spacing: -1.8px;
    }

    .rh-hero-accreditation {
        margin-top: 24px;
    }

    .rh-accreditation-text span {
        font-size: 13px;
    }

    .rh-hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
        max-width: 330px;
        margin-top: 28px;
    }

    .rh-hero-btn {
        width: 100%;
        min-height: 52px;
    }

    .rh-hero-controls {
        left: 20px;
        right: auto;
        bottom: 24px;
    }
}


@media (max-width: 480px) {

    .rh-hero {
        min-height: 690px;
        height: 690px;
    }

    .rh-hero-title {
        font-size: 39px;
    }

    .rh-hero-accreditation {
        padding: 10px;
        gap: 10px;
    }

    .rh-nabh-badge {
        min-width: 55px;
        height: 38px;
        font-size: 11px;
    }

    .rh-accreditation-text span {
        font-size: 12px;
    }

    .rh-accreditation-text small {
        font-size: 11px;
    }
}


/* ---------------------------------------------------------
   ACCESSIBILITY / REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .rh-hero-slide {
        transition: opacity .4s ease;
        transform: none !important;
    }

    .rh-hero-btn,
    .rh-hero-arrow,
    .rh-hero-btn i {
        transition: none;
    }

    .rh-hero-scroll i {
        animation: none;
    }
}
/* =========================================================
   RANA HOSPITAL - QUICK PATIENT ACTIONS
   ========================================================= */

.rh-quick-actions {
    position: relative;
    z-index: 10;
    margin-top: -55px;
    padding: 0 0 0px;
}

    .rh-quick-actions .rh-container {
        width: min(1440px, calc(100% - 0px));
        margin: 0 auto;
    }

.rh-action-panel {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #ffffff;
    border: 1px solid rgba(28, 35, 70, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(24, 32, 65, 0.12);
    overflow: hidden;
}

/* Individual Action */

.rh-action-item {
    position: relative;
    min-height: 108px;
    padding: 22px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #222c38;
    background: #ffffff;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

    .rh-action-item:not(:last-child) {
        border-right: 1px solid rgba(28, 35, 70, 0.08);
    }

/* Icon */

.rh-action-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(68, 48, 126, 0.08);
    color: #44307e;
    font-size: 22px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Content */

.rh-action-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .rh-action-content strong {
        color: #20263d;
        font-size: 15px;
        line-height: 1.35;
        font-weight: 700;
        letter-spacing: -0.1px;
    }

    .rh-action-content small {
        color: var(--rh-text);
        font-size: 13px;
        line-height: 1.4;
        font-weight: 400;
    }

/* Arrow */

.rh-action-arrow {
    margin-left: auto;
    flex: 0 0 auto;
    color: #9aa0af;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover */

.rh-action-item:hover {
    color: inherit;
    background: #fafbfe;
}

    .rh-action-item:hover .rh-action-icon {
        background: #44307e;
        color: #ffffff;
        transform: translateY(-2px);
    }

    .rh-action-item:hover .rh-action-arrow {
        color: #44307e;
        transform: translateX(4px);
    }

/* =========================================================
   EMERGENCY
   ========================================================= */

.rh-action-item.rh-action-emergency {
    background: linear-gradient( 135deg, #fffafa 0%, #ffffff 100% );
}

.rh-action-emergency .rh-action-icon {
    background: rgba(205, 48, 48, 0.09);
    color: #c92f35;
}

.rh-action-emergency .rh-action-content strong {
    color: #a9252b;
}

.rh-action-emergency:hover {
    background: #fff8f8;
}

    .rh-action-emergency:hover .rh-action-icon {
        background: #c92f35;
        color: #ffffff;
    }

    .rh-action-emergency:hover .rh-action-arrow {
        color: #c92f35;
    }

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .rh-action-panel {
        grid-template-columns: repeat(3, 1fr);
    }

    .rh-action-item {
        min-height: 100px;
        padding: 20px;
    }

        .rh-action-item:nth-child(3) {
            border-right: 0;
        }

        .rh-action-item:nth-child(-n + 3) {
            border-bottom: 1px solid rgba(28, 35, 70, 0.08);
        }

        .rh-action-item:nth-child(4) {
            border-right: 1px solid rgba(28, 35, 70, 0.08);
        }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .rh-quick-actions {
        margin-top: -30px;
        padding-bottom: 15px;
    }

        .rh-quick-actions .rh-container {
            width: min(100% - 24px, 560px);
        }

    .rh-action-panel {
        grid-template-columns: 1fr;
        border-radius: 15px;
    }

    .rh-action-item {
        min-height: 82px;
        padding: 15px 17px;
    }

        .rh-action-item:not(:last-child) {
            border-right: 0;
            border-bottom: 1px solid rgba(28, 35, 70, 0.08);
        }

        .rh-action-item:nth-child(4) {
            border-right: 0;
        }

    .rh-action-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        border-radius: 12px;
        font-size: 19px;
    }

    .rh-action-content strong {
        font-size: 14px;
    }

    .rh-action-content small {
        font-size: 11px;
    }

    .rh-action-arrow {
        font-size: 13px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .rh-quick-actions {
        margin-top: -22px;
    }

    .rh-action-item {
        min-height: 76px;
        padding: 13px 14px;
        gap: 12px;
    }

    .rh-action-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 17px;
    }

    .rh-action-content strong {
        font-size: 13px;
    }

    .rh-action-content small {
        font-size: 10.5px;
    }
}
/* =========================================================
   RANA HOSPITAL — AT A GLANCE
   ========================================================= */

.rh-glance {
    position: relative;
    overflow: hidden;
    padding: 115px 0 80px;
    background: radial-gradient( circle at 15% 15%, rgba(83, 65, 145, 0.32), transparent 34% ), radial-gradient( circle at 85% 80%, rgba(20, 117, 116, 0.14), transparent 32% ), linear-gradient( 135deg, #111526 0%, #18152f 45%, #111726 100% );
    margin-top:-60px;
}


/* Background Pattern */

.rh-glance-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    pointer-events: none;
    background-image: linear-gradient( rgba(255, 255, 255, 0.025) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px );
    background-size: 55px 55px;
}


/* Ambient Glow */

.rh-glance::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -300px;
    right: -160px;
    border-radius: 50%;
    background: rgba(113, 91, 186, 0.13);
    filter: blur(20px);
    pointer-events: none;
}


.rh-glance::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -280px;
    left: -150px;
    border-radius: 50%;
    background: rgba(27, 137, 130, 0.08);
    filter: blur(15px);
    pointer-events: none;
}


/* Container */

.rh-glance .rh-container {
    position: relative;
    z-index: 2;
    width: min(1440px, calc(100% - 0px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.rh-glance-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;

}


.rh-glance-eyebrow {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 34px;
    color: #80b12b;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}


    .rh-glance-eyebrow::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 22px;
        height: 2px;
        background: #80b12b;
        transform: translateY(-50%);
    }


.rh-glance-header h2 {
    margin: 17px 0 12px;
    color: #ffffff;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -1.6px;
}


    .rh-glance-header h2 span {
        color: #a794df;
    }


.rh-glance-header p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.56);
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   GRID
   ========================================================= */

.rh-glance-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}


/* =========================================================
   CARDS
   ========================================================= */

.rh-glance-card {
    position: relative;
    min-height: 205px;
    padding: 30px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025) );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 20px 45px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}


    /* Top Accent */

    .rh-glance-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 38px;
        height: 2px;
        border-radius: 10px;
        background: #80b12b;
        transform: translateX(-50%);
    }


    /* Hover */

    .rh-glance-card:hover {
        transform: translateY(-7px);
        border-color: rgba(154, 136, 218, 0.28);
        background: linear-gradient( 145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035) );
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 28px 55px rgba(0, 0, 0, 0.24);
    }


/* Primary Card */

.rh-glance-card-primary {
    border-color: rgba(151, 132, 210, 0.24);
    background: linear-gradient( 145deg, rgba(104, 82, 166, 0.28), rgba(61, 48, 105, 0.16) );
}


    .rh-glance-card-primary::before {
        background: #80b12b;
    }

/* Subtle continuous floating effect */
.rh-glance-card {
    animation: rhGlanceFloat 4s ease-in-out infinite;
}

    /* Har card thoda different timing par move kare */
    .rh-glance-card:nth-child(2) {
        animation-delay: 0.4s;
    }

    .rh-glance-card:nth-child(3) {
        animation-delay: 0.8s;
    }

    .rh-glance-card:nth-child(4) {
        animation-delay: 1.2s;
    }

    .rh-glance-card:nth-child(5) {
        animation-delay: 1.6s;
    }

    .rh-glance-card:nth-child(6) {
        animation-delay: 2s;
    }

@keyframes rhGlanceFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}
/* =========================================================
   NUMBERS
   ========================================================= */

.rh-glance-number {
    color: #ffffff;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0px;
    white-space: nowrap;
    transition: transform 0.35s ease;
}


    /* Counter */

    .rh-glance-number .rh-counter {
        color: #ffffff;
        font-size: inherit;
        font-weight: inherit;
        letter-spacing: inherit;
    }


    /* Plus */

    .rh-glance-number > span:not(.rh-counter) {
        color: #a794df;
        font-size: inherit;
        vertical-align: baseline;
        margin-left: 2px;
    }


/* Number Hover */

.rh-glance-card:hover .rh-glance-number {
    transform: translateY(-3px);
}


/* =========================================================
   LABEL
   ========================================================= */

.rh-glance-label {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
}


.rh-glance-card-primary .rh-glance-label {
    color: rgba(255, 255, 255, 0.62);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .rh-glance-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rh-glance-card {
        min-height: 190px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .rh-glance {
        padding: 75px 0 80px;
    }

        .rh-glance .rh-container {
            width: min(100% - 28px, 560px);
        }

    .rh-glance-header {
        margin-bottom: 38px;
    }

        .rh-glance-header h2 {
            font-size: 34px;
            letter-spacing: -1px;
        }

        .rh-glance-header p {
            font-size: 13px;
        }

    .rh-glance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .rh-glance-card {
        min-height: 165px;
        padding: 25px 14px;
        border-radius: 15px;
    }

    .rh-glance-number {
        font-size: 36px;
    }

    .rh-glance-label {
        margin-top: 12px;
        font-size: 11px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .rh-glance {
        padding: 65px 0 70px;
    }

    .rh-glance-header h2 {
        font-size: 30px;
    }

    .rh-glance-grid {
        gap: 10px;
    }

    .rh-glance-card {
        min-height: 150px;
        padding: 22px 10px;
    }

    .rh-glance-number {
        font-size: 32px;
    }

    .rh-glance-label {
        font-size: 10.5px;
    }
}
/* =========================================
   ABOUT RANA HOSPITAL
========================================= */

.rh-about-section {
    position: relative;
    padding: 80px 0;
    background: var(--rh-white);
    overflow: hidden;
}


    /* =========================================
   CONTAINER
========================================= */

    .rh-about-section .rh-container {
        width: min(1440px, calc(100% - 0px));
        margin: 0 auto;
       
    }


/* =========================================
   MAIN GRID
========================================= */

.rh-about-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 85px;
}


/* =========================================
   CONTENT
========================================= */

.rh-about-content {
    position: relative;
    z-index: 2;
}


.rh-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: var(--rh-font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #80b12b;
}


    .rh-section-eyebrow::before {
        content: "";
        width: 30px;
        height: 2px;
        background: #80b12b;
        border-radius: 10px;
    }


/* Heading */

.rh-about-title {
    margin: 0;
    max-width: 650px;
    font-family: var(--rh-font-heading);
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1.8px;
    color: var(--rh-heading);
}


    .rh-about-title span {
        display: block;
        color: #80b12b;
    }


/* Divider */

.rh-about-divider {
    width: 65px;
    height: 4px;
    margin: 20px 0 18px;
    background: linear-gradient( 90deg, var(--rh-primary), var(--rh-green) );
    border-radius: 20px;
}


/* Paragraph */

.rh-about-text {
    max-width: 700px;
    margin: 0 0 12px;
    font-family: var(--rh-font-body);
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--rh-text);
}


    .rh-about-text strong {
        color: var(--rh-heading);
        font-weight: 700;
    }


/* =========================================
   QUOTE
========================================= */

.rh-about-quote {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 28px 0;
    padding: 20px 24px;
    background: var(--rh-light-blue);
    border-left: 4px solid var(--rh-green);
    border-radius: 0 var(--rh-radius-sm) var(--rh-radius-sm) 0;
}


.rh-about-quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    color: var(--rh-green);
    font-size: 16px;
}


.rh-about-quote p {
    margin: 0;
    font-family: var(--rh-font-heading);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--rh-primary);
}


/* =========================================
   BUTTON
========================================= */

.rh-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 10px;
    padding: 17px 30px;
    font-family: var(--rh-font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--rh-white);
    background: var(--rh-primary);
    border-radius: var(--rh-radius-sm);
    transition: var(--rh-transition);
    text-transform:uppercase;
}


    .rh-about-btn i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }


    .rh-about-btn:hover {
        color: var(--rh-white);
        background: var(--rh-primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--rh-shadow);
    }


        .rh-about-btn:hover i {
            transform: translateX(4px);
        }


/* =========================================
   VISUAL
========================================= */

.rh-about-visual {
    position: relative;
}


.rh-about-image-wrap {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--rh-light);
    border-radius: var(--rh-radius-lg);
    box-shadow: var(--rh-shadow-lg);
}


.rh-about-image {
    display: block;
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


.rh-about-image-wrap:hover .rh-about-image {
    transform: scale(1.035);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.rh-about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(38, 35, 95, 0.02) 35%, rgba(20, 22, 50, 0.58) 100% );
    pointer-events: none;
}


/* =========================================
   2003 BADGE
========================================= */

.rh-about-year-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--rh-border);
    border-radius: var(--rh-radius-sm);
    box-shadow: var(--rh-shadow);
    backdrop-filter: blur(8px);
}


.rh-about-year {
    font-family: var(--rh-font-heading);
    font-size: 27px;
    line-height: 1;
    font-weight: 800;
    color: var(--rh-primary);
}


.rh-about-year-text {
    display: flex;
    flex-direction: column;
    font-family: var(--rh-font-body);
    font-size: 14px;
    line-height: 1.4;
    color: var(--rh-muted);
}


    .rh-about-year-text strong {
        color: var(--rh-heading);
        font-weight: 700;
    }


/* =========================================
   NABH ACCREDITATION
========================================= */

.rh-about-accreditation {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--rh-border);
    border-radius: var(--rh-radius-sm);
    box-shadow: var(--rh-shadow);
    backdrop-filter: blur(8px);
}


.rh-about-accreditation-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(21, 148, 71, 0.10);
    color: var(--rh-green);
    font-size: 19px;
}


.rh-about-accreditation-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


    .rh-about-accreditation-text strong {
        font-family: var(--rh-font-heading);
        font-size: 17px;
        font-weight: 700;
        color: var(--rh-heading);
    }


    .rh-about-accreditation-text span {
        font-family: var(--rh-font-body);
        font-size: 14px;
        color: var(--rh-muted);
    }


/* =========================================
   TRUST / HIGHLIGHTS
========================================= */

.rh-about-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 75px;
    border-top: 1px solid var(--rh-border);
    border-bottom: 1px solid var(--rh-border);
}


.rh-about-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 30px;
}


    .rh-about-trust-item + .rh-about-trust-item {
        border-left: 1px solid var(--rh-border);
    }


/* Trust Icon */

.rh-about-trust-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rh-light-blue);
    color: var(--rh-secondary);
    border-radius: var(--rh-radius-sm);
    font-size: 18px;
    transition: var(--rh-transition);
}


.rh-about-trust-item:hover .rh-about-trust-icon {
    color: var(--rh-white);
    background: var(--rh-primary);
    transform: translateY(-3px);
}


/* Trust Text */

.rh-about-trust-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


    .rh-about-trust-content strong {
        font-family: var(--rh-font-heading);
        font-size: 18px;
        font-weight: 700;
        color: var(--rh-heading);
    }


    .rh-about-trust-content span {
        font-family: var(--rh-font-body);
        font-size: 15px;
        line-height: 1.5;
        color: var(--rh-text);
    }


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .rh-about-section {
        padding: 80px 0;
    }

    .rh-about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .rh-about-content {
        max-width: 780px;
    }

    .rh-about-image-wrap {
        min-height: 520px;
    }

    .rh-about-image {
        height: 520px;
    }

    .rh-about-trust {
        grid-template-columns: 1fr;
    }

    .rh-about-trust-item + .rh-about-trust-item {
        border-left: 0;
        border-top: 1px solid var(--rh-border);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .rh-about-section {
        padding: 65px 0;
    }

        .rh-about-section .rh-container {
            padding: 0 20px;
        }

    .rh-section-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .rh-about-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .rh-about-divider {
        margin: 20px 0 24px;
    }

    .rh-about-text {
        font-size: 14.5px;
        line-height: 1.8;
    }

    .rh-about-quote {
        padding: 17px 16px;
    }

        .rh-about-quote p {
            font-size: 16px;
        }

    .rh-about-image-wrap {
        min-height: 430px;
        border-radius: var(--rh-radius);
    }

    .rh-about-image {
        height: 430px;
    }

    .rh-about-year-badge {
        top: 15px;
        left: 15px;
        padding: 11px 14px;
    }

    .rh-about-year {
        font-size: 23px;
    }

    .rh-about-accreditation {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 12px 14px;
    }

    .rh-about-accreditation-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .rh-about-trust {
        margin-top: 50px;
    }

    .rh-about-trust-item {
        padding: 22px 10px;
    }

    .rh-about-trust-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }
}
/* ==========================================
   SPECIALITIES / CENTRES OF EXCELLENCE
========================================== */

.rh-specialities {
    position: relative;
    padding: 80px 0;
    background: var(--rh-light-blue);
    overflow: hidden;
}


    /* ------------------------------------------
   Subtle Background Pattern
------------------------------------------ */

    .rh-specialities::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        top: -250px;
        right: -180px;
        border: 1px solid rgba(38, 35, 95, 0.05);
        border-radius: 50%;
        pointer-events: none;
    }

    .rh-specialities::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        bottom: -260px;
        left: -180px;
        border: 1px solid rgba(21, 148, 71, 0.05);
        border-radius: 50%;
        pointer-events: none;
    }


/* ------------------------------------------
   Section Heading
------------------------------------------ */

.rh-specialities-head {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto 55px;
    text-align: center;
}





.rh-section-title {
    margin: 0 0 16px;
    font-family: var(--rh-font-heading);
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--rh-heading);
}
.rh-section-title span{
    color:#80b12b;
}
    .rh-section-subtitle {
    max-width: 650px;
    margin: 0 auto;
    font-family: var(--rh-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--rh-text);
}


/* ------------------------------------------
   Specialities Grid
------------------------------------------ */

.rh-specialities-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


/* ------------------------------------------
   Speciality Card
------------------------------------------ */

.rh-speciality-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 285px;
    padding: 28px 26px 24px;
    background: var(--rh-white);
    border: 1px solid var(--rh-border);
    border-radius: var(--rh-radius-lg);
    box-shadow: var(--rh-shadow-sm);
    overflow: hidden;
    transition: var(--rh-transition);
}


    /* Bottom Accent */

    .rh-speciality-card::after {
        content: "";
        position: absolute;
        left: 26px;
        right: 26px;
        bottom: 0;
        height: 3px;
        background: #80b12b;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.4s ease;
    }


    /* Very subtle background medical shape */

    .rh-speciality-card::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        right: -55px;
        top: -55px;
        border-radius: 50%;
        background: rgba(38, 35, 95, 0.025);
        transition: var(--rh-transition);
    }


    /* ------------------------------------------
   Card Hover
------------------------------------------ */

    .rh-speciality-card:hover {
        transform: translateY(-7px);
        border-color: rgba(38, 35, 95, 0.14);
        box-shadow: var(--rh-shadow);
    }

        .rh-speciality-card:hover::before {
            width: 180px;
            height: 180px;
            background: rgba(21, 148, 71, 0.055);
        }

        .rh-speciality-card:hover::after {
            transform: scaleX(1);
        }


/* ------------------------------------------
   Icon
------------------------------------------ */

.rh-speciality-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: rgba(38, 35, 95, 0.07);
    color: var(--rh-primary);
    font-size: 23px;
    transition: var(--rh-transition);
}

.rh-speciality-card:hover .rh-speciality-icon {
    background: var(--rh-primary);
    color: var(--rh-white);
    transform: translateY(-2px) scale(1.05);
}


/* ------------------------------------------
   Card Content
------------------------------------------ */

.rh-speciality-content {
    position: relative;
    z-index: 2;
    padding-right: 5px;
}

    .rh-speciality-content h3 {
        margin: 0 0 10px;
        font-family: var(--rh-font-heading);
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
        color: var(--rh-heading);
        transition: color 0.3s ease;
    }

.rh-speciality-card:hover .rh-speciality-content h3 {
    color: var(--rh-primary);
}

.rh-speciality-content p {
    min-height: 67px;
    margin: 0;
    font-family: var(--rh-font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--rh-text);
}


/* ------------------------------------------
   Arrow
------------------------------------------ */

.rh-speciality-arrow {
    position: relative;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    align-self: flex-end;
    border: 1px solid rgba(38, 35, 95, 0.12);
    border-radius: 50%;
    color: var(--rh-primary);
    background: var(--rh-white);
    font-size: 13px;
    text-decoration: none;
    transition: var(--rh-transition);
}

    .rh-speciality-arrow:hover {
        color: var(--rh-white);
        background: var(--rh-primary);
        border-color: var(--rh-primary);
        transform: translateX(3px);
    }

.rh-speciality-card:hover .rh-speciality-arrow {
    background: var(--rh-light);
}


/* ------------------------------------------
   CTA
------------------------------------------ */

.rh-specialities-cta {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 48px;
}


/* ------------------------------------------
   Button
------------------------------------------ */

.rh-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 10px;
    padding: 17px 30px;
    font-family: var(--rh-font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--rh-white);
    background: var(--rh-primary);
    border-radius: var(--rh-radius-sm);
    transition: var(--rh-transition);
    text-transform: uppercase;
}

    .rh-btn i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .rh-btn:hover i {
        transform: translateX(4px);
    }

.rh-btn-primary {
    color: var(--rh-white);
    background: var(--rh-primary);
    box-shadow: 0 8px 22px rgba(38, 35, 95, 0.18);
}

    .rh-btn-primary:hover {
        color: var(--rh-white);
        background: var(--rh-primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(38, 35, 95, 0.25);
    }


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1199px) {

    .rh-specialities {
        padding: 85px 0;
    }

    .rh-specialities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ==========================================
   TABLET / SMALL DESKTOP
========================================== */

@media (max-width: 991px) {

    .rh-specialities {
        padding: 75px 0;
    }

    .rh-specialities-head {
        margin-bottom: 42px;
    }

    .rh-specialities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .rh-speciality-card {
        min-height: 275px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575px) {

    .rh-specialities {
        padding: 65px 0;
    }

    .rh-specialities-head {
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .rh-section-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .rh-section-title {
        font-size: 29px;
    }

    .rh-section-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .rh-specialities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rh-speciality-card {
        min-height: 255px;
        padding: 24px 22px 21px;
    }

    .rh-speciality-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 18px;
        border-radius: 14px;
        font-size: 21px;
    }

    .rh-speciality-content h3 {
        min-height: auto;
        font-size: 16px;
    }

    .rh-speciality-content p {
        min-height: auto;
        font-size: 13px;
    }

    .rh-specialities-cta {
        margin-top: 35px;
    }

    .rh-btn {
        width: 100%;
        max-width: 260px;
    }
}


/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    .rh-speciality-card,
    .rh-speciality-card::before,
    .rh-speciality-card::after,
    .rh-speciality-icon,
    .rh-speciality-arrow,
    .rh-btn,
    .rh-btn i {
        transition: none;
    }
}
/* ==========================================
   MEET OUR SPECIALISTS
========================================== */

.rh-doctors {
    position: relative;
    padding: 80px 0;
    background: var(--rh-light);
    overflow: hidden;
}

    .rh-doctors::before {
        content: "";
        position: absolute;
        width: 480px;
        height: 480px;
        top: -260px;
        right: -200px;
        border-radius: 50%;
        background: rgba(167, 239, 42, 0.29);
        pointer-events: none;
    }

    .rh-doctors::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        bottom: -220px;
        left: -180px;
        border-radius: 50%;
        background: rgba(167, 239, 42, 0.29);
        pointer-events: none;
    }


/* ==========================================
   HEADING
========================================== */

.rh-doctors-head {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto 55px;
    text-align: center;
}


/* ==========================================
   SLIDER WRAPPER
========================================== */

.rh-doctors-slider-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}


/* ==========================================
   SWIPER
========================================== */

.rh-doctors-slider {
    width: 100%;
    padding: 8px 3px 12px;
}

    .rh-doctors-slider .swiper-wrapper {
        align-items: stretch;
    }

    .rh-doctors-slider .swiper-slide {
        height: auto;
        display: flex;
    }


/* ==========================================
   DOCTOR CARD
========================================== */

.rh-doctor-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--rh-white);
    border: 1px solid var(--rh-border);
    border-radius: var(--rh-radius-lg);
    overflow: hidden;
    box-shadow: var(--rh-shadow-sm);
    transition: var(--rh-transition);
}

    .rh-doctor-card:hover {
        transform: translateY(-6px);
        border-color: rgba(38, 35, 95, 0.14);
        box-shadow: var(--rh-shadow);
    }


/* ==========================================
   DOCTOR IMAGE
========================================== */

.rh-doctor-image {
    position: relative;
    height: 290px;
    overflow: hidden;
    background: var(--rh-light-blue);
}

    .rh-doctor-image::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 75px;
        background: linear-gradient( to top, rgba(17, 19, 24, 0.18), transparent );
        pointer-events: none;
    }

    .rh-doctor-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

.rh-doctor-card:hover .rh-doctor-image img {
    transform: scale(1.04);
}


/* ==========================================
   CONTENT
========================================== */

.rh-doctor-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 15px 15px;
}

    .rh-doctor-content h3 {
        margin: 0 0 5px;
        font-family: var(--rh-font-heading);
        font-size: 18px;
        font-weight: 700;
        line-height: 1.35;
        color: var(--rh-heading);
        transition: color 0.3s ease;
    }

.rh-doctor-card:hover .rh-doctor-content h3 {
    color: var(--rh-primary);
}


/* ==========================================
   QUALIFICATION
========================================== */

.rh-doctor-qualification {
    margin: 0 0 18px;
    font-family: var(--rh-font-body);
    font-size: 13px;
    font-weight: 600;
    color: #80b12b;
}


/* ==========================================
   SPECIALITY
========================================== */

.rh-doctor-speciality {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    font-family: var(--rh-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--rh-heading);
}

    .rh-doctor-speciality i {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border-radius: 8px;
        background: rgba(38, 35, 95, 0.07);
        color: var(--rh-primary);
        font-size: 12px;
    }


/* ==========================================
   EXPERIENCE
========================================== */

.rh-doctor-experience {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    font-family: var(--rh-font-body);
    font-size: 14px;
    color: var(--rh-text);
}

    .rh-doctor-experience i {
        color: #80b12b;
        font-size: 13px;
    }


/* ==========================================
   ACTION BUTTONS
========================================== */

.rh-doctor-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

    .rh-doctor-actions a {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 7px;
        border-radius: 7px;
        font-family: var(--rh-font-body);
        font-size: 12px;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        transition: var(--rh-transition);
    }


/* View Profile */

.rh-doctor-profile {
    color: #fff;
    background: #80b12b;
    border: 1px solid #c6f17c;
}

    .rh-doctor-profile:hover {
        color: var(--rh-white);
        background: var(--rh-primary);
        border-color: var(--rh-primary);
    }


/* Book Appointment */

.rh-doctor-appointment {
    color: var(--rh-white);
    background: #26235F;
    border: 1px solid #807cc3;
}

    .rh-doctor-appointment:hover {
        color: var(--rh-white);
        background: #80b12b;
        border-color: #b4d877;
    }


/* ==========================================
   NAVIGATION ARROWS
========================================== */

.rh-doctors-nav {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rh-border);
    border-radius: 50%;
    background: var(--rh-white);
    color: var(--rh-primary);
    font-size: 13px;
    cursor: pointer;
    box-shadow: var(--rh-shadow-sm);
    transition: var(--rh-transition);
    z-index: 5;
    position:absolute;
}
.rh-doctors-prev
{
    left:-30px;
}
.rh-doctors-next {
    right: -30px;
}
.rh-doctors-nav:hover {
    color: var(--rh-white);
    background: var(--rh-primary);
    border-color: var(--rh-primary);
    transform: scale(1.05);
}


/* ==========================================
   PAGINATION
========================================== */

.rh-doctors-pagination {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

    .rh-doctors-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        margin: 0 !important;
        opacity: 1;
        background: rgba(38, 35, 95, 0.20);
        transition: var(--rh-transition);
    }

    .rh-doctors-pagination .swiper-pagination-bullet-active {
        width: 24px;
        border-radius: 10px;
        background: var(--rh-primary);
    }


/* ==========================================
   CTA
========================================== */

.rh-doctors-cta {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 42px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .rh-doctors {
        padding: 75px 0;
    }

    .rh-doctors-slider-wrap {
        gap: 10px;
    }

    .rh-doctors-nav {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .rh-doctor-image {
        height: 310px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575px) {

    .rh-doctors {
        padding: 65px 0;
    }

    .rh-doctors-head {
        margin-bottom: 35px;
    }

    .rh-doctors-slider-wrap {
        display: block;
    }

    .rh-doctors-slider {
        padding-left: 4px;
        padding-right: 4px;
    }

    .rh-doctor-image {
        height: 340px;
    }

    .rh-doctors-nav {
        position: absolute;
        top: 145px;
        width: 40px;
        height: 40px;
        z-index: 10;
    }

    .rh-doctors-prev {
        left: 10px;
    }

    .rh-doctors-next {
        right: 10px;
    }

    .rh-doctors-cta {
        margin-top: 35px;
    }
}
/* =========================================================
   WHY CHOOSE RANA HOSPITAL
========================================================= */

.rh-why-choose {
    position: relative;
    padding:80px 0;
    background: var(--rh-white);
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.rh-why-head {
    max-width: 880px;
    margin: 0 auto 55px;
    text-align: center;
}


/* =========================================================
   WHY GRID
========================================================= */

.rh-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 70px;
    row-gap: 0;
}
@media (min-width: 1400px) {

    .rh-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 70px;
        row-gap: 22px;
    }
}


/* =========================================================
   DESKTOP
   1200px - 1399px
   ========================================================= */

@media (min-width: 1200px) and (max-width: 1399px) {

    .rh-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 55px;
        row-gap: 20px;
    }
}


/* =========================================================
   LAPTOP
   992px - 1199px
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .rh-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 35px;
        row-gap: 18px;
    }
}


/* =========================================================
   TABLET
   768px - 991px
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .rh-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 22px;
        row-gap: 16px;
    }
}


/* =========================================================
   MOBILE
   576px - 767px
   ========================================================= */

@media (min-width: 576px) and (max-width: 767px) {

    .rh-why-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 16px;
    }
}


/* =========================================================
   SMALL MOBILE
   0 - 575px
   ========================================================= */

@media (max-width: 575px) {

    .rh-why-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 14px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
   0 - 400px
   ========================================================= */

@media (max-width: 400px) {

    .rh-why-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 12px;
    }
}

/* =========================================================
   WHY CHOOSE RANA - WHY ITEM CARD
   ========================================================= */

.rh-why-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    column-gap: 18px;
    min-height: 135px;
    padding: 25px 24px;
    background: linear-gradient( 135deg, var(--rh-primary), var(--rh-primary-dark) );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--rh-radius-lg);
    box-shadow: 0 12px 30px rgba(38, 35, 95, 0.16);
    position: relative;
    overflow: hidden;
    transition: var(--rh-transition);
}


    /* -----------------------------------------
   CARD SHINE / DECORATION
   ----------------------------------------- */

    .rh-why-item::before {
        content: "";
        position: absolute;
        top: -45px;
        right: -45px;
        width: 140px;
        height: 140px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 50%;
        pointer-events: none;
    }


    /* -----------------------------------------
   HOVER
   ----------------------------------------- */

    .rh-why-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 40px rgba(38, 35, 95, 0.24);
    }


    /* -----------------------------------------
   ICON
   ----------------------------------------- */

    .rh-why-item .rh-why-icon {
        width: 58px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 50%;
        color: var(--rh-white);
        font-size: 22px;
        flex-shrink: 0;
        transition: var(--rh-transition);
    }


    .rh-why-item:hover .rh-why-icon {
        background: var(--rh-white);
        color: var(--rh-primary);
        transform: scale(1.06);
    }


    /* -----------------------------------------
   CONTENT
   ----------------------------------------- */

    .rh-why-item h4 {
        margin: 0 0 7px;
        color: var(--rh-white);
        font-size: 18px;
        line-height: 1.35;
        font-weight: 700;
    }


    .rh-why-item p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        font-size: 14px;
        line-height: 1.7;
    }


/* =========================================================
   LARGE DESKTOP
   1400px+
   ========================================================= */

@media (min-width: 1400px) {

    .rh-why-item {
        min-height: 145px;
        padding: 28px 28px;
        grid-template-columns: 62px minmax(0, 1fr);
        column-gap: 20px;
    }

        .rh-why-item .rh-why-icon {
            width: 62px;
            height: 62px;
            font-size: 23px;
        }

        .rh-why-item h4 {
            font-size: 19px;
        }

        .rh-why-item p {
            font-size: 14.5px;
        }
}


/* =========================================================
   DESKTOP
   1200px - 1399px
   ========================================================= */

@media (min-width: 1200px) and (max-width: 1399px) {

    .rh-why-item {
        min-height: 135px;
        padding: 25px 24px;
        grid-template-columns: 58px minmax(0, 1fr);
        column-gap: 18px;
    }

        .rh-why-item h4 {
            font-size: 18px;
        }

        .rh-why-item p {
            font-size: 14px;
        }
}


/* =========================================================
   LAPTOP
   992px - 1199px
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .rh-why-item {
        min-height: 130px;
        padding: 22px 20px;
        grid-template-columns: 54px minmax(0, 1fr);
        column-gap: 16px;
    }

        .rh-why-item .rh-why-icon {
            width: 54px;
            height: 54px;
            font-size: 21px;
        }

        .rh-why-item h4 {
            font-size: 17px;
        }

        .rh-why-item p {
            font-size: 13.5px;
            line-height: 1.65;
        }
}


/* =========================================================
   TABLET
   768px - 991px
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .rh-why-item {
        min-height: 125px;
        padding: 21px 19px;
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 15px;
        border-radius: 16px;
    }

        .rh-why-item .rh-why-icon {
            width: 52px;
            height: 52px;
            font-size: 20px;
        }

        .rh-why-item h4 {
            margin-bottom: 6px;
            font-size: 16px;
        }

        .rh-why-item p {
            font-size: 13px;
            line-height: 1.6;
        }

        .rh-why-item:hover {
            transform: translateY(-3px);
        }
}


/* =========================================================
   MOBILE
   576px - 767px
   ========================================================= */

@media (min-width: 576px) and (max-width: 767px) {

    .rh-why-item {
        min-height: 120px;
        padding: 20px 18px;
        grid-template-columns: 50px minmax(0, 1fr);
        column-gap: 15px;
        border-radius: 15px;
    }

        .rh-why-item .rh-why-icon {
            width: 50px;
            height: 50px;
            font-size: 19px;
        }

        .rh-why-item h4 {
            margin-bottom: 6px;
            font-size: 16px;
        }

        .rh-why-item p {
            font-size: 13px;
            line-height: 1.6;
        }

        .rh-why-item:hover {
            transform: translateY(-3px);
        }
}


/* =========================================================
   SMALL MOBILE
   0 - 575px
   ========================================================= */

@media (max-width: 575px) {

    .rh-why-item {
        min-height: auto;
        padding: 19px 17px;
        grid-template-columns: 48px minmax(0, 1fr);
        column-gap: 14px;
        border-radius: 14px;
    }

        .rh-why-item .rh-why-icon {
            width: 48px;
            height: 48px;
            font-size: 18px;
        }

        .rh-why-item h4 {
            margin-bottom: 5px;
            font-size: 15.5px;
            line-height: 1.35;
        }

        .rh-why-item p {
            font-size: 12.5px;
            line-height: 1.55;
        }

        .rh-why-item:hover {
            transform: translateY(-2px);
        }
}


/* =========================================================
   EXTRA SMALL MOBILE
   0 - 400px
   ========================================================= */

@media (max-width: 400px) {

    .rh-why-item {
        padding: 17px 15px;
        grid-template-columns: 44px minmax(0, 1fr);
        column-gap: 12px;
        border-radius: 13px;
    }

        .rh-why-item .rh-why-icon {
            width: 44px;
            height: 44px;
            font-size: 17px;
        }

        .rh-why-item h4 {
            font-size: 15px;
        }

        .rh-why-item p {
            font-size: 12px;
            line-height: 1.5;
        }
}
/* =========================================================
   ADVANCED FACILITIES
========================================================= */

.rh-facilities {
    position: relative;
    padding: 80px 0;
    background: var(--rh-white);
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.rh-facilities-head {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}


/* =========================================================
   FACILITIES GRID
========================================================= */

.rh-facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================================
   FACILITY CARD
========================================================= */

.rh-facility-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--rh-radius-lg);
    background: var(--rh-black);
    box-shadow: var(--rh-shadow);
    isolation: isolate;
    cursor: pointer;
    transition: var(--rh-transition);
}


    .rh-facility-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--rh-shadow-lg);
    }


/* =========================================================
   IMAGE
========================================================= */

.rh-facility-image {
    position: absolute;
    inset: 0;
    z-index: -3;
}


    .rh-facility-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.7s cubic-bezier( 0.22, 1, 0.36, 1 );
    }


.rh-facility-card:hover
.rh-facility-image img {
    transform: scale(1.08);
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.rh-facility-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient( 180deg, rgba(17, 19, 24, 0.08) 15%, rgba(17, 19, 24, 0.28) 42%, rgba(17, 19, 24, 0.92) 100% );
}


/* =========================================================
   CONTENT
========================================================= */

.rh-facility-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
}


/* =========================================================
   ICON
========================================================= */

.rh-facility-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--rh-white);
    font-size: 18px;
    backdrop-filter: blur(8px);
    transition: var(--rh-transition);
}


.rh-facility-card:hover
.rh-facility-icon {
    background: var(--rh-primary);
    border-color: var(--rh-primary);
    transform: translateY(-3px);
}


/* =========================================================
   TITLE
========================================================= */

.rh-facility-content h3 {
    margin: 0 0 8px;
    color: var(--rh-white);
    font-family: var(--rh-font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.rh-facility-content p {
    max-width: 290px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--rh-font-body);
    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   ARROW
========================================================= */

.rh-facility-arrow {
    position: absolute;
    right: 28px;
    bottom: 30px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--rh-white);
    font-size: 13px;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--rh-transition);
}


.rh-facility-card:hover
.rh-facility-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--rh-primary);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rh-facilities {
        padding: 80px 0;
    }


    .rh-facilities-head {
        margin-bottom: 45px;
    }


    .rh-facilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }


    .rh-facility-card {
        min-height: 340px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rh-facilities {
        padding: 70px 0;
    }


    .rh-facilities-head {
        margin-bottom: 35px;
    }


    .rh-facilities-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    .rh-facility-card {
        min-height: 330px;
    }


    .rh-facility-content {
        padding: 24px;
    }


        .rh-facility-content h3 {
            font-size: 19px;
        }


    .rh-facility-arrow {
        right: 24px;
        bottom: 26px;
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .rh-facility-card {
        min-height: 310px;
    }


    .rh-facility-icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }


    .rh-facility-content p {
        font-size: 13px;
    }
}
/* =========================================================
   24x7 EMERGENCY
========================================================= */

.rh-emergency-section {
    position: relative;
    padding: 80px 0;
    background: var(--rh-primary-dark);
    overflow: hidden;
}

    .rh-emergency-section::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: rgba(40, 75, 155, 0.16);
        top: -260px;
        right: -180px;
        pointer-events: none;
    }

    .rh-emergency-section::after {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.07);
        bottom: -220px;
        left: -150px;
        pointer-events: none;
    }


/* Main Layout */

.rh-emergency-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 70px;
}


/* =========================================================
   IMAGE
========================================================= */

.rh-emergency-media {
    position: relative;
    min-height: 520px;
    border-radius: var(--rh-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

    .rh-emergency-media img {
        width: 100%;
        height: 100%;
        min-height: 520px;
        display: block;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .rh-emergency-media:hover img {
        transform: scale(1.04);
    }

.rh-emergency-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(18, 20, 45, 0.05) 25%, rgba(18, 20, 45, 0.72) 100% );
}


/* Emergency Image Badge */

.rh-emergency-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.rh-emergency-pulse {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rh-red);
    color: var(--rh-white);
    border-radius: 50%;
    font-size: 19px;
}

    .rh-emergency-pulse::before {
        content: "";
        position: absolute;
        inset: -5px;
        border: 2px solid rgba(213, 43, 43, 0.45);
        border-radius: 50%;
        animation: rhEmergencyPulse 2s infinite;
    }

.rh-emergency-badge strong {
    display: block;
    font-family: var(--rh-font-heading);
    font-size: 23px;
    line-height: 1;
    color: var(--rh-heading);
}

.rh-emergency-badge span:not(.rh-emergency-pulse) {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--rh-muted);
    letter-spacing: 0.2px;
}


/* =========================================================
   CONTENT
========================================================= */

.rh-emergency-content {
    max-width: 650px;
}

.rh-emergency-eyebrow {
    color: #ff7474;
}

.rh-emergency-content h2 {
    margin: 13px 0 20px;
    font-family: var(--rh-font-heading);
    font-size: clamp(34px, 3vw, 54px);
    font-weight: 600;
    line-height: 1.12;
    color: var(--rh-white);
    letter-spacing: -1.4px;
}

    .rh-emergency-content h2 span {
        
        color: #ff6262;
    }

.rh-emergency-intro {
    max-width: 610px;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   POINTS
========================================================= */

.rh-emergency-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    margin-bottom: 34px;
}

.rh-emergency-point {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.rh-emergency-point-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    color: #ff6868;
    font-size: 17px;
    transition: var(--rh-transition);
}

.rh-emergency-point:hover .rh-emergency-point-icon {
    background: var(--rh-red);
    border-color: var(--rh-red);
    color: var(--rh-white);
    transform: translateY(-2px);
}

.rh-emergency-point h4 {
    margin: 0 0 4px;
    color: var(--rh-white);
    font-family: var(--rh-font-heading);
    font-size: 16px;
    font-weight: 700;
}

.rh-emergency-point p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================================
   EMERGENCY CTA
========================================================= */

.rh-emergency-action {
    margin-top: 8px;
}

.rh-emergency-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 330px;
    padding: 13px 15px;
    background: var(--rh-red);
    border: 1px solid var(--rh-red);
    border-radius: 10px;
    color: var(--rh-white);
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(213, 43, 43, 0.22);
    transition: var(--rh-transition);
}

    .rh-emergency-call:hover {
        background: #bd2020;
        border-color: #bd2020;
        color: var(--rh-white);
        transform: translateY(-3px);
        box-shadow: 0 18px 35px rgba(213, 43, 43, 0.30);
    }

.rh-emergency-call-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    font-size: 17px;
}

.rh-emergency-call-text {
    flex: 1;
}

    .rh-emergency-call-text small {
        display: block;
        margin-bottom: 3px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.72);
    }

    .rh-emergency-call-text strong {
        display: block;
        font-family: var(--rh-font-heading);
        font-size: 21px;
        font-weight: 700;
        color: var(--rh-white);
    }

.rh-emergency-call-arrow {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    font-size: 12px;
    transition: var(--rh-transition);
}

.rh-emergency-call:hover .rh-emergency-call-arrow {
    transform: translateX(3px);
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes rhEmergencyPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rh-emergency-section {
        padding: 85px 0;
    }

    .rh-emergency-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .rh-emergency-media {
        min-height: 460px;
    }

        .rh-emergency-media img {
            min-height: 460px;
        }

    .rh-emergency-content {
        max-width: 100%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rh-emergency-section {
        padding: 70px 0;
    }

    .rh-emergency-wrap {
        gap: 38px;
    }

    .rh-emergency-media {
        min-height: 390px;
        border-radius: 14px;
    }

        .rh-emergency-media img {
            min-height: 390px;
        }

    .rh-emergency-badge {
        left: 18px;
        bottom: 18px;
        padding: 11px 14px;
    }

    .rh-emergency-pulse {
        width: 42px;
        height: 42px;
    }

    .rh-emergency-content h2 {
        font-size: 35px;
        letter-spacing: -0.8px;
    }

    .rh-emergency-intro {
        font-size: 14px;
        line-height: 1.7;
    }

    .rh-emergency-points {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rh-emergency-point {
        padding: 15px 0;
    }

    .rh-emergency-call {
        width: 100%;
        min-width: 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .rh-emergency-media,
    .rh-emergency-media img {
        min-height: 350px;
    }

    .rh-emergency-content h2 {
        font-size: 29px;
    }

    .rh-emergency-call-text strong {
        font-size: 15px;
    }
}
/* =========================================================
   OUR JOURNEY
========================================================= */

.rh-journey {
    position: relative;
    padding: 80px 0 85px;
    background: var(--rh-white);
    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.rh-journey-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

    .rh-journey-heading h2 {
        margin: 10px 0 0;
        font-family: var(--rh-font-heading);
        font-size: clamp(32px, 3vw, 48px);
        line-height: 1.15;
        font-weight: 700;
        color: var(--rh-heading);
    }

        .rh-journey-heading h2 span {
            color: #80b12b;
        }


/* =========================================================
   TIMELINE WRAPPER
========================================================= */

.rh-journey-timeline {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================================
   ROWS
========================================================= */

.rh-journey-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* =========================================================
   ITEM
========================================================= */

.rh-journey-item {
    position: relative;
    min-width: 0;
}


/* =========================================================
   CARD
========================================================= */

.rh-journey-card {
    position: relative;
    background: var(--rh-white);
    border: 1px solid var(--rh-border);
    border-radius: var(--rh-radius-lg);
    overflow: hidden;
    box-shadow: var(--rh-shadow-sm);
    transition: var(--rh-transition);
}

    .rh-journey-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--rh-shadow);
    }


/* =========================================================
   IMAGE
========================================================= */

.rh-journey-image {
    position: relative;
    width: 100%;
    height: 225px;
    overflow: visible;
    background: var(--rh-light-blue);
}

    .rh-journey-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-radius: var(--rh-radius-lg) var(--rh-radius-lg) 0 0;
        transition: transform .6s ease;
    }

.rh-journey-card:hover .rh-journey-image img {
    transform: scale(1.06);
}


/* =========================================================
   YEAR LABEL
========================================================= */

.rh-journey-year {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 28px;
    padding: 5px 14px;
    background: #80b12b;
    color: var(--rh-white);
    border-radius: 30px;
    font-family: var(--rh-font-heading);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .06em;
    white-space: nowrap;
    box-shadow: 0 5px 14px rgba(21, 148, 71, .22);
    transition: var(--rh-transition);
}

.rh-journey-card:hover .rh-journey-year {
    transform: translate(-50%, -50%) scale(1.05);
}


/* =========================================================
   CONTENT
========================================================= */

.rh-journey-info {
    padding: 18px 18px 17px;
}

    .rh-journey-info h3 {
        margin: 0 0 6px;
        font-family: var(--rh-font-heading);
        font-size: 16px;
        line-height: 1.3;
        font-weight: 800;
        color: var(--rh-heading);
    }

    .rh-journey-info p {
        margin: 0;
        font-family: var(--rh-font-body);
        font-size: 13.5px;
        line-height: 1.55;
        color: var(--rh-text);
    }


/* =========================================================
   TIMELINE DOT
========================================================= */

.rh-journey-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--rh-white);
    border: 4px solid var(--rh-primary);
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 0 5px rgba(38, 35, 95, .08);
}


/* =========================================================
   TOP ROW DOT
   Card ke neeche
========================================================= */

.rh-journey-row-top .rh-journey-dot {
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
}


    /* Vertical line from top dot */

    .rh-journey-row-top .rh-journey-dot::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 100%;
        width: 3px;
        height: 20px;
        background: var(--rh-primary);
        transform: translateX(-50%);
    }


/* =========================================================
   BOTTOM ROW DOT
   Card ke upar
========================================================= */

.rh-journey-row-bottom .rh-journey-dot {
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
}


    /* Vertical line from bottom dot */

    .rh-journey-row-bottom .rh-journey-dot::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 100%;
        width: 3px;
        height: 20px;
        background: var(--rh-primary);
        transform: translateX(-50%);
    }


/* =========================================================
   DESKTOP CONNECTOR
=========================================================

   Flow:

   2003  ─────→  2008–15  ─────→  2016–20
                                      │
                                      ╰────────╮
                                               │
   2021–24  ←──────  2025  ←────────  2026

========================================================= */

.rh-journey-connector {
    position: relative;
    width: 100%;
    height: 70px;
    margin: 20px 0;
    z-index: 1;
    pointer-events: none;
}

    .rh-journey-connector svg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 70px;
        overflow: visible;
    }

    .rh-journey-connector path {
        fill: none;
        stroke: var(--rh-primary);
        stroke-width: 3;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: .75;
    }


/* =========================================================
   BOTTOM ROW
   Desktop HTML order:

   2026
   2025
   2021–2024

   Mobile CSS will visually reverse this.
========================================================= */

.rh-journey-row-bottom {
    direction: ltr;
}


    /* =========================================================
   2025 SPECIAL DOT
========================================================= */

    .rh-journey-row-bottom
    .rh-journey-item:nth-child(2)
    .rh-journey-dot {
        width: 21px;
        height: 21px;
        border-width: 5px;
    }


    /* =========================================================
   2026 CURRENT DOT
   DOM nth-child(1)
========================================================= */

    .rh-journey-row-bottom
    .rh-journey-item:nth-child(1)
    .rh-journey-dot {
        background: var(--rh-primary);
        border-color: var(--rh-primary);
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rh-journey {
        padding: 75px 0 80px;
    }

    .rh-journey-heading {
        margin-bottom: 45px;
    }

    .rh-journey-row {
        gap: 20px;
    }

    .rh-journey-image {
        height: 180px;
    }

    .rh-journey-info {
        padding: 16px 15px 17px;
    }

        .rh-journey-info h3 {
            font-size: 15px;
        }

        .rh-journey-info p {
            font-size: 12.5px;
        }

    .rh-journey-year {
        font-size: 13px;
        min-height: 27px;
        padding: 5px 13px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rh-journey {
        padding: 65px 0 70px;
    }


    /* -----------------------------------------------------
       Heading
    ----------------------------------------------------- */

    .rh-journey-heading {
        max-width: 100%;
        margin-bottom: 40px;
        padding: 0 10px;
    }

        .rh-journey-heading h2 {
            font-size: 28px;
            line-height: 1.2;
        }


    /* -----------------------------------------------------
       Timeline
    ----------------------------------------------------- */

    .rh-journey-timeline {
        padding-left: 0;
    }


    /* -----------------------------------------------------
       Single Column
    ----------------------------------------------------- */

    .rh-journey-row {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }


    /* -----------------------------------------------------
       Hide Desktop Connector
    ----------------------------------------------------- */

    .rh-journey-connector {
        display: none;
    }


    /* -----------------------------------------------------
       Bottom Row Spacing
    ----------------------------------------------------- */

    .rh-journey-row-bottom {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
    }


        /* -----------------------------------------------------
       MOBILE ORDER

       DOM:
       1 = 2026
       2 = 2025
       3 = 2021–2024

       Visual:
       2021–2024
       2025
       2026
    ----------------------------------------------------- */

        .rh-journey-row-bottom
        .rh-journey-item:nth-child(1) {
            order: 3;
        }

        .rh-journey-row-bottom
        .rh-journey-item:nth-child(2) {
            order: 2;
        }

        .rh-journey-row-bottom
        .rh-journey-item:nth-child(3) {
            order: 1;
        }


    /* -----------------------------------------------------
       Timeline Item
    ----------------------------------------------------- */

    .rh-journey-item {
        width: 100%;
        padding-left: 0;
    }


    /* -----------------------------------------------------
       Card
    ----------------------------------------------------- */

    .rh-journey-card {
        width: 100%;
        border-radius: 14px;
    }


    /* -----------------------------------------------------
       Image
    ----------------------------------------------------- */

    .rh-journey-image {
        width: 100%;
        height: 190px;
    }

        .rh-journey-image img {
            border-radius: 14px 14px 0 0;
        }


    /* -----------------------------------------------------
       Year
    ----------------------------------------------------- */

    .rh-journey-year {
        top: 15%;
        left: 50%;
        min-width: 70px;
        min-height: 27px;
        padding: 5px 12px;
        font-size: 12px;
        letter-spacing: .04em;
    }


    /* -----------------------------------------------------
       Content
    ----------------------------------------------------- */

    .rh-journey-info {
        padding: 16px 16px 18px;
    }

        .rh-journey-info h3 {
            font-size: 16px;
            line-height: 1.35;
            margin-bottom: 7px;
        }

        .rh-journey-info p {
            font-size: 13px;
            line-height: 1.55;
        }


    /* =====================================================
       MOBILE DOT
    ===================================================== */

    .rh-journey-row-top .rh-journey-dot,
    .rh-journey-row-bottom .rh-journey-dot {
        left: 50%;
        top: auto;
        bottom: -9px;
        transform: translateX(-50%);
    }


        /* =====================================================
       MOBILE VERTICAL LINE
       Every box gets line
    ===================================================== */

        .rh-journey-row-top .rh-journey-dot::after,
        .rh-journey-row-bottom .rh-journey-dot::after {
            content: "";
            position: absolute;
            left: 50% !important;
            top: 100% !important;
            bottom: auto !important;
            width: 2px !important;
            height: 30px !important;
            background: var(--rh-primary) !important;
            transform: translateX(-50%) !important;
            display: block !important;
        }


    /* =====================================================
       6TH BOX — 2026
       Dot rahega, line nahi
       
       DOM nth-child(1)
    ===================================================== */

    .rh-journey-row-bottom
    .rh-journey-item:nth-child(1)
    .rh-journey-dot::after {
        display: none !important;
    }


    /* =====================================================
       2025 DOT
    ===================================================== */

    .rh-journey-row-bottom
    .rh-journey-item:nth-child(2)
    .rh-journey-dot {
        width: 19px;
        height: 19px;
        border-width: 4px;
    }


    /* =====================================================
       2026 DOT
    ===================================================== */

    .rh-journey-row-bottom
    .rh-journey-item:nth-child(1)
    .rh-journey-dot {
        background: var(--rh-primary);
        border-color: var(--rh-primary);
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .rh-journey {
        padding: 55px 0 60px;
    }

    .rh-journey-heading {
        margin-bottom: 35px;
    }

        .rh-journey-heading h2 {
            font-size: 29px;
        }

    .rh-journey-timeline {
        padding-left: 0;
    }

    .rh-journey-row {
        gap: 26px;
    }

    .rh-journey-row-bottom {
        margin-top: 26px;
    }

    .rh-journey-item {
        padding-left: 0;
        margin-bottom: 5px;
    }


    /* -----------------------------------------------------
       Image
    ----------------------------------------------------- */

    .rh-journey-image {
        height: 165px;
    }


    /* -----------------------------------------------------
       Year
    ----------------------------------------------------- */

    .rh-journey-year {
        font-size: 11px;
        min-height: 26px;
        padding: 5px 11px;
    }


    /* -----------------------------------------------------
       Content
    ----------------------------------------------------- */

    .rh-journey-info {
        padding: 14px 14px 16px;
    }

        .rh-journey-info h3 {
            font-size: 15px;
        }

        .rh-journey-info p {
            font-size: 12.5px;
        }


    /* -----------------------------------------------------
       Small Mobile Dot
    ----------------------------------------------------- */

    .rh-journey-row-top .rh-journey-dot,
    .rh-journey-row-bottom .rh-journey-dot {
        top: auto;
        bottom: -9px;
        width: 15px;
        height: 15px;
        border-width: 3px;
    }


        /* -----------------------------------------------------
       Small Mobile Line
    ----------------------------------------------------- */

        .rh-journey-row-top .rh-journey-dot::after,
        .rh-journey-row-bottom .rh-journey-dot::after {
            left: 50% !important;
            top: 100% !important;
            bottom: auto !important;
            width: 2px !important;
            height: 27px !important;
            transform: translateX(-50%) !important;
            background: var(--rh-primary) !important;
        }


    /* -----------------------------------------------------
       2026 — NO LINE
    ----------------------------------------------------- */

    .rh-journey-row-bottom
    .rh-journey-item:nth-child(1)
    .rh-journey-dot::after {
        display: none !important;
    }
    .rh-journey-row-bottom .rh-journey-item:nth-child(1) .rh-journey-dot
    {
        display:none;
    }
}
/* =========================================================
   QUALITY & PATIENT SAFETY
========================================================= */

.rh-quality-section {
    position: relative;
    padding: 80px 0 ;
    background: var(--rh-light);
    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.rh-quality-heading {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}

    

    .rh-quality-heading h2 {
        margin: 0;
        font-family: var(--rh-font-heading);
        font-size: clamp(32px, 3vw, 48px);
        line-height: 1.15;
        font-weight: 700;
        color: var(--rh-heading);
    }

        .rh-quality-heading h2 span {
            color: #80b12b;
        }


/* =========================================================
   MAIN WRAPPER
========================================================= */

.rh-quality-wrap {
    display: grid;
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
    gap: 70px;
    align-items: center;
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.rh-quality-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rh-quality-visual-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: var(--rh-white);
    border: 1px solid var(--rh-border);
    border-radius: var(--rh-radius-lg);
    box-shadow: var(--rh-shadow);
    overflow: hidden;
    z-index: 2;
}


/* =========================================================
   VISUAL TOP
========================================================= */

.rh-quality-visual-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: var(--rh-primary);
    color: var(--rh-white);
}

    .rh-quality-visual-top span {
        font-family: var(--rh-font-heading);
        font-size: 15px;
        font-weight: 800;
        letter-spacing: .14em;
    }

    .rh-quality-visual-top i {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,.25);
        border-radius: 50%;
        font-size: 17px;
    }


/* =========================================================
   NABH CERTIFICATE AREA
========================================================= */

.rh-quality-certificate {
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    background: radial-gradient( circle at center, rgba(40,75,155,.06), transparent 65% );
}

    .rh-quality-certificate img {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 425px;
        object-fit: contain;
    }


/* =========================================================
   VISUAL BOTTOM
========================================================= */

.rh-quality-visual-bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-top: 1px solid var(--rh-border);
    background: var(--rh-white);
}

.rh-quality-status-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(21,148,71,.10);
    color: var(--rh-green);
    font-size: 20px;
}

.rh-quality-visual-bottom strong {
    display: block;
    margin-bottom: 3px;
    font-family: var(--rh-font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--rh-heading);
}

.rh-quality-visual-bottom span {
    display: block;
    font-family: var(--rh-font-body);
    font-size: 14px;
    line-height: 1.4;
    color: var(--rh-text);
}


/* =========================================================
   DECORATIVE ELEMENTS
========================================================= */

.rh-quality-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.rh-quality-decoration-one {
    width: 130px;
    height: 130px;
    right: -15px;
    top: 25px;
    background: rgba(40,75,155,.07);
}

.rh-quality-decoration-two {
    width: 85px;
    height: 85px;
    left: -20px;
    bottom: 45px;
    background: rgba(21,148,71,.08);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.rh-quality-content {
    min-width: 0;
}


/* =========================================================
   NABH BADGE
========================================================= */

.rh-quality-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    padding: 14px 17px;
    background: var(--rh-white);
    border: 1px solid var(--rh-border);
    border-left: 4px solid var(--rh-green);
    border-radius: var(--rh-radius);
    box-shadow: var(--rh-shadow-sm);
}

.rh-quality-badge-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(21,148,71,.10);
    color: var(--rh-green);
    font-size: 20px;
}

.rh-quality-badge strong {
    display: block;
    margin-bottom: 3px;
    font-family: var(--rh-font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--rh-heading);
}

.rh-quality-badge span {
    display: block;
    font-family: var(--rh-font-body);
    font-size: 14px;
    line-height: 1.45;
    color: var(--rh-text);
}


/* =========================================================
   INTRO
========================================================= */

.rh-quality-intro {
    max-width: 680px;
    margin: 0 0 28px;
    font-family: var(--rh-font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--rh-text);
}


/* =========================================================
   QUALITY POINTS
========================================================= */

.rh-quality-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}


/* =========================================================
   QUALITY POINT
========================================================= */

.rh-quality-point {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 15px 0;
    border-bottom: 1px solid var(--rh-border);
    transition: var(--rh-transition);
}

    .rh-quality-point:hover {
        transform: translateX(4px);
    }


/* =========================================================
   POINT ICON
========================================================= */

.rh-quality-point-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(38,35,95,.07);
    color: var(--rh-primary);
    font-size: 17px;
    transition: var(--rh-transition);
}

.rh-quality-point:hover .rh-quality-point-icon {
    background: var(--rh-primary);
    color: var(--rh-white);
    transform: translateY(-2px);
}


/* =========================================================
   POINT CONTENT
========================================================= */

.rh-quality-point-content h3 {
    margin: 1px 0 4px;
    font-family: var(--rh-font-heading);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--rh-heading);
    transition: var(--rh-transition);
}

.rh-quality-point:hover .rh-quality-point-content h3 {
    color: var(--rh-primary);
}

.rh-quality-point-content p {
    margin: 0;
    font-family: var(--rh-font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--rh-text);
}


/* =========================================================
   CTA
========================================================= */

.rh-quality-action {
    margin-top: 32px;
}

.rh-quality-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 22px;
    background: var(--rh-primary);
    color: var(--rh-white);
    border: 1px solid var(--rh-primary);
    border-radius: 8px;
    font-family: var(--rh-font-heading);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(38,35,95,.16);
    transition: var(--rh-transition);
    text-transform:uppercase;
}

    .rh-quality-btn i {
        font-size: 12px;
        transition: transform .3s ease;
    }

    .rh-quality-btn:hover {
        background: var(--rh-primary-dark);
        border-color: var(--rh-primary-dark);
        color: var(--rh-white);
        transform: translateY(-2px);
        box-shadow: 0 12px 26px rgba(38,35,95,.22);
    }

        .rh-quality-btn:hover i {
            transform: translateX(4px);
        }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rh-quality-section {
        padding: 75px 0 80px;
    }

    .rh-quality-heading {
        margin-bottom: 45px;
    }

    .rh-quality-wrap {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .rh-quality-visual {
        min-height: auto;
    }

    .rh-quality-visual-card {
        max-width: 520px;
    }

    .rh-quality-points {
        gap: 14px 20px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rh-quality-section {
        padding: 65px 0 70px;
    }

    .rh-quality-heading {
        margin-bottom: 38px;
        padding: 0 10px;
    }

        .rh-quality-heading h2 {
            font-size: 28px;
            line-height: 1.2;
        }

    .rh-quality-wrap {
        gap: 35px;
    }

    .rh-quality-visual {
        padding: 0 8px;
    }

    .rh-quality-visual-card {
        max-width: 100%;
    }

    .rh-quality-certificate {
        min-height: 250px;
        padding: 28px;
    }

        .rh-quality-certificate img {
            max-height: 200px;
        }

    .rh-quality-visual-bottom {
        padding: 16px 18px;
    }

    .rh-quality-content {
        padding: 0 5px;
    }

    .rh-quality-badge {
        padding: 13px 14px;
    }

    .rh-quality-intro {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .rh-quality-points {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rh-quality-point {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 14px 0;
    }

    .rh-quality-action {
        margin-top: 28px;
    }

    .rh-quality-btn {
        width: 100%;
    }

    .rh-quality-decoration-one {
        right: -35px;
    }

    .rh-quality-decoration-two {
        left: -35px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .rh-quality-section {
        padding: 55px 0 60px;
    }

    .rh-quality-heading {
        margin-bottom: 32px;
    }

        .rh-quality-heading h2 {
            font-size: 25px;
        }

    .rh-quality-visual-top {
        padding: 15px 17px;
    }

        .rh-quality-visual-top i {
            width: 34px;
            height: 34px;
            font-size: 15px;
        }

    .rh-quality-certificate {
        min-height: 215px;
        padding: 22px;
    }

        .rh-quality-certificate img {
            max-height: 175px;
        }

    .rh-quality-visual-bottom {
        gap: 11px;
        padding: 14px 16px;
    }

    .rh-quality-status-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .rh-quality-visual-bottom strong {
        font-size: 13px;
    }

    .rh-quality-visual-bottom span {
        font-size: 11px;
    }

    .rh-quality-badge-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .rh-quality-badge strong {
        font-size: 13px;
    }

    .rh-quality-badge span {
        font-size: 11px;
    }

    .rh-quality-point-content h3 {
        font-size: 13px;
    }

    .rh-quality-point-content p {
        font-size: 11.5px;
    }
}
/* =========================================================
   PATIENT STORIES
   ========================================================= */

.rh-patient-stories {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 10% 15%, rgba(255, 255, 255, 0.14), transparent 32% ), radial-gradient( circle at 90% 85%, rgba(255, 255, 255, 0.08), transparent 30% ), linear-gradient( 135deg, #6d9d20 0%, #80b12b 48%, #719f22 100% );
    color: var(--rh-white);
    position: relative;
    padding: 80px 0;
}


    /* =========================================================
   AMBIENT GLOW
   ========================================================= */

    .rh-patient-stories::before {
        content: "";
        position: absolute;
        width: 440px;
        height: 440px;
        top: -240px;
        left: -160px;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 50%;
        filter: blur(75px);
        pointer-events: none;
        animation: rhPatientGlowOne 9s ease-in-out infinite alternate;
    }


    .rh-patient-stories::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        right: -180px;
        bottom: -250px;
        background: rgba(38, 35, 95, 0.16);
        border-radius: 50%;
        filter: blur(85px);
        pointer-events: none;
        animation: rhPatientGlowTwo 11s ease-in-out infinite alternate;
    }


/* =========================================================
   GLOW ANIMATIONS
   ========================================================= */

@keyframes rhPatientGlowOne {

    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }

    50% {
        transform: translate(70px, 55px) scale(1.15);
        opacity: 0.65;
    }

    100% {
        transform: translate(30px, 100px) scale(1);
        opacity: 0.42;
    }
}


@keyframes rhPatientGlowTwo {

    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }

    50% {
        transform: translate(-65px, -55px) scale(1.16);
        opacity: 0.48;
    }

    100% {
        transform: translate(-25px, -90px) scale(1);
        opacity: 0.30;
    }
}


/* =========================================================
   CONTENT ABOVE GLOW
   ========================================================= */

.rh-patient-stories .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   PATIENT STORIES TOP
   ========================================================= */

.rh-patient-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}


/* =========================================================
   HEADING
   ========================================================= */

.rh-patient-heading {
    max-width: 820px;
    margin: 0;
}


    .rh-patient-heading .rh-section-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
        font-family: var(--rh-font-body);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--rh-heading);
    }
        .rh-patient-heading .rh-section-eyebrow::before {
            background-color: var(--rh-heading);
        }

    .rh-patient-heading h2 {
        margin: 0;
        font-family: var(--rh-font-heading);
        font-size: clamp(32px, 3vw, 48px);
        line-height: 1.15;
        font-weight: 700;
        color: var(--rh-white);
        max-width: 850px;
        margin-bottom:14px;
    }

        .rh-patient-heading h2 span {
            color: var(--rh-heading);
        }
        .rh-patient-heading p {
        max-width: 650px;
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
        font-size:16px;
    }


/* =========================================================
   CONTROLS
   ========================================================= */

.rh-patient-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 38px;
    position: relative;
    z-index: 5;
}


    /* =========================================================
   TOP NAVIGATION BUTTONS
   ========================================================= */

    .rh-patient-controls .rh-patient-prev,
    .rh-patient-controls .rh-patient-next {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.10);
        color: var(--rh-white);
        font-size: 14px;
        cursor: pointer;
        box-shadow: none;
        transition: var(--rh-transition);
        z-index: 5;
    }


        .rh-patient-controls .rh-patient-prev:hover,
        .rh-patient-controls .rh-patient-next:hover {
            background: var(--rh-white);
            border-color: var(--rh-white);
            color: #80b12b;
            transform: translateY(-2px);
        }


        .rh-patient-controls .rh-patient-prev.swiper-button-disabled,
        .rh-patient-controls .rh-patient-next.swiper-button-disabled {
            opacity: 0.45;
            cursor: default;
        }


/* =========================================================
   ALL PATIENT STORIES BUTTON
   ========================================================= */

.rh-patient-all-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 5px 25px;
    background: var(--rh-primary);
    color: var(--rh-white);
    border: 1px solid var(--rh-primary-dark);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--rh-transition);
    text-transform: uppercase;
    min-height: 50px;
}


    .rh-patient-all-btn i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }


    .rh-patient-all-btn:hover {
        background: var(--rh-primary);
        border-color: var(--rh-primary);
        color: var(--rh-white);
        transform: translateY(-2px);
    }


        .rh-patient-all-btn:hover i {
            transform: translateX(4px);
        }


/* =========================================================
   PATIENT STORIES
   ========================================================= */

.rh-patient-slider-wrap {
    width: 100%;
    position: relative;
}


/* =========================================================
   SWIPER
   ========================================================= */

.rh-patient-slider {
    width: 100%;
    overflow: hidden;
}

    .rh-patient-slider .swiper-wrapper {
        align-items: stretch;
    }

    .rh-patient-slider .swiper-slide {
        height: auto;
        display: flex;
    }


/* =========================================================
   PATIENT CARD
   ========================================================= */

.rh-patient-card {
    width: 100%;
    height: 100%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(54, 83, 15, 0.16);
    position: relative;
    overflow: hidden;
    transition: var(--rh-transition);
}

    .rh-patient-card::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 170px;
        height: 170px;
        border-radius: 50%;
        background: rgba(128, 177, 43, 0.08);
        pointer-events: none;
    }

    .rh-patient-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 45px rgba(54, 83, 15, 0.22);
    }


/* =========================================================
   AUTHOR
   ========================================================= */

.rh-patient-author {
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 2;
}


/* =========================================================
   PATIENT PHOTO
   ========================================================= */

.rh-patient-photo {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: #edf3df;
    border: 4px solid rgba(128, 177, 43, 0.15);
}

    .rh-patient-photo img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }


/* =========================================================
   AUTHOR INFO
   ========================================================= */

.rh-patient-author-info {
    min-width: 0;
    flex: 1;
}

    .rh-patient-author-info h4 {
        margin: 0 0 4px;
        color: var(--rh-heading);
        font-size: 18px;
        line-height: 1.35;
        font-weight: 700;
    }

    .rh-patient-author-info > span {
        display: block;
        margin-bottom: 8px;
        color: var(--rh-text);
        font-size: 15px;
        line-height: 1.4;
    }


/* =========================================================
   VERIFIED
   ========================================================= */

.rh-patient-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #6d9d20;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

    .rh-patient-verified i {
        font-size: 16px;
    }


/* =========================================================
   VIDEO BUTTON
   Only appears when video exists
   ========================================================= */

.rh-patient-video-btn {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 0;
    border-radius: 50%;
    background: #80b12b;
    color: var(--rh-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(128, 177, 43, 0.30);
    transition: var(--rh-transition);
}

    .rh-patient-video-btn i {
        margin-left: 2px;
        font-size: 14px;
    }

    .rh-patient-video-btn:hover {
        background: var(--rh-primary);
        transform: scale(1.08);
        box-shadow: 0 10px 25px rgba(38, 35, 95, 0.25);
    }


/* =========================================================
   QUOTE
   ========================================================= */

.rh-patient-quote {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid rgba(128, 177, 43, 0.14);
    position: relative;
    z-index: 2;
}

    .rh-patient-quote > i {
        display: block;
        margin-bottom: 10px;
        color: #80b12b;
        font-size: 23px;
        opacity: 0.85;
    }

    .rh-patient-quote p {
        margin: 0;
        color: var(--rh-text);
        font-size: 16px;
        line-height: 1.8;
        font-style: italic;
        font-weight:400;
    }


/* =========================================================
   BOTTOM CONTROLS
   ========================================================= */

.rh-patient-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
    position: relative;
    z-index: 5;
}

    .rh-patient-controls .rh-patient-prev,
    .rh-patient-controls .rh-patient-next {
        width: 46px;
        height: 46px;
        min-width: 46px;
        min-height: 46px;
        padding: 0;
        margin: 0;
        border: 1px solid rgba(255, 255, 255, 0.40);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        color: var(--rh-white);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        line-height: 1;
        cursor: pointer;
        transition: var(--rh-transition);
    }

        .rh-patient-controls .rh-patient-prev:hover,
        .rh-patient-controls .rh-patient-next:hover {
            background: var(--rh-white);
            border-color: var(--rh-white);
            color: #80b12b;
            transform: translateY(-2px);
        }

    .rh-patient-controls .swiper-button-disabled {
        opacity: 0.35;
        cursor: default;
        pointer-events: none;
    }


/* =========================================================
   ALL STORIES BUTTON
   ========================================================= */

.rh-patient-all-btn {
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--rh-white);
    border-radius: 8px;
    background: var(--rh-white);
    color: #5f8e18;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--rh-transition);
}

    .rh-patient-all-btn i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .rh-patient-all-btn:hover {
        background: var(--rh-primary);
        border-color: var(--rh-primary);
        color: var(--rh-white);
        transform: translateY(-2px);
    }

        .rh-patient-all-btn:hover i {
            transform: translateX(4px);
        }


/* =========================================================
   VIDEO MODAL
   ========================================================= */

.rh-video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .rh-video-modal.active {
        visibility: visible;
        opacity: 1;
    }

.rh-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 20, 0.88);
    backdrop-filter: blur(5px);
}

.rh-video-modal-dialog {
    width: min(900px, 100%);
    position: relative;
    z-index: 2;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

    .rh-video-modal-dialog video {
        width: 100%;
        max-height: 80vh;
        display: block;
        background: #000;
    }

.rh-video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: var(--rh-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--rh-transition);
}

    .rh-video-modal-close:hover {
        background: #80b12b;
        transform: rotate(90deg);
    }


/* =========================================================
   1400+
   ========================================================= */

@media (min-width: 1400px) {

    .rh-patient-card {
        padding: 32px;
    }

    .rh-patient-author {
        gap: 20px;
    }

    .rh-patient-quote {
        margin-top: 27px;
    }
}


/* =========================================================
   1200 - 1399
   ========================================================= */

@media (min-width: 1200px) and (max-width: 1399px) {

    .rh-patient-card {
        padding: 28px;
    }

    .rh-patient-author {
        gap: 17px;
    }
}


/* =========================================================
   992 - 1199
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .rh-patient-card {
        padding: 26px;
    }

    .rh-patient-photo {
        width: 90px;
        height: 90px;
        min-width: 90px;
    }

    .rh-patient-author {
        gap: 15px;
    }

    .rh-patient-video-btn {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
}


/* =========================================================
   768 - 991
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .rh-patient-card {
        padding: 24px;
    }

    .rh-patient-photo {
        width: 90px;
        height: 90px;
        min-width: 90px;
    }

    .rh-patient-author {
        gap: 15px;
    }

    .rh-patient-author-info h4 {
        font-size: 16px;
    }

    .rh-patient-video-btn {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .rh-patient-controls {
        margin-top: 32px;
    }
}


/* =========================================================
   576 - 767
   ========================================================= */

@media (min-width: 576px) and (max-width: 767px) {

    .rh-patient-card {
        padding: 24px;
    }

    .rh-patient-photo {
        width: 90px;
        height: 90px;
        min-width: 90px;
    }

    .rh-patient-controls {
        margin-top: 28px;
    }
}


/* =========================================================
   0 - 575
   ========================================================= */

@media (max-width: 575px) {

    .rh-patient-card {
        padding: 22px;
        border-radius: 16px;
    }

    .rh-patient-author {
        gap: 14px;
    }

    .rh-patient-photo {
        width: 82px;
        height: 82px;
        min-width: 82px;
        border-width: 3px;
    }

    .rh-patient-author-info h4 {
        font-size: 15px;
    }

    .rh-patient-author-info > span {
        font-size: 12px;
    }

    .rh-patient-verified {
        font-size: 10px;
    }

    .rh-patient-video-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .rh-patient-quote {
        margin-top: 22px;
        padding-top: 20px;
    }

        .rh-patient-quote p {
            font-size: 13px;
            line-height: 1.75;
        }

    .rh-patient-controls {
        margin-top: 25px;
        gap: 8px;
    }

        .rh-patient-controls .rh-patient-prev,
        .rh-patient-controls .rh-patient-next {
            width: 40px;
            height: 40px;
            min-width: 40px;
            min-height: 40px;
        }

    .rh-patient-all-btn {
        min-height: 40px;
        padding: 0 15px;
        font-size: 12px;
    }

    .rh-video-modal {
        padding: 15px;
    }
}


/* =========================================================
   0 - 400
   ========================================================= */

@media (max-width: 400px) {

    .rh-patient-card {
        padding: 19px;
    }

    .rh-patient-photo {
        width: 75px;
        height: 75px;
        min-width: 75px;
    }

    .rh-patient-author {
        gap: 11px;
    }

    .rh-patient-author-info h4 {
        font-size: 14px;
    }

    .rh-patient-author-info > span {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .rh-patient-verified {
        font-size: 9px;
    }

    .rh-patient-video-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

        .rh-patient-video-btn i {
            font-size: 11px;
        }

    .rh-patient-quote {
        margin-top: 18px;
        padding-top: 18px;
    }

        .rh-patient-quote p {
            font-size: 12px;
        }

    .rh-patient-controls {
        margin-top: 22px;
    }

        .rh-patient-controls .rh-patient-prev,
        .rh-patient-controls .rh-patient-next {
            width: 36px;
            height: 36px;
            min-width: 36px;
            min-height: 36px;
        }

    .rh-patient-all-btn {
        min-height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }
}
/* =========================================================
   HEALTH & WELLNESS
   ========================================================= */

.rh-health {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: var(--rh-light);
    overflow: hidden;
}


    /* =========================================================
   SUBTLE BACKGROUND ELEMENT
   ========================================================= */

    .rh-health::before {
        content: "";
        position: absolute;
        top: -180px;
        right: -180px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(40, 75, 155, 0.035);
        pointer-events: none;
    }

    .rh-health::after {
        content: "";
        position: absolute;
        bottom: -200px;
        left: -180px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(21, 148, 71, 0.025);
        pointer-events: none;
    }


/* =========================================================
   SECTION HEADING
   ========================================================= */

.rh-health-top {
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
}

.rh-health-heading {
    max-width: 760px;
    margin: auto;
    text-align:center;
}


    .rh-health-heading h2 {
        margin: 0;
        font-family: var(--rh-font-heading);
        font-size: clamp(32px, 3vw, 48px);
        line-height: 1.15;
        font-weight: 700;
        color: var(--rh-heading);
    }
    .rh-health-heading h2 span{
        color:#80b12b;
    }
        .rh-health-heading p {
       
        margin: 0;
        color: var(--rh-text);
        font-size: 16px;
        line-height: 1.8;
        margin-top:10px;
    }


/* =========================================================
   ARTICLE GRID
   ========================================================= */

.rh-health-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 26px;
    row-gap: 30px;
}


/* =========================================================
   ARTICLE CARD
   ========================================================= */

.rh-health-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    background: var(--rh-white);
    border: 1px solid var(--rh-border);
    border-radius: var(--rh-radius-lg);
    overflow: hidden;
    box-shadow: var(--rh-shadow-sm);
    transition: var(--rh-transition);
}

    .rh-health-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--rh-shadow);
    }


/* =========================================================
   IMAGE
   ========================================================= */

.rh-health-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--rh-light-blue);
}

    .rh-health-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

.rh-health-card:hover .rh-health-image img {
    transform: scale(1.06);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.rh-health-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.18) 100% );
    pointer-events: none;
}


/* =========================================================
   CATEGORY
   ========================================================= */

.rh-health-category {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    background: rgba(38, 35, 95, 0.92);
    border-radius: 6px;
    color: var(--rh-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2px;
    backdrop-filter: blur(5px);
}


/* =========================================================
   ARTICLE CONTENT
   ========================================================= */

.rh-health-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 25px 25px;
}


/* =========================================================
   META
   ========================================================= */

.rh-health-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .rh-health-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--rh-muted);
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
    }

    .rh-health-meta i {
        color: #80b12b;
        font-size: 15px;
    }


/* =========================================================
   TITLE
   ========================================================= */

.rh-health-content h3 {
    margin: 0 0 11px;
    font-family: var(--rh-font-heading);
    font-size: 19px;
    line-height: 1.4;
    font-weight: 750;
    letter-spacing: -0.15px;
}

    .rh-health-content h3 a {
        color: var(--rh-heading);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .rh-health-content h3 a:hover {
            color: var(--rh-primary);
        }


/* =========================================================
   DESCRIPTION
   ========================================================= */

.rh-health-content > p {
    margin: 0;
    color: var(--rh-text);
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   READ MORE
   ========================================================= */

.rh-health-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding-top: 19px;
    color: var(--rh-primary);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: var(--rh-transition);
}

    .rh-health-read-more i {
        font-size: 11px;
        transition: transform 0.3s ease;
    }

    .rh-health-read-more:hover {
        color: var(--rh-secondary);
    }

        .rh-health-read-more:hover i {
            transform: translateX(5px);
        }


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.rh-health-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.rh-health-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    background: var(--rh-primary);
    border: 1px solid var(--rh-primary);
    border-radius: 8px;
    color: var(--rh-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(38, 35, 95, 0.16);
    transition: var(--rh-transition);
    text-transform:uppercase;
}

    .rh-health-view-all i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .rh-health-view-all:hover {
        background: var(--rh-secondary);
        border-color: var(--rh-secondary);
        color: var(--rh-white);
        transform: translateY(-2px);
        box-shadow: 0 12px 26px rgba(40, 75, 155, 0.20);
    }

        .rh-health-view-all:hover i {
            transform: translateX(5px);
        }


/* =========================================================
   1400+
   ========================================================= */

@media (min-width: 1400px) {

    .rh-health {
        padding: 80px 0;
    }

    .rh-health-top {
        margin-bottom: 52px;
    }

    .rh-health-grid {
        column-gap: 30px;
        row-gap: 32px;
    }

    .rh-health-content {
        padding: 26px 27px 27px;
    }
}


/* =========================================================
   1200 - 1399
   ========================================================= */

@media (min-width: 1200px) and (max-width: 1399px) {

    .rh-health {
        padding: 80px 0;
    }

    .rh-health-grid {
        column-gap: 24px;
        row-gap: 28px;
    }

    

    .rh-health-content {
        padding: 23px 24px 24px;
    }
}


/* =========================================================
   992 - 1199
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .rh-health {
        padding: 85px 0;
    }

    .rh-health-top {
        margin-bottom: 40px;
    }

    .rh-health-heading h2 {
        font-size: 34px;
    }

    .rh-health-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 22px;
        row-gap: 24px;
    }

    .rh-health-content {
        padding: 22px 23px 23px;
    }

        .rh-health-content h3 {
            font-size: 18px;
        }
}


/* =========================================================
   768 - 991
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .rh-health {
        padding: 75px 0;
    }

    .rh-health-top {
        margin-bottom: 36px;
    }

    .rh-health-heading h2 {
        font-size: 31px;
    }

    .rh-health-heading p {
        font-size: 14px;
    }

    .rh-health-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 18px;
        row-gap: 20px;
    }

    .rh-health-content {
        padding: 20px;
    }

        .rh-health-content h3 {
            font-size: 17px;
        }

        .rh-health-content > p {
            font-size: 12px;
        }
}


/* =========================================================
   576 - 767
   ========================================================= */

@media (min-width: 576px) and (max-width: 767px) {

    .rh-health {
        padding: 65px 0;
    }

    .rh-health-top {
        margin-bottom: 32px;
    }

    .rh-health-heading h2 {
        font-size: 29px;
    }

    .rh-health-heading p {
        font-size: 14px;
    }

    .rh-health-grid {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .rh-health-content {
        padding: 22px;
    }

    .rh-health-footer {
        margin-top: 35px;
    }
}


/* =========================================================
   0 - 575
   ========================================================= */

@media (max-width: 575px) {

    .rh-health {
        padding: 58px 0;
    }

    .rh-health-top {
        margin-bottom: 28px;
    }

    .rh-health-heading h2 {
        font-size: 27px;
        line-height: 1.25;
    }

    .rh-health-heading p {
        font-size: 13px;
        line-height: 1.75;
    }

    .rh-health-grid {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    .rh-health-category {
        left: 14px;
        bottom: 13px;
        min-height: 28px;
        padding: 0 10px;
        font-size: 10px;
    }

    .rh-health-content {
        padding: 20px;
    }

        .rh-health-content h3 {
            font-size: 17px;
        }

        .rh-health-content > p {
            font-size: 12px;
            line-height: 1.7;
        }

    .rh-health-footer {
        margin-top: 30px;
    }

    .rh-health-view-all {
        min-height: 44px;
        padding: 0 17px;
        font-size: 12px;
    }
}


/* =========================================================
   0 - 400
   ========================================================= */

@media (max-width: 400px) {

    .rh-health {
        padding: 50px 0;
    }

    .rh-health-heading h2 {
        font-size: 24px;
    }

    .rh-health-heading p {
        font-size: 12px;
    }

    .rh-health-content {
        padding: 18px;
    }

        .rh-health-content h3 {
            font-size: 16px;
        }

    .rh-health-meta span {
        font-size: 10px;
    }

    .rh-health-content > p {
        font-size: 11px;
    }
}
/* =========================================================
   EMPANELMENTS
   ========================================================= */
.rh-empanelments {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: var(--rh-white);
    overflow: hidden;
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.rh-empanel-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 38px;
}


/* =========================================================
   HEADING
   ========================================================= */

.rh-empanel-heading {
    max-width: 1250px;
}


    .rh-empanel-heading h2 {
        margin: 0;
        font-family: var(--rh-font-heading);
        font-size: clamp(32px, 3vw, 48px);
        line-height: 1.15;
        font-weight: 700;
        color: var(--rh-heading);
    }
    .rh-empanel-heading h2 span{
        color:#80b12b;
    }
        .rh-empanel-heading p {
        max-width: 960px;
        margin: 0;
        color: var(--rh-text);
        font-size: 15px;
        line-height: 1.8;
        margin-top:10px;
    }


/* =========================================================
   HEADER BUTTON
   ========================================================= */

.rh-empanel-header-action {
    flex-shrink: 0;
}

.rh-empanel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 20px;
    background: var(--rh-primary);
    border: 1px solid var(--rh-primary);
    border-radius: 8px;
    color: var(--rh-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(38, 35, 95, 0.15);
    transition: var(--rh-transition);
    text-transform:uppercase;
}

    .rh-empanel-btn i {
        font-size: 11px;
        transition: transform 0.3s ease;
    }

    .rh-empanel-btn:hover {
        background: var(--rh-primary-dark);
        border-color: var(--rh-primary-dark);
        color: var(--rh-white);
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(40, 75, 155, 0.20);
    }

        .rh-empanel-btn:hover i {
            transform: translateX(4px);
        }


/* =========================================================
   LOGO PANEL
   ========================================================= */

.rh-empanel-logos {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 26px;
    background: var(--rh-light);
    border: 1px solid var(--rh-border);
    border-radius: var(--rh-radius-lg);
    box-shadow: var(--rh-shadow-sm);
    overflow: hidden;
}


/* =========================================================
   SWIPER
   ========================================================= */

.rh-empanel-slider {
    width: 100%;
    overflow: hidden;
}

    .rh-empanel-slider .swiper-wrapper {
        align-items: stretch;
    }

    .rh-empanel-slider .swiper-slide {
        height: auto;
        display: flex;
    }


/* =========================================================
   LOGO CARD
   ========================================================= */

.rh-empanel-logo {
    width: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    background: var(--rh-white);
    border: 1px solid var(--rh-border);
    border-radius: 10px;
    transition: var(--rh-transition);
}

    .rh-empanel-logo img {
        max-width: 100%;
        width: auto;
        height: auto;
        display: block;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.72;
        transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
    }

    .rh-empanel-logo:hover {
        border-color: rgba(40, 75, 155, 0.18);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(38, 35, 95, 0.08);
    }

        .rh-empanel-logo:hover img {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }


/* =========================================================
   CONTROLS
   ========================================================= */

.rh-empanel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 20px;
}

.rh-empanel-prev,
.rh-empanel-next {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(38, 35, 95, 0.14);
    border-radius: 50%;
    background: var(--rh-white);
    color: var(--rh-primary);
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    transition: var(--rh-transition);
}

    .rh-empanel-prev:hover,
    .rh-empanel-next:hover {
        background: var(--rh-primary);
        border-color: var(--rh-primary);
        color: var(--rh-white);
        transform: translateY(-2px);
    }


/* =========================================================
   1400+
   ========================================================= */

@media (min-width: 1400px) {

    .rh-empanelments {
        padding: 80px 0;
    }

    

    .rh-empanel-logos {
        padding: 30px;
    }

    .rh-empanel-logo {
        min-height: 125px;
    }
}


/* =========================================================
   1200 - 1399
   ========================================================= */

@media (min-width: 1200px) and (max-width: 1399px) {

    .rh-empanelments {
        padding: 80px 0;
    }

    

    .rh-empanel-logos {
        padding: 24px;
    }

    .rh-empanel-logo {
        min-height: 115px;
    }
}


/* =========================================================
   992 - 1199
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .rh-empanelments {
        padding: 80px 0;
    }

    .rh-empanel-header {
        gap: 25px;
    }

    

    .rh-empanel-heading p {
        font-size: 13px;
    }

    .rh-empanel-logos {
        padding: 20px;
    }

    .rh-empanel-logo {
        min-height: 105px;
        padding: 14px;
    }

        .rh-empanel-logo img {
            max-height: 52px;
        }
}


/* =========================================================
   768 - 991
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .rh-empanelments {
        padding: 75px 0;
    }

    .rh-empanel-header {
        align-items: flex-end;
        gap: 25px;
        margin-bottom: 30px;
    }

    

    .rh-empanel-logos {
        padding: 22px;
    }

    .rh-empanel-logo {
        min-height: 105px;
    }
}


/* =========================================================
   576 - 767
   ========================================================= */

@media (min-width: 576px) and (max-width: 767px) {

    .rh-empanelments {
        padding: 65px 0;
    }

    .rh-empanel-header {
        align-items: flex-end;
        gap: 20px;
        margin-bottom: 28px;
    }

   
    .rh-empanel-heading p {
        font-size: 13px;
    }

    .rh-empanel-btn {
        min-height: 44px;
        padding: 0 16px;
        font-size: 11px;
    }

    .rh-empanel-logos {
        padding: 18px;
    }

    .rh-empanel-logo {
        min-height: 100px;
    }
}


/* =========================================================
   0 - 575
   ========================================================= */

@media (max-width: 575px) {

    .rh-empanelments {
        padding: 58px 0;
    }

    .rh-empanel-header {
        display: block;
        margin-bottom: 25px;
    }

    

    .rh-empanel-heading p {
        font-size: 12px;
        line-height: 1.75;
    }

    .rh-empanel-header-action {
        margin-top: 20px;
    }

    .rh-empanel-btn {
        min-height: 44px;
        padding: 0 17px;
        font-size: 11px;
    }

    .rh-empanel-logos {
        padding: 14px;
        border-radius: 14px;
    }

    .rh-empanel-logo {
        min-height: 90px;
        padding: 12px;
    }

        .rh-empanel-logo img {
            max-height: 48px;
        }

    .rh-empanel-controls {
        margin-top: 16px;
    }
}


/* =========================================================
   0 - 400
   ========================================================= */

@media (max-width: 400px) {

    .rh-empanelments {
        padding: 50px 0;
    }

   

    .rh-empanel-heading p {
        font-size: 11px;
    }

    .rh-empanel-logos {
        padding: 11px;
    }

    .rh-empanel-logo {
        min-height: 82px;
        padding: 9px;
    }

        .rh-empanel-logo img {
            max-height: 42px;
        }

    .rh-empanel-prev,
    .rh-empanel-next {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
    }
}

/* =========================================================
   CONTACT & LOCATION
   ========================================================= */
.rh-contact {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: var(--rh-light);
    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
   ========================================================= */

.rh-contact::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(40, 75, 155, 0.045);
    pointer-events: none;
}

.rh-contact::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -160px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(21, 148, 71, 0.035);
    pointer-events: none;
}


/* =========================================================
   WRAPPER
   ========================================================= */

.rh-contact-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    align-items: stretch;
    gap: 70px;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.rh-contact-content {
    padding: 10px 0;
}

    .rh-contact-content h2 {
        margin: 0;
        font-family: var(--rh-font-heading);
        font-size: clamp(32px, 3vw, 48px);
        line-height: 1.15;
        font-weight: 700;
        color: var(--rh-heading);
    }
.rh-contact-content h2 span {
    color: #80b12b;
}

.rh-contact-intro {
    max-width: 620px;
    margin: 10px 0px 32px;
    color: var(--rh-text);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT LIST
   ========================================================= */

.rh-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.rh-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.rh-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rh-white);
    border: 1px solid var(--rh-border);
    border-radius: 50%;
    color: var(--rh-primary);
    font-size: 17px;
    box-shadow: var(--rh-shadow-sm);
    transition: var(--rh-transition);
}

.rh-contact-item:hover .rh-contact-icon {
    background: var(--rh-primary);
    border-color: var(--rh-primary);
    color: var(--rh-white);
    transform: translateY(-2px);
}

.rh-contact-info {
    padding-top: 2px;
}

    .rh-contact-info > span {
        display: block;
        margin-bottom: 4px;
        color: var(--rh-primary-dark);
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.6px;
    }

    .rh-contact-info p {
        margin: 0;
        color: var(--rh-heading);
        font-size: 15px;
        line-height: 1.6;
        font-weight: 600;
    }

    .rh-contact-info a {
        color: var(--rh-heading);
        text-decoration: none;
        transition: var(--rh-transition);
    }

        .rh-contact-info a:hover {
            color: var(--rh-secondary);
        }


/* =========================================================
   ACTION BUTTONS
   ========================================================= */

.rh-contact-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.rh-contact-btn {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--rh-transition);
}

    .rh-contact-btn i {
        font-size: 13px;
    }


/* Primary */

.rh-contact-btn-primary {
    background: var(--rh-primary);
    border: 1px solid var(--rh-primary);
    color: var(--rh-white);
    box-shadow: 0 8px 20px rgba(38, 35, 95, 0.15);
}

    .rh-contact-btn-primary:hover {
        background: var(--rh-primary-dark);
        border-color: var(--rh-primary-dark);
        color: var(--rh-white);
        transform: translateY(-2px);
    }


/* Outline */

.rh-contact-btn-outline {
    background: var(--rh-white);
    border: 1px solid rgba(38, 35, 95, 0.15);
    color: var(--rh-primary);
}

    .rh-contact-btn-outline:hover {
        background: var(--rh-primary-dark);
        border-color: var(--rh-primary-dark);
        color: var(--rh-white);
        transform: translateY(-2px);
    }


/* =========================================================
   RIGHT VISUAL
   ========================================================= */

.rh-contact-visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
}


/* =========================================================
   CONTACT CARD
   ========================================================= */

.rh-contact-card {
    position: relative;
    width: 100%;
    min-height: 390px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient( 145deg, var(--rh-primary), var(--rh-primary-dark) );
    border-radius: var(--rh-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(38, 35, 95, 0.20);
}


    /* Decorative circle */

    .rh-contact-card::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.055);
    }

    .rh-contact-card::after {
        content: "";
        position: absolute;
        bottom: -130px;
        left: -100px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.07);
    }


    /* =========================================================
   CARD CONTENT
   ========================================================= */

    .rh-contact-card > * {
        position: relative;
        z-index: 2;
    }

.rh-contact-card-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--rh-white);
    font-size: 21px;
}

.rh-contact-card-eyebrow {
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.rh-contact-card h3 {
    margin: 0 0 15px;
    color: var(--rh-white);
    font-family: var(--rh-font-heading);
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
}

.rh-contact-card > p {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   CARD BOTTOM
   ========================================================= */

.rh-contact-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rh-contact-accredited {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .rh-contact-accredited i {
        color: #8bd5a7;
        font-size: 21px;
    }

    .rh-contact-accredited span {
        color: rgba(255, 255, 255, 0.78);
        font-size: 15px;
        line-height: 1.5;
        font-weight: 600;
    }

.rh-contact-24x7 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

    .rh-contact-24x7 strong {
        color: var(--rh-white);
        font-size: 22px;
        line-height: 1;
        font-weight: 800;
    }

    .rh-contact-24x7 span {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.62);
        font-size: 15px;
        font-weight: 600;
    }


/* =========================================================
   1400+
   ========================================================= */

@media (min-width: 1400px) {

    .rh-contact {
        padding: 110px 0;
    }

    .rh-contact-wrap {
        gap: 90px;
    }

    .rh-contact-content h2 {
        font-size: 42px;
    }

    .rh-contact-card {
        min-height: 410px;
        padding: 48px;
    }
}


/* =========================================================
   1200 - 1399
   ========================================================= */

@media (min-width: 1200px) and (max-width: 1399px) {

    .rh-contact {
        padding: 90px 0;
    }

    .rh-contact-wrap {
        gap: 60px;
    }

    .rh-contact-content h2 {
        font-size: 37px;
    }

    .rh-contact-card {
        padding: 38px;
    }
}


/* =========================================================
   992 - 1199
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .rh-contact {
        padding: 80px 0;
    }

    .rh-contact-wrap {
        gap: 40px;
    }

    .rh-contact-content h2 {
        font-size: 33px;
    }

    .rh-contact-intro {
        font-size: 13px;
    }

    .rh-contact-card {
        min-height: 360px;
        padding: 30px;
    }

        .rh-contact-card h3 {
            font-size: 27px;
        }
}


/* =========================================================
   768 - 991
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .rh-contact {
        padding: 75px 0;
    }

    .rh-contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rh-contact-content {
        max-width: 720px;
    }

        .rh-contact-content h2 {
            font-size: 32px;
        }

    .rh-contact-card {
        min-height: 350px;
        padding: 38px;
    }
}


/* =========================================================
   576 - 767
   ========================================================= */

@media (min-width: 576px) and (max-width: 767px) {

    .rh-contact {
        padding: 65px 0;
    }

    .rh-contact-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rh-contact-content h2 {
        font-size: 29px;
    }

    .rh-contact-intro {
        font-size: 13px;
    }

    .rh-contact-card {
        min-height: 330px;
        padding: 32px;
    }

        .rh-contact-card h3 {
            font-size: 27px;
        }
}


/* =========================================================
   0 - 575
   ========================================================= */

@media (max-width: 575px) {

    .rh-contact {
        padding: 58px 0;
    }

    .rh-contact-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .rh-contact-content h2 {
        font-size: 27px;
        line-height: 1.25;
    }

    .rh-contact-intro {
        font-size: 12px;
        line-height: 1.75;
        margin-bottom: 26px;
    }

    .rh-contact-list {
        gap: 17px;
        margin-bottom: 27px;
    }

    .rh-contact-item {
        gap: 12px;
    }

    .rh-contact-icon {
        width: 43px;
        height: 43px;
        min-width: 43px;
        font-size: 15px;
    }

    .rh-contact-info > span {
        font-size: 9px;
    }

    .rh-contact-info p {
        font-size: 12px;
    }

    .rh-contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .rh-contact-btn {
        width: 100%;
        min-height: 46px;
    }

    .rh-contact-card {
        min-height: 320px;
        padding: 28px;
    }

    .rh-contact-card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
    }

    .rh-contact-card h3 {
        font-size: 25px;
    }

    .rh-contact-card > p {
        font-size: 12px;
    }
}


/* =========================================================
   0 - 400
   ========================================================= */

@media (max-width: 400px) {

    .rh-contact {
        padding: 50px 0;
    }

    .rh-contact-content h2 {
        font-size: 24px;
    }

    .rh-contact-card {
        min-height: 300px;
        padding: 24px;
    }

        .rh-contact-card h3 {
            font-size: 23px;
        }

    .rh-contact-card-bottom {
        margin-top: 25px;
        padding-top: 18px;
    }
}

/* =========================================================
   FOOTER
   ========================================================= */
.rh-footer {
    position: relative;
    width: 100%;
    background: var(--rh-primary);
    color: var(--rh-white);
    overflow: hidden;
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.rh-footer-main {
    position: relative;
    padding: 75px 0 65px;
    background: linear-gradient( 135deg, var(--rh-primary), var(--rh-primary-dark) );
}


    /* =========================================================
   BACKGROUND DECORATION
   ========================================================= */

    .rh-footer-main::before {
        content: "";
        position: absolute;
        top: -180px;
        right: -160px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.035);
        pointer-events: none;
    }

    .rh-footer-main::after {
        content: "";
        position: absolute;
        bottom: -180px;
        left: -150px;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.035);
        pointer-events: none;
    }


/* =========================================================
   GRID
   ========================================================= */

.rh-footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.45fr 1fr 1.25fr 1.15fr 1.15fr;
    column-gap: 45px;
}


/* =========================================================
   ABOUT COLUMN
   ========================================================= */

.rh-footer-about {
    padding-right: 25px;
}

.rh-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}

    .rh-footer-logo img {
        display: block;
        width: auto;
        max-width: 220px;
        max-height: 85px;
        object-fit: contain;
    }

.rh-footer-about > p {
    max-width: 330px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   ACCREDITATION
   ========================================================= */

.rh-footer-accreditation {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 23px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

    .rh-footer-accreditation i {
        color: #8bd5a7;
        font-size: 32px;
    }

    .rh-footer-accreditation span {
        color: rgba(255, 255, 255, 0.72);
        font-size: 15px;
        line-height: 1.5;
        font-weight: 600;
    }


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.rh-footer-column h3 {
    position: relative;
    margin: 5px 0 23px;
    padding-bottom: 11px;
    color: var(--rh-white);
    font-family: var(--rh-font-heading);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

    .rh-footer-column h3::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 28px;
        height: 2px;
        background: #80b12b;
        border-radius: 2px;
    }


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.rh-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .rh-footer-column ul li {
        margin-bottom: 10px;
    }

        .rh-footer-column ul li:last-child {
            margin-bottom: 0;
        }

        .rh-footer-column ul li a {
            display: inline-block;
            color: rgba(255, 255, 255, 0.64);
            font-size: 15px;
            line-height: 1.5;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }

            .rh-footer-column ul li a:hover {
                color: var(--rh-white);
                transform: translateX(3px);
            }


/* =========================================================
   CONTACT
   ========================================================= */

.rh-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

    .rh-footer-contact-item > i {
        width: 16px;
        margin-top: 3px;
        color: rgba(255, 255, 255, 0.58);
        font-size: 12px;
        text-align: center;
        flex-shrink: 0;
    }

    .rh-footer-contact-item p {
        margin: 0;
        color: rgba(255, 255, 255, 0.64);
        font-size: 15px;
        line-height: 1.65;
    }

    .rh-footer-contact-item a {
        color: rgba(255, 255, 255, 0.70);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .rh-footer-contact-item a:hover {
            color: var(--rh-white);
        }


/* =========================================================
   EMERGENCY
   ========================================================= */

.rh-footer-emergency {
    margin-top: 20px;
    padding: 15px 16px;
    background: rgba(213, 43, 43, 0.12);
    border: 1px solid rgba(213, 43, 43, 0.28);
    border-radius: 8px;
}

    .rh-footer-emergency span {
        display: block;
        margin-bottom: 7px;
        color: #ff9a9a;
        font-size:15px;
        line-height: 1;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .rh-footer-emergency a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: var(--rh-white);
        font-size: 12px;
        line-height: 1.3;
        font-weight: 700;
        text-decoration: none;
    }

        .rh-footer-emergency a i {
            color: #ff8b8b;
            font-size: 11px;
        }


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.rh-footer-bottom {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.10);
}

.rh-footer-bottom-wrap {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.rh-footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   LEGAL LINKS
   ========================================================= */

.rh-footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .rh-footer-legal li {
        display: flex;
        align-items: center;
    }

        .rh-footer-legal li:not(:last-child)::after {
            content: "";
            width: 1px;
            height: 11px;
            margin: 0 12px;
            background: rgba(255, 255, 255, 0.16);
        }

    .rh-footer-legal a {
        color: rgba(255, 255, 255, 0.52);
        font-size: 15px;
        line-height: 1.5;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .rh-footer-legal a:hover {
            color: var(--rh-white);
        }


/* =========================================================
   1400+
   ========================================================= */

@media (min-width: 1400px) {

    .rh-footer-main {
        padding: 85px 0 70px;
    }

    .rh-footer-grid {
        column-gap: 55px;
    }

    .rh-footer-column h3 {
        font-size: 15px;
    }
}


/* =========================================================
   1200 - 1399
   ========================================================= */

@media (min-width: 1200px) and (max-width: 1399px) {

    .rh-footer-grid {
        column-gap: 32px;
    }

    .rh-footer-about {
        padding-right: 10px;
    }
}


/* =========================================================
   992 - 1199
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .rh-footer-main {
        padding: 65px 0 55px;
    }

    .rh-footer-grid {
        grid-template-columns: 1.4fr 1fr 1.15fr 1.1fr 1.1fr;
        column-gap: 24px;
    }

    .rh-footer-about {
        padding-right: 5px;
    }

    .rh-footer-logo img {
        max-width: 165px;
    }

    .rh-footer-about > p {
        font-size: 11px;
    }

    .rh-footer-column ul li a {
        font-size: 10px;
    }
}


/* =========================================================
   768 - 991
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .rh-footer-main {
        padding: 65px 0 55px;
    }

    .rh-footer-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 45px;
        column-gap: 35px;
    }

    .rh-footer-about {
        grid-column: span 3;
        padding-right: 0;
    }

        .rh-footer-about > p {
            max-width: 600px;
        }

    .rh-footer-column h3 {
        margin-bottom: 20px;
    }
}


/* =========================================================
   576 - 767
   ========================================================= */

@media (min-width: 576px) and (max-width: 767px) {

    .rh-footer-main {
        padding: 58px 0 45px;
    }

    .rh-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
        column-gap: 30px;
    }

    .rh-footer-about {
        grid-column: span 2;
        padding-right: 0;
    }

        .rh-footer-about > p {
            max-width: 550px;
        }

    .rh-footer-bottom-wrap {
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .rh-footer-legal {
        justify-content: flex-start;
    }
}


/* =========================================================
   0 - 575
   ========================================================= */

@media (max-width: 575px) {

    .rh-footer-main {
        padding: 52px 0 40px;
    }

    .rh-footer-grid {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .rh-footer-about {
        padding-right: 0;
    }

    .rh-footer-logo {
        margin-bottom: 17px;
    }

        .rh-footer-logo img {
            max-width: 160px;
        }

    .rh-footer-about > p {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.75;
    }

    .rh-footer-column h3 {
        margin-bottom: 17px;
        font-size: 13px;
    }

    .rh-footer-column ul li {
        margin-bottom: 8px;
    }

        .rh-footer-column ul li a {
            font-size: 10px;
        }

    .rh-footer-contact-item {
        margin-bottom: 13px;
    }

    .rh-footer-bottom-wrap {
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 13px;
    }

    .rh-footer-copyright {
        font-size: 9px;
    }

    .rh-footer-legal {
        justify-content: flex-start;
        row-gap: 8px;
    }

        .rh-footer-legal a {
            font-size: 9px;
        }

        .rh-footer-legal li:not(:last-child)::after {
            margin: 0 8px;
        }
}


/* =========================================================
   0 - 400
   ========================================================= */

@media (max-width: 400px) {

    .rh-footer-main {
        padding: 45px 0 35px;
    }

    .rh-footer-logo img {
        max-width: 145px;
    }

    .rh-footer-about > p {
        font-size: 10px;
    }

    .rh-footer-column h3 {
        font-size: 12px;
    }

    .rh-footer-column ul li a {
        font-size: 9px;
    }

    .rh-footer-bottom-wrap {
        gap: 10px;
    }

    .rh-footer-legal li:not(:last-child)::after {
        margin: 0 6px;
    }
}





