body{
    overflow-x: hidden;
}

/* ---------banner-about--------------- */
 .about-hero {
      background: linear-gradient(135deg, #98d7be, #0B2E33);
      padding: 60px 0;
      position: relative;
      overflow-y: hidden;
    }
    .about-hero h1 {
      font-weight: 700;
      font-size: 48px;
      line-height: 1.3;
    }
    .about-hero h1 span {
      color: #0B2E33;
    }
    .about-hero p {
      font-size: 16px;
      color: #555;
      margin-top: 20px;
      max-width: 500px;
    }
    .about-hero .btn-primary {
      background-color: #0b5d4b;
      border: none;
      padding: 12px 24px;
      font-weight: 600;
    }
    .about-hero .btn-outline-success {
      border: 2px solid #bcf3e1;
      color: #16c784;
      background: #e9fff7;
      font-weight: 600;
      padding: 12px 24px;
    }
    .about-highlight-box {
      background: #fff;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      border-radius: 10px;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .about-highlight-box img {
      width: 32px;
      height: 32px;
    }
    .about-highlight-text {
      font-size: 16px;
      font-weight: 600;
    }
    .about-hero-graphic {
      position: relative;
    }
    .about-hero-graphic img {
      max-width: 100%;
      /* border-radius: 50%; */
    }

    .about-features-icons {
      margin-top: 30px;
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }
    .about-features-icons span {
      font-size: 14px;
      font-weight: 500;
    }
    .about-brands {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
    }
    .about-brands img {
      height: 30px;
    }




    .about-section {
      padding: 60px 0;
    }
    .highlight-orange {
      color: #f7941d;
    }
    .highlight-green {
      color: #18a558;
    }
    .about-images {
      position: relative;
    }
    .about-images img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .about-images .img-top {
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      z-index: 2;
    }
    .about-images .img-bottom {
      position: relative;
      top: 120px;
      left: 0;
      width: 80%;
      z-index: 1;
    }
    .join-btn {
      background-color: #18a558;
      color: white;
      border: none;
      padding: 10px 25px;
      border-radius: 30px;
      font-weight: 500;
    }
    .join-btn:hover {
      background-color: #138d45;
    }


    /* ----------------------our mission---------------------- */

   .features-section {
      padding: 60px 0;
      background-color: #fff;
      margin-top: 90px;
    }

    .features-heading {
      color: #1c6b3f;
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    .features-title {
      font-size: 2rem;
      font-weight: 700;
      color: #222;
      margin-bottom: 1rem;
    }

    .features-text {
      color: #555;
      margin-bottom: 1rem;
    }

    .btn-learn {
      background-color: #1c6b3f;
      color: #fff;
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.3s ease;
    }

    .btn-learn:hover {
      background-color: #145b34;
      color: #fff;
    }

    .feature-image {
      border-radius: 10px;
      padding: 10px;
      background-color: #f5f5f5;
      display: inline-block;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .feature-image img {
      border-radius: 10px;
      width: 100%;
      height: auto;
    }












    /* --------------gallery------------------------------- */


       .portfolio-section {
      padding: 60px 0;
      text-align: center;
    }

    .portfolio-section h6 {
      color: green;
      text-transform: uppercase;
      font-weight: bold;
    }

    .portfolio-section h2 {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 40px;
    }

    .swiper {
      padding-bottom: 50px;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
    }

    .card {
      position: relative;
      overflow: hidden;
      border: none;
      border-radius: 12px;
      max-width: 100%;
      transition: transform 0.3s ease;
    }

    .card img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 128, 0, 0.85);
      color: white;
      padding: 10px 15px;
      transform: translateY(100%);
      transition: transform 0.3s ease-in-out;
    }

    .card:hover .overlay {
      transform: translateY(0);
    }

    .swiper-pagination-bullets {
      bottom: 10px !important;
    }

    .swiper-pagination-bullet {
      background-color: #007b5e;
    }

    .partners img {
      max-width: 120px;
      margin: 0 20px;
      opacity: 0.6;
      transition: 0.3s;
    }

    .partners img:hover {
      opacity: 1;
    }










    /* ------------contact-------------------- */

    .contact-card {
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      background: #fff;
      padding: 2rem;
    }
    .form-control {
      border: 2px solid var(--gray);
      border-radius: 10px;
    }
    .form-control:focus {
      box-shadow: none;
      border-color: var(--darkPink);
    }
    .submit-btn {
      background-color: var(--lightPink);
      border: none;
      color: #fff;
      border-radius: 10px;
      padding: 0.7rem 1.5rem;
      font-weight: 600;
      box-shadow: 0 5px 10px rgba(3, 96, 65, 0.3);
    }
    .contact-icons i {
      font-size: 1.2rem;
      color: var(--darkPink);
      margin-right: 10px;
    }
    .social-bar {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      border-radius: 10px 0 0 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 10px 5px;
    }
    .social-bar a {
      display: block;
      color: var(--darkPink);
      margin: 10px 0;
      font-size: 1.2rem;
      text-align: center;
    }
    .illustration img {
      max-width: 100%;
      height: auto;
    }

