:root {
    --font-base: clamp(14px, 1.1vw + 11px, 16px);
    --font-lg: clamp(18px, 1.5vw + 13px, 22px);
    --font-xl: clamp(22px, 2vw + 14px, 28px);
    --max-width: 1100px;
    --spacing-h: clamp(1rem, 3vw, 1.5rem);
    --hero-top-padding: clamp(1.6rem, 3.5vw, 2.4rem);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
}

body {
    background: #f5f5f5;
    font-size: var(--font-base);
    line-height: 1.5;
    color: #123a5d;
}

img {
    max-width: 100%;
    height: auto;
}

/* ======= SHARED BACKGROUND FOR NAVBAR + HERO ======= */
.top-hero {
    position: relative;
    overflow: hidden;
}

.top-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.pexels.com/photos/8460127/pexels-photo-8460127.jpeg?auto=compress&cs=tinysrgb&w=1600");
    background-size: cover;
    background-position: center center;
    filter: brightness(0.9);
    z-index: 0;
}

.top-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 46, 81, 0.92) 0%,
        rgba(11, 90, 140, 0.78) 40%,
        rgba(255, 255, 255, 0.08) 100%
    );
    z-index: 1;
}

.top-hero-inner {
    position: relative;
    z-index: 2;
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem var(--spacing-h);
    background: transparent;
    color: #eaf5ff;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
    flex: 1 1 auto;
}

.navbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: var(--font-lg);
    color: #eaf5ff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.navbar-logo svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    color: #eaf5ff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(6, 40, 70, 0.35);
    border: 1px solid rgba(186, 219, 246, 0.5);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(186, 219, 246, 0.9);
    color: #0c3658;
    transform: translateY(-1px);
}

    /* ---------- Mobile hamburger ---------- */
    .navbar-hamburger {
    display: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(186, 219, 246, 0.7);
    background: rgba(6, 40, 70, 0.8);
    cursor: pointer;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

    .navbar-hamburger i {
    color: #ffffff;
    font-size: 18px;
}

    /* Side menu overlay and panel (mobile) */
    .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 100;
}

    .mobile-menu-overlay.open {
    display: block;
}

    .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 85vw;
    max-width: 360px;
    background: rgba(5, 46, 81, 0.7);
    backdrop-filter: blur(10px);
    color: #eaf5ff;
    padding: 1.2rem 1.2rem;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateX(100%);
    transition: transform 0.25s ease-out;
}

    .mobile-menu-overlay.open .mobile-menu-panel {
    transform: translateX(0);
}

    .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

    .mobile-menu-title {
    font-size: 1rem;
    font-weight: 600;
}

    .mobile-menu-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(220, 236, 249, 0.8);
    background: rgba(11, 60, 97, 0.8);
    color: #eaf5ff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mobile-menu-items {
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

    .mobile-menu-item {
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    background: rgba(10, 61, 101, 0.7);
    border: 1px solid rgba(190, 220, 243, 0.5);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s, transform 0.1s;
}

    .mobile-menu-item:hover {
    background: rgba(190, 220, 243, 0.9);
    color: #0c3455;
    transform: translateY(-1px);
}

    .mobile-menu-item-arrow {
    font-size: 0.8rem;
    opacity: 0.8;
}

    /* ================= HERO / DOCTOR SECTION ================= */
    .hero-wrapper {
    min-height: 380px;
    display: flex;
    justify-content: center;
    padding: 0 var(--spacing-h) 2.5rem;
}

    .hero-inner {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    padding-top: var(--hero-top-padding);
    flex-wrap: wrap;
}

    .hero-content {
    flex: 1 1 260px;
    min-width: 0;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
    order: 1;
}

    .hero-name {
    font-size: var(--font-xl);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

    .hero-title {
    font-size: var(--font-base);
    font-weight: 600;
    color: #d7ecff;
    margin-bottom: 0.75rem;
}

    .hero-qualification {
    font-size: 0.95rem;
    color: #e4f3ff;
    margin-bottom: 0.25rem;
}

    .hero-divider {
    width: 60px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #8fd1ff, #ffffff);
    margin: 1rem 0 1.25rem;
}

    .hero-summary {
    font-size: 0.96rem;
    color: #f5fbff;
    line-height: 1.7;
    margin-bottom: 1.1rem;
    max-width: 36rem;
}

    .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.2rem;
}

    .hero-tag {
    font-size: 0.78rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(224, 244, 255, 0.18);
    border: 1px solid rgba(201, 231, 255, 0.6);
    color: #f0fbff;
    backdrop-filter: blur(2px);
}

    .hero-photo {
    flex: 0 1 260px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    order: 2;
}

    .hero-photo-card {
    width: 100%;
    max-width: 260px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    padding: 0.75rem;
    backdrop-filter: blur(6px);
}

    .hero-photo-card img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    aspect-ratio: 3 / 4;
}

    .hero-photo-caption {
    margin-top: 0.45rem;
    font-size: 0.8rem;
    color: #33516c;
    text-align: center;
}

    /* ================= SERVICES / TESTIMONIALS / FOOTER (unchanged) ================= */
    .services-wrapper {
    background: linear-gradient(180deg, #e6f4ff 0%, #ffffff 60%);
    padding: 2.5rem var(--spacing-h) 2.5rem;
    display: flex;
    justify-content: center;
}

    .services-inner {
    width: 100%;
    max-width: var(--max-width);
}

    .services-header {
    text-align: center;
    margin-bottom: 1.8rem;
    padding: 0 0.5rem;
}

    .services-title {
    font-size: var(--font-lg);
    font-weight: 700;
    color: #123a5d;
    margin-bottom: 0.4rem;
}

    .services-subtitle {
    font-size: 0.95rem;
    color: #49647b;
    max-width: 600px;
    margin: 0 auto;
}

    .services-carousel {
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

    .services-carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
}

    .services-slide {
    min-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

    .slide-image {
    flex: 0 0 45%;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

    .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

    .services-slide:hover .slide-image img {
    transform: scale(1.05);
}

    .slide-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.25), transparent 60%);
    pointer-events: none;
}

    .slide-content {
    flex: 1;
    padding: clamp(1.2rem, 2vw, 1.8rem) clamp(1.2rem, 2.3vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
}

    .slide-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #123a5d;
}

    .slide-tagline {
    font-size: 0.9rem;
    color: #2770a4;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

    .slide-text {
    font-size: 0.9rem;
    color: #4b6074;
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

    .slide-bullets {
    margin-top: 0.2rem;
    font-size: 0.86rem;
    color: #34526b;
    padding-left: 1.1rem;
}

    .slide-bullets li {
    margin-bottom: 0.15rem;
}

    .services-carousel:hover .carousel-arrow {
    opacity: 1;
    pointer-events: auto;
}

    .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(11, 60, 97, 0.86);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

    .carousel-arrow.left {
    left: 12px;
}

    .carousel-arrow.right {
    right: 12px;
}

    .carousel-arrow:hover {
    background: rgba(11, 60, 97, 1);
    transform: translateY(-50%) scale(1.05);
}

    .carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

    .carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #0b3c61;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .carousel-dot.active {
    background: #0b87d0;
    transform: scale(1.1);
}

    .testimonials-wrapper {
    background: linear-gradient(180deg, #e6f4ff 0%, #ffffff 50%, #ffffff 100%);
    padding: 2.5rem var(--spacing-h) 2.5rem;
    display: flex;
    justify-content: center;
}

    .testimonials-inner {
    width: 100%;
    max-width: var(--max-width);
}

    .testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

    .testimonials-title {
    font-size: var(--font-lg);
    font-weight: 700;
    color: #123a5d;
    margin-bottom: 0.4rem;
}

    .testimonials-subtitle {
    font-size: 0.95rem;
    color: #49647b;
    max-width: 600px;
    margin: 0.2rem auto 0;
}

    .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

    .testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.25rem 1.2rem 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #0b87d0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

    .testimonial-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
    gap: 0.5rem;
}

    .testimonial-name {
    font-weight: 600;
    font-size: 0.98rem;
    color: #123a5d;
}

    .testimonial-meta {
    font-size: 0.8rem;
    color: #72839a;
}

    .testimonial-stars {
    color: #ffb400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

    .testimonial-text {
    font-size: 0.9rem;
    color: #4b6074;
    line-height: 1.55;
    margin-bottom: 0.7rem;
}

    .testimonial-date {
    font-size: 0.78rem;
    color: #9aa7b6;
    margin-top: 0.3rem;
}

    .footer {
    background: #0b3c61;
    color: #e5f2ff;
    padding: 0.8rem var(--spacing-h);
    font-size: 0.82rem;
}

    .footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

    .footer-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

    .footer-link {
    color: #e5f2ff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    white-space: nowrap;
}

    .footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #8fd1ff;
    transition: width 0.2s ease-out;
}

    .footer-link:hover::after {
    width: 100%;
}

    .footer-copy {
    color: #c2d6ea;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

    /* ================= RESPONSIVE ================= */
    @media (max-width: 900px) {
    .hero-inner {
      padding-top: 1.8rem;
      flex-direction: column;
      align-items: stretch;
}

    .hero-photo {
      order: 1;
      align-self: center;
}

    .hero-content {
      order: 2;
      margin-top: 1rem;
}

    .testimonials-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

    @media (max-width: 600px) {
    .navbar {
      padding-inline: 0.9rem;
}

    .navbar-right {
      display: none;
}

    .navbar-hamburger {
      display: inline-flex;
}

    .hero-wrapper {
      padding-inline: 0.9rem;
}

    .hero-inner {
      gap: 1.5rem;
}

    .hero-content {
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

    .services-wrapper,
    .testimonials-wrapper,
    .footer {
      padding-inline: 0.9rem;
}

    .services-slide {
      flex-direction: column;
}

    .slide-image {
      flex: 0 0 auto;
      min-height: 220px;
}

    .testimonials-grid {
      grid-template-columns: 1fr;
}

    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
}

    .footer-copy {
      text-align: left;
}
}

    @media (min-width: 1400px) {
    :root {
      --max-width: 1200px;
}
}

/* ===== From appointments.html ===== */
:root {
    --font-base: clamp(14px, 1.1vw + 11px, 16px);
    --font-lg: clamp(18px, 1.5vw + 13px, 22px);
    --font-xl: clamp(22px, 2vw + 14px, 28px);
    --max-width: 1100px;
    --spacing-h: clamp(1rem, 3vw, 1.5rem);
}

    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
}

    body {
    font-size: var(--font-base);
    line-height: 1.5;
    color: #123a5d;
    background: radial-gradient(circle at bottom right, #cfe7ff 0%, #f7fbff 45%, #ffffff 100%);
    min-height: 100vh;
}

    img {
    max-width: 100%;
    height: auto;
}

    /* ======= NAVBAR BACKGROUND ======= */
    .top-hero {
    position: relative;
    overflow: hidden;
}

    .top-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.pexels.com/photos/8460127/pexels-photo-8460127.jpeg?auto=compress&cs=tinysrgb&w=1600");
    background-size: cover;
    background-position: center center;
    filter: brightness(0.9);
    z-index: 0;
}

    .top-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(10, 70, 120, 0.9) 0%,
      rgba(21, 115, 170, 0.8) 40%,
      rgba(248, 252, 255, 0.2) 100%
    );
    z-index: 1;
}

    .top-hero-inner {
    position: relative;
    z-index: 2;
}

    /* ================= NAVBAR ================= */
    .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem var(--spacing-h);
    background: transparent;
    color: #eaf5ff;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 0.75rem;
    flex-wrap: wrap;
}

    .navbar-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
    flex: 1 1 auto;
}

    .navbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: var(--font-lg);
    color: #eaf5ff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

    .navbar-logo svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

    .navbar-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

    .nav-link {
    color: #eaf5ff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(6, 40, 70, 0.35);
    border: 1px solid rgba(186, 219, 246, 0.5);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

    .nav-link:hover {
    background: rgba(186, 219, 246, 0.9);
    color: #0c3658;
    transform: translateY(-1px);
}

    .navbar-hamburger {
    display: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(186, 219, 246, 0.7);
    background: rgba(6, 40, 70, 0.8);
    cursor: pointer;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

    .navbar-hamburger i {
    color: #ffffff;
    font-size: 18px;
}

    /* Mobile side menu */
    .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 100;
}

    .mobile-menu-overlay.open {
    display: block;
}

    .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 85vw;
    max-width: 360px;
    background: rgba(5, 46, 81, 0.85);
    backdrop-filter: blur(12px);
    color: #eaf5ff;
    padding: 1.2rem 1.2rem;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateX(100%);
    transition: transform 0.25s ease-out;
}

    .mobile-menu-overlay.open .mobile-menu-panel {
    transform: translateX(0);
}

    .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

    .mobile-menu-title {
    font-size: 1rem;
    font-weight: 600;
}

    .mobile-menu-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(220, 236, 249, 0.8);
    background: rgba(11, 60, 97, 0.8);
    color: #eaf5ff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mobile-menu-items {
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

    .mobile-menu-item {
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    background: rgba(10, 61, 101, 0.7);
    border: 1px solid rgba(190, 220, 243, 0.5);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s, transform 0.1s;
}

    .mobile-menu-item:hover {
    background: rgba(190, 220, 243, 0.9);
    color: #0c3455;
    transform: translateY(-1px);
}

    .mobile-menu-item-arrow {
    font-size: 0.8rem;
    opacity: 0.8;
}

    /* ====== APPOINTMENTS LAYOUT ====== */
    .appointments-wrapper {
    padding: 2.5rem var(--spacing-h) 3rem;
    display: flex;
    justify-content: center;
}

    .appointments-inner {
    max-width: var(--max-width);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

    .appointments-header {
    text-align: left;
}

    .appointments-title {
    font-size: var(--font-lg);
    font-weight: 700;
    color: #123a5d;
    margin-bottom: 0.35rem;
}

    .appointments-subtitle {
    font-size: 0.94rem;
    color: #49647b;
    max-width: 560px;
}

    .appointments-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.8rem;
    align-items: flex-start;
}

    /* Appointment form card */
    .appointment-form-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5fbff 45%, #e3f2ff 100%);
    border-radius: 22px;
    border: 1px solid rgba(183, 213, 240, 0.9);
    box-shadow: 0 16px 40px rgba(13, 58, 92, 0.16);
    padding: 1.7rem 1.5rem 1.8rem;
}

    .section-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #123a5d;
    margin-bottom: 0.8rem;
}

    .form-group {
    margin-bottom: 0.8rem;
}

    .form-label {
    display: block;
    font-size: 0.85rem;
    color: #49647b;
    margin-bottom: 0.25rem;
}

    .form-input,
    .form-select,
    .form-textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #c8d8eb;
    padding: 0.45rem 0.6rem;
    font-size: 0.9rem;
    outline: none;
    background: #ffffff;
    transition: border 0.15s, box-shadow 0.15s;
}

    .form-select {
    padding-right: 1.8rem;
}

    .form-textarea {
    min-height: 70px;
    resize: vertical;
}

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
    border-color: #0b87d0;
    box-shadow: 0 0 0 2px rgba(11, 135, 208, 0.15);
}

    .form-inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

    .form-button-row {
    margin-top: 0.6rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: center;
}

    .btn-primary {
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #0b87d0, #0b3c61);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.4rem;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(11, 60, 97, 0.3);
    transition: transform 0.1s, box-shadow 0.1s;
}

    .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(11, 60, 97, 0.35);
}

    .form-note {
    font-size: 0.78rem;
    color: #6b7f93;
}

    /* Appointments list card */
    .appointments-list-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #dce6f5;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    padding: 1.5rem 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

    .appointments-list-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0.6rem;
}

    .appointments-filter-group {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    align-items: center;
}

    .filter-pill {
    font-size: 0.78rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    border: 1px solid #c6d8ec;
    background: #f5faff;
    color: #31577b;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

    .filter-pill.active {
    background: #0b87d0;
    color: #ffffff;
    border-color: #0b87d0;
}

    .appointments-search {
    position: relative;
    flex: 1 1 140px;
    max-width: 220px;
}

    .appointments-search input {
    width: 100%;
    padding: 0.3rem 0.8rem 0.3rem 2rem;
    border-radius: 999px;
    border: 1px solid #c8d8eb;
    font-size: 0.82rem;
    outline: none;
    background: #f7fbff;
}

    .appointments-search input:focus {
    border-color: #0b87d0;
    box-shadow: 0 0 0 2px rgba(11, 135, 208, 0.15);
    background: #ffffff;
}

    .appointments-search i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #7c93ab;
}

    .appointments-list {
    border-radius: 12px;
    border: 1px solid #dde6f5;
    overflow: hidden;
    background: #fbfdff;
}

    .appointment-row {
    padding: 0.6rem 0.8rem;
    display: grid;
    grid-template-columns: 1.4fr 1.4fr 1.1fr 0.8fr;
    gap: 0.4rem;
    align-items: center;
    border-bottom: 1px solid #e6edf8;
    cursor: pointer;
    font-size: 0.82rem;
    transition: background 0.15s;
}

    .appointment-row:last-child {
    border-bottom: none;
}

    .appointment-row:hover {
    background: #eef6ff;
}

    .appointment-header-row {
    background: #f0f6ff;
    font-weight: 600;
    color: #30557b;
    cursor: default;
}

    .appointment-badge {
    display: inline-block;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    border: 1px solid;
}

    .status-upcoming {
    background: #e6f6ff;
    color: #0b5f95;
    border-color: #a9d4f4;
}

    .status-completed {
    background: #e6f9e9;
    color: #23723e;
    border-color: #aadfbc;
}

    .status-cancelled {
    background: #ffecec;
    color: #a93a3a;
    border-color: #f3b6b6;
}

    /* Appointment details / side panel */
    .appointment-detail-card {
    margin-top: 0.4rem;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #dfe7f5;
    padding: 0.9rem 0.9rem;
    font-size: 0.82rem;
    color: #4b6074;
}

    .appointment-detail-heading {
    font-weight: 600;
    color: #123a5d;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

    .appointment-detail-heading i {
    color: #0b87d0;
}

    .appointment-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.25rem;
}

    .appointment-detail-label {
    color: #6b7f93;
}

    .appointment-detail-value {
    color: #123a5d;
    font-weight: 500;
}

    .appointment-detail-notes {
    margin-top: 0.5rem;
    line-height: 1.5;
}

    .appointment-detail-actions {
    margin-top: 0.6rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

    .btn-secondary {
    border-radius: 999px;
    border: 1px solid #c8d8eb;
    background: #f5fbff;
    color: #123a5d;
    font-size: 0.8rem;
    padding: 0.35rem 0.9rem;
    cursor: pointer;
    transition: background 0.1s, transform 0.1s;
}

    .btn-secondary:hover {
    background: #e2f1ff;
    transform: translateY(-1px);
}

    /* FOOTER */
    .footer {
    background: #0b3c61;
    color: #e5f2ff;
    padding: 0.8rem var(--spacing-h);
    font-size: 0.82rem;
}

    .footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

    .footer-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

    .footer-link {
    color: #e5f2ff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    white-space: nowrap;
}

    .footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #8fd1ff;
    transition: width 0.2s ease-out;
}

    .footer-link:hover::after {
    width: 100%;
}

    .footer-copy {
    color: #c2d6ea;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

    /* RESPONSIVE */
    @media (max-width: 900px) {
    .appointments-layout {
      grid-template-columns: 1fr;
}
}

    @media (max-width: 600px) {
    .navbar {
      padding-inline: 0.9rem;
}

    .navbar-right {
      display: none;
}

    .navbar-hamburger {
      display: inline-flex;
}

    .appointments-wrapper,
    .footer {
      padding-inline: 0.9rem;
}

    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
}

    .footer-copy {
      text-align: left;
}

    .appointment-row {
      grid-template-columns: 1.4fr 1.4fr;
      grid-auto-rows: auto;
      row-gap: 0.2rem;
}
}

    @media (min-width: 1400px) {
    :root {
      --max-width: 1200px;
}
}

