/* ============================================================
   AURA HOSPITALS CSS-Style
   ============================================================ */

:root {
    --aura-blue: #1565C0;
    --aura-blue-dark: #0D47A1;
    --aura-orange: #E65100;
    --aura-orange-light: #FF6D00;
    --aura-dark: #1A2340;
    --aura-border: #e8e8e8;
    --aura-white: #ffffff;
}

/* ============================================================
   AURA HEADER
   ============================================================ */

.aura-header {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 1050;
}


/* ============================================================
   TOP HEADER
   ============================================================ */

.aura-header-top {
    background: #fff;
    border-bottom: 1px solid #eeeeee;
}

.aura-header-inner {
    min-height: 115px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ============================================================
   LOGO
   ============================================================ */

.aura-logo {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
}

.aura-logo img {
    width: 205px;
    height: auto;
    display: block;
}


/* ============================================================
   RIGHT HEADER
   ============================================================ */

.aura-header-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}


/* ============================================================
   PHONE
   ============================================================ */

.aura-phone {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;

    color: #1A2340;
}

.aura-phone:hover {
    color: #1A2340;
}


.aura-phone-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1565C0;
    color: #fff;

    font-size: 20px;
}


.aura-phone-content {
    display: flex;
    flex-direction: column;
}


.aura-phone-content small {
    font-size: 14px;
    line-height: 1.3;
    color: #1A2340;
}


.aura-phone-content strong {
    font-size: 27px;
    line-height: 1.2;

    color: #1565C0;
    font-weight: 700;
}


/* ============================================================
   APPOINTMENT BUTTON
   ============================================================ */

.aura-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 30px;

    background: #1565C0;
    color: #fff !important;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: all .25s ease;
}


.aura-book-btn:hover {
    background: #0D47A1;
    color: #fff !important;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

.aura-navigation {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}


.aura-nav-menu {
    width: 100%;

    display: flex;
    align-items: stretch;
    justify-content: center;
}


.aura-nav-menu .nav-item {
    border-left: 1px solid #eeeeee;
}


.aura-nav-menu .nav-item:last-child {
    border-right: 1px solid #eeeeee;
}


.aura-nav-menu .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 20px !important;

    color: #1A2340 !important;

    background: #fff !important;

    border-radius: 0 !important;

    font-size: 15px;
    font-weight: 500;

    white-space: nowrap;

    transition: all .2s ease;
}


.aura-nav-menu .nav-link:hover,
.aura-nav-menu .nav-link.active {
    color: #1565C0 !important;
    background: #f7f9fc !important;
}


/* ============================================================
   DROPDOWN
   ============================================================ */

.aura-nav-menu .dropdown-menu {
    margin-top: 0;

    border: 1px solid #e5e5e5;
    border-radius: 0;

    box-shadow: 0 12px 35px rgba(0,0,0,.12);

    padding: 10px 0;
}


.aura-nav-menu .dropdown-item {
    padding: 10px 20px;

    font-size: 14px;

    color: #1A2340;
}


.aura-nav-menu .dropdown-item:hover {
    color: #1565C0;

    background: #f5f8fc;
}


.aura-nav-menu .dropdown-item i {
    width: 22px;

    color: #1565C0;

    margin-right: 5px;
}


/* ============================================================
   MOBILE BUTTON
   ============================================================ */

.aura-mobile-toggle {
    width: 45px;
    height: 40px;

    border: 1px solid #ddd !important;
    border-radius: 3px;

    padding: 7px !important;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    margin: 10px 15px;
}


.aura-mobile-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    background: #1565C0;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1199px) {

    .aura-header-inner {
        min-height: 90px;
    }

    .aura-logo img {
        width: 175px;
    }

    .aura-header-actions {
        gap: 18px;
    }

    .aura-phone-content strong {
        font-size: 21px;
    }

    .aura-phone-content small {
        font-size: 12px;
    }

    .aura-book-btn {
        padding: 0 20px;
        font-size: 13px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 991px) {

    .aura-header-inner {
        min-height: 75px;
        padding: 10px 15px;
    }

    .aura-logo img {
        width: 150px;
    }

    .aura-header-actions {
        gap: 10px;
    }

    .aura-phone-content {
        display: none;
    }

    .aura-phone-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .aura-book-btn {
        min-height: 42px;
        padding: 0 15px;
        font-size: 12px;
    }

    .aura-navigation .container {
        padding: 0;
    }

    .aura-nav-menu {
        display: block;
    }

    .aura-nav-menu .nav-item {
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid #eeeeee;
    }

    .aura-nav-menu .nav-link {
        justify-content: flex-start;
        min-height: 48px;
        padding: 0 20px !important;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 575px) {

    .aura-logo img {
        width: 125px;
    }

    .aura-header-actions {
        gap: 7px;
    }

    .aura-phone-icon {
        width: 38px;
        height: 38px;
    }

    .aura-book-btn {
        padding: 0 10px;
        font-size: 11px;
    }

}

/* ============================================================
   SPECIALITIES MEGA MENU
   ============================================================ */

.aura-nav-menu .mega-menu {
    position: static;
}

.aura-mega-menu {
    width: 100%;
    left: 0 !important;
    right: 0 !important;

    margin: 0 !important;

    padding: 30px 40px !important;

    border: 1px solid #e8e8e8 !important;
    border-radius: 0 !important;

    background: #fff;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);

    transform: none !important;
}


/* GRID */

.aura-mega-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


/* LIST */

.aura-mega-list {
    list-style: none;

    margin: 0;
    padding: 0;
}


/* ITEM */

.aura-mega-list li {
    display: flex;
    align-items: center;

    min-height: 45px;

    padding: 6px 10px;

    border-bottom: 1px solid #f0f0f0;
}


/* ICON */

.aura-mega-list li i {
    width: 30px;

    color: #1565C0;

    font-size: 16px;

    flex-shrink: 0;
}


/* LINK */

.aura-mega-list li a {
    color: #1A2340;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition: all .2s ease;
}


.aura-mega-list li:hover {
    background: #f7f9fc;
}


.aura-mega-list li:hover a {
    color: #1565C0;
}


.aura-mega-list li:hover i {
    color: #E65100;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991px) {

    .aura-nav-menu .mega-menu {
        position: relative;
    }

    .aura-mega-menu {
        width: 100%;

        padding: 15px !important;

        box-shadow: none;

        border: none !important;
    }

    .aura-mega-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 575px) {

    .aura-mega-grid {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   MAIN FOOTER
   ============================================================ */

.aura-footer {
    width: 100%;
    background: var(--aura-blue);
    color: #fff;
}

/* ============================================================
   MAIN FOOTER SECTION
   ============================================================ */

.aura-footer-main {
    width: 100%;

    background: var(--aura-blue);

    padding: 55px 0 0;
}


/* ============================================================
   FOOTER CONTAINER
   ============================================================ */

.aura-footer-main .container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding-left: 30px;
    padding-right: 30px;
}


/* ============================================================
   THREE COLUMN GRID
   ============================================================ */

.aura-footer-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        minmax(0, 1.45fr);

    align-items: stretch;
}


/* ============================================================
   FOOTER COLUMNS
   ============================================================ */

.aura-footer-column {
    min-width: 0;

    padding: 0 40px;
}


/* LEFT */

.aura-footer-links {
    padding-left: 0;

    border-right: 1px solid rgba(255,255,255,.25);
}


/* CENTER */

.aura-footer-brand {
    padding-left: 40px;
    padding-right: 40px;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.25);

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* RIGHT */

.aura-footer-specialities {
    padding-right: 0;
}


/* ============================================================
   FOOTER HEADINGS
   ============================================================ */

.aura-footer-column h3 {
    margin: 0 0 22px;

    color: #fff;

    font-size: 22px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: .2px;
}


/* ============================================================
   QUICK LINKS
   ============================================================ */

.aura-links-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    column-gap: 30px;

    row-gap: 0;
}


.aura-footer-links a {
    width: 100%;

    display: flex;
    align-items: flex-start;

    gap: 6px;

    padding: 7px 0;

    color: rgba(255,255,255,.95);

    text-decoration: none;

    font-size: 15px;

    line-height: 1.4;

    transition: all .2s ease;
}


.aura-footer-links a i {
    width: 12px;

    flex-shrink: 0;

    margin-top: 4px;

    color: var(--aura-orange-light);

    font-size: 10px;
}


.aura-footer-links a:hover {
    color: var(--aura-orange-light);

    padding-left: 4px;
}


.aura-footer-links a:hover i {
    color: #fff;
}


/* ============================================================
   CENTER LOGO
   ============================================================ */

.aura-footer-logo {
    width: 100%;

    display: flex;
    justify-content: center;
}


.aura-footer-logo img {
    display: block;

    width: 190px;
    max-width: 100%;
    height: auto;

    margin: 0 auto 15px;
}


/* ============================================================
   CENTER TAGLINE
   ============================================================ */

.aura-footer-tagline {
    width: 100%;
    max-width: 270px;

    margin: 0 auto 22px;

    color: rgba(255,255,255,.85);

    font-size: 14px;

    line-height: 1.5;

    text-align: center;
}


/* ============================================================
   SOCIAL HEADING
   ============================================================ */

.aura-footer-brand h4 {
    margin: 0 0 16px;

    color: #fff;

    font-size: 17px;

    line-height: 1.2;

    font-weight: 700;
}


/* ============================================================
   SOCIAL ICONS
   ============================================================ */

.aura-social-icons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;
}


.aura-social-icons a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.65);

    border-radius: 50%;

    color: #fff;

    background: transparent;

    text-decoration: none;

    font-size: 16px;

    transition: all .25s ease;
}


.aura-social-icons a:hover {
    background: var(--aura-orange);

    border-color: var(--aura-orange);

    color: #fff;

    transform: translateY(-3px);
}


/* ============================================================
   SPECIALITIES
   ============================================================ */

.aura-speciality-footer-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        minmax(0, 1fr);

    column-gap: 22px;

    row-gap: 3px;
}


.aura-speciality-footer-grid a {
    min-width: 0;

    display: flex;
    align-items: flex-start;

    gap: 7px;

    padding: 5px 0;

    color: rgba(255,255,255,.95);

    text-decoration: none;

    font-size: 14px;

    line-height: 1.5;

    transition: all .2s ease;
}


.aura-speciality-footer-grid a i {
    width: 10px;

    flex-shrink: 0;

    margin-top: 5px;

    color: var(--aura-orange-light);

    font-size: 9px;
}


.aura-speciality-footer-grid a span {
    min-width: 0;
}


.aura-speciality-footer-grid a:hover {
    color: var(--aura-orange-light);

    padding-left: 3px;
}


