    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html, body {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }
        #about, #services, #contact {
      background: #fff;
      color: #333;
    }
    body {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      background: #f9f9f9;
      color: #333;
    }

    section {
      scroll-snap-align: start;
      min-height: 100vh;
      padding: 100px 20px;
      text-align: center;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    section.show {
      opacity: 1;
      transform: translateY(0);
    }

    nav {
      position: fixed;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      width: min(1120px, calc(100% - 28px));
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 18px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
      border: 1px solid rgba(255, 255, 255, 0.45);
      box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
      backdrop-filter: blur(16px) saturate(170%);
      -webkit-backdrop-filter: blur(6px) saturate(170%);
      z-index: 1000;
    }
    nav::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(110deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 55%);
      pointer-events: none;
    }
    .logo img {
      height: 40px;
      display: block;
      mix-blend-mode: multiply;
      position: relative;
      z-index: 1;
    }
    nav .menu {
      display: flex;
      gap: 20px;
      position: relative;
      z-index: 1;
    }
    nav .menu a {
      text-decoration: none;
      color: #0f172a;
      font-weight: 700;
      font-size: 0.95rem;
      transition: color 0.3s;
    }
    nav .menu a:hover {
      color: #0b839c;
    }
    @media (max-width: 700px) {
      nav {
        top: 10px;
        width: calc(100% - 16px);
        padding: 10px 12px;
        border-radius: 14px;
      }
      nav .menu {
        gap: 12px;
      }
      nav .menu a {
        font-size: 0.86rem;
      }
      .logo img {
        height: 34px;
      }
    }

    h1 {
      font-size: 2.2rem;
      margin-bottom: 20px;
    }
    p {
      font-size: 1rem;
      max-width: 600px;
      margin: 0 auto 20px;
      line-height: 1.5;
    }
    .btn {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 25px;
      font-size: 1rem;
      background: #1dc4e9;
      background-image: linear-gradient(#0b839c, #0b839c);
      background-repeat: no-repeat;
      background-size: 0% 100%;
      background-position: left top;
      color: #fff;
      border-radius: 30px;
      text-decoration: none;
      transition: background-size 0.35s ease;
    }
    .btn:hover {
      background-size: 100% 100%;
    }
#hero1 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
  background: linear-gradient(120deg, #0b1220 0%, #111d33 45%, #0f2f3a 100%);
  overflow: hidden;
}

#hero1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(29, 196, 233, 0.2), transparent 42%);
  z-index: 1;
}

#hero1 > * {
  position: relative;
  z-index: 2;
}

#hero1 h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#hero1 p {
  font-size: 1.2rem;
  max-width: 600px;
}

#hero1 button {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  background-color: #00bfa6;
  background-image: linear-gradient(#0b839c, #0b839c);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-size 0.35s ease;
}

#hero1 button:hover {
  background-size: 100% 100%;
}


    #hero3 {
      background: linear-gradient(135deg, #1de9b6, #1dc4e9);
      color: #fff;
    }



    .video-section {
      position: relative;
      color: #fff;
      overflow: hidden;
    }
    .bg-video {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 1;
    }
    .video-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 2;
    }
    .video-section .content {
      position: relative;
      z-index: 3;
    }

    #choose-service,
    #contact {
      background: #f0f0f0;
    }
    #choose-service h1 {
      margin-bottom: 30px;
    }

    #services {
  padding: 60px 20px;
  text-align: center;
}

#services {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden; /* hides blur edges */
}

#services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/media/logo.png") center/cover no-repeat;
  filter: blur(8px);   /* Blur only this layer */
  z-index: -1;         /* Put it behind the content */
}


#services h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

#services p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* allows them to wrap on smaller screens */
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px; /* ← makes them grow/shrink nicely */
  max-width: 300px;
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #333;
}

.card p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #666;
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 90%;
  }
}

.steps-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.steps-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.steps-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.step-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  width: 280px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color:  #00bfa6; /* turquoise color */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 15px auto;
}

.step-card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.step-card p {
  font-size: 0.95rem;
  color: #555;
}

.call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(120deg, #0b1220 0%, #111d33 45%, #0f2f3a 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 24px;
  text-decoration: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.4);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  z-index: 1000;
}

.call-button:hover {
  border-color: rgba(29, 196, 233, 0.75);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.5);
  transform: scale(1.1);
}

    .about-highlight {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: #fff;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 30px;
  align-items: center;
}

.about-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #00bfa6; /* primary turquoise */
  background-image: linear-gradient(#0b839c, #0b839c);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left top;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: background-size 0.35s ease;
}

