.hero-section {
       
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-container {
    
    text-align: center;
}

.hero-note {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff; /* white text */
}

.hero-title-h {
    font-size: 28px;
    font-weight: bold;
    color: #fff; /* white text */
    display: inline-block;
    padding: 10px 15px;
    margin-bottom: 20px;
    background: none; /* remove red background */
}

.hero-title-h span {
    display: block;
    color: #00B7DF; /* highlight color */
    
}

.hero-subtext {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff; /* white text */
}

.hero-video iframe {
    width: 100%;
    height: 400px;
    max-width: 100%;
    margin-bottom: 20px;
}

.hero-cta {
    display: inline-block;
    background-color: #00B7DF; /* match highlight color */
    color: #fff; /* white text */
    font-weight: bold;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.hero-cta:hover {
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title-h {
        font-size: 22px;
        padding: 8px 10px;
    }

    .hero-video iframe {
        height: 220px;
    }

    .hero-cta {
        padding: 12px 15px;
        font-size: 14px;
    }
}


/* Why secetion */

.why-need-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 50px;
    gap: 40px;
    flex-wrap: wrap;
    margin-left: 10%;
    margin-right: 10%;
  }
  
  /* Image */
  .left-image {
    flex: 1 1 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  .left-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Content */
  .right-content {
    flex: 1 1 400px;
    color: white;
  }
  .right-content h2 {
    color: #00B7DF;
    font-size: 36px;
    margin-bottom: 20px;
  }
  .right-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .right-content p, .right-content ul {
    font-size: 18px;
    line-height: 1.6;
  }
  .right-content ul {
    list-style: none;
    padding: 0;
  }
  .right-content ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .right-content ul li span {
    color: #00B7DF;
    margin-right: 10px;
  }
  .right-content span {
    color: #00B7DF;
    font-weight: bold;
  }
  
  /* CTA Button */
  .cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background-color: #00B7DF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
  }
  .cta-button:hover {
    background-color: #008bb8;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .why-need-section {
      flex-direction: column;
      padding: 30px 20px;
      gap: 30px;
      text-align: center;
      margin-left: 0%;
      margin-right: 0%;
    }
    .left-image, .right-content {
      flex: 1 1 100%;
    }
    .right-content h2 {
      font-size: 28px;
    }
    .right-content h3 {
      font-size: 22px;
    }
    .right-content p, .right-content ul {
      font-size: 16px;
    }
    .cta-button {
      margin: 20px auto 0;
    }
  }

    /* What We Do Section */
    .what-we-do-section {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 50px 50px;
        gap: 40px;
        flex-wrap: wrap;
        margin-left: 10%;
        margin-right: 10%;
      }
      
      /* Content */
      .wwd-left-content {
        flex: 1 1 400px;
        color: white;
      }
      .wwd-left-content h2 {
        color: #00B7DF;
        font-size: 36px;
        margin-bottom: 20px;
      }
      .wwd-left-content h3 {
        font-size: 28px;
        margin-bottom: 20px;
      }
      .wwd-left-content p,
      .wwd-left-content ul {
        font-size: 18px;
        line-height: 1.6;
      }
      .wwd-left-content ul {
        list-style: none;
        padding: 0;
      }
      .wwd-left-content ul li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 10px;
      }
      .wwd-left-content ul li span {
        color: #00B7DF;
        margin-right: 10px;
      }
      .wwd-left-content span {
        color: #00B7DF;
        font-weight: bold;
      }
      
      /* Image */
      .wwd-right-image {
        flex: 1 1 400px;
        max-width: 500px;
        margin: 0 auto;
      }
      .wwd-right-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
      }
      
      /* CTA Button */
      .wwd-cta-button {
        display: inline-block;
        margin-top: 30px;
        padding: 15px 30px;
        background-color: #00B7DF;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background 0.3s;
      }
      .wwd-cta-button:hover {
        background-color: #008bb8;
      }
      
      /* Mobile Responsive */
      @media (max-width: 768px) {
        .what-we-do-section {
          flex-direction: column-reverse; /* image comes first */
          padding: 30px 20px;
          gap: 30px;
          text-align: center;
          margin-left: 0%;
          margin-right: 0%;
        }
        .wwd-left-content,
        .wwd-right-image {
          flex: 1 1 100%;
        }
        .wwd-left-content h2 {
          font-size: 28px;
        }
        .wwd-left-content h3 {
          font-size: 22px;
        }
        .wwd-left-content p,
        .wwd-left-content ul {
          font-size: 16px;
        }
        .wwd-cta-button {
          margin: 20px auto 0;
        }
      }