/* ============================================================
   VIEW MORE
   ============================================================ */

.aura-view-more {
    display: inline-block;

    margin-top: 20px;

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: all .2s ease;
}


.aura-view-more:hover {
    color: var(--aura-orange-light);
}


/* ============================================================
   FOOTER BOTTOM
   ============================================================ */

.aura-footer-bottom {
    width: 100%;

    margin-top: 55px;

    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,.25);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;
}


/* ============================================================
   COPYRIGHT
   ============================================================ */

.aura-copyright {
    color: rgba(255,255,255,.9);

    font-size: 13px;

    line-height: 1.5;
}


.aura-designed {
    margin-left: 5px;
}


.aura-designed a {
    color: var(--aura-orange-light);

    font-weight: 600;

    text-decoration: none;
}


.aura-designed a:hover {
    color: #fff;
}


/* ============================================================
   FOOTER LEGAL LINKS
   ============================================================ */

.aura-footer-legal {
    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}


.aura-footer-legal a {
    color: rgba(255,255,255,.7);

    font-size: 12px;

    text-decoration: none;

    transition: color .2s ease;
}


.aura-footer-legal a:hover {
    color: #fff;
}


/* ============================================================
   LARGE TABLET
   ============================================================ */

@media (max-width: 1199px) {

    .aura-footer-main .container {
        padding-left: 25px;
        padding-right: 25px;
    }


    .aura-footer-column {
        padding-left: 25px;
        padding-right: 25px;
    }


    .aura-footer-links {
        padding-left: 0;
    }


    .aura-footer-specialities {
        padding-right: 0;
    }


    .aura-footer-brand {
        padding-left: 25px;
        padding-right: 25px;
    }


    .aura-links-grid {
        column-gap: 15px;
    }


    .aura-speciality-footer-grid {
        column-gap: 15px;
    }

}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991px) {

    .aura-footer-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
    }


    .aura-footer-links {
        padding-left: 0;

        border-right: 1px solid rgba(255,255,255,.25);
    }


    .aura-footer-brand {
        border-right: none;
    }


    .aura-footer-specialities {
        grid-column: 1 / -1;

        margin-top: 40px;

        padding-top: 35px;

        padding-right: 0;

        border-top: 1px solid rgba(255,255,255,.25);
    }


    .aura-speciality-footer-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    .aura-footer-bottom {
        margin-top: 40px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .aura-footer-main {
        padding-top: 40px;
    }


    .aura-footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .aura-footer-column,
    .aura-footer-links,
    .aura-footer-brand,
    .aura-footer-specialities {
        padding-left: 0;
        padding-right: 0;

        border: none;
    }


    /* CENTER BRAND FIRST */

    .aura-footer-brand {
        order: -1;

        padding-bottom: 30px;

        border-bottom: 1px solid rgba(255,255,255,.25);
    }


    /* QUICK LINKS */

    .aura-footer-links {
        padding-bottom: 30px;

        border-bottom: 1px solid rgba(255,255,255,.25);
    }


    .aura-links-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        column-gap: 20px;
    }


    /* SPECIALITIES */

    .aura-footer-specialities {
        grid-column: auto;

        margin-top: 0;

        padding-top: 0;

        border-top: none;
    }


    .aura-speciality-footer-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        column-gap: 20px;
    }


    .aura-footer-bottom {
        margin-top: 35px;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }


    .aura-footer-legal {
        gap: 12px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .aura-links-grid {
        grid-template-columns: 1fr;
    }


    .aura-speciality-footer-grid {
        grid-template-columns: 1fr;
    }


    .aura-footer-column h3 {
        font-size: 20px;
    }


    .aura-footer-logo img {
        width: 175px;
    }


    .aura-footer-bottom {
        align-items: flex-start;
    }


    .aura-footer-legal {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

}


/* ============================================================
   EMERGENCY + WHATSAPP FLOATING BUTTONS
   ============================================================ */

.float-whatsapp {
    position: fixed;

    left: 18px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff !important;

    text-decoration: none;

    font-size: 20px;

    z-index: 9998;

    box-shadow: 0 4px 15px rgba(0,0,0,.20);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


/* WhatsApp */

.float-whatsapp {
    bottom: 68px;

    background: #25D366;
}


.float-whatsapp:hover {
    background: #1ebe5d;

    color: #fff;

    transform: scale(1.08);

    box-shadow: 0 6px 20px rgba(37,211,102,.35);
}


/* ============================================================
   AI CHATBOT
   ============================================================ */

.chatbot-wrap {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 9999;
}


/* Chatbot Button */

.chatbot-btn {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: var(--aura-blue);

    color: #fff;

    font-size: 23px;

    cursor: pointer;

    box-shadow: 0 5px 18px rgba(0,0,0,.25);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.chatbot-btn:hover {
    background: var(--aura-blue-dark);

    transform: scale(1.08);

    box-shadow: 0 7px 22px rgba(21,101,192,.35);
}


/* ============================================================
   CHATBOT POPUP
   ============================================================ */

.chatbot-popup {
    position: absolute;

    right: 0;

    bottom: 68px;

    width: 350px;

    max-width: calc(100vw - 30px);

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 10px 40px rgba(0,0,0,.20);

    border: 1px solid #e5e5e5;

    display: none;
}


/* ============================================================
   CHATBOT HEADER
   ============================================================ */

.chatbot-header {
    min-height: 55px;

    padding: 0 16px;

    display: flex;
    align-items: center;

    gap: 9px;

    background: var(--aura-blue);

    color: #fff;

    font-size: 15px;

    font-weight: 600;
}


.chatbot-header > i {
    font-size: 19px;

    color: #fff;
}


/* ============================================================
   CHATBOT BODY
   ============================================================ */

.chatbot-body {
    height: 285px;

    padding: 15px;

    overflow-y: auto;

    background: #fff;

    color: var(--aura-dark);

    font-size: 13px;

    line-height: 1.5;
}


/* Scrollbar */

.chatbot-body::-webkit-scrollbar {
    width: 5px;
}


.chatbot-body::-webkit-scrollbar-track {
    background: #f5f5f5;
}


.chatbot-body::-webkit-scrollbar-thumb {
    background: #c5c5c5;

    border-radius: 10px;
}


/* ============================================================
   CHAT SUGGESTION BUTTONS
   ============================================================ */

.chatbot-body .btn {
    border: none !important;

    padding: 6px 11px;

    cursor: pointer;

    transition: all .2s ease;
}


.chatbot-body .btn:hover {
    transform: translateY(-1px);

    box-shadow: 0 2px 8px rgba(0,0,0,.10);
}


/* ============================================================
   CHAT INPUT
   ============================================================ */

.chatbot-input {
    height: 58px;

    padding: 8px 10px;

    display: flex;
    align-items: center;

    gap: 8px;

    background: #fff;

    border-top: 1px solid #eeeeee;
}


.chatbot-input input {
    flex: 1;

    min-width: 0;

    height: 40px;

    padding: 0 12px;

    border: 1px solid #ddd;

    border-radius: 20px;

    outline: none;

    color: var(--aura-dark);

    background: #fff;

    font-size: 13px;
}


.chatbot-input input:focus {
    border-color: var(--aura-blue);

    box-shadow: 0 0 0 2px rgba(21,101,192,.10);
}


.chatbot-input input::placeholder {
    color: #999;
}


.chatbot-input button {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: var(--aura-blue);

    color: #fff;

    cursor: pointer;

    font-size: 14px;

    transition: all .2s ease;
}


.chatbot-input button:hover {
    background: var(--aura-blue-dark);

    transform: scale(1.05);
}


/* ============================================================
   BACK TO TOP
   ============================================================ */

#backTop {
    position: fixed;

    right: 22px;
    bottom: 90px;

    width: 42px;
    height: 42px;

    display: none;
    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 4px;

    background: var(--aura-orange);

    color: #fff;

    font-size: 16px;

    cursor: pointer;

    z-index: 9997;

    box-shadow: 0 4px 12px rgba(0,0,0,.18);

    transition:
        background .2s ease,
        transform .2s ease;
}


#backTop:hover {
    background: var(--aura-blue);

    transform: translateY(-3px);
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .float-whatsapp {
        left: 12px;

        width: 43px;
        height: 43px;

        font-size: 18px;
    }


    .float-whatsapp {
        bottom: 54px;
    }


    .chatbot-wrap {
        right: 14px;

        bottom: 14px;
    }


    .chatbot-btn {
        width: 52px;
        height: 52px;

        font-size: 21px;
    }


    .chatbot-popup {
        right: 0;

        bottom: 63px;

        width: 330px;

        max-width: calc(100vw - 28px);
    }


    .chatbot-body {
        height: 270px;
    }


    #backTop {
        right: 14px;

        bottom: 75px;

        width: 38px;
        height: 38px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .chatbot-popup {
        width: calc(100vw - 24px);

        right: -2px;
    }

    .chatbot-body {
        height: 250px;
    }

    .float-whatsapp {
        width: 40px;
        height: 40px;

        font-size: 16px;
    }

    .float-whatsapp {
        bottom: 48px;
    }

}

/* ============================================================
   AURA HOSPITALS
   CONTACT + GOOGLE MAP
   ============================================================ */

.aura-contact-map {
    position: relative;

    width: 100%;

    height: 540px;

    overflow: hidden;

    background: #d8b56a;
}


/* ============================================================
   GOOGLE MAP
   ============================================================ */

.aura-map {
    position: absolute;

    top: 0;
    right: 0;

    width: 80%;
    height: 100%;

    z-index: 1;
}


.aura-map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* ============================================================
   GOLD LEFT AREA
   ============================================================ */

.aura-map-gold {
    position: absolute;

    top: 0;
    left: 0;

    width: 20%;
    height: 100%;

    background: #e65100;

    z-index: 2;

    pointer-events: none;
}


/* ============================================================
   CONTACT CARD
   ============================================================ */

.aura-contact-card {
    position: absolute;

    left: 8.5%;

    bottom: 0;

    width: 365px;

    background: #fff;

    z-index: 5;

    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}


/* ============================================================
   CONTACT ITEM
   ============================================================ */

.aura-contact-item {
    width: 100%;
    padding: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #fff;
}


.aura-contact-item + .aura-contact-item {
    border-top: 1px solid #e5e5e5;
}


/* ============================================================
   CONTACT ICON
   ============================================================ */

.aura-contact-icon {
    margin-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--aura-blue, #1565C0);

    font-size: 55px;

    line-height: 1;
}


/* ============================================================
   CONTACT TITLE
   ============================================================ */

.aura-contact-title {
    margin-bottom: 3px;

    color: #1a1a1a;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 400;
}


/* ============================================================
   PHONE
   ============================================================ */

.aura-contact-phone {
    color: #000;

    font-size: 27px;

    line-height: 1.25;

    font-weight: 700;

    text-decoration: none;

    transition: color .2s ease;
}


.aura-contact-phone:hover {
    color: var(--aura-blue, #1565C0);
}


/* ============================================================
   EMAIL
   ============================================================ */

.aura-contact-email {
    color: #000;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: color .2s ease;
}


.aura-contact-email:hover {
    color: var(--aura-blue, #1565C0);
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1199px) {

    .aura-contact-map {
        height: 500px;
    }


    .aura-map {
        width: 78%;
    }


    .aura-map-gold {
        width: 22%;
    }


    .aura-contact-card {
        left: 6%;

        width: 340px;
    }


    .aura-contact-phone {
        font-size: 25px;
    }


    .aura-contact-email {
        font-size: 19px;
    }

}


/* ============================================================
   TABLET / SMALL LAPTOP
   ============================================================ */

@media (max-width: 991px) {

    .aura-contact-map {
        height: 470px;
    }


    .aura-map {
        width: 75%;
    }


    .aura-map-gold {
        width: 25%;
    }


    .aura-contact-card {
        left: 4%;

        width: 320px;
    }


    .aura-contact-icon {
        font-size: 48px;
    }


    .aura-contact-phone {
        font-size: 23px;
    }


    .aura-contact-email {
        font-size: 17px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .aura-contact-map {
        height: auto;

        display: flex;
        flex-direction: column;

        background: #d8b56a;
    }


    /* MAP FIRST */

    .aura-map {
        position: relative;

        top: auto;
        right: auto;

        width: 100%;

        height: 350px;

        order: 1;
    }


    /* REMOVE GOLD OVERLAY */

    .aura-map-gold {
        display: none;
    }


    /* CONTACT CARD */

    .aura-contact-card {
        position: relative;

        left: auto;
        top: auto;

        transform: none;

        width: calc(100% - 30px);

        margin: -60px auto 30px;

        order: 2;

        z-index: 10;
    }


    .aura-contact-item {
        padding: 10px 15px;
    }


    .aura-contact-icon {
        font-size: 45px;
    }


    .aura-contact-phone {
        font-size: 23px;
    }


    .aura-contact-email {
        font-size: 18px;

        white-space: normal;

        word-break: break-word;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .aura-map {
        height: 300px;
    }


    .aura-contact-card {
        width: calc(100% - 24px);

        margin-top: -45px;
    }


    .aura-contact-title {
        font-size: 15px;
    }


    .aura-contact-phone {
        font-size: 21px;
    }


    .aura-contact-email {
        font-size: 16px;
    }

}

/* ============================================================
   AURA HOSPITALS – HERO BANNER
   Image Only
   ============================================================ */

.aura-hero {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.aura-hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991px) {

    .aura-hero {
        height: 550px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .aura-hero {
        height: 420px;
    }

    .aura-hero img {
        object-position: center center;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 575px) {

    .aura-hero {
        height: 320px;
    }

}

/* ================================
   SPECIALITIES SECTION
================================ */

#specialities {
    background: #fff;
    padding: 70px 0;
}


/* SECTION TITLE */

#specialities .section-label {
    display: block;
    color: var(--aura-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

#specialities .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1c2945;
    margin: 0;
}

#specialities .section-title span {
    color: var(--aura-blue);
}

#specialities .section-subtitle {
    color: #727b8d;
    font-size: 16px;
    margin-top: 12px;
}

#specialities .s-divider {
    width: 60px;
    height: 3px;
    background: var(--aura-orange);
    margin: 22px auto 40px;
}


/* ================================
   TAB WRAPPER
================================ */

.speciality-tabs-wrap {
    position: relative;
    width: 100%;
    border: 1px solid #e3e8ef;
    background: #fff;
    overflow: hidden;
}


/* TAB SCROLLER */

.speciality-tabs {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.speciality-tabs::-webkit-scrollbar {
    display: none;
}


/* INDIVIDUAL TAB */

.speciality-tab {
    position: relative;
    flex: 0 0 180px;
    min-height: 145px;

    border: 0;
    border-right: 1px solid #e3e8ef;

    background: #fff;

    color: #17233f;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 13px;

    cursor: pointer;

    transition: all .3s ease;
}


/* ICON */

.tab-icon {
    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: #eef6ff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--aura-blue);

    font-size: 25px;

    transition: all .3s ease;
}


/* TEXT */

.speciality-tab span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    padding: 0 8px;
}


/* ACTIVE TAB */

.speciality-tab.active {
    background: var(--aura-blue);
    color: #fff;
}

.speciality-tab.active .tab-icon {
    background: #fff;
    color: var(--aura-blue);
}


/* ACTIVE BOTTOM POINTER */

.speciality-tab.active::after {
    content: "";

    position: absolute;

    bottom: -1px;
    left: 50%;

    transform: translateX(-50%);

    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}


/* ================================
   ARROWS
================================ */

.spec-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 5;

    width: 42px;
    height: 42px;

    border: none;

    background: var(--aura-blue);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 20px;

    box-shadow: 0 3px 10px rgba(0,0,0,.15);
}

.spec-prev {
    left: 0;
}

.spec-next {
    right: 0;
}

.spec-arrow:hover {
    background: var(--aura-orange);
}


/* ================================
   CONTENT
================================ */

.speciality-content {
    margin-top: 35px;
}


.speciality-panel {
    display: none;

    padding: 35px 30px;

    border: 1px solid #e4e9ef;

    background: #fff;

    animation: specialityFade .35s ease;
}


.speciality-panel.active {
    display: block;
}


@keyframes specialityFade {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* LEFT CONTENT */

.speciality-info h3 {
    font-size: 30px;
    font-weight: 700;
    color: #17233f;
    margin-bottom: 15px;
}

.speciality-info p {
    color: #687386;
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 20px;
}


/* LEARN MORE */

.speciality-link {
    color: var(--aura-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.speciality-link:hover {
    color: var(--aura-orange);
}


/* RIGHT SIDE */

.speciality-side {
    border-left: 1px solid #e4e9ef;
    padding-left: 35px;
}

.speciality-side h4 {
    color: #17233f;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-line {
    padding: 13px 0;
    border-bottom: 1px solid #edf0f4;

    color: #3e485c;
    font-size: 15px;
}

.service-line i {
    color: var(--aura-orange);
    margin-right: 8px;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    #specialities {
        padding: 50px 0;
    }

    #specialities .section-title {
        font-size: 30px;
    }

    .speciality-tab {
        flex: 0 0 145px;
        min-height: 125px;
    }

    .tab-icon {
        width: 52px;
        height: 52px;
        font-size: 21px;
    }

    .speciality-tab span {
        font-size: 13px;
    }

    .speciality-panel {
        padding: 25px 20px;
    }

    .speciality-info h3 {
        font-size: 25px;
    }

    .speciality-side {
        border-left: 0;
        border-top: 1px solid #e4e9ef;
        padding-left: 0;
        padding-top: 25px;
        margin-top: 25px;
    }

}

/* FORCE ACTIVE SPECIALITY TAB */
#specialityTabs .speciality-tab.active {
    background-color: #1769c2 !important;
    color: #ffffff !important;
}

#specialityTabs .speciality-tab.active span {
    color: #ffffff !important;
}

#specialityTabs .speciality-tab.active .tab-icon {
    background-color: #ffffff !important;
    color: #1769c2 !important;
}

