/* Stylish Loading Spinner Button */
.loading-btn {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}
.loading-btn .spinner {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-top: 3px solid #0a58ca;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* --- MOBILE NAVIGATION & LAYOUT ENHANCEMENTS --- */
@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    gap: 0;
    position: relative;
    z-index: 1001;
  }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #083a8c;
    z-index: 1002;
    margin-left: auto;
  }
  .navbar nav {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 80px;
    padding-left: 24px;
    gap: 18px;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 0 0 0 100vw rgba(0,0,0,0.12);
  }
  .navbar.open nav {
    left: 0;
  }
  .navbar nav a, .navbar .nav-btn {
    font-size: 1.2rem;
    padding: 14px 0;
    width: 90vw;
    text-align: left;
    border-bottom: 1px solid #e3e8f0;
    margin: 0;
  }
  .navbar nav .dropdown {
    width: 100%;
  }
  .navbar nav .dropdown-content {
    position: static;
    background: none;
    box-shadow: none;
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  .navbar nav .dropdown.open .dropdown-content {
    display: flex;
  }
  .navbar nav .dropdown .dropbtn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.2rem;
    padding: 14px 0;
    color: #083a8c;
  }
  .navbar nav .dropdown-content a {
    padding-left: 24px;
    font-size: 1.1rem;
    border-bottom: 1px solid #e3e8f0;
  }
  .navbar nav .dropdown-content a:last-child {
    border-bottom: none;
  }
  .navbar nav a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 700px) {
  .medical-page-wrapper section,
  .medical-page-wrapper > .features-section,
  .medical-page-wrapper > .main-services,
  .medical-page-wrapper > .services-section,
  .medical-page-wrapper > .features-section,
  .medical-page-wrapper > .pricing-section,
  .medical-page-wrapper > .cta-section {
    margin-top: 32px;
    margin-bottom: 32px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 10px;
  }
}
/* Add more spacing between sections on medical page */
.medical-page-wrapper section,
.medical-page-wrapper > .features-section,
.medical-page-wrapper > .main-services,
.medical-page-wrapper > .services-section,
.medical-page-wrapper > .features-section,
.medical-page-wrapper > .pricing-section,
.medical-page-wrapper > .cta-section {
  margin-top: 56px;
  margin-bottom: 56px;
  padding-top: 32px;
  padding-bottom: 32px;
  background: #fafdff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(8,58,140,0.04);
}
.medical-page-wrapper .page-header {
  margin-bottom: 48px;
}
.medical-page-wrapper .intro-section {
  margin-bottom: 48px;
}
/* Center Book Now button on medical page */
.medical-page-wrapper .cta-button {
  display: inline-block;
  margin: 0 auto 32px auto;
  text-align: center;
  float: none;
}
.medical-page-wrapper > div[style*="text-align:center"] {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-bottom: 0;
}
.features-subtitle {
  text-align: center;
  margin: 0 auto 18px auto;
  display: block;
}
/* Center headings and intro content on medical & personal pages */
.medical-page-wrapper .intro-content,
.personal-page-wrapper .intro-content {
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.medical-page-wrapper h2,
.personal-page-wrapper h2,
.medical-page-wrapper h3,
.personal-page-wrapper h3 {
  text-align: center;
}

/* Broader pricing table with vertical dividers */
.pricing-table {
  max-width: 100vw;
  width: 100vw;
  margin-left: calc(-1 * ((100vw - 100%) / 2));
  margin-right: calc(-1 * ((100vw - 100%) / 2));
  border-radius: 0;
  box-shadow: none;
}
.pricing-table table {
  table-layout: auto;
  width: 100%;
}
.pricing-table th, .pricing-table td {
  border-right: 1px solid #e3e8f0;
}
.pricing-table th:last-child, .pricing-table td:last-child {
  border-right: none;
}

/* Why Choose Our Service as blocks */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 32px;
}
.feature-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(8,58,140,0.08);
  padding: 32px 24px 24px 24px;
  max-width: 260px;
  min-width: 180px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(8,58,140,0.16);
  transform: translateY(-4px) scale(1.03);
}
.feature-icon-wrapper {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(8,58,140,0.08);
}
.feature-icon {
  font-size: 2rem;
  color: #0a58ca;
}
.feature-text {
  font-weight: 700;
  color: #083a8c;
  margin-bottom: 6px;
}
.feature-description {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .feature-item {
    max-width: 98vw;
    min-width: unset;
    width: 100%;
  }
  .pricing-table {
    max-width: 99vw;
  }
}
/* Responsive and Layout Polish for Medical & Personal Pages */
@media (max-width: 600px) {
  .medical-page-wrapper .page-header, .personal-page-wrapper .page-header {
    padding: 60px 10px 100px;
    font-size: 1.2rem;
  }
  .main-service-card, .service-card {
    padding: 18px 8px 16px 8px;
  }
  .main-service-icon, .service-image {
    width: 64px;
    height: 64px;
  }
  .main-service-icon img, .service-image img {
    width: 54px;
    height: 54px;
  }
  .pricing-table th, .pricing-table td {
    font-size: 0.95rem;
  }
}
/* Service Card and Image Alignment */
.main-services-grid, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0 0 0;
}
.main-service-card, .service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(8,58,140,0.08);
  padding: 28px 22px 22px 22px;
  max-width: 340px;
  min-width: 260px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 18px;
}
.main-service-card:hover, .service-card:hover {
  box-shadow: 0 8px 32px rgba(8,58,140,0.16);
  transform: translateY(-4px) scale(1.03);
}
.main-service-icon, .service-image {
  width: 90px;
  height: 90px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(8,58,140,0.08);
}
.main-service-icon img, .service-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.main-service-content, .service-card > .service-content {
  text-align: center;
}
.main-service-content h3, .service-card h3 {
  color: #083a8c;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.main-service-content p, .service-card p {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .main-services-grid, .services-grid {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .main-service-card, .service-card {
    max-width: 98vw;
    min-width: unset;
    width: 100%;
  }
}
/* ============================================================
   PERSONAL PAGE SPECIFIC STYLES
   ============================================================ */

