  html, body {
      margin: 0;
      padding: 0;
    }

    .carousel-item {
      height: 100vh;
      min-height: 600px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.6); /*rgb(11, 11, 11) with opacity */
      z-index: 1;
    }

    .carousel-caption {
      z-index: 2;
      top: 50%;
      transform: translateY(-50%);
      bottom: auto;
      left: 50%;
      transform: translate(-50%, -50%);
      position: absolute;
      width: 100%;
      max-width: 900px;
      padding: 0 15px;
    }

    .carousel-caption h5 {
      color: #084B82;
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 20px;
    }

    .carousel-caption h1 {
      font-weight: 800;
      font-size: 3rem;
      line-height: 1.2;
      color: #fff;
    }

    .carousel-caption p {
      font-size: 1.1rem;
      color: #eee;
      margin: 20px 0 30px;
    }

    .btn-orange {
      background-color: #084B82;
      color: #fff;
      padding: 12px 24px;
      border-radius: 30px;
      font-weight: 600;
      border: none;
      transition: all 0.3s ease;
    }

    .btn-orange:hover {
      transform: scale(1.05);
    }

    .btn-outline-light {
      border-radius: 30px;
      padding: 12px 24px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .circle-icon {
      background-color: #084B82;
      color: #fff;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      margin-left: 10px;
    }

    .btn-group-custom {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    @media (max-width: 768px) {
      .carousel-caption h1 {
        font-size: 2rem;
      }
      .carousel-caption p {
        font-size: 1rem;
      }
    }
    /* 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;
      }
    }
/* services */
    .bg-light{
      font-family: 'Segoe UI', sans-serif;
      background-color: #bfdffd;
    }
   .hero-section {
      background: linear-gradient(rgba(8, 75, 130, 0.8), rgba(8, 75, 130, 0.8)), url('your-bg-image.jpg') center/cover no-repeat;
      color: white;
      padding: 100px 0;
    }

    .feature-card {
      border-radius: 24px;
      background-color: #fff;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      padding: 30px;
      transition: transform 0.3s ease;
      height: 100%;
    }

    .feature-card:hover {
      transform: translateY(-5px);
    }

    .icon-circle {
      background-color: #ffeae5;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .icon-circle i {
      font-size: 24px;
      color: #084B82;
    }

    .circle-btn {
      width: 40px;
      height: 40px;
      background-color: #084B82;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 20px;
    }

    .section-heading {
      font-weight: 800;
    }
    /* cars */
 .card {
      border: none;
      border-radius: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .fleet-title {
      color: #084B82;
      font-size: 2.2rem;
      font-weight: bold;
    }
    .slider-wrapper {
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      display: flex;
      gap: 1rem;
      padding: 1rem;
    }
    .slider-wrapper::-webkit-scrollbar {
      display: none;
    }
    .card-slide {
      flex: 0 0 100%;
      scroll-snap-align: start;
    }
    @media (min-width: 576px) {
      .card-slide {
        flex: 0 0 50%;
      }
    }
    @media (min-width: 992px) {
      .card-slide {
        flex: 0 0 25%;
      }
    }
    .price {
      font-size: 1.2rem;
      font-weight: bold;
      color: #084B82;
    }
    .btn-custom {
      background-color: #084B82;
      color: #fff;
      border-radius: 50px;
      font-weight: 500;
    }
    .btn-custom:hover {
      background-color: #062e56;
    }
/* bg car */
.cta-section {
      background-color: #000;
      color: #fff;
      background-image: linear-gradient(transparent 1px, transparent 1px), linear-gradient(90deg, transparent 1px, transparent 1px);
      background-size: 60px 60px;
      position: relative;
      overflow: hidden;
      padding: 60px 20px;
    }

    .cta-text h1 {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .cta-text p {
      font-size: 1rem;
      color: #ccc;
    }

    .cta-btn {
      background-color: #084B82;
      color: white;
      border-radius: 30px;
      padding: 10px 25px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      border: none;
      gap: 10px;
    }

    .cta-btn:hover {
      background-color: #084B82;
    }

    .car-img {
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 767px) {
      .cta-text h1 {
        font-size: 1.8rem;
      }
    }
