* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #111;
    background: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* =====================
   TOP BAR
   ===================== */

.top-bar {
    background: #02163b;
    color: #fff;
    padding: 14px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.top-item i {
    color: #fff;
}

/* =====================
   HEADER
   ===================== */

.main-header {
    background: #fff;
    padding: 22px 0;
    border-bottom: 1px solid #eef2f6;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1 1 auto;
    min-width: 0;
}

.logo-link {
    flex-shrink: 0;
    line-height: 0;
}

.logo-section img {
    width: 165px;
    max-width: 165px;
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-text h2 {
    font-size: clamp(21px, 2.2vw, 30px);
    color: #071b4a;
    line-height: 1.22;
    font-weight: 800;
    max-width: 560px;
}

.logo-text p {
    margin-top: 6px;
    color: #6b7280;
    font-size: 15px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-box i {
    width: 54px;
    height: 54px;
    background: #eef4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-whatsapp i {
    background: #e8f8ef;
    color: #25d366;
    font-size: 26px;
}

.contact-box span {
    display: block;
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 2px;
    white-space: nowrap;
}

.contact-box strong {
    font-size: 17px;
    color: #071b4a;
    font-weight: 700;
    white-space: nowrap;
}

.appointment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    padding: 15px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 10px 28px rgba(13, 110, 253, 0.28);
    transition: 0.25s ease;
}

.appointment-btn:hover {
    transform: translateY(-2px);
    background: #0056d2;
}

/* =====================
   NAVBAR
   ===================== */

.navbar {
    background: #fff;
    border-bottom: 1px solid #eef2f6;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
    padding: 18px 0;
}

.nav-content a {
    text-decoration: none;
    color: #071b4a;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.nav-chevron {
    font-size: 10px;
    margin-left: 4px;
    color: #64748b;
}

.nav-content a:hover,
.nav-content a.active {
    color: #0d6efd;
}

.nav-content a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 3px;
    background: #0d6efd;
    border-radius: 10px;
    transition: width 0.25s ease;
}

.nav-content a:hover::after,
.nav-content a.active::after {
    width: 100%;
}

/* =====================
   HERO
   ===================== */

.hero-section {
    position: relative;
    min-height: clamp(520px, 72vh, 680px);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 75% center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(2, 16, 40, 0.88) 0%,
        rgba(4, 22, 52, 0.72) 16%,
        rgba(7, 27, 74, 0.48) 30%,
        rgba(7, 27, 74, 0.22) 42%,
        rgba(7, 27, 74, 0.06) 52%,
        transparent 62%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: clamp(520px, 72vh, 680px);
    display: flex;
    align-items: center;
    padding: 48px 0 clamp(130px, 14vh, 160px);
}

.hero-left {
    position: relative;
    max-width: 420px;
    color: #fff;
}

.hero-left h1 {
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-left p {
    font-size: clamp(0.98rem, 1.3vw, 1.05rem);
    line-height: 1.7;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.96);
    max-width: 400px;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.primary-btn {
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 10px 28px rgba(13, 110, 253, 0.28);
}

.primary-btn:hover {
    transform: translateY(-2px);
    background: #0056d2;
}

.secondary-btn {
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.secondary-btn:hover {
    background: #fff;
    color: #071b4a;
}

/* Hero layout + right panel */
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
}

.hero-side-panel {
    width: 100%;
    max-width: 300px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(7, 27, 74, 0.18);
    border: 1px solid rgba(7, 27, 74, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.hero-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid #eef2f6;
}

.hero-panel-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.hero-panel-brand img {
    width: 42px;
    height: auto;
    flex-shrink: 0;
}

.hero-panel-brand strong {
    display: block;
    font-size: 14px;
    color: #071b4a;
    line-height: 1.2;
}

.hero-panel-brand span {
    display: block;
    font-size: 11px;
    color: #64748b;
    line-height: 1.3;
}

.hero-panel-close {
    display: none;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.hero-panel-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #eef2f6;
}

.hero-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 8px;
    text-decoration: none;
    color: #071b4a;
    border-right: 1px solid #eef2f6;
    transition: background 0.2s ease;
}

.hero-quick-item:last-child {
    border-right: none;
}

.hero-quick-item:hover {
    background: #f8fbff;
}

.hero-quick-item i {
    font-size: 20px;
    color: #0d6efd;
    margin-bottom: 6px;
}

.hero-quick-item:nth-child(2) i {
    color: #25d366;
}

.hero-quick-item span {
    font-size: 12px;
    font-weight: 600;
}

.hero-quick-item small {
    font-size: 10px;
    color: #64748b;
    margin-top: 2px;
}

.hero-panel-nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.hero-panel-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    text-decoration: none;
    color: #071b4a;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.hero-panel-nav a .fa-angle-right {
    color: #0d6efd;
    font-size: 14px;
}

.hero-panel-nav a .fa-chevron-down {
    margin-left: auto;
    font-size: 10px;
    color: #94a3b8;
}

.hero-panel-nav a:hover,
.hero-panel-nav a.active {
    background: #f0f6ff;
    color: #0d6efd;
}

.hero-panel-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px 14px 14px;
    padding: 14px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.3);
    transition: background 0.2s ease;
}