/* ===== From contact_us.html ===== */
:root {
    --font-base: clamp(14px, 1.1vw + 11px, 16px);
    --font-lg: clamp(18px, 1.5vw + 13px, 22px);
    --font-xl: clamp(22px, 2vw + 14px, 28px);
    --max-width: 1100px;
    --spacing-h: clamp(1rem, 3vw, 1.5rem);
}

    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
}

    body {
    font-size: var(--font-base);
    line-height: 1.5;
    color: #123a5d;
    /* Reversed gradient: lighter at top / left, deeper blue towards bottom / right */
    background: radial-gradient(circle at bottom right, #d0e7ff 0%, #f5fbff 45%, #ffffff 100%);
    min-height: 100vh;
}

    img {
    max-width: 100%;
    height: auto;
}

    /* ======= NAVBAR BACKGROUND (same as main theme) ======= */
    .top-hero {
    position: relative;
    overflow: hidden;
}

    .top-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.pexels.com/photos/8460127/pexels-photo-8460127.jpeg?auto=compress&cs=tinysrgb&w=1600");
    background-size: cover;
    background-position: center center;
    filter: brightness(0.9);
    z-index: 0;
}

    .top-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(10, 70, 120, 0.9) 0%,
      rgba(21, 115, 170, 0.8) 40%,
      rgba(248, 252, 255, 0.2) 100%
    );
    z-index: 1;
}

    .top-hero-inner {
    position: relative;
    z-index: 2;
}

    /* ================= NAVBAR ================= */
    .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem var(--spacing-h);
    background: transparent;
    color: #eaf5ff;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 0.75rem;
    flex-wrap: wrap;
}

    .navbar-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
    flex: 1 1 auto;
}

    .navbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: var(--font-lg);
    color: #eaf5ff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

    .navbar-logo svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

    .navbar-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

    .nav-link {
    color: #eaf5ff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(6, 40, 70, 0.35);
    border: 1px solid rgba(186, 219, 246, 0.5);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

    .nav-link:hover {
    background: rgba(186, 219, 246, 0.9);
    color: #0c3658;
    transform: translateY(-1px);
}

    .user-menu {
    position: relative;
    cursor: pointer;
}

    .user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(6, 40, 70, 0.35);
    border: 1px solid rgba(186, 219, 246, 0.5);
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

    .user-menu-toggle:hover {
    background: rgba(186, 219, 246, 0.9);
    transform: translateY(-1px);
}

    .user-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #eaf5ff;
    color: #0b3c61;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

    .user-name {
    font-size: 0.9rem;
    color: #0b2340;
    font-weight: 600;
}

    .arrow-down {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #0b2340;
    flex-shrink: 0;
}

    .user-dropdown {
    position: absolute;
    right: 0;
    top: 110%;
    background: #ffffff;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    border-radius: 6px;
    min-width: 180px;
    overflow: hidden;
    display: none;
    z-index: 10;
}

    .user-dropdown.open {
    display: block;
}

    .user-dropdown-item {
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
}

    .user-dropdown-item:hover {
    background: #f0f6fb;
}

    .navbar-hamburger {
    display: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(186, 219, 246, 0.7);
    background: rgba(6, 40, 70, 0.8);
    cursor: pointer;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

    .navbar-hamburger i {
    color: #ffffff;
    font-size: 18px;
}

    /* Side menu overlay and panel (mobile) */
    .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 100;
}

    .mobile-menu-overlay.open {
    display: block;
}

    .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 85vw;
    max-width: 360px;
    background: rgba(5, 46, 81, 0.85);
    backdrop-filter: blur(12px);
    color: #eaf5ff;
    padding: 1.2rem 1.2rem;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateX(100%);
    transition: transform 0.25s ease-out;
}

    .mobile-menu-overlay.open .mobile-menu-panel {
    transform: translateX(0);
}

    .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

    .mobile-menu-title {
    font-size: 1rem;
    font-weight: 600;
}

    .mobile-menu-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(220, 236, 249, 0.8);
    background: rgba(11, 60, 97, 0.8);
    color: #eaf5ff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mobile-menu-items {
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

    .mobile-menu-item {
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    background: rgba(10, 61, 101, 0.7);
    border: 1px solid rgba(190, 220, 243, 0.5);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s, transform 0.1s;
}

    .mobile-menu-item:hover {
    background: rgba(190, 220, 243, 0.9);
    color: #0c3455;
    transform: translateY(-1px);
}

    .mobile-menu-item-arrow {
    font-size: 0.8rem;
    opacity: 0.8;
}

    /* ================= CONTACT SECTION ================= */
    .contact-wrapper {
    padding: 2.5rem var(--spacing-h) 3rem;
    display: flex;
    justify-content: center;
}

    .contact-inner {
    max-width: var(--max-width);
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    /* Keep the nice card styling for address + form */
    background: linear-gradient(135deg, #ffffff 0%, #f5fbff 45%, #e3f2ff 100%);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(13, 58, 92, 0.18);
    border: 1px solid rgba(183, 213, 240, 0.9);
    padding: 1.8rem 1.7rem 1.9rem;
}

    .contact-heading {
    font-size: var(--font-lg);
    font-weight: 700;
    color: #123a5d;
    margin-bottom: 0.75rem;
}

    .contact-subtitle {
    font-size: 0.95rem;
    color: #49647b;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

    .contact-card {
    background: #f3f8fd;
    border-radius: 14px;
    padding: 1.3rem 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #d1e6f7;
}

    .contact-row {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

    .contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0b3c61;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

    .contact-label {
    font-size: 0.85rem;
    color: #62758a;
    margin-bottom: 0.15rem;
}

    .contact-value {
    font-size: 0.95rem;
    color: #123a5d;
    font-weight: 500;
}

    .contact-hours {
    font-size: 0.9rem;
    color: #123a5d;
    margin-top: 0.4rem;
}

    .contact-hours span {
    display: inline-block;
    min-width: 7rem;
    color: #4b6074;
}

    .contact-form-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.3rem 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #d8e6f5;
}

    .contact-form-title {
    font-size: 1rem;
    font-weight: 600;
    color: #123a5d;
    margin-bottom: 0.75rem;
}

    .form-group {
    margin-bottom: 0.9rem;
}

    .form-label {
    display: block;
    font-size: 0.85rem;
    color: #4b6074;
    margin-bottom: 0.25rem;
}

    .form-input,
    .form-textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #c8d8eb;
    padding: 0.45rem 0.6rem;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.15s, box-shadow 0.15s;
    background: #ffffff;
}

    .form-textarea {
    min-height: 90px;
    resize: vertical;
}

    .form-input:focus,
    .form-textarea:focus {
    border-color: #0b87d0;
    box-shadow: 0 0 0 2px rgba(11, 135, 208, 0.15);
}

    .form-button {
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #0b87d0, #0b3c61);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.4rem;
    cursor: pointer;
    margin-top: 0.5rem;
    box-shadow: 0 6px 16px rgba(11, 60, 97, 0.3);
    transition: transform 0.1s, box-shadow 0.1s;
}

    .form-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(11, 60, 97, 0.35);
}

    /* GOOGLE MAP */
    .map-wrapper {
    padding: 0 var(--spacing-h) 2.3rem;
    display: flex;
    justify-content: center;
}

    .map-inner {
    max-width: var(--max-width);
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #c9e0f5;
    background: #ffffff;
}

    .map-inner iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

    /* FOOTER */
    .footer {
    background: linear-gradient(90deg, #0b3c61, #0b628f);
    color: #e5f2ff;
    padding: 0.8rem var(--spacing-h);
    font-size: 0.82rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

    .footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

    .footer-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

    .footer-link {
    color: #e5f2ff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    white-space: nowrap;
}

    .footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #8fd1ff;
    transition: width 0.2s ease-out;
}

    .footer-link:hover::after {
    width: 100%;
}

    .footer-copy {
    color: #c2d6ea;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

    /* RESPONSIVE */
    @media (max-width: 900px) {
    .contact-inner {
      grid-template-columns: 1fr;
}
}

    @media (max-width: 600px) {
    .navbar {
      padding-inline: 0.9rem;
}

    .navbar-right {
      display: none;
}

    .navbar-hamburger {
      display: inline-flex;
}

    .contact-wrapper,
    .map-wrapper,
    .footer {
      padding-inline: 0.9rem;
}

    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
}

    .footer-copy {
      text-align: left;
}
}

    @media (min-width: 1400px) {
    :root {
      --max-width: 1200px;
}
}

/* ===== From about_us.html ===== */
:root {
    --font-base: clamp(14px, 1.1vw + 11px, 16px);
    --font-lg: clamp(18px, 1.5vw + 13px, 22px);
    --font-xl: clamp(22px, 2vw + 14px, 28px);
    --max-width: 1100px;
    --spacing-h: clamp(1rem, 3vw, 1.5rem);
}

    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
}

    body {
    font-size: var(--font-base);
    line-height: 1.5;
    color: #123a5d;
    /* Same reversed gradient idea as contact page, but slightly adjusted */
    background: radial-gradient(circle at bottom right, #cfe7ff 0%, #f7fbff 45%, #ffffff 100%);
    min-height: 100vh;
}

    img {
    max-width: 100%;
    height: auto;
}

    /* ======= NAVBAR BACKGROUND ======= */
    .top-hero {
    position: relative;
    overflow: hidden;
}

    .top-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.pexels.com/photos/8460127/pexels-photo-8460127.jpeg?auto=compress&cs=tinysrgb&w=1600");
    background-size: cover;
    background-position: center center;
    filter: brightness(0.9);
    z-index: 0;
}

    .top-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(10, 70, 120, 0.9) 0%,
      rgba(21, 115, 170, 0.8) 40%,
      rgba(248, 252, 255, 0.2) 100%
    );
    z-index: 1;
}

    .top-hero-inner {
    position: relative;
    z-index: 2;
}

    /* ================= NAVBAR ================= */
    .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem var(--spacing-h);
    background: transparent;
    color: #eaf5ff;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 0.75rem;
    flex-wrap: wrap;
}

    .navbar-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
    flex: 1 1 auto;
}

    .navbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: var(--font-lg);
    color: #eaf5ff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

    .navbar-logo svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

    .navbar-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

    .nav-link {
    color: #eaf5ff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(6, 40, 70, 0.35);
    border: 1px solid rgba(186, 219, 246, 0.5);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

    .nav-link:hover {
    background: rgba(186, 219, 246, 0.9);
    color: #0c3658;
    transform: translateY(-1px);
}

    .user-menu {
    position: relative;
    cursor: pointer;
}

    .user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(6, 40, 70, 0.35);
    border: 1px solid rgba(186, 219, 246, 0.5);
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

    .user-menu-toggle:hover {
    background: rgba(186, 219, 246, 0.9);
    transform: translateY(-1px);
}

    .user-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #eaf5ff;
    color: #0b3c61;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

    .user-name {
    font-size: 0.9rem;
    color: #0b2340;
    font-weight: 600;
}

    .arrow-down {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #0b2340;
    flex-shrink: 0;
}

    .user-dropdown {
    position: absolute;
    right: 0;
    top: 110%;
    background: #ffffff;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    border-radius: 6px;
    min-width: 180px;
    overflow: hidden;
    display: none;
    z-index: 10;
}

    .user-dropdown.open {
    display: block;
}

    .user-dropdown-item {
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
}

    .user-dropdown-item:hover {
    background: #f0f6fb;
}

    .navbar-hamburger {
    display: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(186, 219, 246, 0.7);
    background: rgba(6, 40, 70, 0.8);
    cursor: pointer;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

    .navbar-hamburger i {
    color: #ffffff;
    font-size: 18px;
}

    /* Side menu overlay and panel (mobile) */
    .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 100;
}

    .mobile-menu-overlay.open {
    display: block;
}

    .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 85vw;
    max-width: 360px;
    background: rgba(5, 46, 81, 0.85);
    backdrop-filter: blur(12px);
    color: #eaf5ff;
    padding: 1.2rem 1.2rem;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateX(100%);
    transition: transform 0.25s ease-out;
}

    .mobile-menu-overlay.open .mobile-menu-panel {
    transform: translateX(0);
}

    .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

    .mobile-menu-title {
    font-size: 1rem;
    font-weight: 600;
}

    .mobile-menu-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(220, 236, 249, 0.8);
    background: rgba(11, 60, 97, 0.8);
    color: #eaf5ff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mobile-menu-items {
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

    .mobile-menu-item {
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    background: rgba(10, 61, 101, 0.7);
    border: 1px solid rgba(190, 220, 243, 0.5);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s, transform 0.1s;
}

    .mobile-menu-item:hover {
    background: rgba(190, 220, 243, 0.9);
    color: #0c3455;
    transform: translateY(-1px);
}

    .mobile-menu-item-arrow {
    font-size: 0.8rem;
    opacity: 0.8;
}

    /* ================= ABOUT SECTIONS ================= */
    .about-wrapper {
    padding: 2.5rem var(--spacing-h) 3rem;
    display: flex;
    justify-content: center;
}

    .about-inner {
    max-width: var(--max-width);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

    /* Hero section for About */
    .about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f5fbff 45%, #e3f2ff 100%);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(13, 58, 92, 0.18);
    border: 1px solid rgba(183, 213, 240, 0.9);
    padding: 1.8rem 1.7rem;
}

    .about-hero-heading {
    font-size: var(--font-xl);
    font-weight: 700;
    color: #123a5d;
    margin-bottom: 0.5rem;
}

    .about-hero-subheading {
    font-size: 0.96rem;
    color: #49647b;
    margin-bottom: 1.2rem;
    max-width: 520px;
}

    .about-hero-text {
    font-size: 0.94rem;
    color: #4b6074;
    line-height: 1.7;
    margin-bottom: 1rem;
}

    .about-highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.4rem;
}

    .about-highlight-pill {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: #e3f2ff;
    color: #14558a;
    border: 1px solid #c5def7;
}

    .about-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.1rem;
}

    .about-stat-card {
    flex: 0 0 120px;
    background: #ffffff;
    border-radius: 14px;
    padding: 0.7rem 0.8rem;
    border: 1px solid #d1e6f7;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    text-align: center;
}

    .about-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b3c61;
}

    .about-stat-label {
    font-size: 0.78rem;
    color: #4b6074;
    margin-top: 0.1rem;
}

    .about-hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

    .about-doctor-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #d4e4f5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 0.9rem 0.9rem 1.1rem;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 0.8rem;
}

    .about-doctor-photo {
    border-radius: 14px;
    overflow: hidden;
    background: #dfefff;
}

    .about-doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

    .about-doctor-info-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #123a5d;
    margin-bottom: 0.3rem;
}

    .about-doctor-info-subtitle {
    font-size: 0.85rem;
    color: #345d82;
    margin-bottom: 0.5rem;
}

    .about-doctor-info-text {
    font-size: 0.82rem;
    color: #4b6074;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

    .about-doctor-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.3rem;
}

    .about-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #e9f4ff;
    color: #165a8a;
    border: 1px solid #c7e0f9;
}

    /* Why choose us */
    .about-why {
    background: linear-gradient(135deg, #ffffff 0%, #f6fbff 60%, #e4f3ff 100%);
    border-radius: 20px;
    border: 1px solid #d5e6f7;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    padding: 1.6rem 1.7rem 1.8rem;
}

    .about-section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #123a5d;
    margin-bottom: 1rem;
}

    .about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

    .about-why-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 0.9rem 0.9rem;
    border: 1px solid #dce9f7;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

    .about-why-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0b87d0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

    .about-why-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #123a5d;
    margin-bottom: 0.25rem;
}

    .about-why-text {
    font-size: 0.82rem;
    color: #4b6074;
    line-height: 1.5;
}

    /* Journey / timeline */
    .about-journey {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.8rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #dce6f5;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    padding: 1.7rem 1.6rem 1.8rem;
}

    .about-journey-timeline {
    border-left: 2px solid #d2e3f5;
    padding-left: 1.1rem;
}

    .timeline-item {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 0.3rem;
}

    .timeline-item::before {
    content: "";
    position: absolute;
    left: -1.2rem;
    top: 0.15rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0b87d0;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px rgba(11, 135, 208, 0.2);
}

    .timeline-year {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2f587a;
    margin-bottom: 0.1rem;
}

    .timeline-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #123a5d;
    margin-bottom: 0.15rem;
}

    .timeline-text {
    font-size: 0.8rem;
    color: #4b6074;
}

    .about-journey-right {
    font-size: 0.85rem;
    color: #45607b;
    line-height: 1.7;
}

    .about-journey-right strong {
    color: #123a5d;
}

    /* FAQ */
    .about-faq {
    background: linear-gradient(135deg, #f6fbff 0%, #ffffff 60%, #e7f3ff 100%);
    border-radius: 20px;
    border: 1px solid #d5e6f7;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
    padding: 1.7rem 1.6rem 1.8rem;
}

    .faq-item {
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #dfe7f5;
    padding: 0.8rem 0.9rem;
    margin-bottom: 0.6rem;
}

    .faq-question {
    font-size: 0.9rem;
    font-weight: 600;
    color: #123a5d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

    .faq-answer {
    font-size: 0.82rem;
    color: #4b6074;
    margin-top: 0.45rem;
    line-height: 1.6;
    display: none;
}

    .faq-item.open .faq-answer {
    display: block;
}

    .faq-toggle-icon {
    font-size: 0.85rem;
    color: #7890a8;
    margin-left: 0.5rem;
}

    /* FOOTER */
    .footer {
    background: linear-gradient(90deg, #0b3c61, #0b628f);
    color: #e5f2ff;
    padding: 0.8rem var(--spacing-h);
    font-size: 0.82rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

    .footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

    .footer-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

    .footer-link {
    color: #e5f2ff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    white-space: nowrap;
}

    .footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #8fd1ff;
    transition: width 0.2s ease-out;
}

    .footer-link:hover::after {
    width: 100%;
}

    .footer-copy {
    color: #c2d6ea;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

    /* RESPONSIVE */
    @media (max-width: 900px) {
    .about-hero,
    .about-journey {
      grid-template-columns: 1fr;
}

    .about-why-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

    @media (max-width: 600px) {
    .navbar {
      padding-inline: 0.9rem;
}

    .navbar-right {
      display: none;
}

    .navbar-hamburger {
      display: inline-flex;
}

    .about-wrapper,
    .footer {
      padding-inline: 0.9rem;
}

    .about-why-grid {
      grid-template-columns: 1fr;
}

    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
}

    .footer-copy {
      text-align: left;
}
}

    @media (min-width: 1400px) {
    :root {
      --max-width: 1200px;
}
}