/* Active tab bottom arrow */
#specialityTabs .speciality-tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
}


/* LEFT / RIGHT ARROWS */
#specPrev,
#specNext {
    background: #1769c2 !important;
    color: #ffffff !important;
    border: none !important;
}

#specPrev:hover,
#specNext:hover {
    background: #f47b20 !important;
    color: #ffffff !important;
}


/* =========================================
   AURA TESTIMONIALS
   Arete-inspired layout
========================================= */

.aura-testimonials {
    background: #ffffff;
    padding: 70px 0 55px;
}


/* Heading */

.aura-testimonial-heading {
    margin-bottom: 30px;
}

.aura-testimonial-label {
    display: block;
    color: var(--aura-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.aura-testimonial-heading h2 {
    margin: 0;
    color: #16213d;
    font-size: 40px;
    font-weight: 700;
}

.aura-testimonial-heading h2 span {
    color: var(--aura-blue);
}

.aura-testimonial-line {
    width: 60px;
    height: 3px;
    background: var(--aura-orange);
    margin: 16px auto 0;
}


/* Cards */

.aura-testimonial-card {
    position: relative;
    height: 350px;
    background: #ffffff;

    border: 1px solid #eeeeee;

    padding: 48px 26px 22px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);

    transition: all 0.3s ease;
}

.aura-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* Google Ribbon */

.aura-google-label {
    position: absolute;

    top: 15px;
    left: -10px;

    background: var(--aura-blue);

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    padding: 6px 12px;

    z-index: 2;
}


/* Small triangle under Google label */

.aura-google-label::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    border-top: 8px solid #073d79;
    border-left: 8px solid transparent;
}


/* Header */

.aura-testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 12px;
}

.aura-testimonial-header h4 {
    margin: 0 0 7px;

    color: #18213a;

    font-size: 22px;
    font-weight: 700;
}


/* Stars */

.aura-stars {
    display: flex;
    gap: 3px;
}

.aura-stars i {
    color: gold;
    font-size: 17px;
}


/* Patient Circle */

.aura-patient-avatar {
    width: 86px;
    height: 86px;

    flex: 0 0 86px;

    border-radius: 50%;

    background: var(--aura-blue);

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;
    font-weight: 700;
}


/* Testimonial text */

.aura-testimonial-scroll {
    height: 145px;

    overflow-y: auto;

    padding-right: 18px;

    margin-top: 10px;
}

.aura-testimonial-scroll p {
    margin: 0;

    color: #333d52;

    font-size: 16px;

    line-height: 1.75;
}


/* Scrollbar */

.aura-testimonial-scroll::-webkit-scrollbar {
    width: 6px;
}

.aura-testimonial-scroll::-webkit-scrollbar-track {
    background: #eeeeee;

    border-radius: 10px;
}

.aura-testimonial-scroll::-webkit-scrollbar-thumb {
    background: var(--aura-orange);

    border-radius: 10px;
}


/* Firefox */

.aura-testimonial-scroll {
    scrollbar-width: thin;
    scrollbar-color: var(--orange) #eeeeee;
}


/* Disclaimer */

