
    :root {
      --primary: #4daaa7;
      --primary-dark: #357c7a;
      --primary-light: #7fd1ce;
      --accent: #4daaa7;
      --primary-gradient: linear-gradient(120deg, #4daaa7 0%, #7fd1ce 100%);
      --glass-bg: rgba(255,255,255,0.18);
      --glass-border: rgba(77,170,167,0.18);
    }
    body {
      font-family: 'Roboto Mono', monospace;
      background: #f8fafc;
      color: #23242a;
      padding-top: 80px;
      scroll-behavior: smooth;
    }

    .submit-btn {
      background: #4daaa7;
      color: #fff;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      padding: 0.7rem 2.2rem;
      font-size: 1.1rem;
      box-shadow: 0 2px 8px rgba(77,170,167,0.10);
      transition: background 0.2s, color 0.2s;
    }
    .submit-btn:hover {
      background: #357c7a;
      color: #fff;
    }

    /* NAVBAR */
    .navbar {
      background: rgba(255,255,255,0.85) !important;
      transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
      box-shadow: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
    .navbar-brand {
      color: var(--primary) !important;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      letter-spacing: 2px;
      font-size: 1.5rem;
    }
    .navbar-nav .nav-link {
      color: #23242a !important;
      font-weight: 500;
      margin-right: 1.2rem;
      position: relative;
      transition: color 0.2s;
      padding-bottom: 4px;
    }
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
      color: var(--primary) !important;
    }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%) scaleX(0);
      width: 24px;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
      transition: transform 0.25s cubic-bezier(.4,2,.3,1);
      opacity: 1;
      pointer-events: none;
    }
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
      color: var(--primary) !important;
    }
    .navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
    .navbar .btn {
      background: #fff;
      color: var(--primary);
      border: 2px solid var(--primary);
      border-radius: 30px;
      font-weight: 600;
      padding: 0.5rem 1.5rem;
      margin-left: 1rem;
      transition: background 0.2s, color 0.2s, border 0.2s;
      box-shadow: 0 2px 8px rgba(77,170,167,0.10);
    }
    .navbar .btn:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
    .navbar.glass {
  background: rgba(255,255,255,0.55) !important;
  box-shadow: 0 4px 24px rgba(77,170,167,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid #e6f7f6;
}

    /* HERO */
    .hero-section {
      background: var(--primary-gradient);
      color: #fff;
      position: relative;
      overflow: hidden;
      padding: 0;
    }
    .hero-dot-bg {
      position: absolute;
      right: 0;
      top: 0;
      width: 60%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
      background: url('data:image/svg+xml;utf8,<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="%23fff"/><circle cx="40" cy="10" r="2" fill="%23fff"/><circle cx="70" cy="10" r="2" fill="%23fff"/><circle cx="100" cy="10" r="2" fill="%23fff"/><circle cx="10" cy="40" r="2" fill="%23fff"/><circle cx="40" cy="40" r="2" fill="%23fff"/><circle cx="70" cy="40" r="2" fill="%23fff"/><circle cx="100" cy="40" r="2" fill="%23fff"/><circle cx="10" cy="70" r="2" fill="%23fff"/><circle cx="40" cy="70" r="2" fill="%23fff"/><circle cx="70" cy="70" r="2" fill="%23fff"/><circle cx="100" cy="70" r="2" fill="%23fff"/><circle cx="10" cy="100" r="2" fill="%23fff"/><circle cx="40" cy="100" r="2" fill="%23fff"/><circle cx="70" cy="100" r="2" fill="%23fff"/><circle cx="100" cy="100" r="2" fill="%23fff"/></svg>');
      background-repeat: repeat;
      opacity: 0.18;
      animation: moveDots 12s linear infinite alternate;
    }
    @keyframes moveDots {
      0% { background-position: 0 0; }
      100% { background-position: 60px 60px; }
    }
    .hero-section .container {
      position: relative;
      z-index: 3;
      display: flex;
      align-items: center;
      min-height: 600px;
      padding-top: 60px;
      padding-bottom: 60px;
      flex-wrap: wrap;
    }
    .hero-content {
      flex: 1 1 0;
      min-width: 320px;
      z-index: 3;
    }
    .hero-section h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 2.7rem;
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 1.2rem;
      letter-spacing: 0.5px;
      color: #fff;
      /* background: linear-gradient(90deg, #fff 60%, #4daaa7 100%); */
      text-shadow: 0 4px 24px rgba(77,170,167,0.10);
    }
    .hero-section p {
      font-size: 1.1rem;
      color: #e0e0e0;
      margin-bottom: 2rem;
      font-family: 'Poppins', sans-serif;
    }
    .hero-section .btn.hero-btn {
      background: #fff;
      color: var(--primary);
      border: 2px solid var(--primary);
      border-radius: 30px;
      font-weight: 600;
      padding: 0.7rem 2.2rem;
      font-size: 1.1rem;
      box-shadow: 0 2px 8px rgba(77,170,167,0.10);
      /* transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s; */
    }
    .hero-section .btn.hero-btn:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
      box-shadow: 0 4px 16px rgba(77,170,167,0.18);
    }
    .hero-illustration {
      max-width: 480px;
      width: 100%;
      margin: 0 auto;
      display: block;
      filter: drop-shadow(0 8px 32px rgba(77,170,167,0.18));
    }
    .typewriter-words {
  border-right: 2.5px solid #fff;
  padding-right: 4px;
  font-weight: 700;
  /* background: linear-gradient(90deg, #fff 60%, #4daaa7 100%); */
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  transition: color 0.2s;
  min-width: 120px;
  display: inline-block;
  white-space: nowrap;
  font-size: inherit;
  animation: blink-caret 0.8s step-end infinite;
}
.highlight-future {
  border-bottom: 4px solid #e6f7f6;
  font-weight: 700;
  padding-bottom: 2px;
  display: inline-block;
}
@keyframes blink-caret {
  0%, 100% { border-color: #fff; }
  50% { border-color: transparent; }
}
    @media (max-width: 991px) {
      .hero-section .container {
        flex-direction: column;
        text-align: center;
        min-height: 0;
      }
      .hero-content {
        margin-bottom: 2rem;
      }
    }
    @media (max-width: 600px) {
      .hero-section h1 {
        font-size: 2rem;
      }
    }

    /* SERVICES */
    .services-section {
      background: #fafdff;
      padding: 60px 0 60px 0;
      position: relative;
      z-index: 1;
    }
    .services-section a {
        text-decoration: none;
        /* color: inherit; */
    }
    .services-bg-shape {
      position: absolute;
      top: -80px;
      left: -80px;
      width: 300px;
      height: 300px;
      background: var(--primary-light);
      opacity: 0.15;
      border-radius: 50%;
      z-index: 0;
    }
    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 2.5rem;
      color: var(--primary);
      text-align: center;
      letter-spacing: 1px;
    }
    .service-card {
      border: none;
      border-radius: 18px;
      background: var(--glass-bg);
      box-shadow: 0 8px 32px 0 rgba(77,170,167,0.13);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1.5px solid var(--glass-border);
      font-family: 'Roboto Mono', monospace;
      position: relative;
      overflow: hidden;
      padding: 2.2rem 1.5rem 1.5rem 1.5rem;
      transition: transform 0.25s cubic-bezier(.4,2,.3,1), box-shadow 0.25s, border 0.25s;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .service-card:hover {
      transform: translateY(-6px) scale(1.025);
      /* box-shadow: 0 16px 48px 0 rgba(77,170,167,0.18); */
      border: 1.5px solid var(--accent);
      background: rgba(255,255,255,0.22);
    }
    .service-icon-circle {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--primary-gradient);
      color: #fff;
      border-radius: 50%;
      font-size: 2rem;
      margin-bottom: 1rem;
      box-shadow: 0 2px 8px rgba(77,170,167,0.15);
      animation: floatY 3s ease-in-out infinite alternate;
    }
    .service-card .card-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 0.5rem;
      font-family: 'Poppins', sans-serif;
    }
    .service-card .card-text {
      font-size: 1rem;
      color: #333;
      margin-bottom: 0;
      flex: 1;
    }
    .service-card .service-list {
      margin: 0.7rem 0 0 0;
      padding: 0;
      list-style: none;
    }
    .service-card .service-list li {
      margin-bottom: 0.3rem;
      padding-left: 1.2rem;
      position: relative;
      color: #357c7a;
      font-size: 0.98rem;
    }
    .service-card .service-list li:before {
      content: "•";
      color: var(--primary);
      position: absolute;
      left: 0;
      font-size: 1.2rem;
      top: 0;
    }

    /* WORKFLOW (Horizontal Timeline) */
    .workflow-section {
      background: linear-gradient(120deg, #e6f7f6 0%, #4daaa7 100%);
      padding: 0;
      position: relative;
      overflow: hidden;
    }
    .workflow-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 60px 0 0 0;
      position: relative;
      z-index: 1;
    }
    .workflow-banner-img {
      max-width: 340px;
      width: 100%;
      margin: 0 auto;
      display: block;
      filter: drop-shadow(0 8px 32px rgba(77,170,167,0.18));
      animation: floatY 4s ease-in-out infinite alternate;
    }
    .workflow-banner-content {
      max-width: 600px;
      margin-left: auto;
      margin-right: 0;
      z-index: 2;
      position: relative;
      text-align: left;
    }
    .workflow-title {
      font-family: 'Poppins', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--primary-dark);
      text-align: left;
      margin-bottom: 1.2rem;
      letter-spacing: 1px;
    }
    .workflow-desc {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 1.2rem;
    }
    .workflow-timeline {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 0.5rem;
      margin: 0 auto;
      margin-top: -40px;
      padding: 40px 10px 20px 10px;
      max-width: 1100px;
      position: relative;
      z-index: 2;
      overflow-x: auto;
    }
    .workflow-timeline-step {
      flex: 1 1 0;
      min-width: 180px;
      max-width: 220px;
      background: rgba(255,255,255,0.18);
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(77,170,167,0.07);
      padding: 1.5rem 1rem 1.2rem 1rem;
      text-align: center;
      position: relative;
      backdrop-filter: blur(12px);
      border: 1.5px solid rgba(77,170,167,0.18);
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeInUp 1s;
    }
    .workflow-timeline-step:hover {
      transform: scale(1.045) translateY(-8px);
      border: 1.5px solid var(--primary);
      background: rgba(255,255,255,0.28);
    }
    .workflow-timeline-icon {
      width: 48px;
      height: 48px;
      background: var(--primary-gradient);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin: 0 auto 0.7rem auto;
      box-shadow: 0 2px 8px rgba(77,170,167,0.15);
    }
    .workflow-timeline-number {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 0.2rem;
      font-family: 'Poppins', sans-serif;
    }
    .workflow-timeline-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 0.3rem;
      font-family: 'Poppins', sans-serif;
    }
    .workflow-timeline-desc {
      font-size: 0.98rem;
      color: #333;
    }
    .workflow-timeline-connector {
      position: absolute;
      top: 50%;
      right: -30px;
      width: 60px;
      height: 4px;
      background: var(--primary-gradient);
      z-index: 1;
      border-radius: 2px;
      opacity: 0.5;
      transform: translateY(-50%);
      pointer-events: none;
    }
    .workflow-timeline-step:last-child .workflow-timeline-connector {
      display: none;
    }
    @media (max-width: 991px) {
      .workflow-banner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
      }
      .workflow-banner-content {
        margin: 0 auto;
        max-width: 100%;
        text-align: center;
      }
      .workflow-timeline {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem 0;
        padding: 30px 0 10px 0;
      }
      .workflow-timeline-step {
        max-width: 100%;
        margin: 0 auto;
      }
      .workflow-timeline-connector {
        display: none;
      }
    }

    /* CLIENTS */
    .client-logos-strip-section {
  position: relative;
  background: linear-gradient(120deg, #e6f7f6 0%, #b2e2e0 100%);
  padding: 60px 0;
  overflow: hidden;
}
.client-bg-shape1,
.client-bg-shape2 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}
.client-bg-shape1 {
  top: -60px;
  left: -80px;
  width: 220px;
  height: 220px;
}
.client-bg-shape2 {
  bottom: -80px;
  right: -60px;
  width: 320px;
  height: 120px;
}
.client-logos-strip-wrap {
  width: 100vw;
  overflow: hidden;
  position: relative;
}
.client-logos-strip {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll-logos 18s linear infinite;
  will-change: transform;
}
@keyframes scroll-logos {
  0% { transform: translateX(0);}
  100% { transform: translateX(-50%);}
}
.client-logo-strip {
  max-width: 120px;
  max-height: 60px;
  filter: grayscale(1) brightness(0.8);
  opacity: 0.8;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}
