    :root {
      --main-color: #375a7f;
      --accent-color: #88c9bf;
      --light-bg: #f5f8fa;
      --dark-text: #2c3e50;
      --sidebar-color: #1f2d3d;
      --header-main: #E0115F;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Open Sans', sans-serif;
    }

    body {
      background-color: var(--light-bg);
      color: var(--dark-text);
      line-height: 1.6;
      -webkit-user-select: none; /* Chrome/Safari */
      -moz-user-select: none;    /* Firefox */
      -ms-user-select: none;     /* IE10+ */
      user-select: none;         /* Standard */
      -webkit-touch-callout: none; /* Disable iOS popup menu */
    }

    header {
      /*background: var(--main-color);*/
      background: var(--header-main);
      color: white;
      padding: 15px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 2000;
      padding-left:100px;
    }

    header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
    }

    .menu-button {
      position: fixed;
      top: 15px;
      left: 20px;
      background: none;
      border: 2px solid white;
      color: white;
      padding: 5px 10px;
      font-size: 1rem;
      border-radius: 4px;
      cursor: pointer;
      z-index: 2100;
    }
    .hero {
      margin-top: 60px;
      position: relative;
      background: var(--main-color);
      color: white;
      /*height: 480px;*/
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    
/* 📱 Mobile (≤480px) */
@media (max-width: 480px) {
  .hero {
    width: 100%;        /* still fluid if screen smaller */
    height: 480px;      /* optional: reduce height */
  }
}

/* 💻 Desktop (≥1310px) */
@media (min-width: 500px) {
  .hero {
    width: 100%;        /* still fluid if screen smaller */
    height: 1310px; !important     /* optional: reduce height */
  }
}

/* 💻 Desktop (≥1310px) */
@media (min-width: 1000px) {
  .hero {
    width: 100%;        /* still fluid if screen smaller */
    height: 2510px; !important     /* optional: reduce height */
  }
}

/* 💻 Desktop (≥1310px) */
@media (min-width: 4000px) {
  .hero {
    width: 100%;        /* still fluid if screen smaller */
    height: 8510px; !important     /* optional: reduce height */
  }
}

.slider {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
    .slide.active {
      opacity: 1;
      z-index: 1;
    }
    figure.slide {
      display: block;
    }
    figure.slide figcaption {
      position: absolute;
      bottom: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      padding: 10px 15px;
      border-radius: 0;
      text-align: center;
    }
    .section {
      padding: 40px 20px;
      background-color: white;
      margin-bottom: 20px;
    }

    .section:nth-child(even) {
      background-color: #e9f3f1;
    }
    .section h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: var(--main-color);
      text-align: center;
    }
    .section p, .section ul {
      max-width: 800px;
      margin: auto;
      font-size: 0.95rem;
    }
footer {
  background: #333;
  color: #ccc;
  padding: 5px;
  text-align: center;
  font-size: 0.85rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
}
    .btn {
      background: var(--accent-color);
      color: #fff;
      border: none;
      padding: 8px 18px;
      font-size: 0.95rem;
      margin-top: 20px;
      cursor: pointer;
      border-radius: 5px;
      display: inline-block;
    }
    .btn:hover {
      background-color: #66a69b;
    }
    
    
.testimonial-carousel {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
}

.testimonial-slide {
  transition: opacity 0.6s ease-in-out;
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  font-style: italic;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Navigation buttons */
.nav-button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #444;
  cursor: pointer;
  padding: 5px 10px;
  user-select: none;
  z-index: 10;
  transition: color 0.3s;
}

.nav-button:hover {
  color: #000;
}

.nav-button.left {
  margin-left: 5px;
}

.nav-button.right {
  margin-right: 5px;
}
    .toggle-btn {
      font-size: 24px;
      padding: 15px;
      cursor: pointer;
      background-color: #333;
      color: white;
    }
    .sidebar {
      overflow-y: auto;
      position: fixed;
      top: 0;
      left: -290px;
      width: 250px;
      height: 100vh;
      background: #E7C6C2;
      box-shadow: 2px 0 5px rgba(0,0,0,0.1);
      padding: 20px;
      padding-bottom: 100px; /* gives breathing room at the bottom */
      transition: left 0.3s ease;
      z-index: 1000;
    }
/* Optional: custom scrollbar (WebKit-based browsers) */
.sidebar::-webkit-scrollbar {
  width: 2px;
}
.sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: transparent;
  transition: background-color 0.3s;
  border-radius: 2px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
    .sidebar.open {
      left: 0;
    }

    .sidebar h2 {
      margin-top: 0;
      font-size: 22px;
      border-bottom: 2px solid #ddd;
      padding-bottom: 10px;
    }

    .sidebar a {
      display: block;
      padding: 10px 5px;
      font-weight: 580;
      color: black;
      text-decoration: none;
      transition: background 0.2s;
    }

    .sidebar a:hover {
      background: #eaeaea;
    }

    .menu-header {
      cursor: pointer;
      padding: 10px 5px;
      display: flex;
      /*color: #e0115f;*/
      color:black;
      justify-content: space-between;
      align-items: center;
    }


.submenu {
  margin-left: 10px;
}

.submenu-list {
  list-style: none;
  margin: 0;
  padding-left: 10px;
  border-left: 2px solid red;
}

.submenu-list li {
  margin: 5px 0;
}

.submenu-list li a {
  text-decoration: none;
  color: black;
  padding-left: 5px;
}

    .overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100vh;
      background: rgba(0,0,0,0.4);
      z-index: 900;
    }

    .overlay.active {
      display: block;
    }

    .app-meta {
      font-size: 14px;
      color: #666;
      margin-top: 20px;
      border-bottom: 1px solid #ccc;
      padding-top: 10px;
      padding-bottom: 10px;
    }
    
    .divider {
      border-top: 1px solid #bbb;
      border-radius: 5px;
}


/* WhatsApp Floating Button */
.whatsapp-icon {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 1000;
}
.whatsapp-icon img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}
.whatsapp-icon:hover img {
  transform: scale(1.15);
}