.aura-testimonial-disclaimer {
    position: absolute;

    left: 26px;
    right: 26px;
    bottom: 20px;

    color: #555;

    font-size: 13px;

    padding-top: 10px;
}

.aura-testimonial-disclaimer strong {
    color: #111;
    font-size: 16px;
}


/* View All */

.aura-testimonial-button {
    margin-top: 30px;
}

.aura-testimonial-button a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 115px;

    padding: 13px 28px;

    background: var(--aura-blue);

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}

.aura-testimonial-button a:hover {
    background: var(--aura-orange);
    color: #ffffff;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .aura-testimonials {
        padding: 50px 0 40px;
    }

    .aura-testimonial-heading h2 {
        font-size: 30px;
    }

    .aura-testimonial-card {
        height: 350px;
    }

    .aura-testimonial-header h4 {
        font-size: 19px;
    }

    .aura-patient-avatar {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
        font-size: 21px;
    }

}

/* =====================================================
   AURA DOCTORS - ARETE STYLE
===================================================== */

.aura-doctors {
    background: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}


/* HEADING */

.doctors-heading {
    margin-bottom: 32px;
}

.doctors-heading .section-label {
    display: block;
    color: var(--aura-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.doctors-heading .section-title {
    margin-bottom: 8px;
}

.doctors-heading .section-title span {
    color: var(--aura-blue);
}

.doctors-heading p {
    margin: 0;
    color: #6f7b91;
    font-size: 16px;
}


/* =====================================================
   SPECIALITY TABS
===================================================== */

.doctor-tabs-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto 30px;
}


/* SCROLL AREA */

.doctor-tabs {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-behavior: smooth;

    border-top: 1px solid #e4e9f0;
    border-bottom: 1px solid #e4e9f0;

    scrollbar-width: none;
    justify-content: center;
}

.doctor-tabs::-webkit-scrollbar {
    display: none;
}


/* TAB */

.doctor-tab {
    flex: 0 0 auto;

    min-width: 150px;
    height: 65px;

    padding: 0 22px;

    border: 0;
    border-right: 1px solid #e4e9f0;

    background: #fff;

    color: #1d2b4f;

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;

    transition: all .25s ease;

    white-space: nowrap;
}


/* FIRST BORDER */

.doctor-tab:first-child {
    border-left: 1px solid #e4e9f0;
}


/* ACTIVE TAB */

.doctor-tab.active {
    background: var(--aura-blue);
    color: #fff;
    font-weight: 600;
}


/* HOVER */

.doctor-tab:not(.active):hover {
    background: #f2f7fd;
    color: var(--aura-blue);
}


/* =====================================================
   LEFT / RIGHT ARROWS
===================================================== */

.doctor-tab-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 5;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 0;

    background: var(--aura-blue);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 3px 12px rgba(0,0,0,.12);

    transition: all .2s ease;
}

.doctor-tab-arrow:hover {
    background: var(--aura-orange);
}


/* LEFT */

.doctor-tab-prev {
    left: -12px;
}


/* RIGHT */

.doctor-tab-next {
    right: -12px;
}


/* =====================================================
   DOCTOR GRID
===================================================== */

.doctor-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}


/* =====================================================
   DOCTOR CARD
===================================================== */

.doctor-card-home {

    display: flex;

    width: 100%;
    min-height: 275px;

    background: #fff;

    border: 1px solid #e6ebf2;

    box-shadow: 0 8px 25px rgba(20, 50, 90, .06);

    transition: all .3s ease;
}

.doctor-card-home:hover {

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(20, 50, 90, .12);

    border-color: #d7e3f1;
}


/* =====================================================
   DOCTOR IMAGE
===================================================== */

.doctor-img-home {

    width: 42%;

    min-width: 42%;

    background: #f1f5fa;

    overflow: hidden;
}

.doctor-img-home img {

    width: 100%;
    height: 100%;

    min-height: 275px;

    object-fit: cover;

    display: block;

    transition: transform .4s ease;
}

.doctor-card-home:hover .doctor-img-home img {
    transform: scale(1.03);
}


/* =====================================================
   DOCTOR CONTENT
===================================================== */

.doctor-content-home {

    flex: 1;

    padding: 25px 25px 22px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}


/* DEPARTMENT */

.doctor-dept-home {

    color: var(--aura-orange);

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 7px;
}


/* NAME */

.doctor-content-home h4 {

    margin: 0 0 8px;

    color: #172443;

    font-size: 21px;

    font-weight: 700;

    line-height: 1.3;

    text-transform: uppercase;
}


/* DESIGNATION */

.doctor-designation {

    margin: 0 0 15px;

    color: #6c778b;

    font-size: 14px;

    line-height: 1.5;
}


/* EXPERIENCE */

.doctor-exp-home {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #34415d;

    font-size: 13px;

    margin-bottom: 20px;
}

.doctor-exp-home i {
    color: var(--aura-orange);
    font-size: 16px;
}


/* BUTTON */

.doctor-btn-home {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    padding: 11px 20px;

    background: var(--aura-blue);

    color: #fff !important;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: all .25s ease;
}

.doctor-btn-home:hover {

    background: var(--aura-orange);

    color: #fff !important;
}

.doctor-btn-home i {
    transition: transform .2s ease;
}

.doctor-btn-home:hover i {
    transform: translateX(4px);
}


/* =====================================================
   HIDE FILTERED DOCTORS
===================================================== */

