    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', Arial, sans-serif;
      line-height: 1.6;
      color: #1b2632;
      background-color: #ffffff;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    /* Layout components */
    .main-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
    }

    /* Hero section */
    .hero-section {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      background-image: url('/assets/6.jpeg');
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .hero-overlay {
      background-color: #122436b2;
      width: 100%;
      padding: 80px 16px;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      gap: 2px;
      justify-content: center;
      align-items: flex-start;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-title {
      font-size: 32px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 48px;
      color: #f9f9f9;
      margin-bottom: 16px;
    }

    .hero-subtitle {
      font-size: 16px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 24px;
      color: #fafafacc;
      margin-bottom: 18px;
    }

    /* Services section */
    .services-section {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      background-color: #ffffff;
      padding: 48px 16px;
    }

    .services-container {
      display: flex;
      flex-direction: column;
      gap: 64px;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-item {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      gap: 32px;
    }

    .service-content {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      width: 100%;
    }

    .service-icon {
      width: 56px;
      height: 56px;
      font-size: 24px !important;
      color: #0199cc;
      background-color: #01baef1a;
      border-radius: 8px;
      padding: 14px;
      margin-bottom: 12px;
    }

    .service-title {
      font-size: 20px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 30px;
      color: #1b2632;
      margin-bottom: 6px;
    }

    .service-description {
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 22px;
      color: #67737e;
      margin-bottom: 24px;
    }

    .service-features {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;
      margin-bottom: 28px;
    }

    .feature-item {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 12px;
    }

    .feature-icon {
        color: #01baef;
        flex-shrink: 0;
        font-size: 24px !important;
    }

    .feature-text {
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 21px;
      color: #1b2632;
    }

    .service-button {
      background-color: #01baef;
      color: #ffffff;
      border: none;
      border-radius: 22px;
      padding: 10px 24px;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 21px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .service-button:hover {
      background-color: #0199cc;
      transform: translateY(-2px);
    }

    .service-image {
      width: 100%;
      height: 220px;  
      object-fit:cover;
      border-radius: 8px;
      background-color: #40ff00;
    }

    /* Process section */
    .process-section {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      background-color: #f3f5f7;
      padding: 48px 16px;
    }

    .process-container {
      display: flex;
      flex-direction: column;
      gap: 48px;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .process-header {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
    }

    .process-title {
      font-size: 24px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 36px;
      color: #1b2632;
      margin-bottom: 8px;
    }

    .process-subtitle {
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 21px;
      color: #67737e;
    }

    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 32px;
      width: 100%;
    }

    .process-step {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
    }

    .step-number {
      width: 56px;
      height: 56px;
      background-color: #01baef;
      color: #ffffff;
      border-radius: 28px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 18px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 27px;
      margin-bottom: 16px;
    }

    .step-title {
      font-size: 16px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 24px;
      color: #1b2632;
      margin-bottom: 6px;
    }

    .step-description {
      font-size: 12px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 18px;
      color: #67737e;
    }

    /* Contact section */
    .contact-section {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      background-color: #ffffff;
      padding: 48px 16px;
    }

    .contact-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      text-align: center;
    }

    .contact-title {
      font-size: 24px;
      font-family: Poppins;
      font-weight: 700;
      line-height: 36px;
      color: #1b2632;
      margin-bottom: 16px;
    }

    .contact-subtitle {
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 21px;
      color: #67737e;
      margin-bottom: 32px;
    }

    .contact-button {
      background-color: #01baef;
      color: #ffffff;
      border: none;
      border-radius: 22px;
      padding: 10px 32px;
      font-size: 14px;
      font-family: Poppins;
      font-weight: 400;
      line-height: 21px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .contact-button:hover {
      background-color: #0199cc;
      transform: translateY(-2px);
    }

    /* Footer */
/* Footer */
.footer {
  background-color: #0b4f6c;
  padding: 48px 24px;
  color: #ffffff;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 140px;
  height: auto;
}

.footer-description {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-title {
  font-size: 19px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
}

.footer-link {
  display: block;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #01baef;
}

.footer-link.active {
  color: #01baef;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-icon {
  font-size: 20px;
  color: #01baef;
}

.contact-text {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-copyright {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}
    
    /* Interactive states */
    .nav-item:hover, .footer-link:hover {
      transform: translateY(-1px);
    }
    
    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(1, 186, 239, 0.3);
    }
    
    .value-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    /* Responsive media queries */
    @media (min-width: 640px) {
      .logo-text {
        font-size: 24px;
      }

      .hero-title {
        font-size: 40px;
        line-height: 56px;
      }

      .hero-subtitle {
        font-size: 18px;
        line-height: 27px;
      }

      .service-title {
        font-size: 22px;
        line-height: 32px;
      }

      .service-description {
        font-size: 15px;
        line-height: 24px;
      }

      .process-title {
        font-size: 26px;
        line-height: 38px;
      }

      .contact-title {
        font-size: 26px;
        line-height: 38px;
      }

      .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
      }

      .process-step {
        width: 45%;
      }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
    }

    @media (min-width: 768px) {
      .hamburger {
        display: none;
      }

      .nav-menu {
        display: flex;
      }

      .logo-text {
        font-size: 28px;
      }

      .hero-overlay {
        padding: 134px 56px;
      }

      .hero-title {
        font-size: 48px;
        line-height: 72px;
      }

      .services-section {
        padding: 96px 56px;
      }

      .service-item {
        flex-direction: row;
        gap: 64px;
      }

      .service-item:nth-child(even) {
        flex-direction: row-reverse;
      }

      .service-content {
        width: 50%;
      }

      .service-image {
        width: 50%;
        max-width: 600px;
        height: 320px;
      }

      .service-title {
        font-size: 24px;
        line-height: 36px;
      }

      .service-description {
        font-size: 16px;
        line-height: 26px;
      }

      .process-section {
        padding: 90px 56px;
      }

      .process-title {
        font-size: 30px;
        line-height: 45px;
      }

      .process-subtitle {
        font-size: 16px;
        line-height: 24px;
      }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 52px;
  }

  .process-step {
    width: auto;
  }

      .contact-section {
        padding: 92px 56px;
      }

      .contact-title {
        font-size: 30px;
        line-height: 45px;
      }

      .contact-subtitle {
        font-size: 16px;
        line-height: 24px;
      }

      .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
      }
    }

    @media (min-width: 1024px) {
      .header-content {
        width: 64%;
      }

      .hero-content {
        padding-left: 288px;
      }

      .services-container {
        width: 82%;
      }

      .process-container {
        width: 68%;
      }

      .footer-container {
        width: 62%;
      }
      
      .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      }
    }

    @media (min-width: 1280px) {
      .header-content {
        max-width: 1310px;
      }

      .hero-content {
        max-width: 1310px;
      }

      .services-container {
        max-width: 1310px;
      }

      .process-container {
        max-width: 1310px;
      }

      .footer-container {
        max-width: 1310px;
      }
    }