 .hero-section {
      /* background: url('car/images/a1.jpg') no-repeat center center/cover; */
      background-image: url('images/a1.jpg');
      position: relative;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-title {
      font-size: 48px;
      font-weight: 700;
    }

    .breadcrumb-custom {
      margin-top: 15px;
      font-size: 16px;
    }

    .breadcrumb-custom a {
      color: white;
      text-decoration: none;
    }

    .breadcrumb-custom span {
      color: #084B82;
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 32px;
      }
    }

    /* about */
     .about-section {
      padding: 60px 0;
    }

    .about-images {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .about-images img:first-child {
      border-radius: 150px 150px 0 150px;
      width: 300px;
      height: auto;
      object-fit: cover;
      z-index: 1;
    }

    .about-images img:last-child {
      position: absolute;
      bottom: -20px;
      right: -30px;
      width: 250px;
      height: auto;
      border-radius: 50%;
      border: 6px solid white;
      z-index: 2;
    }

    .section-title {
      font-weight: bold;
      font-size: 2.2rem;
    }

    .icon-circle {
      width: 50px;
      height: 50px;
      background-color: #FFEAE5;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-right: 15px;
      font-size: 22px;
    }

    .info-block {
      display: flex;
      align-items: start;
      margin-top: 30px;
    }

    .info-block h5 {
      font-weight: 700;
      margin-bottom: 5px;
    }

    .btn-orange {
      background-color: #084B82;
      color: white;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 30px;
      border: none;
      transition: all 0.3s ease;
    }

    .btn-orange:hover {
      background-color: #084B82;
    }

    .circle-icon {
      background-color: #fff;
      color: #084B82;
      border-radius: 50%;
      padding: 6px 9px;
      font-size: 14px;
      margin-left: 8px;
    }

    @media (max-width: 768px) {
      .about-images {
        flex-direction: column;
      }

      .about-images img:first-child {
        width: 80%;
        border-radius: 100px;
      }

      .about-images img:last-child {
        position: static;
        margin-top: -40px;
        width: 60%;
        border-radius: 100px;
      }

      .section-title {
        font-size: 1.8rem;
      }
    }
    /* company */
    .bg2 {
      background-color: #F8F9FA;
    }

    .partners-section {
      padding: 60px 20px;
      text-align: center;
    }

    .partners-title {
      font-size: 38px;
      font-weight: 800;
    }

    .partners-tag {
      color: #084B82;
      font-weight: 600;
      font-size: 14px;
      display: inline-block;
      margin-bottom: 10px;
    }

    .partner-card {
      background-color: white;
      border-radius: 20px;
      padding: 20px;
      margin: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.03);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: all 0.3s ease-in-out;
    }

    .partner-card img {
      width: 180px;
      height: 100px;
    }

    .partner-card span {
      font-weight: 600;
      color: #222;
      font-size: 17px;
    }

    @media (max-width: 576px) {
      .partners-title {
        font-size: 26px;
      }

      .partner-card {
        flex-direction: column;
        text-align: center;
      }

      .partner-card span {
        font-size: 15px;
      }
    }