.doctor-item.doctor-hidden {
    display: none;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .doctor-list {
        grid-template-columns: 1fr;
    }

    .doctor-card-home {
        min-height: 260px;
    }

    .doctor-img-home img {
        min-height: 260px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575px) {

    .aura-doctors {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .doctors-heading .section-title {
        font-size: 30px;
    }

    .doctors-heading p {
        font-size: 14px;
    }

    .doctor-tab {
        min-width: 135px;
        height: 58px;
        padding: 0 16px;
        font-size: 13px;
    }

    .doctor-tab-arrow {
        width: 34px;
        height: 34px;
    }

    .doctor-tab-prev {
        left: -5px;
    }

    .doctor-tab-next {
        right: -5px;
    }

    .doctor-card-home {
        display: block;
    }

    .doctor-img-home {
        width: 100%;
        height: 280px;
    }

    .doctor-img-home img {
        width: 100%;
        height: 280px;
        min-height: 280px;
    }

    .doctor-content-home {
        padding: 22px;
    }

    .doctor-content-home h4 {
        font-size: 19px;
    }

}


/* =========================================
   ABOUT AURA - BACKGROUND IMAGE
========================================= */

.aura-about-section {
    position: relative;
    overflow: hidden;
}

.aura-about-bg {
    min-height: 600px;

    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.05) 0%,
            rgba(255,255,255,0.20) 42%,
            rgba(248,247,243,0.96) 62%,
            #f8f7f3 100%
        ),
        url("../images/about-aura.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* CONTENT */

.aura-about-content {
    min-height: 600px;

    padding: 70px 7% 70px 6%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aura-about-content h2 {
    margin: 0 0 8px;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;

    color: var(--dark);
}

.aura-about-content h3 {
    margin: 0 0 22px;

    font-size: 25px;
    line-height: 1.5;

    font-weight: 600;
    font-style: italic;

    color: var(--aura-orange);
}

.aura-about-content p {
    max-width: 650px;

    margin: 0 0 14px;

    font-size: 16px;
    line-height: 1.8;

    color: #252f42;
}


/* Animated Play Button */
.about-play-btn {
    width: 60px;
    height: 60px;
    border: 2px solid var(--aura-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    animation: playPulse 2s infinite;
    margin-top:1em;
}

.about-play-btn i {
    font-size: 22px;
    color: var(--aura-blue);
    margin-left: 3px;
}

/* Animated outer ring */
.about-play-btn::before {
    content: "";
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(25, 103, 210, 0.35);
    border-radius: 50%;
    animation: playRing 2s infinite;
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes playRing {
    0% {
        transform: scale(0.85);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.25);
        opacity: 0;
    }
    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .aura-about-bg {
        min-height: auto;

        background-image:
            linear-gradient(
                rgba(248,247,243,0.88),
                rgba(248,247,243,0.97)
            ),
            url("../images/about-aura.png");

        background-position: center;
    }

    .aura-about-content {
        min-height: 500px;
        padding: 60px 35px;
    }

    .aura-about-content h2 {
        font-size: 32px;
    }

    .aura-about-content h3 {
        font-size: 22px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .aura-about-bg {
        min-height: auto;
    }

    .aura-about-content {
        min-height: 500px;
        padding: 45px 20px;
    }

    .aura-about-content h2 {
        font-size: 27px;
    }

    .aura-about-content h3 {
        font-size: 19px;
    }

    .aura-about-content p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* =========================================================
   AURA HOSPITALS - SPECIALITIES PAGE
   AURA THEME
========================================================= */


/* =========================================================
   PAGE BANNER
========================================================= */

.aura-page-banner {
    background: var(--aura-blue);
    padding: 35px 0 32px;
    text-align: center;
    border-top: 1px solid var(--aura-border);
    border-bottom: 1px solid var(--aura-border);
}

.aura-page-banner-content h1 {
    margin: 0 0 8px;
    color: var(--aura-white);
    font-size: 38px;
    font-weight: 600;
    letter-spacing: .5px;
}

.aura-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    font-size: 14px;
}

.aura-breadcrumb a {
    color: var(--aura-white);
    text-decoration: none;
}

.aura-breadcrumb span {
    color: var(--aura-white);
}


/* =========================================================
   SPECIALITIES SECTION
========================================================= */

.aura-specialities {
    background: var(--aura-white);
    padding: 70px 0 85px;
}


/* =========================================================
   HEADING
========================================================= */

.aura-spec-heading {
    margin-bottom: 35px;
}

.aura-spec-label {
    display: block;
    margin-bottom: 8px;
    color: var(--aura-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.aura-spec-heading h2 {
    margin: 0 0 10px;
    color: var(--aura-dark);
    font-size: 34px;
    font-weight: 600;
}

.aura-spec-heading p {
    margin: 0;
    color: var(--aura-dark);
    opacity: .7;
    font-size: 15px;
}


/* =========================================================
   FILTER BUTTONS
========================================================= */

.aura-spec-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
}

.aura-filter-btn {
    border: 1px solid var(--aura-border);
    background: var(--aura-white);
    color: var(--aura-blue);
    padding: 9px 19px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: all .25s ease;
}

.aura-filter-btn:hover,
.aura-filter-btn.active {
    background: var(--aura-blue);
    color: var(--aura-white);
    border-color: var(--aura-blue);
}


/* =========================================================
   GRID
========================================================= */

.aura-spec-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 32px 26px;
}

.aura-spec-item {
    min-width: 0;
}


/* =========================================================
   CARD
========================================================= */

.aura-spec-card {
    position: relative;
    overflow: hidden;
    min-height: 238px;

    background: var(--aura-white);

    border: 1px solid var(--aura-border);

    padding: 25px 12px 22px;

    text-align: center;

    box-shadow:
        0 8px 25px rgba(26, 35, 64, .07);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.aura-spec-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 32px rgba(26, 35, 64, .13);
}


/* =========================================================
   TOP RIGHT DECORATION
========================================================= */

.aura-spec-corner {
    position: absolute;

    top: 0;
    right: 0;

    width: 58px;
    height: 58px;

    background: rgba(255, 109, 0, .10);

    border-radius: 0 0 0 58px;

    z-index: 0;
}


/* =========================================================
   ICON
========================================================= */

.aura-spec-icon {
    position: relative;
    z-index: 2;

    width: 78px;
    height: 78px;

    margin: 0 auto 17px;

    border-radius: 50%;

    background: var(--aura-blue);

    color: var(--aura-white);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 31px;

    transition:
        transform .3s ease,
        background .3s ease;
}

.aura-spec-card:hover .aura-spec-icon {
    background: var(--aura-blue-dark);
    transform: scale(1.05);
}


/* =========================================================
   TITLE
========================================================= */

.aura-spec-card h3 {
    position: relative;
    z-index: 2;

    min-height: 44px;

    margin: 0 0 17px;

    padding: 0 3px;

    color: var(--aura-dark);

    font-size: 14px;

    line-height: 1.55;

    font-weight: 700;

    text-transform: uppercase;
}


/* =========================================================
   READ MORE
========================================================= */

.aura-spec-btn {
    position: relative;
    z-index: 5;

    display: inline-block;

    padding: 8px 15px;

    border: 1px solid var(--aura-blue);

    background: var(--aura-white);

    color: var(--aura-blue);

    font-size: 14px;

    font-weight: 500;

    line-height: 1.2;

    text-decoration: none !important;

    transition: all .25s ease;
}

.aura-spec-btn:hover {
    background: var(--aura-blue);
    color: var(--aura-white);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1399px) {

    .aura-spec-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

}

@media (max-width: 1199px) {

    .aura-spec-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

}

@media (max-width: 991px) {

    .aura-specialities {
        padding: 60px 0 70px;
    }

    .aura-page-banner-content h1 {
        font-size: 32px;
    }

    .aura-spec-heading h2 {
        font-size: 30px;
    }

    .aura-spec-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

}

@media (max-width: 767px) {

    .aura-page-banner {
        padding: 28px 0;
    }

    .aura-page-banner-content h1 {
        font-size: 28px;
    }

    .aura-specialities {
        padding: 50px 0 60px;
    }

    .aura-spec-heading h2 {
        font-size: 27px;
    }

    .aura-spec-heading p {
        font-size: 14px;
    }

    .aura-spec-filters {
        gap: 7px;
        margin-bottom: 30px;
    }

    .aura-filter-btn {
        padding: 8px 13px;
        font-size: 12px;
    }

    .aura-spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .aura-spec-card {
        min-height: 220px;
        padding: 22px 10px;
    }

    .aura-spec-icon {
        width: 70px;
        height: 70px;
        font-size: 27px;
    }

}

@media (max-width: 480px) {

    .aura-spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .aura-spec-card {
        min-height: 210px;
    }

    .aura-spec-corner {
        width: 48px;
        height: 48px;
    }

    .aura-spec-icon {
        width: 64px;
        height: 64px;
        font-size: 25px;
    }

    .aura-spec-card h3 {
        font-size: 12px;
        min-height: 40px;
    }

    .aura-spec-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

}

/* =========================================
   SPECIALITY CARD HOVER
========================================= */

.aura-spec-card {
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Top-right curved decoration */
.aura-spec-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 75px;
    height: 75px;
    background: rgba(21, 101, 192, 0.10);
    border-radius: 0 0 0 100%;
    transition: all 0.4s ease;
    z-index: 0;
}

/* Keep content above decoration */
.aura-spec-icon,
.aura-spec-card h3,
.aura-spec-btn {
    position: relative;
    z-index: 2;
}

/* =========================
   HOVER
========================= */

.aura-spec-card:hover {
    background: var(--aura-blue);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(21, 101, 192, 0.25);
}

/* Fill and expand the curved corner */
.aura-spec-card:hover .aura-spec-corner {
    width: 110px;
    height: 110px;
    background: var(--aura-blue);
}

/* Icon */
.aura-spec-card:hover .aura-spec-icon {
    background: var(--aura-white) !important;
    color: var(--aura-blue) !important;
}

/* Title */
.aura-spec-card:hover h3 {
    color: var(--aura-white);
}

/* Button */
.aura-spec-card:hover .aura-spec-btn {
    color: var(--aura-white);
    border-color: var(--aura-white);
    background: transparent;
}

/* Button hover */
.aura-spec-card:hover .aura-spec-btn:hover {
    background: var(--aura-white);
    color: var(--aura-blue);
}

/* =====================================================
   AURA SPECIALITY DETAILS BANNER
   Same default image for every speciality
===================================================== */

.aura-speciality-banner {
    position: relative;
    height: 260px;

    background-image: url("../images/speciality-banner-2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* Aura blue/orange soft overlay */

/* .aura-speciality-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.92) 0%,
            rgba(255,255,255,0.82) 30%,
            rgba(21,101,192,0.20) 65%,
            rgba(13,71,161,0.10) 100%
        );

    z-index: 1;
} */


/* Content */

.aura-speciality-banner .container {
    position: relative;
    z-index: 2;
}

.aura-speciality-banner-content {
    max-width: 650px;
}


/* Title */

.aura-speciality-banner-content h1 {
    margin: 0 0 22px;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;
    color: var(--aura-dark);

    text-transform: uppercase;
}


/* Breadcrumb */

.aura-speciality-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 15px;
    color: var(--aura-dark);
}

.aura-speciality-breadcrumb a {
    color: var(--aura-blue);
    text-decoration: none;

    transition: 0.3s ease;
}

.aura-speciality-breadcrumb a:hover {
    color: var(--aura-orange);
}

.aura-speciality-breadcrumb span {
    color: var(--aura-dark);
}


/* =====================================================
   DECORATIVE CURVE
===================================================== */

.aura-speciality-banner::after {
    content: "";

    position: absolute;

    left: -5%;
    bottom: -105px;

    width: 110%;
    height: 180px;

    border-top: 2px solid rgba(230,81,0,0.28);

    border-radius: 50% 50% 0 0;

    transform: rotate(-3deg);

    z-index: 2;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .aura-speciality-banner {
        height: 280px;
        background-position: center;
    }

    .aura-speciality-banner-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .aura-speciality-breadcrumb {
        font-size: 13px;
        flex-wrap: wrap;
    }

}


/* =========================================================
   COMMON SECTIONS
========================================================= */

.section-pad {
    padding: 75px 0;
}


/* =========================================================
   MAIN SPECIALITY INTRO
========================================================= */

.section-pad .row.align-items-center {
    align-items: center;
}

.section-pad .row.align-items-center > .col-lg-6:first-child img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.section-pad .row.align-items-center > .col-lg-6:last-child {
    padding-left: 35px;
}

.section-pad .row.align-items-center .section-label {
    color: var(--aura-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-pad .row.align-items-center .section-title {
    color: var(--aura-dark);
    font-size: 38px;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 20px;
}

.section-pad .row.align-items-center .text-muted {
    color: #5f6875 !important;
    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-pad .text-center.mb-5 .section-title {
    color: var(--aura-dark);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-pad .text-center.mb-5 .section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--aura-orange);
    margin: 14px auto 0;
}


/* =========================================================
   ALL INFORMATION CARDS
   Symptoms / Diagnosis / Conditions / Procedures
========================================================= */

.section-pad .border.rounded-4 {
    position: relative;
    overflow: hidden;

    background: #fff;

    border: 1px solid var(--aura-border) !important;
    border-radius: 0 !important;

    box-shadow: 0 5px 18px rgba(26,35,64,.07) !important;

    transition: all .35s ease;
}


/* Top-right curved decoration */

.section-pad .border.rounded-4::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 65px;
    height: 65px;

    background: rgba(21,101,192,.08);

    border-bottom-left-radius: 100%;

    transition: all .4s ease;
}


/* Small orange curve */

.section-pad .border.rounded-4::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 35px;
    height: 35px;

    background: rgba(230,81,0,.12);

    border-bottom-left-radius: 100%;

    transition: all .4s ease;
}


/* Content above decoration */

.section-pad .border.rounded-4 > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HOVER - FILL CURVED LAYER
========================================================= */

.section-pad .border.rounded-4:hover {
    transform: translateY(-6px);

    border-color: var(--aura-blue) !important;

    box-shadow:
        0 15px 30px rgba(21,101,192,.16) !important;
}


/* Blue layer expands */

.section-pad .border.rounded-4:hover::before {
    width: 100%;
    height: 100%;

    background: var(--aura-blue);

    border-radius: 0;
}


/* Remove orange small curve */

.section-pad .border.rounded-4:hover::after {
    opacity: 0;
}


/* =========================================================
   CARD TEXT
========================================================= */

.section-pad .border.rounded-4 h5 {
    color: var(--aura-dark);

    font-size: 18px;
    font-weight: 700;

    margin-bottom: 12px;

    transition: color .3s ease;
}

.section-pad .border.rounded-4 p {
    color: #68717e !important;

    font-size: 14px;
    line-height: 1.7;

    transition: color .3s ease;
}


/* White text on hover */

.section-pad .border.rounded-4:hover h5,
.section-pad .border.rounded-4:hover p {
    color: #fff !important;
}


/* =========================================================
   READ MORE BUTTON
========================================================= */

.section-pad .border.rounded-4 .btn-primary-aura {
    position: relative;
    z-index: 5;

    padding: 9px 18px;

    background: transparent !important;

    border: 1px solid var(--aura-blue) !important;
    border-radius: 0 !important;

    color: var(--aura-blue) !important;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;
}


/* Button hover while card is normal */

.section-pad .border.rounded-4 .btn-primary-aura:hover {
    background: var(--aura-blue) !important;
    color: #fff !important;
}


/* Button when card is hovered */

.section-pad .border.rounded-4:hover .btn-primary-aura {
    background: #fff !important;
    border-color: #fff !important;

    color: var(--aura-blue) !important;
}


/* =========================================================
   LIGHT SECTIONS
========================================================= */

.section-pad.bg-light {
    background: #f7f9fc !important;
}


/* =========================================================
   DOCTORS SECTION
========================================================= */

.section-pad .border.rounded-4.shadow-sm {
    background: #fff;

    border: 1px solid var(--aura-border) !important;
    border-radius: 0 !important;

    overflow: hidden;

    transition: all .35s ease;
}

.section-pad .border.rounded-4.shadow-sm:hover {
    transform: translateY(-5px);

    border-color: rgba(21,101,192,.3) !important;

    box-shadow:
        0 15px 30px rgba(21,101,192,.13) !important;
}


/* Doctor image */

.section-pad .border.rounded-4.shadow-sm img {
    width: 100%;
    height: 230px;

    object-fit: cover;

    border-radius: 0 !important;
}


/* Doctor name */

.section-pad .border.rounded-4.shadow-sm h4 {
    color: var(--aura-dark);

    font-size: 21px;
    font-weight: 700;

    margin-bottom: 10px;
}


/* Qualification */

.section-pad .border.rounded-4.shadow-sm .text-primary {
    color: var(--aura-blue) !important;
    font-weight: 600;
}


/* =========================================================
   DOCTOR BUTTONS
========================================================= */

.btn-appt-nav,
.btn-emergency-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;
}


.btn-appt-nav {
    background: var(--aura-blue);
    border: 1px solid var(--aura-blue);

    color: #fff !important;
}

.btn-appt-nav:hover {
    background: var(--aura-blue-dark);
    border-color: var(--aura-blue-dark);

    color: #fff !important;
}


.btn-emergency-nav {
    background: transparent;

    border: 1px solid var(--aura-orange);

    color: var(--aura-orange) !important;
}

.btn-emergency-nav:hover {
    background: var(--aura-orange);

    color: #fff !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .section-pad {
        padding: 60px 0;
    }

    .section-pad .row.align-items-center > .col-lg-6:last-child {
        padding-left: 15px;
    }

    .section-pad .row.align-items-center > .col-lg-6:first-child img {
        height: 350px;
    }

}


@media (max-width: 767px) {

    .section-pad {
        padding: 50px 0;
    }

    .section-pad .row.align-items-center > .col-lg-6:first-child img {
        height: 280px;
    }

    .section-pad .row.align-items-center .section-title {
        font-size: 30px;
    }

    .section-pad .text-center.mb-5 .section-title {
        font-size: 28px;
    }

}

/* =========================================
   COMMON AURA PRIMARY BUTTON
========================================= */

.btn-primary-aura {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: var(--aura-blue);
    color: var(--aura-white) !important;

    padding: 12px 26px;
    border: 2px solid var(--aura-blue);
    border-radius: 4px;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;

    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover */
.btn-primary-aura:hover {
    background: var(--aura-blue-dark);
    border-color: var(--aura-blue-dark);
    color: var(--aura-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(21, 101, 192, 0.22);
}

/* Active */
.btn-primary-aura:active {
    transform: translateY(0);
}

/* Focus */
.btn-primary-aura:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}

/* Appointment Form */
.appointment-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--aura-border);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(26, 35, 64, 0.08);
    overflow: hidden;
}

.appointment-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--aura-blue);
}

.appointment-card .form-label {
    color: var(--aura-dark);
    font-size: 14px;
    font-weight: 600;
}

.appointment-card .form-control,
.appointment-card .form-select {
    min-height: 48px;
    border: 1px solid var(--aura-border);
    border-radius: 4px;
    font-size: 14px;
}

.appointment-card .form-control:focus,
.appointment-card .form-select:focus {
    border-color: var(--aura-blue);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

/* =========================================================
   RIGHT SIDE — HOSPITAL TIMINGS
========================================================= */

.appointment-info-card {
    position: relative;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--aura-border);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(26, 35, 64, 0.07);
    overflow: hidden;
}

.appointment-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--aura-blue);
}