.hero-panel-call:hover {
    background: #0056d2;
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-panel-open-btn {
    display: none;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #071b4a;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.hero-panel-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 16, 40, 0.55);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-panel-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

/* =====================
   FEATURES — separate premium cards
   ===================== */

.features-section {
    margin-top: -88px;
    position: relative;
    z-index: 20;
    padding-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 34px 22px;
    text-align: center;
    border: 1px solid rgba(7, 27, 74, 0.07);
    box-shadow: 0 14px 36px rgba(7, 27, 74, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(7, 27, 74, 0.14);
}

.feature-card i {
    font-size: 2.25rem;
    color: #0d6efd;
    margin-bottom: 14px;
    display: block;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: #071b4a;
    font-weight: 700;
}

.feature-card p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0;
}

/* =====================
   HOME SECTIONS (shared)
   ===================== */

.home-section {
    padding: 90px 0;
}

.section-badge {
    display: inline-block;
    background: #eef4ff;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    color: #071b4a;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
    max-width: 640px;
}

.section-header.center {
    text-align: center;
    margin-bottom: 48px;
}

.section-header.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.section-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(13, 110, 253, 0.28);
    transition: transform 0.25s ease, background 0.25s ease;
}

.section-btn:hover {
    background: #0056d2;
    transform: translateY(-2px);
}

/* ABOUT */
.about-section {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(7, 27, 74, 0.12);
}

.about-float-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(7, 27, 74, 0.15);
}

.about-float-badge i {
    font-size: 28px;
    color: #0d6efd;
}

.about-float-badge strong {
    display: block;
    color: #071b4a;
    font-size: 15px;
}

.about-float-badge span {
    font-size: 13px;
    color: #64748b;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0 32px;
}

.about-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 18px 20px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.about-highlight-card:hover {
    box-shadow: 0 12px 28px rgba(7, 27, 74, 0.08);
    transform: translateY(-2px);
}

.about-highlight-card i {
    font-size: 22px;
    color: #0d6efd;
    margin-top: 2px;
}

.about-highlight-card h4 {
    font-size: 15px;
    color: #071b4a;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-highlight-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* DEPARTMENTS */
.departments-section {
    background: #f8fafc;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.dept-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(7, 27, 74, 0.06);
    box-shadow: 0 12px 32px rgba(7, 27, 74, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dept-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(7, 27, 74, 0.1);
}

.dept-card i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 18px;
    display: block;
}

.dept-card h3 {
    font-size: 1.125rem;
    color: #071b4a;
    font-weight: 700;
    margin-bottom: 10px;
}

.dept-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* DOCTORS SECTION */

.doctors-section{
    background:#fff;
}

.doctors-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.doctor-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(7,27,74,0.06);
    box-shadow:0 12px 35px rgba(7,27,74,0.08);
    transition:0.35s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.doctor-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 50px rgba(7,27,74,0.12);
}

.doctor-image{
    height:340px;
    overflow:hidden;
    background:#eef4ff;
}

.doctor-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top center;
    display:block;
}

.doctor-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.doctor-content h3{
    font-size:30px;
    color:#071b4a;
    font-weight:700;
    margin-bottom:10px;
    line-height:1.2;
}

.doctor-degree{
    display:block;
    font-size:15px;
    color:#0d6efd;
    font-weight:600;
    margin-bottom:18px;
}

.doctor-speciality{
    font-size:15px;
    color:#555;
    line-height:1.8;
    margin-bottom:22px;
}

.doctor-points{
    padding-left:18px;
    margin-bottom:28px;
}

.doctor-points li{
    font-size:15px;
    color:#444;
    line-height:1.7;
    margin-bottom:10px;
}

