/* -----hero-section----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
      /* font-family: Arial, sans-serif; */
    }

    .about-hero-sec {
      position: relative;
      height: 80vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    .background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1zVnE9amPFvpyKn4Aw8faydn2MglyY6YDcw&s');
      background-size: cover;
      background-position: center;
      filter: blur(8px);
      z-index: 1;
    }

    .purple-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(42, 15, 70, 0.4); /* semi-transparent purple */
      z-index: 2;
    }

    .about-title {
      position: relative;
      z-index: 3;
      max-width: 90%;
      padding: 30px 20px;
      border-radius: 12px;
    }

    .about-title h2 {
      font-size: 2.5rem;
      color: white; 
      margin-bottom: 20px;
      font-weight: 600;
    }

    .about-title p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .about-title h2 {
        font-size: 2rem;
      }

      .about-title p {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .about-title {
        padding: 20px 15px;
      }

      .about-title h2 {
        font-size: 1.6rem;
      }

      .about-title p {
        font-size: 0.95rem;
      }
    }

/* -----hero-section end---- */

/* why us start */

.why-us-img img{
 border-radius: 30px;
}

.why-us h2{
    color: #3f06a3;
}
.why-us h5{
    color: #000000;
}
.why-us p{
    color: #515052;
    font-size: 16px;
}
/* why us end */