/* ===================== GLOBAL ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f8faff;
  color: #1e293b;
  overflow-x: hidden;
}

/* ===================== CUSTOM CURSOR ===================== */
.custom-cursor {
  position: fixed;
  width: 22px;
  height: 22px;
  border: 2px solid #0066cc;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.15s ease, background 0.15s ease;
  z-index: 999999;
  transform: translate(-50%, -50%);
}

.custom-cursor.hovering {
  transform: translate(-50%, -50%) scale(1.8);
  background: rgba(0, 102, 204, 0.15);
}

/* ===================== LOADING SCREEN ===================== */
#loading-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0066cc, #00b4d8);
  z-index: 99998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.loading-logo-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.loading-logo span {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.loading-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 24px;
}

.loading-bar-wrap {
  width: 220px;
  height: 5px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: #fff;
  border-radius: 3px;
  width: 0;
  animation: loadBar 1.8s ease forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}
/* ===================== NAVBAR ===================== */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 18px 0;
  transition: all 0.35s ease;
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 2px 24px rgba(0, 60, 130, 0.1);
  backdrop-filter: blur(12px);
  padding: 10px 0;
}

#mainNav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

#mainNav.scrolled .navbar-brand {
  color: #0066cc;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

#mainNav.scrolled .brand-icon {
  background: #0066cc;
}

.brand-icon i {
  color: #fff;
  font-size: 16px;
}

.brand-sub {
  color: #93c5fd;
}

#mainNav.scrolled .brand-sub {
  color: #3b9eff;
}

#mainNav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 14px;
  border-radius: 20px;
  padding: 7px 16px !important;
  transition: all 0.25s;
}

#mainNav.scrolled .nav-link {
  color: #374151 !important;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active-link {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}

#mainNav.scrolled .nav-link:hover,
#mainNav.scrolled .nav-link.active-link {
  background: #eff6ff;
  color: #0066cc !important;
}

.nav-book-btn {
  background: #fff;
  color: #0066cc !important;
  border-radius: 25px;
  padding: 8px 22px !important;
  font-weight: 600;
  transition: all 0.25s;
}

#mainNav.scrolled .nav-book-btn {
  background: #0066cc;
  color: #fff !important;
}

.nav-book-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
}

.toggler-icon span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

#mainNav.scrolled .toggler-icon span {
  background: #374151;
}

/* ===================== HERO ===================== */
#home {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.91) 0%, rgba(0, 176, 216, 0.85) 100%), url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920&q=80") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0, 176, 216, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 7px 18px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulseDot 1.5s ease infinite;
}

@keyframes pulseDot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(74, 222, 128, 0);
  }
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: #bfdbfe;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #0052cc, #00b4d8);
  border: none;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 8px 28px rgba(0, 82, 204, 0.4);
  text-decoration: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 82, 204, 0.5);
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.hero-stat .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 24px;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-card-icon {
  width: 46px;
  height: 46px;
  background: #0066cc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.hero-card-title {
  color: #fff;
  font-weight: 600;
}

.hero-card-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.hero-card img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

.hero-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-spec {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.hero-spec .icon {
  font-size: 22px;
}

.hero-spec .name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  margin-top: 4px;
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 60, 130, 0.18);
  padding: 14px 18px;
}

.floating-card-1 {
  bottom: -22px;
  left: -22px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatY 3s ease-in-out infinite;
}

.floating-card-2 {
  top: -16px;
  right: -16px;
  text-align: center;
  animation: floatY 3s ease-in-out infinite 1.5s;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.fc-icon {
  width: 40px;
  height: 40px;
  background: #dcfce7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  font-size: 18px;
}

.fc-title {
  font-weight: 600;
  font-size: 13px;
  color: #1e293b;
}

.fc-sub {
  font-size: 11px;
  color: #16a34a;
  font-weight: 500;
}

.fc2-num {
  font-size: 22px;
  font-weight: 800;
  color: #0066cc;
  line-height: 1;
}

.fc2-stars {
  color: #fbbf24;
  font-size: 12px;
  margin: 3px 0;
}

.fc2-lbl {
  font-size: 11px;
  color: #64748b;
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollAnim 1.5s ease infinite;
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}
.scroll-hint p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

/* ===================== SECTION SHARED ===================== */
section {
  scroll-margin-top: 80px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eff6ff;
  color: #0066cc;
  border-radius: 25px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-title span {
  background: linear-gradient(135deg, #0066cc, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #0066cc, #00b4d8);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.section-divider.left {
  margin-left: 0;
}

.section-desc {
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ===================== ABOUT ===================== */
#about {
  background: #fff;
  padding: 96px 0;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 60, 130, 0.14);
}

.about-overlay-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 60, 130, 0.15);
  padding: 20px 22px;
  border: 1px solid #e2e8f0;
}