.appointment-info-card h3 {
    color: var(--aura-dark);
    font-size: 24px;
    font-weight: 700;
}

.opd-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #edf0f3;
}

.opd-row:last-child {
    border-bottom: 0;
}

.opd-row strong {
    color: var(--aura-dark);
    font-size: 14px;
    font-weight: 600;
}

.opd-row span {
    color: #68717d;
    font-size: 13px;
    text-align: right;
}

.opd-row:last-child span {
    color: var(--aura-orange);
    font-weight: 700;
}


/* =========================================================
   RIGHT SIDE — CONTACT CARD
========================================================= */

.appointment-contact-card {
    position: relative;
    padding: 32px;
    background: var(--aura-blue);
    border-radius: 8px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.18);
}

.appointment-contact-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    top: -80px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
}

.appointment-contact-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: 30px;
    bottom: -50px;
    background: rgba(230,81,0,.25);
    border-radius: 50%;
}

.appointment-contact-card > * {
    position: relative;
    z-index: 2;
}

.appointment-contact-card h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
}

.appointment-contact-card p {
    color: rgba(255,255,255,.82);
    font-size: 14px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.contact-item:last-child {
    border-bottom: 0;
}

.contact-item > i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
}

.contact-item small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255,255,255,.65);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item div div {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   BOTTOM — WHY CHOOSE US GRID
========================================================= */

.spec-card {
    position: relative;
    padding: 30px 22px;
    background: #fff;
    border: 1px solid var(--aura-border);
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(26,35,64,.06);
    overflow: hidden;
    transition: all .35s ease;
}

.spec-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 65px;
    height: 65px;
    background: rgba(21,101,192,.08);
    border-bottom-left-radius: 100%;
    transition: all .4s ease;
}

.spec-card > * {
    position: relative;
    z-index: 2;
}

.spec-card:hover {
    transform: translateY(-7px);
    border-color: var(--aura-blue);
    box-shadow: 0 15px 30px rgba(21,101,192,.14);
}

.spec-card:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: var(--aura-blue);
}


/* Icon */

.spec-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf5ff;
    border-radius: 50%;
    color: var(--aura-blue);
    font-size: 24px;
    transition: all .35s ease;
}

.spec-card:hover .spec-icon-wrap {
    background: #fff;
    color: var(--aura-blue);
}

.spec-card h5 {
    color: var(--aura-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color .3s ease;
}

.spec-card p {
    color: #68717d;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 0;
    transition: color .3s ease;
}

.spec-card:hover h5,
.spec-card:hover p {
    color: #fff;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .opd-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .opd-row span {
        text-align: left;
    }

    .appointment-info-card,
    .appointment-contact-card {
        padding: 25px;
    }

    .spec-card {
        padding: 25px 20px;
    }
}


/* =========================================================
   CONTACT INFO CARDS
========================================================= */

.contact-card {
    position: relative;
    height: 100%;
    padding: 28px 20px;
    background: #fff;
    border: 1px solid var(--aura-border);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(26,35,64,.06);
    overflow: hidden;
    transition: all .35s ease;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--aura-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(21,101,192,.25);
    box-shadow: 0 14px 30px rgba(21,101,192,.12);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card .ci {
    width: 62px;
    height: 62px;
    margin: 0 auto 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf5ff;
    border-radius: 50%;
    color: var(--aura-blue);
    font-size: 23px;
    transition: all .35s ease;
}

.contact-card:hover .ci {
    background: var(--aura-blue);
    color: #fff;
    transform: scale(1.05);
}

.contact-card h6 {
    margin-bottom: 9px;
    color: var(--aura-dark);
    font-size: 17px;
    font-weight: 700;
}

.contact-card p {
    margin: 0;
    color: #68717d;
    font-size: 13px;
    line-height: 1.7;
}

.contact-card a {
    text-decoration: none;
}

.contact-card .text-blue {
    color: var(--aura-blue) !important;
}

.contact-card .text-orange {
    color: var(--aura-orange) !important;
}


/* =========================================================
   CONTACT FORM
========================================================= */

#contact .row.mt-5 > .col-lg-8 > div {
    position: relative;
    padding: 36px !important;
    background: #fff !important;
    border: 1px solid var(--aura-border);
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(26,35,64,.08) !important;
    overflow: hidden;
}

#contact .row.mt-5 > .col-lg-8 > div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--aura-blue);
}

#contact .row.mt-5 h5 {
    color: var(--aura-dark);
    font-size: 21px !important;
    font-weight: 700 !important;
}


/* Form fields */

#contact .form-control,
#contact .form-select {
    min-height: 48px;
    padding: 11px 15px !important;
    background: #fff;
    border: 1px solid var(--aura-border) !important;
    border-radius: 4px !important;
    color: var(--aura-dark);
    font-size: 14px;
    box-shadow: none;
    transition: all .25s ease;
}

#contact textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

#contact .form-control::placeholder {
    color: #9aa2ad;
}

#contact .form-control:focus,
#contact .form-select:focus {
    border-color: var(--aura-blue) !important;
    box-shadow: 0 0 0 3px rgba(21,101,192,.10);
    outline: none;
}


/* Send button */

#contactBtn {
    background: var(--aura-blue) !important;
    border: 1px solid var(--aura-blue) !important;
    border-radius: 4px !important;
    padding: 12px 28px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all .3s ease;
}

#contactBtn:hover {
    background: var(--aura-blue-dark) !important;
    border-color: var(--aura-blue-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(21,101,192,.20);
}


/* Success message */

#contactSuccess {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    padding: 13px 16px !important;
    background: rgba(34,197,94,.08) !important;
    border: 1px solid rgba(34,197,94,.22) !important;
    border-radius: 5px !important;
    color: #166534;
    font-size: 13px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-card {
        padding: 24px 15px;
    }

    .contact-card .ci {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    #contact .row.mt-5 > .col-lg-8 > div {
        padding: 25px !important;
    }
}

/* =========================================================
   GALLERY TABS
========================================================= */

.gallery-filter {
    padding-bottom: 10px;
}

.filter-btn {
    margin: 0 4px;
    padding: 10px 22px;

    background: #fff;
    border: 1px solid var(--aura-border);
    border-radius: 4px;

    color: var(--aura-dark);

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all .3s ease;
}

.filter-btn:hover {
    border-color: var(--aura-blue);
    color: var(--aura-blue);
}

.filter-btn.active {
    background: var(--aura-blue);
    border-color: var(--aura-blue);
    color: #fff;

    box-shadow: 0 5px 15px rgba(21,101,192,.18);
}


/* =========================================================
   GALLERY CARDS
========================================================= */

.gallery-card {
    position: relative;

    padding: 5px;

    background: #fff;
    border: 1px solid var(--aura-border);

    overflow: hidden;

    cursor: pointer;

    box-shadow: 0 5px 18px rgba(26,35,64,.06);

    transition: all .35s ease;
}

