.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;
      }
    }
    /* Service */
    body {
      background-color: #fff;
      font-family: 'Segoe UI', sans-serif;
    }
    .why-section {
      padding: 80px 0;
      text-align: center;
    }
    .why-section .section-subtitle {
      color: #084B82;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .why-section h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 40px;
    }
    .feature-box {
      display: flex;
      align-items: start;
      gap: 15px;
      margin-bottom: 40px;
      text-align: left;
    }
    .feature-box i {
      font-size: 24px;
      color: #084B82;
      background: #ffe5dc;
      padding: 10px;
      border-radius: 50%;
    }
    .feature-box h5 {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 5px;
    }
    .feature-box p {
      font-size: 14px;
      color: #6c757d;
      margin-bottom: 0;
    }
    .center-img {
      position: relative;
      width: 100%;
      max-width: 300px;
      margin: auto;
    }
    .center-img img {
      width: 100%;
      border-radius: 50% 50% 0 0;
      object-fit: cover;
    }

    @media (min-width: 768px) {
      .center-img {
        max-width: 350px;
      }
    }

    @media (max-width: 767px) {
      .feature-box {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
      }
    }
    /* new s.. */
    .blog-section {
      padding: 70px 0;
    }
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-title small {
      color: #084B82;
      font-weight: 600;
      display: block;
    }
    .section-title h2 {
      font-size: 32px;
      font-weight: 700;
    }
    .featured-article {
      background-size: cover;
      background-position: center;
      border-radius: 20px;
      height: 100%;
      position: relative;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px;
    }
    .featured-article h5 {
      font-size: 18px;
      font-weight: 700;
      margin-top: 10px;
    }
    .featured-article i {
      margin-right: 6px;
    }
    .read-icon {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: #084B82;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      bottom: 20px;
      left: 20px;
    }
    .side-article {
      display: flex;
      margin-bottom: 20px;
    }
    .side-article img {
      width: 100px;
      height: 80px;
      border-radius: 10px;
      object-fit: cover;
    }
    .side-article .content {
      margin-left: 15px;
    }
    .side-article h6 {
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 5px;
    }
    .side-article small {
      color: #888;
    }
    .read-link {
      color:#084B82;
      font-weight: 600;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
