 .body{
 
     
      color: #fff;
 }
 
 .about-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
    }

    .about-left {
      flex: 1 1 400px;
      min-width: 300px;
    }

    .about-left img {
      width: 100%;
      height: auto;
      display: block;
    }

    .about-right {
        text-align: center;
      flex: 1 1 500px;
      padding: 30px;
    }

    .about-right h2 {
      font-size: calc(1.525rem + 3.3vw);
    }

    .about-right p {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .info-boxes {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 30px;
    }

    .info-box {
      flex: 1 1 200px;
      background: transparent;
      text-align: center;
    }

    .info-box img {
      width: 40px;
      margin-bottom: 10px;
    }

    .info-box h4 {
      margin: 10px 0 5px;
      font-size: 1rem;
    }

    .info-box p {
      font-size: 1rem;
      color: #0a0303;
    }

    .btn-blue {
      background-color: #07470a;
      color: #fff;
      padding: 10px 25px;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
    }

    .btn-blue:hover {
      background-color: red;
      transition: 0.3s;
    }

    @media (max-width: 768px) {
      .about-section {
        flex-direction: column;
      }
    }

    /* =============================servisec section=============================== */
    .heading h2{
        font-size: calc(1.525rem + 3.3vw);
    }
      section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .icon-card {
      width: 250px;
      padding: 30px;
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .icon-card:hover {
      transform: translateY(-5px);
      border: 1px solid red;
    }

    .icon-card img {
      width: 50px;
      height: 50px;
      margin-bottom: 15px;
    }

    .icon-card h3 {
      font-size: 1.1rem;
      color: #0f2b39;
      margin: 0;
    }

    @media (max-width: 768px) {
      .icon-card {
        width: 100%;
        max-width: 300px;
      }
    }

    /* ==================services section============================= */
    .about-style-two {
  background-color: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.about-style-two:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.about-style-two h4 {
  font-size: 1.25rem;
  margin-top: 15px;
}

.about-style-two p {
  font-size: 15px;
  line-height: 1.6;
}

.angle-btn img {
  width: 20px;
  height: auto;
}

.text-orange {
  color: #ff7a01;
  /* Or your preferred orange shade */
}

/* ============================whatsapp icon======================= */
  .whatsapp-float {
  position: fixed;
  top: 80%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 999;
  padding: 5px;
  background: white;
  border-radius: 0 5px 5px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  /* display: none; */
  border-radius: 50%;
  
}

.whatsapp-float:hover{
  border: 2px solid red;
  transform: translateY(-50%) scale(1.1); /* combine translate + scale */
  transition: transform 0.5s ease;
}

.whatsapp-float img {
  
  width: 48px;
  height: 48px;
}

/* Show only on desktop */
