/* ===== ABOUT SECTION ===== */

  .about-section {
      padding: 40px 0;
      text-align: center;
      background: #f9fbff;
      margin-top: -80px;
      
  }

  .about-header h1 {
      font-size: 36px;
      margin-bottom: 15px;
      color: #63c0e5;
  }

  .about-header p {
      color: #666;
      margin-bottom: 30px;
  }

  .about-text-con {
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: justify;
      max-width: 1200px;
      margin-left: 80px;
      padding: 40px 20px;
      gap: 40px
  }

  .about-text {
      flex: 1;
  }

  .about-text p {
      font-size: 17px;
      line-height: 1.7;
      font-weight: 400;
      color: #555;
      max-width: 700px;

  }

  .about-img {
      flex: 0 0 500px;
  }

  .about-img img {
      width: 135%;
      height:355px;
      border-radius: 12px;
      display: block;

  }

  /* ===== FEATURES GRID ===== */

  .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-left: 80px;
      margin-right: 80px;
  }

  .feature-box {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: 0.3s;
  }

  .feature-box:hover {
      transform: translateY(-8px);
  }

  .feature-icon {
      font-size: 40px;
      margin-bottom: 15px;
  }

  .feature-box h3 {
      margin-bottom: 10px;
      font-size: 18px;
  }

  .feature-box p {
      font-size: 14px;
      color: #555;
  }

  /* =========================================
   FULL RESPONSIVE SUPPORT (NO DESIGN CHANGE)
========================================= */



/* -------- Laptop (1024px - 1399px) -------- */
@media (max-width: 1200px) {
    .about-text-con {
        margin-left: 40px;
        margin-right: 40px;
    }

    .features-grid {
        margin-left: 40px;
        margin-right: 40px;
        grid-template-columns: repeat(2, 1fr);
    }

    .about-img img {
        width: 100%;
        height: auto;
    }
}

/* -------- Tablet (768px - 1023px) -------- */
@media (max-width: 1023px) {

    .about-text-con {
        flex-direction: column;
        margin-left: 30px;
        margin-right: 30px;
        text-align: left;
    }

    .about-img {
        flex: unset;
        width: 100%;
    }

    .about-img img {
        width: 100%;
        height: auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 30px;
        margin-right: 30px;
    }
}

/* -------- Mobile (480px - 767px) -------- */
@media (max-width: 767px) {

    .about-section {
        
        padding: 30px 20px;
    }

    .about-header h1 {
        font-size: 26px;
    }

    .about-text-con {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
        padding: 20px 0;
        gap: 25px;
    }

    .about-text p {
        max-width: 100%;
        font-size: 15px;
    }

    .about-img {
        flex: unset;
        width: 100%;
    }

    .about-img img {
        width: 100%;
        height: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        margin-left: 0;
        margin-right: 0;
    }

    .feature-box {
        padding: 22px;
    }
}

/* -------- Small Mobile (320px - 479px) -------- */
@media (max-width: 479px) {
    

    .about-header h1 {
        font-size: 22px;
        margin-top: 0px;
    }

    .about-text p {
        font-size: 14px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .feature-box h3 {
        font-size: 16px;
    }

    .feature-box p {
        font-size: 13px;
    }
}