.personal-page-wrapper {
  overflow: hidden;
  background-color: #f4f7fb;
}

.personal-page-wrapper .page-header {
  background: linear-gradient(180deg, #0a58ca 0%, #083a8c 100%);
  color: white;
  text-align: center;
  padding: 100px 20px 160px;
  position: relative;
  clip-path: ellipse(150% 100% at 50% 0%);
}

.personal-page-wrapper .page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.personal-page-wrapper .page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.personal-page-wrapper .intro-section {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.personal-page-wrapper .intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(8,58,140,0.10);
  background: #fff;
  padding: 8px;
}

.personal-page-wrapper .intro-content h2 {
  color: #083a8c;
  font-size: 2rem;
  margin-bottom: 10px;
}

.personal-page-wrapper .intro-content p {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .personal-page-wrapper .intro-section {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .personal-page-wrapper .intro-image img {
    max-width: 100%;
    padding: 0;
  }
}

/* ============================================================
   MEDICAL & PERSONAL PAGE MODERN STYLES (Unified)
   ============================================================ */

.cta-button, .schedule-btn, .nav-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0a58ca 0%, #083a8c 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 13px 32px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(8,58,140,0.08);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  margin: 10px 0;
}
.cta-button:hover, .schedule-btn:hover, .nav-btn:hover {
  background: linear-gradient(90deg, #083a8c 0%, #0a58ca 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(8,58,140,0.16);
  transform: translateY(-2px) scale(1.03);
}
.cta-button:active, .schedule-btn:active, .nav-btn:active {
  background: #0a58ca;
  color: #fff;
  box-shadow: 0 2px 8px rgba(8,58,140,0.10);
  transform: scale(0.98);
}
.pricing-table {
  margin: 40px auto 0 auto;
  max-width: 600px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(8,58,140,0.08);
  overflow: hidden;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.08rem;
  background: #fff;
}
.pricing-table th, .pricing-table td {
  padding: 18px 16px;
  border-bottom: 1px solid #e3e8f0;
  text-align: left;
}
.pricing-table th {
  background: #f4f7fb;
  color: #083a8c;
  font-weight: 700;
  border-bottom: 2px solid #0a58ca;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr {
  transition: background 0.2s;
}
.pricing-table tbody tr:hover {
  background: #e3f2fd;
}
.pricing-table .check-icon {
  color: #0a58ca;
  font-size: 1.1em;
  margin-right: 6px;
}

@media (max-width: 700px) {
  .pricing-table {
    max-width: 98vw;
    font-size: 0.98rem;
  }
  .pricing-table th, .pricing-table td {
    padding: 12px 6px;
  }
}

.medical-page-wrapper, .personal-page-wrapper {
  background-color: #f8fafc;
  width: 100%;
  max-width: 100vw;
}

.medical-page-wrapper .page-header, .personal-page-wrapper .page-header {
  background: linear-gradient(180deg, #0a58ca 0%, #083a8c 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 160px;
  clip-path: ellipse(150% 100% at 50% 0%);
  margin-bottom: -40px;
}

.medical-page-wrapper .page-header h1, .personal-page-wrapper .page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.medical-page-wrapper .page-header p, .personal-page-wrapper .page-header p {
  font-size: 1.2rem;
  opacity: .95;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.medical-page-wrapper .intro-section, .personal-page-wrapper .intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.medical-page-wrapper .intro-image, .personal-page-wrapper .intro-image {
  width: 100%;
  min-height: 320px;
  max-height: 520px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 12px;
  overflow: hidden;
  display: block;
}

.medical-page-wrapper .intro-image img, .personal-page-wrapper .intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.medical-page-wrapper .intro-content h2, .personal-page-wrapper .intro-content h2 {
  color: #0a58ca;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.medical-page-wrapper .intro-content p, .personal-page-wrapper .intro-content p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .medical-page-wrapper .intro-section, .personal-page-wrapper .intro-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .medical-page-wrapper .intro-image, .personal-page-wrapper .intro-image {
    max-height: 420px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* Smooth scroll for anchor navigation */
html { scroll-behavior: smooth; }


body {
  background: #f4f7fb;
  color: #1f2937;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;

/* Make all images responsive by default */
img {
  max-width: 100%;
  height: auto;
}

/* Logo link */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Logo image */
.logo img {
  height: 38px;          /* perfect navbar size */
  width: auto;
  cursor: pointer;
}

/* Top contact panel above the navbar */
.topbar {
  background: #083a8c;
  color: #ffffff;
  font-size: 14px;
}
.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px; /* Changed from 70px */
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.topbar .contact-info {
  display: flex;
  gap: 10px; /* Reduced from 20px */
  align-items: center;
  flex-wrap: wrap;
}
.topbar a {
  color: #ffffff !important;
  text-decoration: none;
}

@media (max-width: 700px) {
  .topbar-container {
    padding: 8px 15px; /* Less padding */
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 12px; /* Smaller text */
  }
  
  .topbar .contact-info {
    gap: 8px;
    font-size: 11px;
  }
  .navbar {
    padding: 18px 20px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #ffffff;
  padding: 70px 70px;
  color: #0b2545;
}
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}
.faq-section h2 {
  font-size: 28px;
  color: #083a8c;
  margin-bottom: 18px;
  text-align: center;
}
.faq-intro {
  text-align: center;
  color: #475569;
  margin-bottom: 28px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* Booking switch toggle styles */
.trip-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0;
}
.trip-label {
  color: #475569;
  font-weight: 600;
}
.trip-label.active {
  color: #083a8c;
}
.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 30px;
}
.switch input { display: none; }
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e6eefc;
  transition: .25s;
  border-radius: 34px;
  border: 1px solid rgba(10,88,202,0.12);
}
.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  top: 3px;
  background-color: white;
  transition: .25s;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(6,21,50,0.12);
}
.switch input:checked + .slider {
  background-color: #0a58ca;
  border-color: #0a58ca;
}
.switch input:checked + .slider:before {
  transform: translateX(24px);
}

@media (max-width:700px) {
  .trip-toggle { gap: 10px; }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37,211,102,0.18);
  z-index: 2000;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float i { font-size: 22px; }
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(37,211,102,0.22); }

@media (max-width:480px) {
  .whatsapp-float { width: 48px; height: 48px; right: 14px; bottom: 14px; }
  .whatsapp-float i { font-size: 20px; }
}

/* Make topbar full width on medical and personal pages */
.services-page-wrapper .topbar-container,
.personal-page-wrapper .topbar-container {
  max-width: none;
  margin: 0;
  padding: 8px 20px;
}

/* ===== Global Responsive Adjustments ===== */
/* Mobile-first: make layouts stack nicely on small screens */
@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 10px;
  }
  .navbar .logo { margin-bottom: 0; }
  .nav-toggle {
    display: block;
    order: 2;
  }
  .navbar nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding-top: 80px;
    padding-left: 24px;
    gap: 10px;
    transition: left 0.3s ease;
    z-index: 1000;
  }
  .navbar.open nav {
    left: 0;
  }
  .navbar nav a { margin-left: 0; padding: 8px 10px; }
  .nav-btn { margin-left: 0; }

  .topbar-container { padding: 8px 20px; }

  .hero { height: 60vh; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content p { font-size: 14px; }

  .features { padding: 30px 20px; grid-template-columns: 1fr; }

  .faq-section { padding: 36px 18px; }

  .footer-container { display: flex; flex-direction: column; gap: 20px; align-items: center; }
  .footer-column { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .navbar { padding: 12px 16px; }
  .logo img { height: 34px; }
  .btn-primary, .nav-btn, .cta-button { padding: 10px 16px; font-size: 15px; }
  .hero { height: 50vh; }
}

/* Hide background video on smaller screens for performance */
@media (max-width: 700px) {
  .hero-video { display: none; }
  .hero-overlay { display: none; }
  .hero { background: linear-gradient(180deg, #0a58ca 0%, #083a8c 60%); height: auto; padding: 40px 0; }
}

/* Improve touch targets and readable text on mobile */
button, .nav-btn, .btn-primary { touch-action: manipulation; }
input, select, textarea { font-size: 15px; }
/* Gentle site-wide transitions */
a, button, .nav-btn, .btn-primary, .feature-card, .service-card, .main-service-card {
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
details.faq-item {
  background: #f8fbff;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 6px 18px rgba(6,21,50,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
}
details.faq-item[open] {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(6,21,50,0.06);
}
summary.faq-question {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  outline: none;
  display: block;
}
summary.faq-question::-webkit-details-marker { display: none; }
summary.faq-question:after {
  content: "+";
  float: right;
  font-weight: 700;
  color: #0a58ca;
}
details[open] summary.faq-question:after { content: "−"; }
.faq-answer {
  margin-top: 10px;
  color: #475569;
  line-height: 1.6;
  font-size: 15px;
}

/* Animated FAQ open/close (height-based) */
details.faq-item .faq-answer {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.28s ease;
}
details.faq-item[open] .faq-answer {
  max-height: 400px;
  opacity: 1;
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 40px 20px; }
}

/* ===== New homepage styles ===== */
.hero-compact { background: linear-gradient(180deg, #0a58ca 0%, #083a8c 60%); color: #fff; padding: 48px 0; }
.hero-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: center; padding: 20px; }
.hero-left h1 { font-size: 34px; margin-bottom: 12px; color: #fff; }
.hero-left p { color: rgba(255,255,255,0.92); margin-bottom: 16px; line-height: 1.6; }
.hero-actions { display:flex; gap:12px; margin-bottom: 14px; }
.btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.22); padding: 12px 18px; border-radius: 8px; text-decoration:none; }
.trust-rows { display:flex; gap:12px; margin-top:12px; }
.trust-item { background: rgba(255,255,255,0.08); padding:8px 12px; border-radius:8px; font-weight:600; font-size:14px; }

.booking-card { background:#fff; color:#0b2545; padding:18px; border-radius:12px; box-shadow:0 10px 30px rgba(3,24,66,0.12); }
.booking-card h3 { margin:0 0 10px 0; font-size:18px; }
.mini-booking input, .mini-booking select { width:100%; padding:10px; margin:8px 0; border-radius:8px; border:1px solid #e6eefc; }
.mini-booking button { width:100%; margin-top:8px; }
.booking-small { font-size:13px; color:#314155; margin-top:10px; }

.services-summary { padding:36px 20px; background:#f9fbff; }
.service-cards { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-card.small { background:#fff; padding:18px; border-radius:12px; text-align:center; box-shadow:0 8px 20px rgba(6,21,50,0.04); }
.service-card.small .icon { font-size:28px; margin-bottom:8px; }

.how-it-works { padding:36px 20px; text-align:center; }
.how-it-works {
  width: 100vw; /* make full-bleed */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 36px 0;
  text-align: center;
  background: linear-gradient(180deg, #0a58ca 0%, #083a8c 60%);
  color: #ffffff;
}
.how-it-works > h2,
.how-it-works > .steps {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.how-it-works h2 { color: #ffffff; margin-bottom: 18px; }
.steps { display:flex; gap:96px; justify-content:center; }
.step { background: rgba(255,255,255,0.06); padding:18px; border-radius:12px; width:240px; box-shadow:0 8px 24px rgba(6,21,50,0.06); color: #ffffff; }
.step-num { background:#ffffff; color:#0a58ca; width:38px; height:38px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; font-weight:700; margin-bottom:8px; }

.testimonials { padding:36px 20px; background:#fff; justify-content:center; text-align:center; }
.test-grid { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.testimonial { background:#f8fbff; padding:18px; border-radius:10px; font-style:italic; }
.testimonial cite { display:block; margin-top:12px; font-style:normal; font-weight:700; color:#083a8c; }

@media (max-width:900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .test-grid { grid-template-columns: 1fr; }
}



.navbar {
  display: flex;
  justify-content: space-between;
   align-items: center;
  padding: 28px 70px;
  background: white;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
}

/* keep header and topbar above the fixed video/overlay */
.topbar, .navbar { position: relative; z-index: 3; }

.navbar a {
  margin-left: 20px;
  text-decoration: none;
  color: #0a58ca;
  font-weight: 500;
}

.nav-btn {
  background: #0a58ca;
  color: #ffffff !important;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.nav-btn:hover {
  background: #083a8c;
  color: #ffffff;
}

/* Nav links */
.navbar nav a {
  margin-left: 28px;
  text-decoration: none;
  color: #0a58ca;
  font-size: 17px;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
}

/* Active page underline */
.navbar nav a.active {
  color: #083a8c;
  font-weight: 600;
}

.navbar nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #0a58ca;
  border-radius: 2px;
}

.navbar nav a:hover {
  color: #083a8c;
}

.nav-btn:hover {
  background: #083a8c;
}

/* Mobile hamburger toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #0a58ca;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { 
    display: block;
    order: 2;
    margin-left: auto;
    z-index: 1001;
  }
  /* hide nav by default on small screens; will open when .navbar has .open */
  .navbar nav { 
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 4;
    transition: left 0.3s ease;
  }
  .navbar.open nav {
    left: 0;
  }
  .navbar.open { align-items: flex-start; }
  .navbar.open .nav-btn { margin-left: 0; }
  
  /* Mobile dropdown menu */
  .dropdown {
    position: static;
    display: block;
  }
  
  .dropdown-content {
    position: static;
    display: none !important;
    opacity: 1;
    transform: none;
    background: #f0f7ff;
    box-shadow: none;
    border-radius: 0;
    min-width: auto;
    margin-left: 20px;
    margin-top: 8px;
  }
  
  .dropdown.open .dropdown-content {
    display: block !important;
  }
  
  .dropdown-content a {
    padding: 10px 15px;
    font-size: 14px;
  }
}
/* ===== NAVBAR DROPDOWN ===== */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  text-decoration: none;
  color: #0a58ca;
  font-size: 17px;
  font-weight: 500;
  padding: 0 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  border-radius: 6px;
  overflow: hidden;
  z-index: 100;
}

.dropdown-content a {
  color: #0a58ca;
  padding: 12px 18px;
  text-decoration: none;
  display: block;
  font-size: 15px;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: #e9f0ff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  transform: translateY(0);
}



/* ===== HERO VIDEO BACKGROUND ===== */

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.hero-overlay {
  position: fixed;
  inset: 0;
  background: rgba(51, 82, 129, 0.55);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}


.hero-content h1 {
  margin-bottom: 18px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}


.hero-content p {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===== PRIMARY CTA BUTTON ===== */

.btn-primary {
  display: inline-block;
  margin-top: 28px;          /* 👈 THIS pushes it down */
  background: #ffffff;
  color: #0a58ca;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}


/* Hover effect */
.btn-primary:hover {
  background: #e9f0ff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}


.features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  padding: 70px;
}

.features .feature-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: visible; /* allow glow outside */
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid transparent;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  z-index: 1; /* keep card above its glow pseudo-element */
}

.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.feature-card h3 {
  margin: 18px 0 10px;
  color: #083a8c;
}

.feature-card p {
  padding: 0 20px 25px;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

.features .feature-card:hover,
.features .feature-card.hovered {
  transform: translateY(-8px);
  border-color: rgba(10,88,202,0.12);
  box-shadow:
    0 18px 40px rgba(8,58,140,0.10),
    0 0 32px rgba(10,88,202,0.12);
}

/* subtle inner glow using pseudo-element for stronger effect */
.features .feature-card::after{
  content: "";
  position: absolute;
  inset: -8px; /* expand slightly so glow sits outside rounded corners */
  border-radius: 16px;
  box-shadow: 0 0 0 rgba(10,88,202,0);
  pointer-events: none;
  transition: box-shadow .28s ease, transform .28s ease;
  z-index: 0;
}
.features .feature-card:hover::after,
.features .feature-card.hovered::after{
  box-shadow: 0 6px 40px rgba(10,88,202,0.22), 0 0 60px rgba(10,88,202,0.18);
}

.footer {
  background: #083a8c;
  color: white;
  padding: 40px;
  text-align: center;
}

/* ===== FOOTER QUICK LINKS ===== */

.footer-links a {
  display: block;
  margin: 8px 0;
  color: #c7d2fe;              /* light blue (professional) */
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;              /* white on hover */
  transform: translateX(4px);  /* subtle motion */
}
.footer-links h4 {
  color: #ffffff;
  margin-bottom: 12px;
}


.social-icons i {
  margin: 10px;
  font-size: 20px;
  cursor: pointer;
}

.form {
  max-width: 500px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
}

.form input, .form textarea, .form button {
  margin: 10px 0;
  padding: 12px;
}

/* Apply form specifics */
.apply-section{background:#fff;padding:48px 20px}
.apply-container{max-width:820px;margin:0 auto;text-align:left}
.apply-container h2{color:#083a8c;margin-bottom:6px}
.apply-container p{color:#475569;margin-bottom:16px}
.apply-form input[type="text"], .apply-form input[type="email"], .apply-form input[type="tel"], .apply-form select, .apply-form textarea{width:100%;border-radius:8px;border:1px solid #e6eefc;background:#fff}
.apply-form select{appearance:none;padding:12px}
.apply-form textarea{resize:vertical}
.apply-form .consent{display:flex;align-items:center;gap:10px;font-size:0.95rem;color:#374151;margin:8px 0}
.apply-form .consent input{width:16px;height:16px}
.apply-form .btn-primary{display:inline-block}

@media (max-width:700px){
  .apply-container{padding:0 8px}
}



/* ============================================================
   ABOUT PAGE SPECIFIC STYLES 
   (Namespaced to prevent interference with global styles)
   ============================================================ */

/* Main Container */
.about-page-wrapper {
  overflow: hidden;
  background-color: #f4f7fb;
}

/* Header Styling - Replicating the Image Curve */
.about-page-wrapper .page-header {
  background: linear-gradient(180deg, #0a58ca 0%, #083a8c 100%);
  color: white;
  text-align: center;
  padding: 100px 20px 160px;
  position: relative;
  clip-path: ellipse(150% 100% at 50% 0%); /* Curved bottom effect */
}

.about-page-wrapper .page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-page-wrapper .page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Content Layout Grid */
.about-page-wrapper .content-container {
  max-width: 1100px;
  margin: 40px auto 80px; /* Pulls content up slightly into the curve */
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.about-page-wrapper .info-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 100px;
}

/* Alternating Row Logic */
.about-page-wrapper .info-row.reverse {
  flex-direction: row-reverse;
}

.about-page-wrapper .text-block {
  flex: 1;
}

.about-page-wrapper .text-block h2 {
  color: #083a8c;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.about-page-wrapper .accent-line {
  width: 80px;
  height: 4px;
  background-color: #0a58ca;
  border: none;
  margin: 15px 0 20px 0;
}

.about-page-wrapper .text-block p {
  line-height: 1.8;
  color: #4b5563;
  font-size: 1.1rem;
}

/* Image Styling with Shadows */
.about-page-wrapper .image-block {
  flex: 1;
}

.about-page-wrapper .image-block img {
  width: 100%;
  border-radius: 12px;
  background: white;
  padding: 10px; /* White frame effect */
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  display: block;
}

/* Values/Team Section */
.about-page-wrapper .values-section {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 60px;
}

.about-page-wrapper .divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.about-page-wrapper .divider-line {
  flex-grow: 1;
  height: 1px;
  background: #cbd5e1;
  max-width: 300px;
}

.about-page-wrapper .divider-container h2 {
  padding: 0 20px;
  color: #083a8c;
  font-size: 1.8rem;
}

.about-page-wrapper .icon-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-page-wrapper .icon-item {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #083a8c;
  font-size: 1.1rem;
}

.about-page-wrapper .icon-item i {
  margin-right: 10px;
  color: #0a58ca;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-page-wrapper .info-row, 
  .about-page-wrapper .info-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .about-page-wrapper .accent-line {
    margin: 15px auto;
  }

  .about-page-wrapper .page-header h1 {
    font-size: 2.2rem;
  }
}



/* =========================================
   PRIVACY PAGE SPECIFIC STYLES
   ========================================= */

.page-wrapper .page-header {
  text-align: center;
  background: linear-gradient(180deg, #0a58ca 0%, #083a8c 100%);
  color: white;
  padding: 100px 20px;
  position: relative;
  clip-path: ellipse(150% 100% at 50% 0%);
}

.page-wrapper .page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-wrapper .page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.page-wrapper .content-container {
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

/* =========================================
   SERVICES PAGE SPECIFIC STYLES
   ========================================= */

.services-page-wrapper {
  background-color: #f8fafc;
  overflow-x: hidden;
  padding-bottom: 80px;
}

/* Careers - Why Join section */
.join-section{
  padding: 48px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.join-container{max-width:1100px;margin:0 auto;text-align:center}
.join-container h2{font-size:2rem;color:#083a8c;margin-bottom:24px}
.join-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.join-card{background:#fff;border-radius:12px;padding:22px;box-shadow:0 6px 18px rgba(10,41,80,0.06);transition:transform .25s ease,box-shadow .25s ease;border:1px solid rgba(8,58,140,0.04)}
.join-card:hover{transform:translateY(-8px);box-shadow:0 18px 40px rgba(8,58,140,0.12);border-color:rgba(10,88,202,0.08)}
.join-icon{width:64px;height:64px;margin:0 auto;border-radius:50%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#0a58ca22,#083a8c11);color:#0a58ca;font-size:1.6rem;margin-bottom:14px}
.join-card h4{color:#083a8c;margin-bottom:8px}
.join-card p{color:#33506b;font-size:0.95rem;line-height:1.45}

@media (max-width: 900px){
  .join-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 520px){
  .join-grid{grid-template-columns:1fr}
  .join-container h2{font-size:1.5rem}
}

/* --- Header (Matching the About Us Curve) --- */
.services-page-wrapper .page-header {
  background: linear-gradient(180deg, #0a58ca 0%, #083a8c 100%);
  color: white;
  text-align: center;
  padding: 100px 20px 160px; /* Tall padding for the curve */
  clip-path: ellipse(150% 100% at 50% 0%);
  margin-bottom: -60px; /* Pulls content up into the curve */
}

.services-page-wrapper .page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.services-page-wrapper .page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* --- Content Container --- */
.services-page-wrapper .content-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
  z-index: 10;
}

/* --- Primary Cards Grid --- */
.services-page-wrapper .primary-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.services-page-wrapper .service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.services-page-wrapper .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.services-page-wrapper .icon-circle {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
  /* Optional: Make icon blue */
  /* filter: hue-rotate(200deg); */ 
}

.services-page-wrapper .service-card h3 {
  color: #083a8c;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.services-page-wrapper .service-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- Specialized Services Section --- */
.services-page-wrapper .divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.services-page-wrapper .divider-line {
  height: 2px;
  background: #e2e8f0;
  flex: 1;
  max-width: 200px;
}

.services-page-wrapper .divider-container h2 {
  padding: 0 20px;
  color: #083a8c;
  font-size: 1.8rem;
}

.services-page-wrapper .specialized-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.services-page-wrapper .spec-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.2s;
  border-left: 5px solid #0a58ca; /* Blue accent bar */
}

.services-page-wrapper .spec-item:hover {
  transform: translateX(5px);
}

.services-page-wrapper .spec-icon {
  font-size: 1.8rem;
  margin-right: 15px;
}

.services-page-wrapper .spec-text {
  font-weight: 600;
  color: #334155;
  font-size: 1.1rem;
}

/* --- Footer Features --- */
.services-page-wrapper .features-footer {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.services-page-wrapper .feature-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 600;
  color: #083a8c;
  font-size: 1.05rem;
}

.services-page-wrapper .feature-row span {
  margin-right: 10px;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .services-page-wrapper .page-header {
    padding: 80px 20px 120px;
  }
  
  .services-page-wrapper .features-footer {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}



/* =========================================
   CAREERS PAGE SPECIFIC STYLES
   ========================================= */

.careers-page-wrapper {
  background-color: #f8fafc;
  overflow-x: hidden;
}

/* Header with Curved Bottom */
.careers-page-wrapper .page-header {
  background: linear-gradient(180deg, #0a58ca 0%, #083a8c 100%);
  color: white;
  text-align: center;
  padding: 100px 20px 160px;
  clip-path: ellipse(150% 100% at 50% 0%);
  margin-bottom: -40px;
}

.careers-page-wrapper .page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* Content Layout */
.careers-page-wrapper .content-container {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 80px 20px;
  position: relative;
  z-index: 10;
}

.careers-page-wrapper .info-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 100px;
}

.careers-page-wrapper .info-row.reverse {
  flex-direction: row-reverse;
}

/* Text and Job List Styling */
.careers-page-wrapper .text-block h2 {
  color: #083a8c;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.careers-page-wrapper .accent-line {
  width: 80px;
  height: 4px;
  background-color: #0a58ca;
  border: none;
  margin: 15px 0 20px 0;
}

.careers-page-wrapper .job-list {
  background: #ffffff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.careers-page-wrapper .job-item {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.careers-page-wrapper .job-item:last-child {
  border-bottom: none;
}

.careers-page-wrapper .job-item strong {
  color: #0a58ca;
}

.careers-page-wrapper .job-item span {
  font-size: 0.9rem;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 10px;
  border-radius: 20px;
}

/* Image Block with Shadow/White Frame */
.careers-page-wrapper .image-block img {
  width: 100%;
  border-radius: 12px;
  background: white;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Values Section (Matches Image exactly) */
.careers-page-wrapper .values-section {
  text-align: center;
  margin-top: 50px;
}

.careers-page-wrapper .divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.careers-page-wrapper .divider-line {
  height: 1px;
  background: #cbd5e1;
  flex: 1;
  max-width: 300px;
}

.careers-page-wrapper .divider-container h2 {
  padding: 0 20px;
  color: #083a8c;
  font-size: 1.8rem;
}

.careers-page-wrapper .icon-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.careers-page-wrapper .icon-item {
  font-weight: 600;
  color: #083a8c;
  font-size: 1.1rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .careers-page-wrapper .info-row, 
  .careers-page-wrapper .info-row.reverse {
    flex-direction: column;
    text-align: center;
  }
}




/* =========================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================= */

.contact-page-wrapper {
  background-color: #f8fafc;
  padding-bottom: 80px;
}

/* Header Curve Logic */
.contact-page-wrapper .page-header {
  background: linear-gradient(180deg, #0a58ca 0%, #083a8c 100%);
  color: white;
  text-align: center;
  padding: 100px 20px 160px;
  clip-path: ellipse(150% 100% at 50% 0%);
  margin-bottom: -60px;
}

.contact-page-wrapper .page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-page-wrapper .page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-page-wrapper .content-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
  z-index: 10;
}

/* Top Section: Info & Map */
.contact-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-info-card, .map-block {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  padding: 30px;
}

.contact-info-card h3 {
  color: #083a8c;
  margin-bottom: 10px;
}

.contact-info-card .accent-line {
  width: 60px;
  height: 3px;
  background: #0a58ca;
  border: none;
  margin-bottom: 20px;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #475569;
}

.map-placeholder img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden; /* Ensures the map follows the rounded corners */
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

/* Bottom Section: Form */
.contact-form-section {
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left; /* Ensures heading and content stay left */
}

.divider-text {
  width: 100%; 
  text-align: left; 
  border-bottom: 1px solid #e2e8f0; 
  line-height: 0.1em;
  margin: 10px 0 40px; 
  color: #083a8c;
}

.divider-text span { background:#fff; padding-right: 20px; }

.contact-form .form-group {
  display: flex;
  flex-direction: column; /* Stack label above input */
  align-items: flex-start;
  margin-bottom: 25px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 10px;
}

.contact-form label {
  width: 100px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #334155;
}

.contact-form input, .contact-form textarea {
 width: 100%;
  border: 1px solid #e2e8f0; /* Visible border box */
  border-radius: 8px;
  padding: 15px; /* Bigger internal space to type */
  font-size: 1rem;
  background-color: #f8fafc;
  transition: all 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
  border-color: #0a58ca;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(10, 88, 202, 0.1);
  outline: none;
}

.form-footer {
  text-align: left;
  margin-top: 10px;
}

.btn-send {
  background: #083a8c;
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-send:hover {
  background: #0a58ca;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-top-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form .form-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-form label {
    margin-bottom: 5px;
  }
}



/* =========================================
   BOOKING PAGE SPECIFIC STYLES
   ========================================= */

.booking-page-wrapper {
  background-color: #f8fafc;
  padding-bottom: 80px;
}

/* Matching Curved Header */
.booking-page-wrapper .page-header {
  background: linear-gradient(180deg, #0a58ca 0%, #083a8c 100%);
  color: white;
  text-align: center;
  padding: 100px 20px 160px;
  clip-path: ellipse(150% 100% at 50% 0%);
  margin-bottom: -60px;
}

.booking-page-wrapper .content-container {
  max-width: 900px; /* Narrower for forms to keep it readable */
  margin: 0 auto;
  padding: 100px 20px;
  position: relative;
  z-index: 10;
}

/* The Main Booking Card */
.booking-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.booking-page-wrapper .divider-text {
  width: 100%; 
  text-align: center; 
  border-bottom: 1px solid #e2e8f0; 
  line-height: 0.1em;
  margin: 10px 0 40px; 
  color: #083a8c;
}

.booking-page-wrapper .divider-text span { background:#fff; padding: 0 15px; }

/* Grid Form Layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #334155;
  font-size: 0.9rem;
}

.form-group input, 
.form-group select {
  padding: 12px 15px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fdfdfd;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, 
.form-group select:focus {
  border-color: #0a58ca;
  box-shadow: 0 0 0 3px rgba(10, 88, 202, 0.1);
  outline: none;
}

/* Form Footer & Button */
.form-footer {
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 30px;
}

.form-note {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 20px;
}

.btn-submit {
  background: #083a8c;
  color: white;
  border: none;
  padding: 15px 45px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
  background: #0a58ca;
  transform: translateY(-2px);
}

/* Values Footer */
.booking-page-wrapper .values-section {
  margin-top: 40px;
}

.booking-page-wrapper .icon-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.booking-page-wrapper .icon-item {
  color: #083a8c;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .booking-card {
    padding: 25px 20px;
  }
}




/* =========================================
   ENHANCED PROFESSIONAL FOOTER
   ========================================= */

.main-footer {
  background-color: #acbdce; /* Light gray base to separate from body */
  padding-top: 60px;
  border-top: 1px solid #e2e8f0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 40px 60px;
  gap: 40px;
}

.footer-column {
  flex: 1;
}

.footer-column h4 {
  color: #083a8c;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
}

/* Horizontal line under headers like the image */
.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: #0a58ca;
}

/* Center Branding Column */
.center-col {
  text-align: center;
  flex: 1.5; /* Makes the center text wider */
}

.center-col h2 {
  color: #083a8c;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.center-col p {
  color: #64748b;
  font-size: 1rem;
}

/* Lists and Links */
.footer-list, .contact-info {
  list-style: none;
  padding: 0;
}

.footer-list li, .contact-info li {
  margin-bottom: 12px;
  color: #475569;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.footer-list a {
  color: #475569;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #0a58ca;
  padding-left: 5px; /* Subtle hover slide */
}

.contact-info a {
  color: #0a58ca;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #083a8c;
}

.contact-info a:visited {
  color: #0a58ca;
}

.contact-info i {
  margin-right: 12px;
  color: #0a58ca;
  font-size: 1.1rem;
}

/* Bottom Bar (Dark Green/Blue contrast like image) */
.footer-bottom {
  background-color: #083a8c; /* Matches your brand blue */
  color: #ffffff;
  padding: 20px 0;
}

.bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.bottom-container p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Social Icons in Bottom Bar */
.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: white;
  font-size: 1.2rem;
  transition: transform 0.3s ease, opacity 0.3s;
}

/* Privacy page and footer privacy link styling */
.policy-content{
  max-width: 920px;
  margin: 18px auto 40px;
  padding: 28px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(3,24,66,0.06);
  color: #1f2937;
}
.policy-content h2{color:#083a8c;margin-top:18px}
.policy-content p, .policy-content li{color:#334155;line-height:1.8;margin-bottom:12px}
.policy-content ul{margin-left:20px;margin-bottom:18px}

/* Make the privacy link stand out in the dark footer */
.footer-bottom a.privacy-link{
  color: #000000;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}
.footer-bottom a.privacy-link:hover{opacity:0.95}

@media (max-width: 700px){
  .policy-content{padding:20px;margin:12px}
  .footer-bottom .bottom-container{padding:0 16px;flex-direction:column;gap:10px}
}
  font-size: 1.2rem;
  transition: transform 0.3s ease, opacity 0.3s;

.footer-socials a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* Responsive View */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-list li, .contact-info li {
    justify-content: center;
  }

  .bottom-container {
    flex-direction: column;
    gap: 15px;
  }
}

/* ===== CAREERS PAGE IMAGE TWEAKS ===== */
.careers-page-wrapper .info-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 80px;
}
.careers-page-wrapper .info-row .text-block { flex: 1 1 45%; }
.careers-page-wrapper .info-row .image-block { flex: 1 1 55%; }
.careers-page-wrapper .info-row:first-of-type .image-block img {
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(3,24,66,0.12);
  display: block;
}

@media (max-width: 900px) {
  .careers-page-wrapper .info-row { flex-direction: column; }
  .careers-page-wrapper .info-row .text-block, .careers-page-wrapper .info-row .image-block { flex: 1 1 100%; }
  .careers-page-wrapper .info-row:first-of-type .image-block img { max-width: 100%; padding: 0; box-shadow: 0 12px 26px rgba(3,24,66,0.08); }
}

/* ===== SUCCESS POPUP MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(4px);
  }
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
  position: relative;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: scaleIn 0.5s ease-out 0.2s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #083a8c;
  margin-bottom: 12px;
}

.modal-message {
  font-size: 16px;
  color: #475569;
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-close-btn {
  background: linear-gradient(135deg, #083a8c 0%, #0a58ca 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(8, 58, 140, 0.3);
}

.modal-close-btn:hover {
  background: linear-gradient(135deg, #062b6b 0%, #083a8c 100%);
  box-shadow: 0 6px 20px rgba(8, 58, 140, 0.4);
  transform: translateY(-2px);
}

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

/* Mobile Responsive */
@media (max-width: 600px) {
  .modal-content {
    padding: 36px 28px;
    max-width: 90%;
  }

  .modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }

  .modal-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .modal-message {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .modal-close-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
  } 
}