.doctor-btn{
    margin-top:auto;
    display:inline-block;
    text-align:center;
    padding:14px 24px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:12px;
    transition:0.3s ease;
}

.doctor-btn:hover{
    background:#071b4a;
    color:#fff;
}

.home-doctors-grid .doctor-timing,
.home-doctors-grid .doctor-fees {
    display: none;
}

/* RESPONSIVE */

@media(max-width:992px){

    .doctors-grid{
        grid-template-columns:1fr;
    }

    .doctor-image{
        height:320px;
    }

}

/* CONTACT */
.contact-section {
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    box-shadow: 0 8px 24px rgba(7, 27, 74, 0.05);
}

.contact-info-card i {
    font-size: 20px;
    color: #0d6efd;
    margin-top: 2px;
}

.contact-info-card h4 {
    font-size: 14px;
    color: #071b4a;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.contact-info-card a {
    color: #64748b;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #0d6efd;
}

.contact-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    background: #eef4ff;
    color: #071b4a;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 18px;
    border-radius: 50px;
}

.contact-trust-badge i {
    color: #0d6efd;
}

.appointment-form {
    background: #fff;
    padding: 36px 32px;
    border-radius: 20px;
    box-shadow: 0 20px 48px rgba(7, 27, 74, 0.1);
    border: 1px solid rgba(7, 27, 74, 0.06);
}

.appointment-form h3 {
    font-size: 1.35rem;
    color: #071b4a;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #071b4a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #111;
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    background: #fff;
}

.form-submit-btn {
    width: 100%;
    margin-top: 8px;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
}

/* =====================
   FOOTER
   ===================== */

.site-footer {
    margin-top: 40px;
}

.footer-cta {
    background: linear-gradient(135deg, #02163b 0%, #071b4a 50%, #0d3a7a 100%);
    padding: 48px 0;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-cta-text h3 {
    color: #fff;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-cta-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.footer-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.footer-btn-primary {
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 10px 28px rgba(13, 110, 253, 0.35);
}

.footer-btn-primary:hover {
    background: #0056d2;
    transform: translateY(-2px);
}

.footer-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
}

.footer-btn-outline:hover {
    background: #fff;
    color: #071b4a;
}

.footer-main {
    background: #f8fafc;
    padding: 56px 0 40px;
    border-top: 1px solid #eef2f6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    color: #071b4a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-about p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin: 16px 0 20px;
    max-width: 320px;
}

.footer-logo img {
    width: 120px;
    height: auto;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-2px);
}

