* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
        font-family: 'Poppins', sans-serif;

}





 .slider {
      position: relative;
      width: 100%;
      max-width: 700px;
      margin: 40px auto;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .slides {
      display: flex;
      transition: transform 0.6s ease-in-out;
      width: 200%;
    }

    .slides img {
      width: 100%;
      height: 100vh;
      display: block;
    }

    .navigation {
      position: absolute;
      width: 100%;
      display: flex;
      justify-content: space-between;
      top: 50%;
      transform: translateY(-50%);
      padding: 0 10px;
    }

    .navigation button {
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .navigation button:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }

   @media (max-width: 600px) {
  @media (max-width: 600px) {
  .slider {
    max-width: 100%;
    height: 55vh; /* smaller */
  }

  .slides img {
    height: 55vh !important; /* match slider height */
    width: 100%;
    object-fit: contain;  /* show full image */
    object-position: center;
    background-color: #fff; /* optional clean background */
  }
}


  .navigation button {
    padding: 8px 12px;
  }
}





  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px; /* distance from bottom */
    right: 20px; /* use left:20px if you want it on the left side */
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .whatsapp-float img {
    margin-top: 15px;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  }

  @media (max-width: 600px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 26px;
      bottom: 15px;
      right: 15px;
    }

    .whatsapp-float i {
      margin-top: 12px;
    }
    .whatsapp-float img{
      margin-bottom: 10px;
      margin-top: 10px;
    }
  }



 .top-logo {
      position: absolute;
      top: 20px;
      left: 40px;
      z-index: 1000;
    }
    .top-logo img {
      width: 130px;
      height: auto;
    }

    .hero-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 20px 5% 10px; /* Added top space for logo */
      background: linear-gradient(135deg, #014c8c, #0a76d1);

    }
    .hero-text {
      flex: 1 1 45%;
      max-width: 600px;
      color: #ffffff;
    }
    .tag {
      display: inline-block;
      background: #ff7b00;
      color: white;
      padding: 8px 18px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 20px;
    }
   .reo {
  color: #470B44; 
}

.maxx {
  color: #F4C914; 
}
.tagline {
  color: #33b1ff;
  font-size: 35px;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
}

    .hero-text p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 30px;
      margin-top: 20px;
    }
    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      margin-bottom: 30px;
    }

    
    .feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
    }
    .feature i {
      font-size: 20px;
      color: #33b1ff;
    }
    .cta-btn {
      background: #ff7b00;
      color: white;
      padding: 14px 30px;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }
    .cta-btn:hover {
      background: #ff8e2b;
    }
    .hero-image {
      flex: 1 1 45%;
      text-align: center;
      position: relative;
    }
    .hero-image img {
      width: 100%;
      max-width: 450px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }
    .highlight-box {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: #ff7b00;
      color: white;
      padding: 15px 25px;
      border-radius: 15px;
      font-weight: 700;
      font-size: 18px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Responsive Design */
    @media (max-width: 900px) {
      .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 90px 3% 10px;
      }
      .hero-text{
        flex: 1 1 25%;
      }
      .hero-text h1 {
        font-size: 38px;
      }
      .hero-text p {
        font-size: 16px;
      }
      .features {
        justify-content: center;
      }
      .hero-image {
        margin-top: 40px;
      }
      .top-logo {
        top: 10px;
        left: 20px;
      }
      .top-logo img {
        width: 100px;
      }
    }







    .section-description{
      max-width: 1200px;
      margin: 20px auto;
      padding: 0 20px;
    
      font-family: 'Poppins', sans-serif;
      
    }
    .section-description h1{
      margin-bottom: 15px;
    }
    .section-description h3{
      color: #33b1ff;
      text-align: left;
      margin-bottom: 15px;
      margin-top: 15px;
      font-size: 25px;
    }

    .section-description p {
      line-height: 1.4;
      text-align: left;
      color: rgb(74, 72, 72);
      
    }
    .section-description .highlight{
      font-size: 20px; 
      margin-top: 10px;
      margin-bottom: 10px;
      color: #495382;
      font-weight: 600;
      letter-spacing: normal;
    }
    .section-description ul {
      padding-left: 20px;
      line-height: 1.9;
    }









    
    .section-container {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
      text-align: center;
    }

    .section-container h1 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #0d172a;
    }

    .section-container p {
      font-size: 1.1rem;
      color: #64748b;
      margin-bottom: 30px;
      margin-top: 10px;
    }

    .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* reduce min-width from 320px */
  gap: 25px;
  box-sizing: border-box;
}


    .feature-box {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    }

    .icon-wrapper {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      background: linear-gradient(180deg, #0080ff, #0070c0);
      color: white;
      font-size: 1.6rem;
    }

    .feature-box h3 {
      font-size: 1.25rem;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .feature-box p {
      font-size: 1rem;
      color: #475569;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .section-container h1 {
        font-size: 2rem;
      }

      .feature-box {
        text-align: center;
      }

      .icon-wrapper {
        margin: 0 auto 15px;
      }
    }







     .guide-section {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
      text-align: center;
    }

    .guide-section h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color: #0d172a;
    }

    .guide-section p {
      font-size: 1.1rem;
      color: #64748b;
      margin-bottom: 40px;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .step-box {
      background: #fff;
      border-radius: 12px;
      padding: 20px 25px;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .step-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    }

    .step-number {
      font-size: 3rem;
      font-weight: 700;
      color: #cbd5e1;
      margin-bottom: 10px;
    }

    .step-box h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .step-box p {
      font-size: 1rem;
      color: #475569;
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 768px) {
      .guide-section h2 {
        font-size: 1.9rem;
      }
      .guide-section p {
        font-size: 1rem;
      }
      .step-box {
        text-align: center;
      }
      .step-number {
        font-size: 2.5rem;
      }
      .guide-section{
        margin-bottom: 10px;
      }
    }




     .safety-box {
      background-color: #f8d9d9;
      border-radius: 12px;
      padding: 20px;
      max-width: 700px;
      margin: auto;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      
    }

    .safety-header {
      display: flex;
      align-items: center;
      font-size: 1.4rem;
      font-weight: 700;
      color: #1b1b1b;
      margin-bottom: 15px;
      
    }
    .safety-header img {
        padding-right: 10px;
    }

    .safety-header i {
      color: #f4b400;
      margin-right: 10px;
      font-size: 1.5rem;
    }

    .safety-box ul {
      list-style-type: disc;
      margin-left: 20px;
      color: #333;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    @media (max-width: 600px) {
      .safety-box {
        padding: 15px;
        margin: 12px;
      }
      .safety-header {
        font-size: 1.2rem;
      }
    }





    
   .contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 10px;
  margin-top: 20px;
  width: 100%;
  background: linear-gradient(#21568b, #1d8bcc);
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  padding: 40px 30px;
  flex: 1 1 300px;
  max-width: 350px;
  min-width: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: white;
  transition: transform 0.3s ease;
}

.contact-card a {
  color: white;
  text-decoration: none;
  display: block;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  background-color: #1fc4f4;
  color: white;
  font-size: 26px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-card p {
  font-size: 15px;
  opacity: 0.9;
}

/* ✅ Responsive fix */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 90%;
    max-width: 350px;
    flex: 1 1 15px;
  }
}




    footer {
      background-color: #0a4275; /* Deep blue tone from your screenshot */
      color: #ffffff;
      text-align: center;
      padding: 15px 10px;
      font-size: 14px;
    }

    footer p {
      margin: 0;
      line-height: 1.6;
    }

    @media (max-width: 600px) {
      footer {
        font-size: 13px;
        padding: 12px 8px;
      }
    }