.aoc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.aoc-item {
  text-align: center;
  padding: 10px;
  border-radius: 12px;
}

.aoc-item .val {
  font-size: 20px;
  font-weight: 800;
}

.aoc-item .lbl {
  font-size: 11px;
  color: #64748b;
}

.aoc-award {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aoc-award-icon {
  width: 38px;
  height: 38px;
  background: #fef9c3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.about-feature {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  transition: background 0.25s;
  cursor: default;
}

.about-feature:hover {
  background: #eff6ff;
}

.af-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  background: #eff6ff;
  transition: background 0.25s;
}

.about-feature:hover .af-icon {
  background: #dbeafe;
}

.af-title {
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 4px;
}

.af-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #0066cc, #00b4d8);
  border: none;
  color: #fff;
  padding: 13px 30px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 6px 22px rgba(0, 82, 204, 0.3);
  text-decoration: none;
  cursor: pointer;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.4);
  color: #fff;
}

/* ===================== SERVICES ===================== */
#services {
  background: #f1f5f9;
  padding: 96px 0;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(0, 60, 130, 0.07);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 60, 130, 0.16);
  border-color: #bfdbfe;
}

.sc-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.sc-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.sc-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 16px;
}

.sc-link {
  color: #0066cc;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap 0.2s;
}

.sc-link:hover {
  gap: 10px;
  color: #0052cc;
}

/* ===================== STATS ===================== */
#stats {
  background: linear-gradient(135deg, #0066cc, #00b4d8);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -80px;
  left: -80px;
}

#stats::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -120px;
  right: -80px;
}

.stat-item {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.stat-item .icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.stat-item .num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item .lbl {
  font-size: 14px;
  opacity: 0.85;
  font-weight: 500;
}

/* ===================== DOCTORS ===================== */
#doctors {
  background: #fff;
  padding: 96px 0;
}

.doctor-card {
  border-radius: 20px;
  overflow: hidden;
  background: #f8faff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0, 60, 130, 0.07);
  transition: all 0.3s ease;
  cursor: pointer;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(0, 60, 130, 0.16);
}

.doctor-img-wrap {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.doctor-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: transform 0.4s ease;
}

.doctor-card:hover .doctor-img-wrap img {
  transform: scale(1.08);
}

.doctor-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 82, 204, 0.9), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.doctor-card:hover .doctor-overlay {
  opacity: 1;
}

.do-book {
  background: #fff;
  color: #0066cc;
  border: none;
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.do-book:hover {
  background: #eff6ff;
}

.doctor-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
}

.doctor-rating .star {
  color: #fbbf24;
}

.doctor-info {
  padding: 18px;
}

.doctor-name {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.doctor-spec {
  color: #0066cc;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.doctor-exp {
  color: #94a3b8;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.doctor-footer {
  padding: 12px 18px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.doctor-footer a {
  color: #0066cc;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.doctor-footer a:hover {
  text-decoration: underline;
}

.doc-socials {
  display: flex;
  gap: 6px;
}

.doc-social-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline-primary-custom {
  border: 2px solid #0066cc;
  color: #0066cc;
  background: transparent;
  padding: 12px 30px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline-primary-custom:hover {
  background: #0066cc;
  color: #fff;
}

/* ===================== APPOINTMENT ===================== */
#appointment {
  background: #f1f5f9;
  padding: 96px 0;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 60, 130, 0.12);
  padding: 36px;
  border: 1px solid #e2e8f0;
}

.appt-info-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 60, 130, 0.08);
  padding: 18px;
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.aic-icon {
  width: 46px;
  height: 46px;
  background: #eff6ff;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.aic-title {
  font-weight: 600;
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 2px;
}

.aic-info {
  color: #0066cc;
  font-size: 13px;
  font-weight: 600;
}

.aic-sub {
  color: #94a3b8;
  font-size: 12px;
}

.custom-input {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #0f172a;
  background: #f8faff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-input:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
  background: #fff;
}

.custom-input.is-error {
  border-color: #ef4444;
}

.error-msg {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.error-msg.show {
  display: block;
}

label.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 7px;
}

