/* Reset and base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  padding-top: 72px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Splash Screen */
#splash-screen {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 1s ease;
}

#splash-logo {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease, transform 1s ease;
  width: 180px;
}

/* Custom Navbar Layout */
.custom-navbar {
  background-color: #1a120d;
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Shared nav link styling */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #d4cfc9;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: white;
}

/* Center Logo */
.logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-circle {
  background-color: white;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.center-logo {
  height: 48px;
  width: auto;
}

/* Right-side container for nav + toggle */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Toggle Button */
#lang-toggle {
  background: linear-gradient(135deg, #ffffff, #f1f1f1);
  color: #0f0f0f;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#lang-toggle:hover {
  background: linear-gradient(135deg, #e4e4e4, #dcdcdc);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Responsive navbar */
@media (max-width: 768px) {
  .navbar-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .nav-links {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-wrapper {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }

  .nav-right {
    flex-direction: column;
    gap: 10px;
  }
}

/* Hover underline + zoom logo on hover */
.nav-links a {
  position: relative;
  color: #d4cfc9;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  padding-bottom: 4px; /* Gives space for underline */
}

.nav-links a:hover {
  color: #007BFF;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #007BFF;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


/* Hover effect on logo circle */
.logo-circle:hover {
  transform: scale(1.1);
}

.logo-circle:hover .center-logo {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Mobile nav toggle (hamburger) */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1100;
}

/* Responsive Hamburger Menu Dropdown */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #1a120d;
    width: 100%;
    padding: 1rem 0;
    z-index: 1001;
  }

  .nav-links.show {
    display: flex;
  }

  .navbar-toggle {
    display: block;
  }
}


/* --- ✅ END UPDATED NAVBAR --- */


/* Add your remaining sections (hero, features, about, etc.) here as-is */
/* ... existing CSS continued below this point ... */


#lang-toggle {
  background: transparent;
  border: 2px solid white;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#lang-toggle:hover {
  background: white;
  color: black;
}

/* Hero Section */
.hero {
  background-color: #c1c1c1;
  height: 100vh; /* Full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}


.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-left {
  flex: 1 1 600px;
}

.hero-left h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #111;
}

.hero-left p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 600px;
  color: #222;
}

.hero-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: black;
  color: white;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
  justify-content: center;
}

.hero-button:hover {
  background-color: #333;
}

.hero-video {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.hero-right {
  flex: 1 1 300px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right img {
  max-width: 400px;
  height: auto;
}

/* Features Section */
.features-section {
  background: #f8f8f8;
  padding: 5rem 1rem;
}

.features-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  color: #555;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 1.8rem;
  color: #007BFF;
  margin-bottom: 0.75rem;
}

.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111;
}

.feature-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-gif-wrapper {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.circular-gif {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 3px solid #007BFF;
}

.circular-gif:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* About Section */
.about-section {
  font-family: Arial, sans-serif;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  line-height: 1.7;
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h1 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.about-header .highlight {
  color: #007BFF;
}

.about-header p {
  font-size: 18px;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}

.about-body {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.about-image-wrapper {
  flex: 1 1 400px;
  text-align: center;
}

.about-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1 1 500px;
  min-width: 300px;
  text-align: center;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.about-content p {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.about-list {
  /* font-size: 17px;
  line-height: 1.75;
  color: #333;
  padding-left: 20px;
  margin-bottom: 20px; */

  text-align: left;
  display: inline-block;
  margin: 0 auto 20px;
}

.about-list li {
  margin-bottom: 12px;
}

.about-quote {
  background-color: #f1f5f9;
  padding: 20px 24px;
  border-left: 4px solid #007BFF;
  font-size: 18px;
  color: #444;
  margin-top: 60px;
  font-style: italic;
  line-height: 1.6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.about-divider {
  height: 4px;
  width: 600px;
  background-color: #050709;
  margin: 0 auto 24px;
  border-radius: 4px;
}

.about-video {
  text-align: center;
  margin-bottom: 60px;
}

.about-video p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.about-video video {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  margin: 0 auto 24px;
  display: block;
}


/* Booking Section */
.book-section {
  padding: 5rem 1rem;
  background: #fff;
  text-align: center;
}

.booking-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.calendly-inline-widget {
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

/* Contact Section */
.contact-section {
  padding: 5rem 1rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-form-wrapper,
.contact-info-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-form-wrapper form {
  background: #f4f4f4;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 1rem;
  color: #333;
  width: 100%;
}


.contact-form-wrapper input,
.contact-form-wrapper textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form-wrapper button {
  background: #555;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form-wrapper button:hover {
  background: #333;
}

.contact-info-wrapper h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

.contact-info-wrapper p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

.contact-video {
  margin-top: 20px;
  max-width: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: block;
}

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 25px;
  font-size: 0.95rem;
}

/* Success Message */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-success-message {
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  display: none;
  opacity: 0;
}

.form-success-message.show {
  display: block;
  animation: fadeSlideIn 0.6s ease forwards;
}

/* Scroll Fade-In */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .topbar {
    flex-wrap: wrap;
    gap: 10px;
  }

  .topbar-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  #lang-toggle {
    margin-top: 10px;
  }

  .hero-grid {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 2.2rem;
  }

  .hero-left p {
    font-size: 1rem;
  }

  .hero-right {
    margin-top: 20px;
  }

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

  .about-body {
    flex-direction: column;
    text-align: center;
  }

  .contact-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .consent-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95rem;
  }

  .consent-label input[type="checkbox"] {
    margin-top: 0;
  }
}
.book-section {
  padding: 5rem 1rem;
  background: #fff;
  text-align: center;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.booking-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Image wrapper */
.booking-image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.booking-image {
  width: 600px;
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}





.consent-label {
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  line-height: 1.4;
}
.consent-label input[type="checkbox"] {
  margin-top: 4px;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay for contrast */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.hero-logo {
  height: 180px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}

.highlight-blue {
  color: #007BFF;
}

.hero-cta-button {
  background: white;
  color: #111;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-cta-button:hover {
  background: #f1f1f1;
}

.about-hero {
  text-align: center;
  margin-bottom: 60px;
}

.about-hero h2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
}

.hero-subtext {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: 15px auto 30px;
}

.about-hero-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin: 20px auto 0;
}

.mission-vision-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 60px;
}

.mission-vision-cards .card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex: 1 1 300px;
  max-width: 500px;
}

/* .mission-vision-cards .card img {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-bottom: 16px;
  border-radius: 10px;
} */

.mission-vision-cards .card img {
  display: block;
  margin: 0 auto 16px;  /* ✅ Centers the image + bottom spacing */
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.mission-vision-cards .card h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.mission-vision-cards .card p {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00aaff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #00aaff;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Navbar Base */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0f0f0f;
  color: white;
  z-index: 1000;
  box-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* Navbar Container */
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.navbar-logo img {
  height: 45px;
  width: auto;
}

/* Right group: Nav + Button */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Navigation Menu */
.navbar-menu {
  display: flex;
  gap: 2rem;
  margin-right: 1.5rem;
}

/* Nav Links */
.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00aaff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #00aaff;
  width: 0;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

#lang-toggle {
  background: linear-gradient(135deg, #ffffff, #f1f1f1);
  color: #0f0f0f;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#lang-toggle:hover {
  background: linear-gradient(135deg, #e4e4e4, #dcdcdc);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.navbar-toggle {
  display: none;
}

@media (max-width: 768px) {
  .navbar-menu {
    flex-direction: column;
    background: #0f0f0f;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    display: none;
    text-align: center;
    z-index: 999;
  }

  .navbar-menu.show {
    display: flex;
  }

  .navbar-right {
    flex-direction: column;
    align-items: flex-end;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-cta-button {
    padding: 16px 32px;
    font-size: 1.1rem;
  }

  .navbar-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }

    html, body {
    max-width: 100%;
    overflow-x: hidden; /* allows vertical scroll, blocks horizontal */
    -webkit-text-size-adjust: 100%;
  }

  input, textarea, select, button {
    font-size: 16px !important; /* prevent iOS auto-zoom */
  }

  body {
    touch-action: pan-y; /* allows scrolling but blocks zooming */
  }
}

@media (max-width: 768px) {

  .about-header h1 {
    font-size: 28px;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-header p,
  .about-content p,
  .about-list,
  .mission-vision-cards .card p,
  .about-video p {
    font-size: 16px;
  }

  .about-video video {
    max-width: 100%;
    height: auto;
  }

  .mission-vision-cards {
    flex-direction: column;
    align-items: center;
  }

  .mission-vision-cards .card {
    max-width: 100%;
  }

  .about-hero-img,
  .mission-vision-cards .card img {
    max-width: 100%;
    height: auto;
  }

  .about-section {
    padding: 40px 16px;
  }
}

.why-macps {
  text-align: center;
  max-width: 800px;
  margin: 80px auto 60px;  /* Increased top margin for visual separation */
  padding: 0 20px;
  position: relative;
}

.why-macps::before {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #007BFF; /* macps-blue */
  border-radius: 4px;
  margin: 0 auto 30px;
}


.why-macps h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.why-macps .features-subtitle {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin: 0 auto;
}