.gallery-card img {
    display: block;

    width: 100%;
    height: 280px;

    object-fit: cover;

    transition: transform .5s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);

    border-color: var(--aura-blue);

    box-shadow: 0 14px 30px rgba(21,101,192,.15);
}

.gallery-card:hover img {
    transform: scale(1.05);
}


/* =========================================================
   FILTER ANIMATION
========================================================= */

.gallery-item.gallery-hide {
    display: none;
}

.gallery-item.gallery-show {
    animation: galleryShow .4s ease;
}

@keyframes galleryShow {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   IMAGE POPUP
========================================================= */

.gallery-popup {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(10,18,35,.90);

    backdrop-filter: blur(5px);
}

.gallery-popup.active {
    display: flex;
}

.gallery-popup-content {
    position: relative;

    width: 100%;
    max-width: 1050px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-popup-image {
    display: block;

    max-width: 100%;
    max-height: 85vh;

    object-fit: contain;

    background: #fff;

    padding: 5px;

    border-radius: 3px;

    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.gallery-popup-close {
    position: absolute;

    top: -48px;
    right: 0;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #fff;

    color: var(--aura-dark);

    font-size: 17px;

    cursor: pointer;

    transition: all .3s ease;
}

.gallery-popup-close:hover {
    background: var(--aura-orange);
    color: #fff;

    transform: rotate(90deg);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .filter-btn {
        margin: 4px 2px;
        padding: 8px 15px;
        font-size: 13px;
    }

    .gallery-card img {
        height: 240px;
    }

    .gallery-popup {
        padding: 15px;
    }

    .gallery-popup-image {
        max-height: 80vh;
    }

    .gallery-popup-close {
        top: -48px;
        right: 0;
    }

}

/* =========================================================
   MEDIA / UPDATE CARDS
========================================================= */

.update-card {
    position: relative;
    height: 100%;

    background: #fff;

    border: 1px solid var(--aura-border);
    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 5px 18px rgba(26,35,64,.06);

    transition: all .35s ease;
}

.update-card:hover {
    transform: translateY(-7px);

    border-color: rgba(21,101,192,.25);

    box-shadow:
        0 15px 32px rgba(21,101,192,.13);
}


/* =========================================================
   UPDATE IMAGE
========================================================= */

.update-image {
    position: relative;

    height: 235px;

    overflow: hidden;

    background: #eef2f6;
}

.update-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.update-card:hover .update-image img {
    transform: scale(1.06);
}


/* =========================================================
   CATEGORY BADGE
========================================================= */

.update-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 13px;

    background: var(--aura-blue);

    color: #fff;

    border-radius: 3px;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .6px;

    box-shadow: 0 4px 10px rgba(0,0,0,.12);
}

.update-badge.orange {
    background: var(--aura-orange);
}

.update-badge.green {
    background: #198754;
}


/* =========================================================
   UPDATE CONTENT
========================================================= */

.update-content {
    padding: 24px 23px 25px;
}

.update-meta {
    margin-bottom: 11px;
}

.update-meta span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #8a929d;

    font-size: 12px;
}

.update-meta i {
    color: var(--aura-orange);

    font-size: 12px;
}


/* =========================================================
   UPDATE TITLE
========================================================= */

.update-content h4 {
    margin-bottom: 12px;

    color: var(--aura-dark);

    font-size: 19px;
    font-weight: 700;

    line-height: 1.4;

    transition: color .3s ease;
}

.update-card:hover .update-content h4 {
    color: var(--aura-blue);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.update-content p {
    margin-bottom: 19px;

    color: #68717d;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   READ MORE
========================================================= */

.update-btn {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    color: var(--aura-blue);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.update-btn i {
    font-size: 12px;

    transition: transform .3s ease;
}

.update-btn:hover {
    color: var(--aura-orange);
}

.update-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   CARD BOTTOM ACCENT
========================================================= */

.update-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--aura-orange);

    transition: width .35s ease;
}

.update-card:hover::after {
    width: 100%;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .update-image {
        height: 220px;
    }

    .update-content {
        padding: 21px 19px 23px;
    }

    .update-content h4 {
        font-size: 17px;
    }

}

/* =========================================================
   MEDICAL DETAILS CARD
========================================================= */

.medical-details-card {
    position: relative;

    max-width: 1000px;
    margin: 0 auto;

    padding: 40px;

    background: #fff;

    border: 1px solid var(--aura-border);
    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(26,35,64,.07);

    overflow: hidden;
}

.medical-details-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--aura-blue);
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.medical-details-card > img {
    display: block;

    width: 100%;
    height: 430px;

    object-fit: cover;

    margin-bottom: 25px !important;

    border-radius: 5px !important;
}


/* =========================================================
   META
========================================================= */

.medical-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 25px;

    margin-bottom: 15px;
}

.medical-meta span {
    display: inline-flex;

    align-items: center;
    gap: 7px;

    color: #7a838e;

    font-size: 13px;
}

.medical-meta i {
    color: var(--aura-orange);
}


/* =========================================================
   TITLE
========================================================= */

.medical-title {
    margin-bottom: 18px;

    color: var(--aura-dark);

    font-size: 30px;
    font-weight: 700;

    line-height: 1.3;
}


/* =========================================================
   CONTENT
========================================================= */

.medical-text {
    margin-bottom: 18px;

    color: #68717d;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   KEY HIGHLIGHTS
========================================================= */

.medical-highlights {
    margin-top: 35px;
    padding: 28px;

    background: #f7faff;

    border: 1px solid #e5edf8;

    border-left: 4px solid var(--aura-blue);

    border-radius: 6px;
}

.medical-highlights h4 {
    color: var(--aura-dark);

    font-size: 20px;
    font-weight: 700;
}

.highlight-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px 30px;
}

.highlight-item {
    display: flex;

    align-items: center;
    gap: 10px;

    color: #596573;

    font-size: 14px;
    line-height: 1.5;
}

.highlight-item i {
    flex-shrink: 0;

    color: var(--aura-blue);

    font-size: 16px;
}


/* =========================================================
   CTA
========================================================= */

.medical-cta {
    position: relative;

    margin-top: 35px;
    padding: 32px;

    background:
        linear-gradient(
            135deg,
            var(--aura-blue-dark),
            var(--aura-blue)
        );

    border-radius: 7px;

    overflow: hidden;
}

.medical-cta::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -70px;
    bottom: -90px;

    background: rgba(255,255,255,.08);

    border-radius: 50%;
}

.medical-cta h3 {
    position: relative;
    z-index: 2;

    color: #fff;

    font-size: 23px;
    font-weight: 700;
}

.medical-cta p {
    position: relative;
    z-index: 2;

    color: rgba(255,255,255,.82);

    font-size: 14px;
}

.medical-cta .btn {
    position: relative;
    z-index: 2;

    background: #fff !important;

    border-color: #fff !important;

    color: var(--aura-blue) !important;

    border-radius: 4px !important;

    padding: 11px 25px;

    font-size: 14px;
    font-weight: 600;

    transition: all .3s ease;
}