.client-logo-strip:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}

    /* ABOUT */
    .about-section {
      background: linear-gradient(120deg, #e6f7f6 0%, #f8fafc 100%);
      border-radius: 24px;
      box-shadow: 0 4px 24px rgba(77,170,167,0.07);
      padding: 60px 30px;
      margin-bottom: 40px;
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }
    .about-img {
      max-width: 320px;
      width: 100%;
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(77,170,167,0.13);
      margin: 0 auto;
      display: block;
    }
    .about-content {
      flex: 1 1 320px;
      min-width: 260px;
    }
    .about-content h2 {
      font-size: 2rem;
      color: var(--primary-dark);
      font-weight: 700;
      margin-bottom: 1rem;
      font-family: 'Poppins', sans-serif;
    }
    .about-content p {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 1.2rem;
    }
    .about-highlights {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }
    .about-highlight {
      background: var(--primary-gradient);
      color: #fff;
      border-radius: 12px;
      padding: 0.7rem 1.2rem;
      font-size: 1rem;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(77,170,167,0.13);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .about-highlight i {
      font-size: 1.2rem;
    }
    @media (max-width: 991px) {
      .about-section {
        flex-direction: column;
        text-align: center;
        gap: 24px;
      }
      .about-img {
        margin-bottom: 1.5rem;
      }
    }
    @media (max-width: 600px) {
      .about-section {
        padding: 30px 10px;
      }
    }

    /* CONTACT */
    .contact-section {
      background: #fafdff;
      padding: 60px 0;
    }
    .contact-card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(77,170,167,0.07);
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
    }
    .contact-info {
      background: var(--primary-gradient);
      color: #fff;
      flex: 1 1 220px;
      min-width: 220px;
      padding: 2rem 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .contact-info h5 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      font-family: 'Roboto Mono', monospace;
    }
    .contact-info p {
      font-size: 1rem;
      margin-bottom: 0.7rem;
      font-family: 'Roboto Mono', monospace;
    }
    .contact-info .bi {
      margin-right: 0.5rem;
      font-size: 1.1rem;
    }
    .contact-form-wrap {
      flex: 2 1 320px;
      padding: 2rem 2rem;
      background: #fff;
    }
    .contact-form-wrap .form-label {
      font-size: 1rem;
      font-family: 'Roboto Mono', monospace;
    }
    .contact-form-wrap .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.2rem rgba(77,170,167,0.15);
    }
    @media (max-width: 991px) {
      .contact-card {
        flex-direction: column;
      }
      .contact-info, .contact-form-wrap {
        padding: 2rem 1rem;
      }
    }
    @media (max-width: 600px) {
      .contact-form-wrap, .contact-info {
        padding: 1.2rem 0.5rem;
      }
    }

    /* FOOTER */
    .footer {
  background: #fff;
  color: #23242a;
  font-family: 'Roboto Mono', monospace;
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  margin-top: 60px;
  border-top: 1.5px solid #e6f7f6;
}
.footer-logo-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(77,170,167,0.10);
  display: inline-block;
  padding: 0.7rem 1.5rem;
}
.footer-logo-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #4daaa7;
  font-family: 'Poppins', sans-serif;
}
.footer-tagline {
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
  color: #357c7a;
  opacity: 0.85;
  font-family: 'Poppins', sans-serif;
}
.footer-menu-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #23242a;
  margin-bottom: 1.1rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  border-left: 3px solid #4daaa7;
  padding-left: 0.5rem;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li {
  margin-bottom: 0.7rem;
  position: relative;
}
.footer-menu a {
  color: #357c7a;
  text-decoration: none;
  font-size: 1rem;
  padding-left: 0.2rem;
  display: inline-block;
  position: relative;
  transition: color 0.2s;
}
.footer-menu a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 6px;
  height: 6px;
  background: #4daaa7;
  border-radius: 50%;
  transition: transform 0.2s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #4daaa7;
  text-decoration: none;
}
.footer-menu a:hover::before,
.footer-menu a:focus::before {
  transform: translateY(-50%) scaleX(1);
}
.footer-social {
  margin-bottom: 1.2rem;
}
.footer-social-link {
  color: #4daaa7;
  font-size: 1.4rem;
  margin-right: 0.5rem;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s, transform 0.2s;
  display: inline-block;
}
.footer-social-link:hover {
  color: #ff8c3a;
  opacity: 1;
  transform: scale(1.15);
}
.footer-hr {
  border-top: 1.5px solid #b2e2e0;
  opacity: 0.3;
}
.footer-logo-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(77,170,167,0.10);
  display: inline-block;
  padding: 0.7rem 1.5rem;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.copyright-text {
  color: #357c7a;
  font-size: 1rem;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .footer .row > div {
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .footer-logo-text {
    font-size: 1.4rem;
  }
  .footer-menu-title {
    font-size: 1rem;
  }
}

    /* FLOATING BUTTONS */
    .floating-btns {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .floating-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      box-shadow: 0 4px 16px rgba(77,170,167,0.18);
      transition: background 0.2s, transform 0.2s;
      cursor: pointer;
      position: relative;
    }
    .floating-btn:hover {
      background: #128C7E;
      transform: scale(1.08) translateY(-2px);
    }
    .floating-btn .tooltip-float {
      visibility: hidden;
      opacity: 0;
      position: absolute;
      right: 110%;
      top: 50%;
      transform: translateY(-50%);
      background: #222;
      color: #fff;
      padding: 4px 12px;
      border-radius: 6px;
      font-size: 0.95rem;
      white-space: nowrap;
      transition: opacity 0.2s;
      pointer-events: none;
      font-family: 'Roboto Mono', monospace;
    }
    .floating-btn:hover .tooltip-float {
      visibility: visible;
      opacity: 1;
    }

    /* SCROLL TO TOP BUTTON */
    #scrollTopBtn {
      display: none;
      position: fixed;
      bottom: 100px;
      right: 32px;
      z-index: 999;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--primary-gradient);
      color: #fff;
      border: none;
      font-size: 1.7rem;
      box-shadow: 0 4px 16px rgba(77,170,167,0.18);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      outline: none;
    }
    #scrollTopBtn:hover {
      background: linear-gradient(90deg, #357c7a 0%, #4daaa7 100%);
      transform: scale(1.08) translateY(-2px);
    }
    @media (max-width: 600px) {
      .floating-btns {
        right: 12px;
        bottom: 12px;
      }
      #scrollTopBtn {
        right: 12px;
        bottom: 80px;
      }
    }
    /* Floating animation for icons and SVGs */
  .floating {
    animation: floatY 3.5s ease-in-out infinite alternate;
  }
  @keyframes floatY {
    0% { transform: translateY(0);}
    100% { transform: translateY(-14px);}
  }


  /**Career page **/
  .careers-banner-section {
  background: linear-gradient(120deg, #fafdff 0%, #e6f7f6 100%);
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
}
.careers-banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #23242a;
  letter-spacing: 1px;
  line-height: 1.15;
}
.careers-banner-accent {
  color: #4daaa7;
  background: linear-gradient(90deg, #4daaa7 0%, #7fd1ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.careers-banner-desc {
  font-size: 1.15rem;
  color: #357c7a;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.careers-banner-btn {
  background: #4daaa7;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  padding: 0.7rem 2.2rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 2px 8px rgba(77,170,167,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.careers-banner-btn:hover {
  background: #357c7a;
  color: #fff;
  transform: scale(1.04);
}
.careers-banner-art {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  display: block;
  z-index: 1;
}
@media (max-width: 991px) {
  .careers-banner-section {
    padding: 60px 0 20px 0;
  }
  .careers-banner-title {
    font-size: 2rem;
  }
  .careers-banner-art {
    max-width: 220px;
  }
}
    .careers-section-title {
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .job-card {
      border: none;
      border-radius: 18px;
      background: rgba(255,255,255,0.85);
      box-shadow: 0 4px 24px rgba(77,170,167,0.07);
      padding: 2rem 1.5rem 1.5rem 1.5rem;
      transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
      min-height: 260px;
      position: relative;
    }
    .job-card:hover {
      transform: translateY(-4px) scale(1.015);
      box-shadow: 0 8px 32px 0 rgba(77,170,167,0.13);
      border: 1.5px solid var(--primary);
    }
    .job-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 0.5rem;
      font-family: 'Poppins', sans-serif;
    }
    .job-meta {
      font-size: 0.98rem;
      color: #7fd1ce;
      margin-bottom: 0.7rem;
    }
    .job-desc {
      font-size: 1rem;
      color: #23242a;
      margin-bottom: 1rem;
    }
    .apply-btn {
      background: #fff;
      color: var(--primary);
      border: 2px solid var(--primary);
      border-radius: 30px;
      font-weight: 600;
      padding: 0.5rem 1.5rem;
      font-size: 1rem;
      transition: background 0.2s, color 0.2s, border 0.2s;
      box-shadow: 0 2px 8px rgba(77,170,167,0.10);
    }
    .apply-btn:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
    .careers-form-section {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(77,170,167,0.07);
      padding: 2.5rem 2rem;
      max-width: 600px;
      margin: 40px auto 0 auto;
    }
    .careers-form-section h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 1.2rem;
      text-align: center;
    }
    .form-label {
      font-size: 1rem;
      font-family: 'Roboto Mono', monospace;
    }
    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.2rem rgba(77,170,167,0.10);
    }
    @media (max-width: 600px) {
      .careers-hero h1 {
        font-size: 2rem;
      }
      .careers-section-title {
        font-size: 1.3rem;
      }
      .careers-form-section {
        padding: 1.2rem 0.5rem;
      }
    }

    /** Contact Page **/
    .contact-banner-section {
  background: linear-gradient(120deg, #fafdff 0%, #e6f7f6 100%);
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
}
.contact-banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #23242a;
  letter-spacing: 1px;
  line-height: 1.15;
}
.contact-banner-accent {
  color: #4daaa7;
  background: linear-gradient(90deg, #4daaa7 0%, #7fd1ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.contact-banner-desc {
  font-size: 1.15rem;
  color: #357c7a;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.contact-banner-btn {
  background: #4daaa7;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  padding: 0.7rem 2.2rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 2px 8px rgba(77,170,167,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.contact-banner-btn:hover {
  background: #357c7a;
  color: #fff;
  transform: scale(1.04);
}
.contact-banner-art {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  display: block;
  z-index: 1;
}
@media (max-width: 991px) {
  .contact-banner-section {
    padding: 60px 0 20px 0;
  }
  .contact-banner-title {
    font-size: 2rem;
  }
  .contact-banner-art {
    max-width: 220px;
  }
}
    /* Form and Contact Cards */
    .contact-main-section {
      background: #fafdff;
      padding: 60px 0 60px 0;
      position: relative;
      overflow: hidden;
    }
    .contact-cards-row {
      display: flex;
      gap: 2.5rem;
      justify-content: center;
      align-items: stretch;
      flex-wrap: wrap;
    }
    .contact-form-card, .contact-info-card-modern {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(77,170,167,0.07);
      padding: 2.5rem 2rem;
      min-width: 320px;
      max-width: 420px;
      flex: 1 1 340px;
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .contact-form-card {
      border-left: 6px solid var(--primary);
    }
    .contact-form-card h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 1.2rem;
      text-align: left;
      letter-spacing: 1px;
    }
    .form-label {
      font-size: 1rem;
      font-family: 'Roboto Mono', monospace;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.2rem rgba(77,170,167,0.10);
    }
    .contact-btn {
      background: #4daaa7;
      color: #fff;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      padding: 0.7rem 2.2rem;
      font-size: 1.1rem;
      box-shadow: 0 2px 8px rgba(77,170,167,0.10);
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .contact-btn:hover {
      background: #357c7a;
      color: #fff;
      transform: scale(1.04);
    }
    .contact-info-card-modern {
      background: linear-gradient(120deg, #fafdff 60%, #e6f7f6 100%);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(77, 170, 167, 0.10);
    padding: 2.5rem 2rem;
    min-width: 320px;
    max-width: 420px;
    flex: 1 1 340px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    border-left: 6px solid #4daaa7;
    backdrop-filter: blur(2px);
    }
    .contact-info-card-modern h5 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 1.2rem;
      text-align: center;
    }
    .contact-method-list {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .contact-method {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .contact-icon-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 2px 8px rgba(77,170,167,0.10);
      flex-shrink: 0;
    }
    .contact-method-label {
      font-size: 1rem;
      font-weight: 600;
      color: var(--primary-dark);
      font-family: 'Poppins', sans-serif;
    }
    .contact-method-link {
      color: #357c7a;
      font-size: 1rem;
      text-decoration: none;
      transition: color 0.2s;
      display: block;
      word-break: break-all;
    }
    .contact-method-link:hover {
      color: var(--accent);
      text-decoration: underline;
    }
    .contact-cta-box {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(77,170,167,0.07);
      padding: 0.7em 1em;
      font-size: 1.05rem;
      color: #357c7a;
      display: flex;
      align-items: center;
      gap: 0.7em;
      margin-top: 1.2rem;
      margin-bottom: 0.7rem;
      font-family: 'Poppins', sans-serif;
    }
    .contact-cta-box i {
      color: var(--primary);
      font-size: 1.2rem;
    }
    @media (max-width: 991px) {
      .contact-cards-row {
        flex-direction: column;
        gap: 0;
      }
      .contact-form-card, .contact-info-card-modern {
        max-width: 100%;
        margin-bottom: 2rem;
      }
    }
    @media (max-width: 600px) {
      .contact-form-card, .contact-info-card-modern {
        padding: 1.2rem 0.5rem;
        border-left: 0;
      }
      .contact-banner-title {
        font-size: 1.3rem;
      }
    }

    /** About Page **/
    .about-hero {
      background: linear-gradient(120deg, #4daaa7 0%, #7fd1ce 100%);
      color: #fff;
      padding: 80px 0 60px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .about-hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 2.7rem;
      font-weight: 700;
      margin-bottom: 1rem;
      background: linear-gradient(90deg, #fff 60%, #4daaa7 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
    }
    .about-hero p {
      font-size: 1.2rem;
      color: #e6f7f6;
      max-width: 600px;
      margin: 0 auto 2rem auto;
    }
    .about-section {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(77,170,167,0.07);
      padding: 2.5rem 2rem;
      margin-bottom: 2rem;
    }
    .about-section-title {
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 1.2rem;
      text-align: center;
    }
    .about-values {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
      margin-top: 2rem;
      margin-bottom: 2rem;
    }
    .about-value-card {
      background: linear-gradient(120deg, #e6f7f6 0%, #fff 100%);
      border-radius: 14px;
      box-shadow: 0 2px 12px rgba(77,170,167,0.07);
      padding: 1.5rem 1.2rem;
      min-width: 180px;
      max-width: 240px;
      text-align: center;
      flex: 1 1 180px;
    }
    .about-value-card i {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }
    .about-value-title {
      font-weight: 700;
      color: var(--primary-dark);
      font-family: 'Poppins', sans-serif;
      margin-bottom: 0.3rem;
    }
    .about-value-desc {
      font-size: 0.98rem;
      color: #357c7a;
    }
    .about-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin: 2.5rem 0 2rem 0;
    }
    .about-stat {
      background: #fafdff;
      border-radius: 14px;
      box-shadow: 0 2px 12px rgba(77,170,167,0.07);
      padding: 1.2rem 1.5rem;
      min-width: 140px;
      text-align: center;
      flex: 1 1 140px;
    }
    .about-stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
      font-family: 'Poppins', sans-serif;
    }
    .about-stat-label {
      font-size: 1rem;
      color: #357c7a;
      margin-top: 0.2rem;
    }
    .about-team-section {
      background: #fafdff;
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(77,170,167,0.07);
      padding: 2.5rem 2rem;
      margin-bottom: 2rem;
    }
    .about-team-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 1.2rem;
      text-align: center;
    }
    .about-team-list {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }
    .about-team-member {
      text-align: center;
      flex: 1 1 160px;
      min-width: 160px;
      max-width: 200px;
    }
    .about-team-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 0.7rem;
      border: 3px solid var(--primary);
      box-shadow: 0 2px 8px rgba(77,170,167,0.10);
    }
    .about-team-name {
      font-weight: 700;
      color: var(--primary-dark);
      font-family: 'Poppins', sans-serif;
      margin-bottom: 0.1rem;
    }
    .about-team-role {
      font-size: 0.98rem;
      color: #357c7a;
      margin-bottom: 0.2rem;
    }
    .about-team-social a {
      color: var(--primary);
      font-size: 1.2rem;
      margin: 0 0.2rem;
      opacity: 0.85;
      transition: color 0.2s, opacity 0.2s;
      display: inline-block;
    }
    .about-team-social a:hover {
      color: #ff8c3a;
      opacity: 1;
    }
    @media (max-width: 600px) {
      .about-hero h1 {
        font-size: 2rem;
      }
      .about-section-title {
        font-size: 1.3rem;
      }
      .about-section, .about-team-section {
        padding: 1.2rem 0.5rem;
      }
    }
    .about-banner-section {
  background: linear-gradient(120deg, #fafdff 0%, #e6f7f6 100%);
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
}
.about-banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #23242a;
  letter-spacing: 1px;
  line-height: 1.15;
}
.about-banner-accent {
  color: #4daaa7;
  background: linear-gradient(90deg, #4daaa7 0%, #7fd1ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.about-banner-desc {
  font-size: 1.15rem;
  color: #357c7a;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.about-banner-btn {
  background: #4daaa7;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  padding: 0.7rem 2.2rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 2px 8px rgba(77,170,167,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.about-banner-btn:hover {
  background: #357c7a;
  color: #fff;
  transform: scale(1.04);
}
.about-banner-art {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  display: block;
  z-index: 1;
}
@media (max-width: 991px) {
  .about-banner-section {
    padding: 60px 0 20px 0;
  }
  .about-banner-title {
    font-size: 2rem;
  }
  .about-banner-art {
    max-width: 220px;
  }
}
.about-story-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(77,170,167,0.07);
  margin-bottom: 2rem;
}
.about-story-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
}
.about-story-accent {
  color: #4daaa7;
  background: linear-gradient(90deg, #4daaa7 0%, #7fd1ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.about-story-lead {
  font-size: 1.08rem;
  color: #357c7a;
  margin-bottom: 1.2rem;
}
.about-story-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
}
.about-story-highlights li {
  font-size: 1rem;
  color: #23242a;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.about-story-highlights i {
  color: #4daaa7;
  font-size: 1.1rem;
}
.about-story-quote {
  font-size: 1.08rem;
  color: #357c7a;
  font-style: italic;
  background: #fafdff;
  border-left: 4px solid #4daaa7;
  padding: 0.7em 1em;
  border-radius: 8px;
  /* max-width: 420px; */
}
.about-story-card {
  background: #fafdff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(77,170,167,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
  max-width: 320px;
}
.about-story-stats {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  margin-top: 1.2rem;
}
.about-story-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4daaa7;
  font-family: 'Poppins', sans-serif;
  display: block;
}
.about-story-stat-label {
  font-size: 0.98rem;
  color: #357c7a;
  display: block;
}
@media (max-width: 991px) {
  .about-story-section {
    padding: 1.2rem 0.5rem;
  }
  .about-story-card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  .about-story-title {
    font-size: 1.3rem;
  }
  .about-story-card {
    padding: 1.2rem 0.5rem;
    min-width: 0;
    max-width: 100%;
  }
  .about-story-stats {
    gap: 1.2rem;
  }
}

    /** Quote Section **/
    .quote-banner-section {
  background: linear-gradient(120deg, #fafdff 0%, #e6f7f6 100%);
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
}
.quote-banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #23242a;
  letter-spacing: 1px;
  line-height: 1.15;
}
.quote-banner-accent {
  color: #4daaa7;
  background: linear-gradient(90deg, #4daaa7 0%, #7fd1ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.quote-banner-desc {
  font-size: 1.15rem;
  color: #357c7a;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.quote-banner-btn {
  background: #4daaa7;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  padding: 0.7rem 2.2rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 2px 8px rgba(77,170,167,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.quote-banner-btn:hover {
  background: #357c7a;
  color: #fff;
  transform: scale(1.04);
}
.quote-banner-art {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  display: block;
  z-index: 1;
}
@media (max-width: 991px) {
  .quote-banner-section {
    padding: 60px 0 20px 0;
  }
  .quote-banner-title {
    font-size: 2rem;
  }
  .quote-banner-art {
    max-width: 220px;
  }
}
   /* Form and Contact Cards */
    .quote-main-section {
      background: #fafdff;
      padding: 60px 0 60px 0;
      position: relative;
      overflow: hidden;
    }
    .quote-cards-row {
      display: flex;
      gap: 2.5rem;
      justify-content: center;
      align-items: stretch;
      flex-wrap: wrap;
    }
    .quote-form-card, .quote-contact-card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(77,170,167,0.07);
      padding: 2.5rem 2rem;
      min-width: 320px;
      max-width: 420px;
      flex: 1 1 340px;
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .quote-form-card {
      border-left: 6px solid var(--primary);
    }
    .quote-form-card h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 1.2rem;
      text-align: left;
      letter-spacing: 1px;
    }
    .form-label {
      font-size: 1rem;
      font-family: 'Roboto Mono', monospace;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.2rem rgba(77,170,167,0.10);
    }
    .quote-btn {
      background: #4daaa7;
      color: #fff;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      padding: 0.7rem 2.2rem;
      font-size: 1.1rem;
      box-shadow: 0 2px 8px rgba(77,170,167,0.10);
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .quote-btn:hover {
      background: #357c7a;
      color: #fff;
      transform: scale(1.04);
    }
    .quote-contact-card-modern {
  background: linear-gradient(120deg, #fafdff 60%, #e6f7f6 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(77,170,167,0.10);
  padding: 2.5rem 2rem;
  min-width: 320px;
  max-width: 420px;
  flex: 1 1 340px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 6px solid #4daaa7;
  backdrop-filter: blur(2px);
}
.contact-method-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(77,170,167,0.10);
  flex-shrink: 0;
}
.contact-method-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  font-family: 'Poppins', sans-serif;
}
.contact-method-link {
  color: #357c7a;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  word-break: break-all;
}
.contact-method-link:hover {
  color: var(--accent);
  text-decoration: underline;
}
.contact-cta-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(77,170,167,0.07);
  padding: 0.7em 1em;
  font-size: 1.05rem;
  color: #357c7a;
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-top: 1.2rem;
  margin-bottom: 0.7rem;
  font-family: 'Poppins', sans-serif;
}
.contact-cta-box i {
  color: var(--primary);
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  .quote-contact-card-modern {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  .quote-contact-card-modern {
    padding: 1.2rem 0.5rem;
    border-left: 0;
  }
}
    @media (max-width: 991px) {
      .quote-cards-row {
        flex-direction: column;
        gap: 0;
      }
      .quote-form-card, .quote-contact-card {
        max-width: 100%;
        margin-bottom: 2rem;
      }
    }
    @media (max-width: 600px) {
      .quote-form-card, .quote-contact-card {
        padding: 1.2rem 0.5rem;
        border-left: 0;
      }
      .quote-banner-title {
        font-size: 1.3rem;
      }
    }

    /** Services Page **/
    .services-hero {
      background: linear-gradient(120deg, #4daaa7 0%, #7fd1ce 100%);
      color: #fff;
      padding: 80px 0 60px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .services-hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 2.7rem;
      font-weight: 700;
      margin-bottom: 1rem;
      background: linear-gradient(90deg, #fff 60%, #4daaa7 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
    }
    .services-hero p {
      font-size: 1.2rem;
      color: #e6f7f6;
      max-width: 600px;
      margin: 0 auto 2rem auto;
    }
    .services-list-section {
      background: #fafdff;
      position: relative;
      padding: 80px 0 60px 0;
      overflow: hidden;
    }
    .services-bg-shape1 {
      position: absolute;
      top: -60px;
      left: -80px;
      width: 220px;
      height: 220px;
      opacity: 0.18;
      z-index: 0;
      pointer-events: none;
    }
    .services-bg-shape2 {
      position: absolute;
      bottom: -80px;
      right: -60px;
      width: 320px;
      height: 120px;
      opacity: 0.13;
      z-index: 0;
      pointer-events: none;
    }
    .services-list-title {
      font-family: 'Poppins', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 2.5rem;
      text-align: center;
      letter-spacing: 1px;
      z-index: 1;
      position: relative;
    }
    .service-list-card {
      border: none;
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 4px 24px rgba(77,170,167,0.07);
      padding: 2.2rem 1.5rem 1.5rem 1.5rem;
      transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
      min-height: 320px;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      overflow: hidden;
    }
    .service-list-card:hover {
      transform: translateY(-4px) scale(1.015);
      box-shadow: 0 8px 32px 0 rgba(77,170,167,0.13);
      border: 1.5px solid var(--primary);
    }
    .service-list-icon {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--primary-light);
      color: var(--primary);
      border-radius: 50%;
      font-size: 2rem;
      margin-bottom: 1rem;
      box-shadow: 0 2px 8px rgba(77,170,167,0.10);
      transition: background 0.2s, color 0.2s;
    }
    .service-list-card:hover .service-list-icon {
      background: var(--primary);
      color: #fff;
    }
    .service-list-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 0.5rem;
      font-family: 'Poppins', sans-serif;
    }
    .service-list-desc {
      font-size: 1rem;
      color: #23242a;
      margin-bottom: 1rem;
      flex: 1;
    }
    .service-list-link {
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 0.3em;
    }
    .service-list-link:hover {
      color: var(--accent);
      text-decoration: underline;
    }
    @media (max-width: 600px) {
      .services-hero h1 {
        font-size: 2rem;
      }
      .services-list-title {
        font-size: 1.3rem;
      }
      .service-list-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
      }
    }



    .services-banner-section {
  background: linear-gradient(120deg, #fafdff 0%, #e6f7f6 100%);
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
}
.services-banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #23242a;
  letter-spacing: 1px;
  line-height: 1.15;
}
.services-banner-accent {
  color: #4daaa7;
  background: linear-gradient(90deg, #4daaa7 0%, #7fd1ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.services-banner-desc {
  font-size: 1.15rem;
  color: #357c7a;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.services-banner-btn {
  background: #4daaa7;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  padding: 0.7rem 2.2rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 2px 8px rgba(77,170,167,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.services-banner-btn:hover {
  background: #357c7a;
  color: #fff;
  transform: scale(1.04);
}
.services-banner-art {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  display: block;
  z-index: 1;
}
@media (max-width: 991px) {
  .services-banner-section {
    padding: 60px 0 20px 0;
  }
  .services-banner-title {
    font-size: 2rem;
  }
  .services-banner-art {
    max-width: 220px;
  }
}

/** Service Detail Page **/
.service-detail-banner-modern {
  background: linear-gradient(120deg, #4daaa7 0%, #7fd1ce 100%);
  color: #fff;
  padding: 100px 0 120px 0;
  position: relative;
  overflow: hidden;
}
.service-banner-geo {
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
  height: 200px;
  z-index: 0;
  pointer-events: none;
}
.service-banner-dots {
  position: absolute;
  left: 40px;
  bottom: 40px;
  display: flex;
  gap: 18px;
  z-index: 1;
}
.service-banner-dots span {
  display: block;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.18;
  animation: bannerDotFloat 2.5s infinite alternate;
}
.service-banner-dots span:nth-child(2) { animation-delay: 0.5s; }
.service-banner-dots span:nth-child(3) { animation-delay: 1s; }
.service-banner-dots span:nth-child(4) { animation-delay: 1.5s; }
@keyframes bannerDotFloat {
  0% { transform: translateY(0);}
  100% { transform: translateY(-18px);}
}
.service-detail-banner-modern-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.15;
}
.service-detail-banner-modern-accent {
  background: linear-gradient(90deg, #fff 60%, #4daaa7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.service-detail-banner-modern-sub {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 0.2em;
}
.service-detail-banner-modern-desc {
  font-size: 1.15rem;
  color: #e6f7f6;
  margin-bottom: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.2rem;
}
@media (max-width: 991px) {
  .service-detail-banner-modern {
    padding: 60px 0 100px 0;
  }
  .service-detail-banner-modern-title {
    font-size: 2rem;
  }
  .service-banner-art {
    max-width: 220px;
  }
}
@media (max-width: 600px) {
  .service-detail-banner-modern {
    padding: 40px 0 80px 0;
  }
  .service-detail-banner-modern-title {
    font-size: 1.3rem;
  }
}

    /* Main Content */
    .service-main-section {
      background: #fafdff;
      padding: 60px 0 60px 0;
      position: relative;
      overflow: hidden;
    }
    .service-main-content {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(77,170,167,0.07);
      padding: 2.5rem 2rem;
      margin-bottom: 2rem;
    }
    .service-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.feature-card {
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(77,170,167,0.10);
  border: 1.5px solid #e6f7f6;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 270px;
  flex: 1 1 220px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 12px 32px 0 rgba(77,170,167,0.16);
  border: 1.5px solid #4daaa7;
}
.feature-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6f7f6 60%, #4daaa7 100%);
  color: #4daaa7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(77,170,167,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.feature-card:hover .feature-icon-circle {
  background: linear-gradient(135deg, #4daaa7 60%, #7fd1ce 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(77,170,167,0.18);
}
.feature-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.3rem;
}
.feature-desc {
  font-size: 0.98rem;
  color: #357c7a;
}
@media (max-width: 991px) {
  .service-features-grid {
    gap: 1.2rem;
  }
  .feature-card {
    min-width: 180px;
    max-width: 100%;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .service-features-grid {
    flex-direction: column;
    gap: 1.2rem;
  }
  .feature-card {
    margin: 0 auto;
  }
}
    .service-benefits-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 1rem;
    }
    .service-benefits-list {
      list-style: disc inside;
      color: #357c7a;
      margin-bottom: 2rem;
    }
    .service-main-cta {
      background: var(--primary-gradient);
      color: #fff;
      border-radius: 12px;
      padding: 1.2rem 1.5rem;
      font-size: 1.1rem;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      text-align: center;
      margin-top: 2rem;
      box-shadow: 0 2px 8px rgba(77,170,167,0.10);
    }
    .service-main-cta a {
      color: #fff;
      text-decoration: underline;
      font-weight: 700;
      margin-left: 0.5em;
    }

    /* Sidebar */
    .service-sidebar {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(77,170,167,0.07);
      padding: 2rem 1.5rem;
      margin-bottom: 2rem;
      min-width: 240px;
      max-width: 340px;
    }
    .service-sidebar-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 1.2rem;
      text-align: left;
    }
    .service-sidebar-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem 0;
    }
    .service-sidebar-list li {
      margin-bottom: 0.7rem;
    }
    .service-sidebar-list a {
      color: #357c7a;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 0.4em;
    }
    .service-sidebar-list a.active,
    .service-sidebar-list a:hover {
      color: var(--primary);
      font-weight: 600;
    }
    .service-sidebar-cta {
      background: var(--primary-light);
      border-radius: 10px;
      padding: 1rem 1.2rem;
      text-align: center;
      color: #357c7a;
      font-size: 1.05rem;
      font-family: 'Poppins', sans-serif;
      margin-top: 1.5rem;
    }
    .service-sidebar-cta a {
      color: var(--primary);
      font-weight: 700;
      text-decoration: underline;
      margin-left: 0.3em;
    }
    @media (max-width: 991px) {
      .service-main-content, .service-sidebar {
        max-width: 100%;
        margin-bottom: 2rem;
      }
    }
    @media (max-width: 600px) {
      .service-hero-title {
        font-size: 1.3rem;
      }
      .service-main-content, .service-sidebar {
        padding: 1.2rem 0.5rem;
      }
    }