.footer-social a:nth-child(3):hover {
    background: #25d366;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #0d6efd;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}

.footer-contact-list i {
    color: #0d6efd;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: #64748b;
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: #0d6efd;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #e8eef4;
    font-size: 14px;
    color: #64748b;
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours strong {
    color: #071b4a;
    font-weight: 600;
    white-space: nowrap;
}

.footer-bottom {
    background: #02163b;
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 1200px) {
    .header-content {
        flex-wrap: wrap;
    }

    .header-contact {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 18px;
    }

    .nav-content {
        gap: 28px;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 991px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-contact {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

    .nav-content {
        justify-content: flex-start;
        gap: 22px;
        padding: 16px 0;
    }

    .hero-image {
        object-position: 68% center;
    }

    .hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(2, 16, 40, 0.9) 0%,
            rgba(7, 27, 74, 0.55) 45%,
            transparent 75%
        );
    }

    .hero-image {
        object-position: 68% center;
    }

    .hero-content {
        min-height: auto;
        padding: 80px 0 120px;
    }

    .hero-inner {
        display: block;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-side-panel {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 92vw);
        max-width: none;
        height: 100vh;
        height: 100dvh;
        border-radius: 0;
        z-index: 1200;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        overflow-y: auto;
    }

    .hero-side-panel.is-open {
        transform: translateX(0);
    }

    .hero-panel-close {
        display: block;
    }

    .hero-panel-open-btn {
        display: inline-flex;
    }

    .nav-content {
        flex: 1;
    }
}

@media (max-width: 991px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .departments-grid,
    .doctors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-media img {
        min-height: 320px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .home-section {
        padding: 64px 0;
    }

    .departments-grid,
    .doctors-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta-buttons {
        width: 100%;
    }

    .footer-btn {
        flex: 1;
        justify-content: center;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .top-item {
        white-space: normal;
    }

    .logo-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-section img {
        width: 140px;
        max-width: 140px;
    }

    .logo-text h2 {
        font-size: 24px;
    }

    .header-contact {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .contact-box strong {
        font-size: 16px;
    }

    .features-section {
        margin-top: -56px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 576px) {
    .nav-content {
        gap: 16px 20px;
    }

    .nav-content a {
        font-size: 15px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .appointment-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-box {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .hero-left {
        max-width: 400px;
    }

    .hero-panel-open-btn {
        display: none !important;
    }
}
/* =========================================
   PAYMENT SUCCESS PAGE
========================================= */

.payment-success-section{

    padding:100px 0;

    background:#f4f7fc;

}

.success-card{

    max-width:750px;

    margin:auto;

    background:#ffffff;

    border-radius:30px;

    padding:60px;

    text-align:center;

    box-shadow:0 15px 50px rgba(0,0,0,0.08);

}

.success-icon{

    width:120px;
    height:120px;

    margin:0 auto 30px;

    border-radius:50%;

    background:#16c172;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:55px;
    color:#fff;

}

.success-title{

    font-size:42px;
    font-weight:800;

    color:#052259;

    margin-bottom:18px;

}

.success-text{

    font-size:18px;

    line-height:1.8;

    color:#5f6c8f;

    margin-bottom:40px;

}

.summary-box{

    background:#f7f9fd;

    border-radius:20px;

    padding:35px;

    margin-bottom:40px;

}

.summary-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

    padding-bottom:15px;

    border-bottom:1px solid #e4e8f1;

}

.summary-item:last-child{

    margin-bottom:0;

    border-bottom:none;

    padding-bottom:0;

}

.summary-item strong{

    color:#052259;

    font-size:17px;

}

.summary-item span{

    color:#444;

    font-weight:600;

}

.success-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.success-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 32px;

    border-radius:12px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    transition:0.3s ease;

}

.primary-btn{

    background:#0d6efd;

    color:#fff;

}

.primary-btn:hover{

    background:#0b5ed7;

    color:#fff;

}

.secondary-btn{

    border:2px solid #0d6efd;

    color:#0d6efd;

}

.secondary-btn:hover{

    background:#0d6efd;

    color:#fff;

}

@media(max-width:768px){

    .success-card{

        padding:40px 25px;

    }

    .success-title{

        font-size:32px;

    }

    .summary-item{

        flex-direction:column;

        align-items:flex-start;

        gap:8px;

    }

}
/* =========================================
   PAYMENT FAILED PAGE
========================================= */

.payment-failed-section{

    padding:100px 0;

    background:#f4f7fc;

}

.failed-card{

    max-width:750px;

    margin:auto;

    background:#ffffff;

    border-radius:30px;

    padding:60px;

    text-align:center;

    box-shadow:0 15px 50px rgba(0,0,0,0.08);

}

.failed-icon{

    width:120px;
    height:120px;

    margin:0 auto 30px;

    border-radius:50%;

    background:#ff4d4f;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:55px;
    color:#fff;

}

.failed-title{

    font-size:42px;
    font-weight:800;

    color:#052259;

    margin-bottom:18px;

}

.failed-text{

    font-size:18px;

    line-height:1.8;

    color:#5f6c8f;

    margin-bottom:40px;

}

.failed-summary-box{

    background:#f7f9fd;

    border-radius:20px;

    padding:35px;

    margin-bottom:40px;

}

.failed-summary-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

    padding-bottom:15px;

    border-bottom:1px solid #e4e8f1;

}

.failed-summary-item:last-child{

    margin-bottom:0;

    border-bottom:none;

    padding-bottom:0;

}

.failed-summary-item strong{

    color:#052259;

    font-size:17px;

}

.failed-summary-item span{

    color:#444;

    font-weight:600;

}

.failed-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.failed-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 32px;

    border-radius:12px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    transition:0.3s ease;

}

.retry-btn{

    background:#ff4d4f;

    color:#fff;

}

.retry-btn:hover{

    background:#e6393c;

    color:#fff;

}

.home-btn{

    border:2px solid #0d6efd;

    color:#0d6efd;

}

.home-btn:hover{

    background:#0d6efd;

    color:#fff;

}

@media(max-width:768px){

    .failed-card{

        padding:40px 25px;

    }

    .failed-title{

        font-size:32px;

    }

    .failed-summary-item{

        flex-direction:column;

        align-items:flex-start;

        gap:8px;

    }

}