.about-text .btn:hover {
  background-size: 100% 100%;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-content img {
    max-width: 90%;
  }
}




    .service-cards {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 20px;
    }
    .service-card {
      position: relative;
      width: 280px;
      height: 320px;
      overflow: hidden;
      border-radius: 16px;
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 16px 35px rgba(15, 23, 42, 0.25);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .service-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(2, 6, 23, 0.9) 5%, rgba(2, 6, 23, 0.15) 55%, rgba(2, 6, 23, 0) 100%);
      z-index: 1;
    }
    .service-card span {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      color: #fff;
      padding: 16px;
      text-align: left;
      font-weight: 700;
      font-size: 1rem;
      line-height: 1.4;
      z-index: 2;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 45px rgba(15, 23, 42, 0.35);
    }
    .service-card:hover img {
      transform: scale(1.08);
    }

    .contact-modal-form {
      max-width: 500px;
      margin: 0 auto;
      text-align: left;
    }
    .contact-modal-form input,
    .contact-modal-form textarea {
      width: 100%;
      margin: 10px 0;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
    }
    .contact-modal-form button {
      background: #1dc4e9;
      background-image: linear-gradient(#0b839c, #0b839c);
      background-repeat: no-repeat;
      background-size: 0% 100%;
      background-position: left top;
      color: #fff;
      border: none;
      padding: 12px;
      width: 100%;
      border-radius: 6px;
      cursor: pointer;
      transition: background-size 0.35s ease;
    }
    .contact-modal-form button:hover {
      background-size: 100% 100%;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0; top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
    }
    .modal-content {
      background: white;
      padding: 30px;
      border-radius: 10px;
      max-width: 400px;
      text-align: center;
      position: relative;
    }
    .close {
      position: absolute;
      top: 10px;
      right: 12px;
      width: 32px;
      height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      line-height: 1;
      color: #0f172a;
      background: rgba(15, 23, 42, 0.08);
      border-radius: 999px;
      cursor: pointer;
    }

    @media (max-width: 600px) {
      h1 { font-size: 1.7rem; }
      p { font-size: 0.95rem; }
      .service-card {
        width: min(92vw, 320px);
        height: 250px;
      }
    }

    /* === Footer (Policy & Privacy) === */
footer.site-footer {
  position: relative;
  background: linear-gradient(120deg, #0b1220 0%, #111d33 45%, #0f2f3a 100%);
  color: #e5e7eb;
  padding: 32px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(229, 231, 235, 0.82);
}

a.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #eef9ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

a.footer-link:hover,
a.footer-link:focus {
  background: rgba(29, 196, 233, 0.2);
  border-color: rgba(29, 196, 233, 0.75);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}

/* Optional modal styling if not already in your CSS */
#privacy-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 10%, rgba(29, 196, 233, 0.14), rgba(2, 6, 23, 0.85));
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#privacy-modal .privacy-modal-content {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.45);
  padding: 26px;
  border-radius: 20px;
  max-width: 860px;
  width: 100%;
  max-height: min(86vh, 760px);
  overflow-y: auto;
  position: relative;
}

#privacy-modal .privacy-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  border-radius: 999px;
  color: #0f172a;
  background: rgba(15, 23, 42, 0.08);
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

#privacy-modal .privacy-close:hover {
  background: rgba(29, 196, 233, 0.25);
  transform: scale(1.03);
}

#privacy-modal .privacy-header {
  margin-bottom: 16px;
  padding-right: 40px;
}

#privacy-modal .privacy-header h2 {
  margin: 0 0 8px;
  font-size: 1.9rem;
  color: #0f172a;
}

#privacy-modal .privacy-header p {
  margin: 0;
  color: #334155;
  max-width: 680px;
}

#privacy-modal .privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

#privacy-modal .privacy-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  padding: 14px;
  text-align: left;
}

#privacy-modal .privacy-item h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0b839c;
}

#privacy-modal .privacy-item p {
  margin: 0;
  font-size: 1rem;
  color: #0f172a;
  line-height: 1.5;
}

#privacy-modal .privacy-item a {
  color: #0b839c;
  font-weight: 700;
  text-decoration: none;
}

#privacy-modal .privacy-item a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  #privacy-modal .privacy-modal-content {
    padding: 20px;
    border-radius: 16px;
  }

  #privacy-modal .privacy-header h2 {
    font-size: 1.45rem;
  }

  #privacy-modal .privacy-grid {
    grid-template-columns: 1fr;
  }
}

