body { font-family: 'Nunito', sans-serif;
   margin: 0; 
   padding: 0; 
   background: #f9f6d0;
  color: #333; } 
.main-header { background-color: #f9f6d0; 
  padding: 15px 40px; 
  display: flex; 
  justify-content: center; 
  /* center the full header block */ 
  align-items: center; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } 
  /* Header */ 
  .header-container { display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 12px 20px; 
    background-color: #f9f6d0; 
    flex-wrap: wrap; } 
    .logo { height: 90px; } 
    .site-title { font-family: 'Lora', serif; 
      font-size: 2.2rem; 
      color: #002366; 
      letter-spacing: 1.2px; 
      word-spacing: 4px; 
      font-weight: 700; 
      margin-left: 15px; } 
    .nav a { text-decoration: none; 
    margin: 0 12px; 
    color: #002366; 
    font-weight: bold; 
    font-size: 16px; } 
    .nav a:hover { color: #001f4d; 
    } 
    hr { border: 0.5px solid #ccc; 
      margin: 0; } 
      /* Hero Section */ 
      .hero { background: url('../images/hero.jpg') no-repeat center center/cover; 
        padding: 80px 20px; 
        text-align: center; 
        color: #ffffff; } 
        .hero-text h1 { font-size: 30px; 
          margin-bottom: 10px; 
          color: #ffffff; } 
          .hero-text p { font-size: 18px; 
            margin-bottom: 20px; 
            color: #f0f0f0; } 
    .cta-button { background-color: #002366; 
     color: #ffffff; 
     padding: 12px 20px; 
     text-decoration: none; 
     border-radius: 6px; 
     font-weight: bold; } 
     .cta-button:hover { background-color: #001f4d; 
    } /* Responsive */ 
    @media (min-width: 768px) 
      .hero {
         min-height: 70vh;   /* or 100vh if you want full screen on mobile */
         padding: 40px 15px; /* reduce padding so text doesn’t overflow */
             }
    { .hero-text h1 { font-size: 42px; } 
    .hero-text p { font-size: 20px; } } 
    /* Nav Bar */ 
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;  /* logo left, menu right */
  background-color: #f9f6d0;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
      .main-nav ul { list-style: none; 
        display: flex;
         gap: 40px; 
         padding: 0; 
         margin: 0; } 
         
.main-nav a { text-decoration: none; 
  font-family: 'Bookman Old Style', 'Georgia', serif; 
  font-size: 1.1rem; 
  color: #002366; 
  padding: 8px 12px; 
  transition: all 0.3s ease; 
  border-radius: 4px; } 
  .main-nav a:hover { color: #002366;
     /* Dark royal blue */ 
     
  background-color: #ced9fb; 
  /* Soft background */ 
  text-decoration: underline; 
} 
.hamburger { display: none; 
  font-size: 28px; 
  cursor: pointer; 
  padding: 10px 20px; 
  position: absolute; 
  /* ✅ fix to top-right */ 
right: 20px; 
top: 20px; 
z-index: 10001; } 
/* ✅ NAV & SLIDE-IN MOBILE MENU */ 
@media (max-width: 768px) 
{ 
  .main-nav { position: relative; 
  } 
  .hamburger { display: block;
   } 

.main-nav ul.nav-list { flex-direction: column;
     gap: 12px; background-color: #f9f6d0; padding: 20px; position: fixed; top: 0; left: 0; width: 70%; height: 100vh; box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); transform: translateX(-100%); /* ✅ hidden by default */ transition: transform 0.4s ease; z-index: 10000; } 
.main-nav ul.nav-list.show { transform: translateX(0); /* ✅ slide-in when active */ } 
.main-nav ul.nav-list li { position: relative; } 
.submenu { display: none; flex-direction: column; padding-left: 15px; margin-top: 5px; }

.has-submenu.active .submenu { display: flex; } 
.has-submenu > a::after { content: ' ▼'; font-size: 12px; margin-left: 6px; } } 
.submenu { display: none; flex-direction: column; padding-left: 15px; margin-top: 5px; } 
.has-submenu.active .submenu { display: flex; } 
.has-submenu > a::after { content: ' ▼'; font-size: 12px; margin-left: 6px; } 

/* Submenu dropdown 
.has-submenu { position: relative; } 
.submenu { position: absolute; top: calc(100% + 5px); left: 50%; transform: translateX(-50%); background-color: #fefefd; border-radius: 6px; white-space: nowrap; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); z-index: 1000; flex-direction: column; overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 12px; 

@media (max-width: 768px) { 
  .submenu { position: relative; left: 0; transform: none; box-shadow: none; background: #fefefd; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; } 
  .has-submenu.active .submenu { max-height: 400px; } 
} 

.has-submenu:hover .submenu, .has-submenu.active .submenu { max-height: 500px; padding-top: 8px; padding-bottom: 8px; } */ 

.submenu { position: absolute; top: calc(100% + 5px); left: 50%; transform: translateX(-50%); background-color: #fefefd; border-radius: 6px; white-space: nowrap; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); z-index: 1000; flex-direction: column; overflow: hidden; max-height: 0; transition: max-height 0.4s ease; padding: 0 12px; } 
.has-submenu:hover .submenu, .has-submenu.active .submenu { max-height: 700px; padding-top: 8px; padding-bottom: 8px; } 

@media (max-width: 768px) { 
  .submenu { position: relative; transform: none; top: 0; left: 0; box-shadow: none; } 
} 

/* Submenu link styles */ 
.submenu li a { font-family: 'Bookman Old Style', 'Georgia', serif; font-size: 1.05rem; color: #002366; text-decoration: none; padding: 6px 12px; display: block; border-radius: 4px; transition: background-color 0.3s ease; } 
.submenu li a:hover { background-color: #ced9fb; text-decoration: underline; } 

/* Arrow icon */ 
.has-submenu > a::after { content: ' ▸'; font-size: 12px; margin-left: 6px; transition: transform 0.3s ease; display: inline-block; } 

/* Rotate arrow on active or hover */ 
.has-submenu.active > a::after, .has-submenu:hover > a::after { transform: rotate(90deg); } 

* { margin: 0; padding: 0; box-sizing: border-box; } 
body { font-family: Arial, sans-serif; } 

.welcome-text { padding: 60px 20px; text-align: center; background-color: #f9f6d0; } 
.welcome-text .container { max-width: 900px; margin: 0 auto; } 
.welcome-text h2 { font-size: 2.5rem; font-family: 'Georgia', serif; color: #333; margin-bottom: 20px; } 
.welcome-text p { font-size: 1.2rem; color: #444; line-height: 1.6; font-family: 'Segoe UI', sans-serif; } 
.highlight { color: #000000; /* Dark Royal Blue */ font-weight: bold; } 

.about-section { padding: 80px 20px; background-color: #f9f6d0; color: #2b157c; font-family: Arial, sans-serif; } 
.container { max-width: 900px; margin: 0 auto; text-align: center; } 
.section-title { font-size: 2.5rem; color: #002366; margin-bottom: 30px; font-weight: bold; letter-spacing: 1px; } 
.about-card { background-color: #fefefd; padding: 30px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); text-align: left; font-size: 1.1rem; line-height: 1.8; } 
.highlight { color: #002366; font-weight: bold; } 

/* Initial hidden state */ 
.reveal { opacity: 0; transform: translateY(-40px); transition: all 0.8s ease; } 
/* When in view */ 
.reveal.show { opacity: 1; transform: translateY(0); } 
/* Optional: stagger for title and card */ 
.reveal.delay-1 { transition-delay: 0.2s; } 
.reveal.delay-2 { transition-delay: 0.5s; } 

/* General nav reset */ 
nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 25px; } 
nav ul li { position: relative; } 
nav ul li a { display: block; padding: 15px 20px; color: #002366; text-decoration: none; font-weight: bold; cursor: pointer; } 

.header, .slider { position: relative; z-index: 1; } 

.team-section { max-width: 1200px; margin: 60px auto; padding: 0 20px; text-align: center; } 
.team-section h1 { font-size: 2.5rem; color: #002366; margin-bottom: 40px; } 
.team-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; } 
.team-card { background-color: #fefefd; border-radius: 20px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); width: 500px; padding: 25px; transition: transform 0.3s ease; } 
.team-card:hover { transform: translateY(-10px); }

.team-card img { width: 100%; height: 350px; object-fit: cover; border-radius: 15px; margin-bottom: 20px; } 
.team-card h3 { font-family: 'Lora', serif; font-size: 1.4rem; color: #002366; margin-bottom: 8px; } 
.team-card p.title { font-weight: bold; margin-bottom: 10px; color: #333; } 
.team-card p.desc { font-size: 0.95rem; color: #444; line-height: 1.5; } 

/* Initial hidden state */ 
.team-card.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; } 

/* Reveal on scroll */ 
.team-card.reveal.show { opacity: 1; transform: translateY(0); } 

/* Optional stagger effect */ 
.team-card.delay-1 { transition-delay: 0.3s; } 
.team-card.delay-2 { transition-delay: 0.6s; } 

/* Reset box sizing */ 
* { box-sizing: border-box; margin: 0; padding: 0; } 

/* Body default font */ 
body { font-family: 'Nunito', sans-serif; background-color: #f9f6d0; color: #333; } 

/* Section Layout */ 
.image-text-section { max-width: 1200px; margin: 60px auto; padding: 0 20px; text-align: center; } 

/* Section Heading */ 
.section-heading { font-size: 2.2rem; color: #002366; margin-bottom: 40px; font-family: 'Lora', serif; } 

/* Flex Container for Image and Text */ 
.image-text-container { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px; } 

/* Image card wrapper (left) */ 
.image-card-wrapper { flex: 1 1 600px; /* wider base */ max-width: 600px; display: flex; justify-content: center; } 

/* Image inside a background card */ 
.image-card-bg { background-color: #fefefd; padding: 20px; border-radius: 20px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); width: 100%; } 
.image-card-bg img { width: 100%; height: 450px; border-radius: 16px; object-fit: cover; } 

/* Text card (right) */ 
.text-card { flex: 1 1 600px; /* Allow it to grow more */ max-width: 1000px; /* Increase the width limit */ background-color: #fefefd; padding: 30px; border-radius: 16px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); text-align: left; } 
.text-card h3 { color: #002366; font-size: 1.6rem; margin-bottom: 15px; font-family: 'Lora', serif; } 
.text-card p { color: #444; font-size: 1rem; line-height: 1.6; font-family: 'Nunito', sans-serif; } 

/* Responsive for smaller screens */ 
@media (max-width: 768px) { 
  .image-text-container { flex-direction: column; gap: 30px; } 
  .image-card-wrapper, .text-card { max-width: 100%; } 
  .section-heading { font-size: 1.8rem; } 
  .text-card h3 { font-size: 1.4rem; } 
  .text-card p { font-size: 0.95rem; } 
} 

.section-title-wrapper { display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap; gap: 40px; /* ✅ Space between image and text */ margin-top: 30px; /* Optional spacing below title */ } 

@media (max-width: 768px) { 
  .section-title-wrapper { flex-direction: column; align-items: center; /* center child items */ gap: 20px; } 
  .text-card { width: 90%; max-width: 100%; text-align: center; } 
  .image-card-bg img { height: auto; width: 100%; object-fit: cover; } 
  .section-heading { font-size: 1.6rem; padding: 0 10px; } 
} 

.text-card h3 { font-size: 1.2rem; } 
.text-card p { font-size: 1rem; } 

.cta-button { display: inline-block; padding: 12px 24px; font-size: 1rem; border-radius: 6px; } 

@media (max-width: 768px) { 
  .cta-button { width: 100%; text-align: center; } 
} 

img { max-width: 100%; height: auto; } 

@media (max-width: 768px) { 
  .header-container { flex-direction: column; align-items: center; text-align: center; padding: 10px; } 
  .logo { height: 70px; margin-bottom: 10px; } 
  .site-title { font-size: 1.5rem; word-break: break-word; padding: 0 10px; } 
  .main-nav ul { flex-direction: column; gap: 12px; padding-top: 10px; } 
  .main-nav { padding: 10px 0; } 
} 

.modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); } 
.modal-content { background-color: #fff; margin: 5% auto; padding: 20px; border-radius: 12px; width: 90%; max-width: 800px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); } 
.close-button { color: #888; float: right; font-size: 28px; font-weight: bold; cursor: pointer; } 
.close-button:hover { color: #000; } 

.main-nav, .submenu { z-index: 9999; }

.site-footer {
  background-color: #002366;
  color: #f9f9f9;
  padding: 40px 20px 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  flex: 1 1 250px;
  text-align: left;
}

.footer-logo {
  height: 90px;
  margin-bottom: 10px;
}

.footer-links, .footer-contact {
  flex: 1 1 200px;
}

.footer-links h4, .footer-contact h4 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a, .footer-contact a {
  color: #ced9fb;
  text-decoration: none;
}

.footer-links a:hover, .footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin: 8px 0;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 15px;
  font-size: 0.95rem;
  color: #cccccc;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand, .footer-links, .footer-contact {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
  .social-icons a {
    margin-right: 10px;
  }
}

.footer-brand p {
  margin-left: -45px; /* adjust value as needed */
}

html {
  scroll-behavior: smooth;
}

.highlight-flash {
  background-color: #3588d5;
  border-radius: 10px;
  padding: 10px;
  transition: background-color 1s ease;
}

/* .testimonial-section {
  background-color: #f9f6d0;
  padding: 80px 20px;
  text-align: center;
}

.testimonial-title {
  font-size: 2.5rem;
  color: #002366;
  margin-bottom: 40px;
  font-family: 'Lora', serif;
}

.testimonial-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 30px;
  background: #ffffff;
  margin: 0 10px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  text-align: center;
}

.testimonial-text {
  font-size: 1.2rem;
  color: #002366;
  margin-bottom: 15px;
}

.testimonial-author {
  font-style: italic;
  color: #555;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #002366;
  z-index: 1;
}

.testimonial-arrow.left {
  left: 0;
}

.testimonial-arrow.right {
  right: 0;
}

.testimonial-arrow:hover {
  color: #001f4d;
}

.video-testimonial {
  justify-content: flex-start;
  text-align: left;
}

.testimonial-card video {
  border-radius: 12px;
  max-width: 100%;
  margin-bottom: 15px;
} */

.testimonial-section {
  background-color: #f9f6d0;
  padding: 80px 20px;
  text-align: center;
}

.testimonial-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 60px; /* ➕ Add space for arrows outside */
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: #f9f6d0;
  border: none;
  cursor: pointer;
  color: #002366;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.testimonial-arrow:hover {
  background-color: #ced9fb;
}

.testimonial-arrow.left {
  left: 10px;
}

.testimonial-arrow.right {
  right: 10px;
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 30px;
  background: #ffffff;
  margin: 0 10px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  text-align: center;
  transition: transform 0.4s ease;
}

.testimonial-title {
  font-size: 2.5rem;
  color: #002366;
  margin-bottom: 40px;
  font-family: 'Lora', serif;
}

.testimonial-text {
  font-size: 1.2rem;
  color: #002366;
  margin-bottom: 15px;
}

.testimonial-author {
  font-style: italic;
  color: #555;
}

.image-slider {
  background-color: #f9f6d0;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.slider-title {
  font-size: 2.2rem;
  color: #002366;
  margin-bottom: 30px;
  font-family: 'Lora', serif;
}

.slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slider-item {
  min-width: 100%;
  position: relative;
}

.slider-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slider-item {
  min-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-item img {
    height: 300px;
  }
  .slider-btn.prev {
    left: -30px;
  }
  .slider-btn.next {
    right: -30px;
  }
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.2rem;
    padding: 0 10px;
  }
}

/* Reset default margins */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* remove unwanted horizontal scroll */
}

/* Headings */
h2 {
  text-align: center;
  font-size: 1.5rem;
  margin: 15px 0;
}

/* Container fix for spacing */
.image-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* Image responsiveness */
.image-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Global Heading Styles */
h1, h2, h3, h4, h5, h6 {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #222;
  margin: 15px 0;
}

/* Responsive font sizes */
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  h4, h5, h6 { font-size: 1rem; }
}

@media screen and (max-width: 768px) {
  /* White card around image */
  .image-text-section .text-card:first-child {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 10px;
    margin: 0 auto 20px; /* space below the card only */
    width: 90%; /* card width control */
    max-width: 400px; /* not too wide */
  }

  /* Remove extra background from inner wrapper */
  .image-text-section .image-card-bg {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  /* Image inside card */
  .image-text-section .image-card-bg img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
  }

  /* Ensure no unwanted flex stretch */
  .section-title-wrapper {
    display: block; /* stack neatly */
  }
}

@media screen and (max-width: 768px) {
  /* Center align the text card itself */
  .image-text-section .text-card {
    margin: 0 auto 20px; /* centers horizontally + spacing below */
    width: 90%;
    max-width: 500px; /* keep it readable */
    text-align: center; /* for headings inside */
  }

  /* Inside paragraph justification */
  .image-text-section .text-card p {
    text-align: justify;
  }
}

@media screen and (max-width: 768px) {
  .site-title {
    font-size: 1.2rem; /* smaller text */
    text-align: center; /* center align */
    line-height: 1.4; /* good spacing */
    margin: 10px auto; /* center with space */
    max-width: 90%; /* prevent overflow */
    display: block; /* ensures centering works */
  }

  .header-container {
    flex-direction: column; /* logo on top, title below */
    align-items: center;
    text-align: center;
  }

  .logo {
    max-width: 80px; /* smaller logo for mobile */
    margin-bottom: 8px;
  }
}

/* Mobile section headings */
@media screen and (max-width: 768px) {
  .section-heading {
    font-size: 20px; /* smaller for mobile */
    text-align: center; /* center the headings */
    margin-bottom: 15px; /* neat spacing */
    line-height: 1.4;
  }
}

@media screen and (max-width: 768px) {
  .site-footer .footer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center !important; /* force center */
    text-align: center !important; /* force center text */
  }
}

.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.site-footer .footer-brand img {
  margin: 0 auto;
  max-width: 120px;
}

.site-footer .footer-brand p {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  width: 100%;
}


@media screen and (max-width: 768px) {
  /* Fix the slide card */
  .swiper-slide {
    background: #fff; /* keep clean */
    border-radius: 0 !important;
    box-shadow: none !important;
    width: 100% !important; /* full width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px; /* slim padding */
  }

  /* Fix the video inside */
  .swiper-slide iframe,
  .swiper-slide video {
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
    display: block;
  }

  /* Optional: reduce extra space below text */
  .swiper-slide p {
    margin-top: 8px;
    margin-bottom: 0;
    text-align: center;
  }
}

/* Mobile View - Testimonials */
@media (max-width: 768px) {
  .testimonial-card {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .testimonial-card iframe,
  .testimonial-card video,
  .testimonial-card img {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px;
  }

  .testimonial-card p {
    background: #fff;
    border-radius: 8px;
    margin-top: 10px;
    padding: 10px;
    font-size: 14px;
    text-align: justify;
  }

  /* Force space between slides */
  .swiper-slide,
  .slick-slide {
    margin-right: 20px !important; /* gap between slides */
  }

  /* Make sure the last slide doesn’t overflow */
  .swiper-wrapper,
  .slick-track {
    padding-right: 20px !important;
  }
}

/* Mobile View - Add horizontal spacing between testimonial slides */
@media (max-width: 768px) {
  .testimonial-slider .testimonial-card {
    margin: 0 12px !important; /* space on left and right */
  }

  .testimonial-slider {
    padding: 0 10px; /* avoid sticking to screen edges */
  }
}

/* Hide menu by default on mobile */
.nav-list {
  position: fixed;
  top: 0;
  left: -250px; /* hidden */
  width: 250px;
  height: 100%;
  background: #fff;
  flex-direction: column;
  padding: 2rem 1rem;
  transition: left 0.3s ease;
  z-index: 1000;
}

/* When active */
.nav-list.show {
  left: 0; /* slide in */
}



.main-nav .logo img {
  max-height: 50px;
}

/*
/* Desktop menu */
@media (min-width: 769px) {
  .main-nav .nav-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-left: auto;   /* ✅ pushes menu to right */
    position: static;
    background: none;
    height: auto;
    width: auto;
    padding: 0;
  }

  .hamburger {
    display: none; /* ✅ hide hamburger on desktop */
  }
} 


.site-title {
  flex: 1;
  text-align: center;
}



/* Hide menu + hamburger in mobile 
@media (max-width: 768px) {
  .main-nav,
  .hamburger {
    display: none !important;
  }
}*/









/* Mobile Menu */
@media (max-width: 768px) {
  .mobile-menu {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    width: 100%;
  }

  .mobile-menu li {
    position: relative;
    border-bottom: 1px solid #ccc;
  }

  .mobile-menu a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #002366;
    font-weight: 500;
  }

  .mobile-menu .arrow {
    float: right;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .mobile-menu .arrow.rotate {
    transform: rotate(180deg);
  }

  .submenu {
    display: none;
    list-style: none;
    padding-left: 15px;
    background: #f9f6d0;
  }

  .submenu li a {
    padding: 10px 15px;
    font-size: 0.95rem;
  }

  .submenu.show {
    display: block;
  }
}


/* Mobile submenu slide effect */
.mobile-menu .submenu {
  max-height: 0;        /* hidden */
  overflow: hidden;
  transition: max-height 0.3s ease;
}






.social-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.social-float a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.social-float a:hover {
  transform: scale(1.1);
}

/* WhatsApp green */
.social-float a.whatsapp {
  background-color: #25D366;
}

/* Instagram gradient */
.social-float a.instagram {
  background: radial-gradient(circle at 30% 107%, 
              #fdf497 0%, #fdf497 5%, #fd5949 45%, 
              #d6249f 60%, #285AEB 90%);
}

/* Phone blue */
.social-float a.phone {
  background-color: #007AFF;
}

.social-float img {
  width: 60%;
  height: auto;
  /* makes icons white */
}





@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.social-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  animation: slideIn 0.8s ease-out forwards;
}


.social-float a {
  width: 60px;
  height: 60px;
  opacity: 0; /* add this */
  animation: slideIn 0.6s ease-out forwards;
}

.social-float a:nth-child(1) { animation-delay: 0.2s; }
.social-float a:nth-child(2) { animation-delay: 0.4s; }
.social-float a:nth-child(3) { animation-delay: 0.6s; }



/* MOBILE FIXES */
@media (max-width: 768px) {
  /* Make header items stack */
  .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  /* Logo */
  .logo {
    max-width: 80px;
    height: auto;
    margin-bottom: 10px;
  }

  /* Title */
  .site-title {
    font-size: 1.2rem;
    line-height: 1.4;
    word-wrap: break-word;
    max-width: 90%;
  }

  /* Nav Menu */
  .main-nav {
    width: 100%;
  }

  .mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .mobile-menu li {
    width: 100%;
    text-align: center;
   
  }

  .mobile-menu li a {
    display: block;
    padding: 12px;
    text-decoration: none;
  }

  /* Submenu fix */
  .submenu {
    display: none;
    flex-direction: column;
 
   
;
    width: 100%;
  }

  .has-submenu:hover .submenu {
    display: flex;
  }
}