label .req {
  color: #ef4444;
}

.btn-submit {
  background: linear-gradient(135deg, #0066cc, #00b4d8);
  border: none;
  color: #fff;
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(0, 82, 204, 0.3);
  font-family: "Poppins", sans-serif;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 82, 204, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit.loading {
  opacity: 0.75;
  cursor: not-allowed;
}

.success-box {
  text-align: center;
  padding: 48px 24px;
  display: none;
}

.success-box.show {
  display: block;
}

.success-icon {
  width: 76px;
  height: 76px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: #16a34a;
}

.form-content {
  display: block;
}

.form-content.hide {
  display: none;
}

/* ===================== TESTIMONIALS ===================== */
#testimonials {
  background: #fff;
  padding: 96px 0;
}

.testimonial-wrap {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  border-radius: 28px;
  padding: 48px;
  border: 1px solid #bfdbfe;
  position: relative;
  overflow: hidden;
}

.testimonial-wrap::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 9rem;
  font-family: Georgia, serif;
  color: #bfdbfe;
  line-height: 1;
  pointer-events: none;
  select: none;
}

.testi-text {
  font-size: clamp(15px, 2.5vw, 19px);
  color: #334155;
  line-height: 1.8;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testi-stars {
  color: #fbbf24;
  font-size: 18px;
  text-align: center;
  margin-bottom: 16px;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(0, 60, 130, 0.18);
}

.testi-name {
  font-weight: 700;
  color: #0f172a;
}

.testi-role {
  color: #0066cc;
  font-size: 13px;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.testi-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  background: #fff;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.testi-btn:hover {
  border-color: #0066cc;
  color: #0066cc;
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  height: 10px;
  border-radius: 5px;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.testi-dot.active {
  width: 28px;
  background: #0066cc;
}

.testi-dot:not(.active) {
  width: 10px;
}

.testi-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.testi-thumb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.55;
}

.testi-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testi-thumb.active {
  border-color: #0066cc;
  opacity: 1;
  transform: scale(1.12);
}

/* ===================== CONTACT ===================== */
#contact {
  background: #f1f5f9;
  padding: 96px 0;
}

.contact-card {
  border-radius: 20px;
  padding: 24px;
  border: 2px solid transparent;
  transition: all 0.25s;
  cursor: default;
  height: 100%;
}

.contact-card:hover {
  box-shadow: 0 10px 32px rgba(0, 60, 130, 0.12);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-card h5 {
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 10px;
}

.contact-card p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 60, 130, 0.13);
  position: relative;
}

.map-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(0, 60, 130, 0.18);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e2e8f0;
  z-index: 10;
}

.map-badge-icon {
  width: 36px;
  height: 36px;
  background: #0066cc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.map-badge h6 {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px;
}

.map-badge small {
  font-size: 11px;
  color: #64748b;
  display: block;
}

.map-badge .open-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

/* ===================== FOOTER ===================== */
footer {
  background: #0f172a;
  color: #fff;
  padding: 64px 0 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-icon {
  width: 38px;
  height: 38px;
  background: #0066cc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 700;
}

.footer-brand-name span {
  color: #60a5fa;
}

.footer-desc {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.25s;
  text-decoration: none;
}

.footer-social:hover {
  background: #0066cc;
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.footer-links a i {
  font-size: 11px;
  transition: transform 0.2s;
}

.footer-links a:hover {
  color: #60a5fa;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.newsletter-input-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.newsletter-input {
  flex: 1;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  border-color: #3b82f6;
}

.newsletter-input::-moz-placeholder {
  color: #64748b;
}

.newsletter-input::placeholder {
  color: #64748b;
}

.newsletter-btn {
  background: #0066cc;
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 11px 16px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 16px;
}

.newsletter-btn:hover {
  background: #0052cc;
}

.footer-note {
  color: #64748b;
  font-size: 11px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.footer-note .check {
  color: #3b82f6;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-bottom p {
  color: #64748b;
  font-size: 13px;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #64748b;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #60a5fa;
}

/* ===================== UTILITIES ===================== */
.gradient-text {
  background: linear-gradient(135deg, #0066cc, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .hero-card {
    display: none !important;
  }
  .about-overlay-card {
    position: static;
    margin-top: 24px;
  }
  .testimonial-wrap {
    padding: 28px 20px;
  }
  .testimonial-wrap::before {
    display: none;
  }
}
/* ===================== HERO ===================== */
.dept-hero {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.92) 0%, rgba(0, 176, 216, 0.85) 100%), url("https://images.unsplash.com/photo-1628348070889-cb656235b4eb?w=1920&q=80") center/cover no-repeat;
  padding: 150px 0 80px;
  color: #fff;
  position: relative;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 25px;
  padding: 6px 16px;
  font-size: 13px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: #fff;
}

.breadcrumb-nav .sep {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-nav .current {
  color: #bfdbfe;
  font-weight: 500;
}

.dept-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.dept-hero h1 span {
  color: #bfdbfe;
}

.dept-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
}

.hero-meta-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

/* ===================== SECTION HEADERS ===================== */
section {
  scroll-margin-top: 80px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eff6ff;
  color: #0066cc;
  border-radius: 25px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-title span {
  background: linear-gradient(135deg, #0066cc, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #0066cc, #00b4d8);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.section-divider.left {
  margin-left: 0;
}

/* ===================== ABOUT DEPT ===================== */
#about-dept {
  background: #fff;
  padding: 96px 0;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 60, 130, 0.14);
}

.about-overlay-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 60, 130, 0.18);
  padding: 18px 22px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.aoc-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #0066cc, #00b4d8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.aoc-num {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.aoc-lbl {
  font-size: 12px;
  color: #64748b;
}

