.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;
      }
    }
    /* form*/
    body {
      background-color: #f4f4f4;
      font-family: 'Segoe UI', sans-serif;
    }
.contact-section {
      max-width: 1200px;
      margin: 50px auto;
      background: #fff;
      border-radius: 25px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
      overflow: hidden;
    }

    .contact-info-box {
      background: linear-gradient(to bottom right, #000000, #1a1a1a);
      color: #fff;
      padding: 40px;
    }

    .contact-info-box h2 {
      font-weight: 800;
      font-size: 30px;
      margin-bottom: 10px;
    }

    .contact-info-box p.subtext {
      color: #ccc;
      font-size: 14px;
      margin-bottom: 30px;
    }

    .contact-info i {
      font-size: 18px;
      margin-right: 15px;
      color: #084B82;
    }

    .contact-info p {
      margin-bottom: 20px;
      font-size: 15px;
    }

    .social-icons a {
      margin-right: 12px;
      color: white;
      border: 1px solid white;
      padding: 10px;
      border-radius: 50%;
      display: inline-block;
      transition: 0.3s ease;
    }

    .social-icons a:hover {
      background-color: #084B82;
      border-color: #084B82;
    }

    .form-section {
      padding: 40px;
    }

    .form-control {
      border: none;
      border-bottom: 2px solid #ccc;
      border-radius: 0;
      background-color: transparent;
      box-shadow: none;
      font-size: 15px;
    }

    .form-control:focus {
      border-color: #084B82;
      box-shadow: none;
    }

    .form-label {
      font-weight: 600;
      color: #333;
    }

    .btn-send {
      background-color: #084B82;
      color: white;
      padding: 12px 30px;
      font-weight: 600;
      border: none;
      border-radius: 30px;
      transition: all 0.3s ease;
    }

    .btn-send:hover {
      background-color: #084B82;
    }

    @media (max-width: 767px) {
      .contact-section {
        border-radius: 0;
      }
      .contact-info-box, .form-section {
        padding: 25px;
      }
    }
    /* map */
    .section-title {
      text-align: center;
      margin-top: 50px;
      margin-bottom: 30px;
    }

    .section-title h5 {
      color: #084B82;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .section-title h2 {
      font-weight: 800;
      font-size: 32px;
    }

    .map-container {
      width: 100%;
      height: 400px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    }

    @media (max-width: 768px) {
      .map-container {
        height: 300px;
      }
    }