.medical-cta .btn:hover {
    background: var(--aura-orange) !important;

    border-color: var(--aura-orange) !important;

    color: #fff !important;

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .medical-details-card {
        padding: 25px 20px;
    }

    .medical-details-card > img {
        height: 250px;
    }

    .medical-title {
        font-size: 24px;
    }

    .medical-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .medical-meta {
        gap: 12px 20px;
    }

    .highlight-list {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .medical-highlights {
        padding: 22px 18px;
    }

    .medical-cta {
        padding: 25px 20px;
    }

}

/* =========================================================
   VIDEO TESTIMONIALS
========================================================= */

.video-testimonial-row {
    align-items: stretch;
}

.video-testimonial-row > div {
    display: flex;
}


/* =========================================================
   VIDEO CARD
========================================================= */

.video-testimonial-card {
    width: 100%;
    height: 100%;

    background: #fff;

    border: 1px solid var(--aura-border);

    box-shadow: 0 8px 22px rgba(26,35,64,.08);

    transition: all .35s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 16px 35px rgba(21,101,192,.14);
}


/* =========================================================
   VIDEO IMAGE
========================================================= */

.video-testimonial-image {
    position: relative;

    height: 270px;

    overflow: hidden;

    background: #eef2f6;
}

.video-testimonial-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.video-testimonial-card:hover
.video-testimonial-image img {
    transform: scale(1.04);
}


/* =========================================================
   PLAY BUTTON
========================================================= */

.video-play-btn {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    border: 0;
    border-radius: 50%;

    background: var(--aura-orange);

    color: #fff;

    font-size: 20px;

    cursor: pointer;

    box-shadow:
        0 0 0 10px rgba(230,81,0,.16),
        0 8px 20px rgba(0,0,0,.18);

    transition: all .3s ease;
}

.video-play-btn i {
    margin-left: 3px;
}

.video-play-btn:hover {
    background: var(--aura-blue);

    transform: translate(-50%, -50%) scale(1.1);

    box-shadow:
        0 0 0 12px rgba(21,101,192,.16),
        0 10px 25px rgba(0,0,0,.22);
}


/* =========================================================
   CONTENT
========================================================= */

.video-testimonial-content {
    position: relative;

    min-height: 155px;

    margin: -1px 20px 20px;

    padding: 22px 18px 20px;

    background: #fff;

    text-align: center;

    box-shadow: 0 8px 18px rgba(26,35,64,.08);

    z-index: 2;
}

.video-testimonial-content h3 {
    margin: 0 0 18px;

    color: var(--aura-dark);

    font-size: 18px;
    font-weight: 600;

    line-height: 1.5;

    text-transform: uppercase;
}

.video-testimonial-card:hover
.video-testimonial-content h3 {
    color: var(--aura-blue);
}


/* =========================================================
   DISCLAIMER
========================================================= */

.video-testimonial-disclaimer {
    color: #666;

    font-size: 12px;

    line-height: 1.5;
}

.video-testimonial-disclaimer strong {
    color: var(--aura-orange);

    font-size: 15px;
}


/* =========================================================
   VIDEO POPUP
========================================================= */

.video-popup {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(10,18,35,.92);

    backdrop-filter: blur(5px);
}

.video-popup.active {
    display: flex;
}

.video-popup-inner {
    position: relative;

    width: 100%;
    max-width: 1000px;
}

.video-popup-inner video {
    display: block;

    width: 100%;
    max-height: 80vh;

    background: #000;

    border-radius: 4px;

    box-shadow: 0 20px 60px rgba(0,0,0,.45);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.video-popup-close {
    position: absolute;

    top: -48px;
    right: 0;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #fff;

    color: var(--aura-dark);

    font-size: 18px;

    cursor: pointer;

    z-index: 2;

    transition: all .3s ease;
}

.video-popup-close:hover {
    background: var(--aura-orange);

    color: #fff;

    transform: rotate(90deg);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .video-testimonial-image {
        height: 230px;
    }

    .video-testimonial-content {
        margin: -1px 12px 15px;

        padding: 18px 14px;
    }

    .video-testimonial-content h3 {
        font-size: 16px;
    }

    .video-play-btn {
        width: 58px;
        height: 58px;

        font-size: 18px;
    }

    .video-popup {
        padding: 15px;
    }

    .video-popup-close {
        top: -48px;
    }

}

/* =========================================================
   HEALTH PACKAGE CARDS
========================================================= */

.health-package-card {
    position: relative;

    height: 100%;

    background: #fff;

    border: 1px solid var(--aura-border);
    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 6px 20px rgba(26,35,64,.06);

    transition: all .35s ease;
}

.health-package-card:hover {
    transform: translateY(-7px);

    border-color: rgba(21,101,192,.3);

    box-shadow: 0 15px 35px rgba(21,101,192,.13);
}


/* =========================================================
   PACKAGE HEADER
========================================================= */

.package-header {
    padding: 28px 26px 20px;

    border-bottom: 1px solid #edf0f4;
}

.package-label {
    display: inline-block;

    margin-bottom: 13px;

    padding: 6px 12px;

    background: rgba(21,101,192,.08);

    color: var(--aura-blue);

    border-radius: 3px;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .6px;
}

.package-header h3 {
    margin-bottom: 10px;

    color: var(--aura-dark);

    font-size: 21px;
    font-weight: 700;
}

.package-header p {
    margin: 0;

    color: #747e8a;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   PRICE
========================================================= */

.package-price {
    padding: 20px 26px;

    background: #f7faff;

    border-bottom: 1px solid #edf0f4;
}

.price-label {
    display: block;

    margin-bottom: 4px;

    color: #8a929d;

    font-size: 11px;
}

.package-price strong {
    color: var(--aura-blue);

    font-size: 28px;
    font-weight: 700;
}


/* =========================================================
   PACKAGE BODY
========================================================= */

.package-body {
    padding: 24px 26px 27px;
}

.package-body h4 {
    margin-bottom: 18px;

    color: var(--aura-dark);

    font-size: 16px;
    font-weight: 700;
}


/* =========================================================
   PACKAGE LIST
========================================================= */

.package-list {
    list-style: none;

    padding: 0;
    margin: 0 0 24px;
}

.package-list li {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-bottom: 12px;

    color: #626d79;

    font-size: 13px;

    line-height: 1.5;
}

.package-list li:last-child {
    margin-bottom: 0;
}

.package-list i {
    flex-shrink: 0;

    margin-top: 2px;

    color: var(--aura-blue);

    font-size: 14px;
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.package-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    width: 100%;

    padding: 11px 18px;

    background: var(--aura-blue);

    border: 1px solid var(--aura-blue);
    border-radius: 4px;

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;
}

.package-btn:hover {
    background: var(--aura-orange);

    border-color: var(--aura-orange);

    color: #fff;
}

.package-btn i {
    transition: transform .3s ease;
}

.package-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   FEATURED PACKAGE
========================================================= */

.health-package-card.featured {
    border: 2px solid var(--aura-blue);

    box-shadow: 0 12px 30px rgba(21,101,192,.12);
}

.package-popular {
    position: absolute;

    top: 0;
    right: 0;

    padding: 7px 14px;

    background: var(--aura-orange);

    color: #fff;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .5px;
}

.health-package-card.featured .package-label {
    background: rgba(230,81,0,.08);

    color: var(--aura-orange);
}


/* =========================================================
   CTA
========================================================= */

.health-package-cta {
    padding: 65px 0;

    background:
        linear-gradient(
            135deg,
            var(--aura-blue-dark),
            var(--aura-blue)
        );
}

.health-package-cta-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.health-package-cta-content span {
    display: block;

    margin-bottom: 8px;

    color: var(--aura-orange-light);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
}

.health-package-cta-content h2 {
    margin-bottom: 10px;

    color: #fff;

    font-size: 28px;
    font-weight: 700;
}

.health-package-cta-content p {
    margin: 0;

    color: rgba(255,255,255,.8);

    font-size: 14px;
}

.health-package-cta-btn {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;
    gap: 9px;

    padding: 13px 23px;

    background: #fff;

    border-radius: 4px;

    color: var(--aura-blue);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.health-package-cta-btn:hover {
    background: var(--aura-orange);

    color: #fff;

    transform: translateY(-2px);
}

.health-package-cta-btn i {
    transition: transform .3s ease;
}

.health-package-cta-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .package-header {
        padding: 24px 20px 18px;
    }

    .package-price {
        padding: 18px 20px;
    }

    .package-body {
        padding: 21px 20px 23px;
    }

    .package-price strong {
        font-size: 25px;
    }

    .health-package-cta {
        padding: 45px 0;
    }

    .health-package-cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

    .health-package-cta-content h2 {
        font-size: 23px;
    }

    .health-package-cta-btn {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================================
   ABOUT INTRO
========================================================= */

.about-image-wrap {
    position: relative;

    padding-right: 25px;
    padding-bottom: 25px;
}

.about-image-wrap::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 75%;
    height: 75%;

    background: var(--aura-blue);

    opacity: .08;

    z-index: 0;
}

.about-image-wrap img {
    position: relative;

    width: 100%;
    height: 470px;

    object-fit: cover;

    border-radius: 6px;

    z-index: 1;

    box-shadow: 0 12px 30px rgba(26,35,64,.12);
}

.about-experience {
    position: absolute;

    left: -15px;
    bottom: 15px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 18px 22px;

    background: var(--aura-blue);

    color: #fff;

    z-index: 2;

    box-shadow: 0 8px 22px rgba(21,101,192,.25);
}

.about-experience strong {
    font-size: 32px;
    line-height: 1;
}

.about-experience span {
    font-size: 12px;
    line-height: 1.5;
}

.about-content p {
    color: #68727e;

    font-size: 14px;

    line-height: 1.8;
}

.about-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px 20px;

    margin: 24px 0;
}

.about-point {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--aura-dark);

    font-size: 13px;
    font-weight: 600;
}

.about-point i {
    color: var(--aura-blue);

    font-size: 15px;
}

.about-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 22px;

    background: var(--aura-blue);

    border: 1px solid var(--aura-blue);
    border-radius: 4px;

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;
}

.about-btn:hover {
    background: var(--aura-orange);

    border-color: var(--aura-orange);

    color: #fff;
}

.about-btn i {
    transition: transform .3s ease;
}

.about-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   MISSION / VISION
========================================================= */

.about-info-card {
    display: flex;

    gap: 22px;

    height: 100%;

    padding: 30px;

    background: #fff;

    border: 1px solid var(--aura-border);

    border-left: 4px solid var(--aura-blue);

    box-shadow: 0 7px 22px rgba(26,35,64,.06);

    transition: all .35s ease;
}

.about-info-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 14px 30px rgba(21,101,192,.12);
}

.about-info-icon {
    flex-shrink: 0;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(21,101,192,.09);

    color: var(--aura-blue);

    font-size: 23px;
}

.about-info-icon.orange {
    background: rgba(230,81,0,.09);

    color: var(--aura-orange);
}

.about-info-card h3 {
    margin-bottom: 10px;

    color: var(--aura-dark);

    font-size: 20px;
    font-weight: 700;
}

.about-info-card p {
    margin: 0;

    color: #6d7681;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   WHY AURA
========================================================= */

.about-feature-card {
    height: 100%;

    padding: 30px 22px;

    background: #fff;

    border: 1px solid var(--aura-border);

    text-align: center;

    transition: all .35s ease;
}

.about-feature-card:hover {
    transform: translateY(-6px);

    border-color: rgba(21,101,192,.25);

    box-shadow: 0 14px 30px rgba(21,101,192,.1);
}

.about-feature-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: rgba(21,101,192,.08);

    color: var(--aura-blue);

    font-size: 25px;

    transition: all .35s ease;
}

.about-feature-card:hover .about-feature-icon {
    background: var(--aura-blue);

    color: #fff;

    transform: rotateY(180deg);
}

.about-feature-card h4 {
    margin-bottom: 10px;

    color: var(--aura-dark);

    font-size: 17px;
    font-weight: 700;
}

.about-feature-card p {
    margin: 0;

    color: #737d88;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    padding: 60px 0;

    background:
        linear-gradient(
            135deg,
            var(--aura-blue-dark),
            var(--aura-blue)
        );
}

.about-cta-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.about-cta-content span {
    display: block;

    margin-bottom: 8px;

    color: var(--aura-orange-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
}

.about-cta-content h2 {
    margin-bottom: 9px;

    color: #fff;

    font-size: 28px;
    font-weight: 700;
}

.about-cta-content p {
    margin: 0;

    color: rgba(255,255,255,.8);

    font-size: 14px;
}

.about-cta-btn {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 23px;

    background: #fff;

    border-radius: 4px;

    color: var(--aura-blue);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.about-cta-btn:hover {
    background: var(--aura-orange);

    color: #fff;

    transform: translateY(-2px);
}

.about-cta-btn i {
    transition: transform .3s ease;
}

.about-cta-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .about-image-wrap {
        padding-right: 15px;
        padding-bottom: 18px;
    }

    .about-image-wrap img {
        height: 320px;
    }

    .about-experience {
        left: 0;
        bottom: 5px;

        padding: 14px 17px;
    }

    .about-experience strong {
        font-size: 26px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .about-info-card {
        padding: 23px;

        gap: 16px;
    }

    .about-feature-card {
        padding: 25px 20px;
    }

    .about-cta {
        padding: 45px 0;
    }

    .about-cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

    .about-cta-content h2 {
        font-size: 23px;
    }

    .about-cta-btn {
        width: 100%;

        justify-content: center;
    }

}

.about-video-popup {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 99999;
}

.about-video-popup.active {
    display: flex;
}

.about-video-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.82);
}

.about-video-box {
    position: relative;

    width: min(900px, 95%);

    background: #000;

    border-radius: 10px;

    overflow: hidden;

    z-index: 2;

    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.about-video-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;
}

.about-video-frame iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}

.about-video-close {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: rgba(0,0,0,.7);

    color: #fff;

    font-size: 16px;

    cursor: pointer;

    z-index: 5;

    transition: all .3s ease;
}

.about-video-close:hover {
    background: var(--aura-orange);
}