
    :root {
      --primary-blue: #114a8d;
      --primary-blue-dark: #0b3564;
      --accent-gold: #f5a623;
      --light-bg: #f5f7fb;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: #ffffff;
      color: #1b1b1b;
    }

    /* Top navbar */
    .top-navbar {
      background: linear-gradient(90deg, #0b3564, #1552a4);
      padding-top: .4rem;
      padding-bottom: .4rem;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: .75rem;
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
    }
    .brand-logo span.sub {
      font-size: .65rem;
      font-weight: 400;
      opacity: .9;
    }
    .axis-logo {
      width: 70px;
      height: 70px;
      flex-shrink: 0;
    }
    .axis-logo-text {
      display: flex;
      flex-direction: column;
    }
    .axis-logo-text .main {
      font-size: 1.1rem;
      font-weight: 700;
      line-height: 1.2;
    }
    .axis-logo-text .subtitle {
      font-size: .7rem;
      font-weight: 500;
      opacity: .9;
    }
    .nav-link {
      color: #f0f4ff !important;
      font-weight: 500;
      font-size: .95rem;
    }
    .nav-link.active,
    .nav-link:hover {
      color: #ffd46a !important;
    }
    .btn-call {
      background: #f7a713;
      border: none;
      color: #1b1b1b;
      font-weight: 600;
      padding-inline: 1.4rem;
    }
    .btn-call:hover {
      background: #ffb93d;
      color: #1b1b1b;
    }

    /* Hero section */
    .hero {
      position: relative;
      background: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%, rgba(227,239,255,0.2) 40%, rgba(255,255,255,0.3) 100%);
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url("../banner-image.jpg"); /* Replace with your banner image filename */
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      opacity: 1;
      pointer-events: none;
      z-index: 0;
    }

    .hero-overlay {
      position: relative;
      padding: 3rem 0 4rem;
      z-index: 1;
      background: linear-gradient(to right, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.3) 100%);
    }

    .hero-heading-main {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--primary-blue);
      line-height: 1.2;
      text-shadow: 0 2px 4px rgba(255,255,255,0.8);
    }
    .hero-heading-main span {
      color: #f5a623;
    }
    .hero-subtitle {
      font-size: 1.04rem;
      font-weight: 500;
      color: #17345a;
      margin-bottom: 1rem;
      text-shadow: 0 1px 2px rgba(255,255,255,0.8);
    }
    .hero-bullets {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 2rem;
    }
    .hero-bullets li {
      display: flex;
      align-items: center;
      gap: .6rem;
      margin-bottom: .6rem;
      font-size: .98rem;
      color: #1b2740;
      text-shadow: 0 1px 2px rgba(255,255,255,0.8);
    }
    .hero-bullets i {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #14a44d;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: .7rem;
    }
    .btn-book-seat {
      background: #f5a623;
      border: none;
      color: #1b1b1b;
      padding: .85rem 1.8rem;
      font-weight: 700;
      font-size: 1rem;
      border-radius: .25rem;
      box-shadow: 0 .45rem 1.1rem rgba(0,0,0,.15);
    }
    .btn-book-seat small {
      display: block;
      font-size: .75rem;
      font-weight: 600;
      color: #4d3402;
    }
    .btn-book-seat:hover {
      background: #ffb93d;
      color: #1b1b1b;
    }

    /* Doctor image - hidden since banner already includes doctors */
    .doctor-wrapper {
      position: relative;
      text-align: center;
      display: none; /* Hidden because banner image already includes doctors */
    }
    .doctor-img {
      max-width: 100%;
      height: auto;
      filter: drop-shadow(0 12px 26px rgba(0,0,0,.22));
    }

    /* Login card */
    .login-card {
      background: #ffffff;
      border-radius: .7rem;
      box-shadow: 0 20px 45px rgba(0,0,0,.18);
      border: none;
      overflow: hidden;
      max-width: 450px;
      min-width: 350px;
      margin-left: auto;
    }
    .login-header {
      background: var(--primary-blue);
      color: #fff;
      padding: .9rem 1.4rem;
      font-weight: 700;
      font-size: 1.05rem;
      text-transform: uppercase;
    }
    .login-tabs {
      background: #f4f7ff;
      border-bottom: 1px solid #dde2f0;
      display: flex;
    }
    .login-tab {
      flex: 1;
      text-align: center;
      padding: .6rem;
      font-size: .88rem;
      font-weight: 600;
      text-transform: uppercase;
      cursor: pointer;
      border-bottom: 3px solid transparent;
    }
    .login-tab.active {
      background: #ffffff;
      border-bottom-color: var(--primary-blue);
      color: var(--primary-blue);
    }
    .login-body {
      padding: 1.2rem 1.4rem 1.3rem;
    }
    .login-form {
      display: none;
    }
    .login-form.active {
      display: block;
    }
    .form-label {
      font-size: .85rem;
      font-weight: 600;
      color: #233b63;
    }
    .form-control {
      font-size: .9rem;
      padding: .55rem .75rem;
      border-radius: .25rem;
    }
    .btn-login {
      background: linear-gradient(90deg, #1552a4, #0b3564);
      border: none;
      color: #fff;
      font-weight: 700;
      width: 100%;
      padding: .65rem 1rem;
      text-transform: uppercase;
      font-size: .9rem;
    }
    .btn-login:hover {
      opacity: .95;
    }
    .login-links a {
      font-size: .85rem;
      text-decoration: none;
      color: var(--primary-blue);
    }
    .login-links a:hover {
      text-decoration: underline;
    }

    /* Why choose */
    .why-section {
      background: #f3f6ff;
      padding: 2.5rem 0 2.2rem;
      border-top: 1px solid #e1e6f5;
    }
    .why-title {
      font-weight: 800;
      color: var(--primary-blue);
      font-size: 1.6rem;
      margin-bottom: 2rem;
    }
    .feature-card {
      background: #ffffff;
      border-radius: .6rem;
      box-shadow: 0 12px 26px rgba(0,0,0,.06);
      padding: 1.5rem 1.3rem;
      text-align: center;
      height: 100%;
    }
    .feature-icon {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #0b3564;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      color: #f8c044;
      font-size: 1.6rem;
    }
    .feature-title {
      font-weight: 700;
      font-size: 1.02rem;
      margin-bottom: .35rem;
      color: #14335f;
    }
    .feature-desc {
      font-size: .9rem;
      color: #556685;
    }

    /* Bottom CTA bar */
    .cta-bar {
      background: #e28f12;
      color: #fff;
      padding: 1rem 0;
    }
    .cta-text {
      font-weight: 600;
      font-size: 1rem;
    }
    .cta-sub {
      font-size: .86rem;
    }
    .btn-outline-light-alt {
      border: 2px solid #fff;
      color: #fff;
      font-weight: 600;
      padding-inline: 1.6rem;
    }
    .btn-outline-light-alt:hover {
      background: #fff;
      color: #c57007;
    }

    @media (max-width: 991.98px) {
      .hero-heading-main {
        font-size: 2rem;
      }
      .hero-overlay {
        padding-top: 2.2rem;
        padding-bottom: 3rem;
      }
      .why-title {
        font-size: 1.4rem;
      }
      .login-card {
        margin-top: 1.5rem;
        min-width: auto;
        max-width: 100%;
      }
    }

    @media (max-width: 500px) { .login-card { width: 100% ;}}

    .register-wrapper {
      min-height: calc(100vh - 220px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1rem;
    }

    .register-card {
      background: #fff;
      max-width: 350px;
      width: 100%;
      border-radius: .7rem;
      box-shadow: 0 20px 40px rgba(0,0,0,.15);
      overflow: hidden;
    }

    .register-header {
      background: var(--primary-blue);
      color: #fff;
      padding: .9rem;
      text-align: center;
      font-weight: 700;
      text-transform: uppercase;
    }

    .register-body {
      padding: 1.2rem;
    }

   .register-card .form-label {
      font-size: .85rem;
      font-weight: 600;
      color: #233b63;
    }

   .register-card .form-control {
      font-size: .9rem;
      border-radius: .25rem;
    }

    .btn-register {
      background: linear-gradient(90deg, #1552a4, #0b3564);
      color: #fff;
      border: none;
      width: 100%;
      font-weight: 700;
      padding: .6rem;
      text-transform: uppercase;
    }

    .btn-register:hover {
      opacity: .95;
    }

    .back-login {
      text-align: center;
      margin-top: .8rem;
    }

    .back-login a {
      font-size: .85rem;
      font-weight: 600;
      color: var(--primary-blue);
      text-decoration: none;
    }

    .back-login a:hover {
      text-decoration: underline;
    }

 .ermsg{
    font-size: 14px;
    color: #f71e1e;
}
#page-loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(255, 255, 255, 0.9);
      z-index: 1055;
      display: none;
      align-items: center;
      justify-content: center;
    }