.lead-text {
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* ===================== TREATMENTS ===================== */
#treatments {
  background: #f1f5f9;
  padding: 96px 0;
}

.treatment-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 2px solid transparent;
  transition: all 0.25s;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 60, 130, 0.06);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.treatment-card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 16px 32px rgba(0, 60, 130, 0.12);
}

.tc-icon {
  width: 46px;
  height: 46px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.tc-title {
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 6px;
}

.tc-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.65;
}

/* ===================== HEAD DOCTOR ===================== */
#head-doctor {
  background: #fff;
  padding: 96px 0;
}

.doctor-profile-card {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid #bfdbfe;
  position: relative;
  overflow: hidden;
}

.doctor-profile-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 176, 216, 0.12), transparent 70%);
  border-radius: 50%;
}

.doctor-photo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px;
}

.doctor-photo-wrap img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 60, 130, 0.18);
  border: 5px solid #fff;
}

.doctor-rating-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #fff;
  border-radius: 16px;
  padding: 8px 14px;
  box-shadow: 0 8px 22px rgba(0, 60, 130, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #0f172a;
}

.doctor-rating-badge .star {
  color: #fbbf24;
}

.head-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #0066cc;
  border-radius: 25px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0, 60, 130, 0.08);
}

.doctor-name {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.doctor-title {
  color: #0066cc;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.doctor-bio {
  color: #475569;
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.doctor-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.meta-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 14px;
  backdrop-filter: blur(6px);
}

.meta-item .meta-icon {
  color: #0066cc;
  font-size: 18px;
  margin-bottom: 6px;
}

.meta-item .meta-lbl {
  font-size: 12px;
  color: #64748b;
}

.meta-item .meta-val {
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}

.doctor-specialties {
  margin-bottom: 24px;
}

.doctor-specialties h6 {
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
  margin-bottom: 10px;
}

.specialty-pill {
  display: inline-block;
  background: #fff;
  color: #0066cc;
  border: 1px solid #bfdbfe;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  margin: 0 6px 6px 0;
}

.doctor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #0066cc, #00b4d8);
  border: none;
  color: #fff;
  padding: 13px 28px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 6px 22px rgba(0, 82, 204, 0.3);
  text-decoration: none;
  cursor: pointer;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.4);
  color: #fff;
}

.btn-outline-custom {
  background: #fff;
  color: #0066cc;
  border: 2px solid #bfdbfe;
  padding: 11px 26px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: #eff6ff;
  border-color: #0066cc;
}

/* ===================== CTA ===================== */
#cta {
  background: linear-gradient(135deg, #0066cc, #00b4d8);
  padding: 70px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before, #cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

#cta::before {
  width: 280px;
  height: 280px;
  top: -80px;
  left: -80px;
}

#cta::after {
  width: 360px;
  height: 360px;
  bottom: -120px;
  right: -100px;
}

#cta .container {
  position: relative;
  z-index: 1;
}

#cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}

#cta p {
  opacity: 0.9;
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 26px;
}

.btn-cta-white {
  background: #fff;
  color: #0066cc;
  padding: 14px 30px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
  color: #0066cc;
}/*# sourceMappingURL=main.css.map */