.hero {
    color: rgb(0, 0, 0);
    padding: 20px 20px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
  }

  h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    font-family: lato;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.9;
    color: #4e4e4e;
    margin-bottom: 18px;
  }

  .hero img {
    width: 80%;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  }

  /* ================= CARDS ================= */

  .card {
    /* background: linear-gradient(135deg, #f9fafb, #206b8524); */
    background: #1f6784;
    padding: 10px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    transition: 0.3s;
    color: #fff;
    margin-top: 20px;
  }

  .card:hover {
    transform: translateY(-8px);
  }

  .section-title {
    margin-bottom: 15px;
  }

  /* ================= GRID ================= */

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .feature {
    background: white;
    padding: 35px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
  }

  .feature:hover {
    transform: translateY(-10px);
    border: 1px solid #206785;
  }

  .feature i {
    font-size: 36px;
    color: #206785;
    margin-bottom: 15px;
  }

  /* ================= SPLIT SECTION ================= */

  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .split img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  }

  /* ================= LIST STYLE ================= */

  ul {
    padding-left: 18px;
  }

  ul li {
    margin-bottom: 10px;
    font-weight: 600;
    margin-top: 10px;
  }

  /* ================= CTA ================= */

  .cta {
    color: white;
    text-align: center;
    border-radius: 50px 50px 0 0;
    margin-bottom: 42px;
  }

  .cta h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 19px;
  }

  .btn-primary {
    background: #206785;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 35px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }

  .btn-primary:hover {
    transform: scale(1.05);
  }

  .btn-outline {
    border: 2px solid rgb(0, 0, 0);
    padding: 14px 35px;
    border-radius: 35px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    transition: 0.3s;
  }

  .btn-outline:hover {
    background: white;
    color: #206885;
  }

  /* ================= RESPONSIVE ================= */

  @media (max-width: 992px) {

    .hero-grid,
    .split,
    .grid-3,
    .grid-2 {
      grid-template-columns: 1fr;
    }

    .hero h1 {
      font-size: 36px;
    }

    .cta-buttons {
      flex-direction: column;
    }
  }

  /* -------------------------mission------------------- */

  .mission-vision-section {
    padding: 1px 20px;
    background: #f9fafb;
  }



  .mv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 40px;
  }

  .mv-row.reverse {
    direction: rtl;
  }

  .mv-row.reverse .mv-content {
    direction: ltr;
  }

  .mv-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1f2937;
    font-weight: 700;
  }

  .mv-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #4e4e4e;
    margin-bottom: 18px;
  }

  .mv-image img {
    width: 80%;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .mv-row {
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 70px;
    }

    .mv-row.reverse {
      direction: ltr;
    }

    .mv-image img {
      height: 220px;
    }
  }

  .card1 {
    background: #206985;
    padding: 87px 40px;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    transition: 0.3s;
  }
