
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
      font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      background-color: #ffffff;
    }

    header {
      background: #2c3e50;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
    }

    header h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    header p {
      font-size: 1.2rem;
      margin-bottom: 20px;
    }

    .btn-primary {
      background: #e67e22;
      color: white;
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background 0.3s;
    }

    .btn-primary:hover {
      background: #cf711c;
    }

    section {
      padding: 40px 20px;
      max-width: 1100px;
      margin: auto;
    }

    .services-section {
    padding: 60px 20px;
    /* background-color: #fff; */
    }

    .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    }

    .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    }

    .service-card {
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    }

    .service-card:hover {
    transform: translateY(-5px);
    }

    .service-card .icon {
    width: 60px;
    height: 60px;
    background-color: #8dba3a; /* green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    }

    .service-card h3 {
        /* font-size: 1rem; */
        color: #000;
        text-transform: uppercase;
        margin-bottom: 10px;
        letter-spacing: 1px;
        font-size: 15px;
    }

    .service-card p {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    }


    /* .section-title {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2rem;
      color: #333;
    } */

    .services, .benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      gap: 20px;
    }

    .card {
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .card h3 {
      margin-bottom: 10px;
      color: #2c3e50;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-size: 14px;
    }

    .contact-form {
      background: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      max-width: 600px;
      margin: auto;
    }

    .contact-form label {
      display: block;
      margin-bottom: 5px;
      margin-top: 15px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 4px;
      margin-top: 5px;
    }

    .contact-form button {
      margin-top: 20px;
      background: #2980b9;
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .contact-form button:hover {
      background: #2471a3;
    }

    footer {
      background: #2c3e50;
      color: #fff;
      text-align: center;
      padding: 20px;
      /* margin-top: 40px; */
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 2rem;
      }

      .section-title {
        font-size: 1.5rem;
      }
    }

    .why-choose-us {
  background-color: #fff;
  padding: 60px 20px;
}

.why-choose-us .container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}

.why-choose-us .image img {
  width: 100%;
  max-width: 500px;
}

.why-choose-us .content {
  flex: 1;
  min-width: 300px;
}

.why-choose-us h2 {
  font-size: 2rem;
  color: #0d1a60;
  margin-bottom: 10px;
}

.why-choose-us p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
}

.reason {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.reason .icon {
  width: 48px;
  height: 48px;
  background: #eaf0ff;
  color: #0d1a60;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.reason .text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1d3557;
}

.reason .text p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

.contact{
    background: url("img/contactbg.jpg") no-repeat center center;
    background-size: cover;
    max-width: 100%;
}

@media (max-width: 768px) {
  .why-choose-us .container {
    flex-direction: column;
    text-align: center;
  }

  .reason {
    justify-content: center;
  }

  .reason .icon {
    margin-right: 10px;
  }
}