
.about-section {
  padding: 2rem;
  background-color: #ffffff;
  color: #003366;
}

.about-section .intro {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
}

.about-section h1, .about-section h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.team {
  text-align: center;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background-color: #f4faff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  max-width: 280px;
  text-align: center;
}

.team-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 100px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.team-card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0 0;
  color: #0066cc;
}

.team-card h5 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: normal;
  color: #555;
}

.team-card p {
  font-size: 0.9rem;
  color: #003366;
  margin-top: 0.75rem;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #003366;
}

header nav {
  background-color: #003366;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  line-height: 1;
}

nav a.active {
  border-bottom: 2px solid #00bfff;
}

.logo {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Hero Section */
.hero {
  background-image: url('../images/homeee.png');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}

.hero-text {
  max-width: 700px;
  margin: auto;
}

.btn-primary, .btn-secondary {
  margin: 1rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
}

.btn-primary {
  background-color: #0066cc;
  color: white;
  animation: pulse 2s infinite;
}

.btn-secondary {
  background-color: #e6f2ff;
  color: #003366;
  border: 2px solid #0066cc;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* WhatsApp */
.whatsapp-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25d366;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease-in;
  cursor: pointer;
}

.whatsapp-popup img {
  width: 28px;
  height: 28px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Book Promo */
.book-promo {
  padding: 2rem;
  background-color: #f4faff;
  border-top: 1px solid #ddeeff;
  text-align: center;
}

.book-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 1.5rem;
}

.book-cover {
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.book-description {
  max-width: 600px;
  text-align: left;
}

/* Services Preview */
.home-services {
  padding: 2rem;
  background-color: #ffffff;
  text-align: center;
}

.home-services h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 2rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background-color: #f5faff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  flex: 1 1 220px;
  max-width: 250px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #0066cc;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #003366;
}

.service-link {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.site-footer {
  background-color: #003366;
  color: white;
  padding: 2rem 1rem 1rem;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #00bfff;
  display: inline-block;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #d4e6f1;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #005599;
  margin-top: 2rem;
  padding-top: 1rem;
}
.about-banner {
  background-image: url('../images/hh.png');
  background-size: 105%;
  background-position: center;
  height: 400px;
  animation: zoomOut 20s infinite ease-in-out;
}

@keyframes zoomOut {
  0%   { background-size: 105%; }
  50%  { background-size: 95%; } /* zooms out to reveal more of the image */
  100% { background-size: 105%; }
}


.about-description {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  color: #003366;
  text-align: center;
}

.about-description h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonials {
  padding: 2rem;
  background-color: #ffffff;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 2rem;
}

.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial-box {
  background-color: #f4faff;
  padding: 1.5rem;
  border-left: 5px solid #00bfff;
  border-radius: 8px;
  max-width: 300px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.testimonial-box blockquote {
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.testimonial-box p {
  font-weight: bold;
  color: #0066cc;
  margin: 0;
}

.partners {
  padding: 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.partners h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 2rem;
}

.partner-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  animation: fadeSlideIn 1.2s ease-in-out;
}

.partner-grid a {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-grid img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease-in-out;
}

.partner-grid a:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-services {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  background: #f4faff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  width: 260px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card h2 {
  font-size: 1.2rem;
  color: #0066cc;
  margin-bottom: 1rem;
}

.price-toggle {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.price-toggle:hover {
  background-color: #005bb5;
}

.service-prices {
  display: none;
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  text-align: left;
  animation: slideDown 0.4s ease forwards;
}

.service-prices li {
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

.scan-btn-wrapper {
  margin-top: 3rem;
}

.scan-button img {
  width: 200px;
  transition: transform 0.3s ease;
}

.scan-button img:hover {
  transform: rotate(2deg) scale(1.03);
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.scan-btn-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.scan-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #1caabf;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 0 #14889c, 0 12px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.scan-button::before,
.scan-button::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid black;
  border-radius: 50%;
  background: white;
}

.scan-button::before {
  top: -6px;
  left: -6px;
}

.scan-button::after {
  top: -6px;
  right: -6px;
}

.scan-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 0 #14889c, 0 14px 22px rgba(0, 0, 0, 0.25);
}


.booking-section {
  padding: 2rem;
  background-color: #f9f9f9;
}

.booking-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.booking-form {
  flex: 1 1 500px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.booking-form h1 {
  color: #003366;
  margin-bottom: 1.5rem;
}

.booking-form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.booking-form button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
}

.booking-encouragement {
  flex: 1 1 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-encouragement img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.encouragement-text h2 {
  color: #0066cc;
  margin-bottom: 0.5rem;
}

.encouragement-text p {
  color: #003366;
  font-size: 0.95rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.book-heading {
  animation: fadeInUp 1s ease-out;
  opacity: 1;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.contact-left, .contact-right {
  flex: 1 1 400px;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* -------------------
   FAQ Section
   ------------------- */
.faq-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 10px;
}
.faq-section h2,
.faq-section p {
  text-align: center;
  color: #003366;
  margin-bottom: 1rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0066cc;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  padding: 1rem;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}
.faq-question.open {
  background-color: #0055aa;
}
.faq-toggle-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.faq-question.open .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  background-color: #e6f2ff;
  color: #003366;
  font-size: 1rem;
  padding: 0 1rem;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease;
}
.faq-answer.active {
  padding: 1rem;
}

.newsletter-wrapper {
  width: 100%;
  background-color: #f2f9ff;
  padding: 2rem 1rem;
  margin-bottom: 3rem; /* creates space above footer */
  display: flex;
  justify-content: center;
}

.newsletter-box {
  max-width: 600px;
  text-align: center;
}

.newsletter-box h2 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.newsletter-box p {
  color: #003366;
  margin-bottom: 1rem;
}

.newsletter-box form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.newsletter-box input[type="email"] {
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 60%;
  min-width: 200px;
}

.newsletter-box button {
  padding: 0.5rem 1.2rem;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.faq-section h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 1rem;
}

.faq-section p {
  text-align: center;
  margin-bottom: 2rem;
  color: #003366;
}

.faq-container {
  padding: 0 1rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0066cc;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  padding: 1rem;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.faq-question.open {
  background-color: #0055aa;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.open .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  background-color: #e6f2ff;
  color: #003366;
  font-size: 1rem;
  padding: 0 1rem;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease;
}

.faq-answer.active {
  padding: 1rem;
}
/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #003366;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 1rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  nav ul li {
    margin: 0.5rem 0;
  }
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  background-color: #f4faff;
  color: #003366;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.social-link:hover {
  background-color: #e0f0ff;
  transform: translateX(5px);
  color: #0055aa;
}

.social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .social-links {
    gap: 1rem;
  }

  .social-link {
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
  }
}
