/* Global Styles */
body, h2, h6, p, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .logo2{
    height: 100px;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  h2, h6 {
    color: #333;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    padding: 60px 0;
    background-color: #f4f4f4;
    background-image: url("images/banner.jpg");
  }
  
  .hero-text h2 {
    font-size: 36px;
    font-weight: bold;
  }
  
  .hero-text h6 {
    font-size: 18px;
    color: #666;
  }
  
  .breadcrumb {
    margin-top: 15px;
    padding: 0;
    list-style: none;
    background: none;
  }
  
  .breadcrumb-item a {
    text-decoration: none;
    color: #007bff;
  }
  
  .breadcrumb-item.active {
    color: #6c757d;
  }
  
  .hero-img img {
    border-radius: 10px;
  }
  
  .heroshaps-1, .heroshaps-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #ff6f61;
    z-index: -1;
  }
  
  .heroshaps-1 {
    top: 20px;
    left: 10%;
  }
  
  .heroshaps-2 {
    bottom: -20px;
    right: 15%;
  }
  
  /* Services Section */
  section.gap {
    padding: 60px 0;
  }
  
  .service {
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: 0.3s;
    background-color: #10adc2;
  }
  .btnn{
    height: 36px;
    width: 330px;
    background-color: #333;
    border-radius: 30px;
    color: white;
  }
  .service img {
    border-radius: 10px;
    object-fit: cover;
    color: black;
  }
  
  .service i {
    margin-top: 15px;
    display: inline-block;
  }
  
  .service-text h5 {
    font-size: 18px;
    color: #333;
    margin: 15px 0;
  }
  
  .service-text p {
    font-size: 14px;
    color:BLACK;
  }
  
  .service:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    background-color:yellow;
  }
  
  /* Refer a Friend Section */
  .refer-friend {
    padding: 30px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 30px;
  }
  
  .refer-friend h2 {
    font-size: 24px;
  }
  
  .refer-friend h5 a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
  }
  
  .bus-img {
    width: 120px;
    position: absolute;
    bottom: -20px;
    right: 20px;
  }
  
  /* How It Works Section */
  .works-section {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
  }
  
  .works-section .heading {
    margin-bottom: 40px;
  }
  
  .works-section h2 {
    font-size: 28px;
  }
  
  .work-step {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin-bottom: 30px;
  }
  
  .work-step-img span {
    background-color: #ff6f61;
    padding: 5px 10px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
  }
  
  .work-step h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
  }
  
  .work-step p {
    font-size: 14px;
    color: #666;
  }
  .heading p{
    color: green;
    font-size: 36px;
  }
  
  /* Find a Location Section */
  .location {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .location-style {
    display: flex;
    flex-wrap: wrap;
  }
  
  .location-text {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #fff;
  }
  
  .location-text h4 {
    font-size: 18px;
    color: #333;
  }
  
  .location-text p {
    font-size: 14px;
    color: #666;
  }
  
  .location-text i {
    font-size: 20px;
    color: #ff6f61;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .logo1{
    height: 200px;
    width: 450px;
  }
  
  /* Media Queries for Responsive Design */
  @media (max-width: 991px) {
    .hero-text {
      text-align: center;
    }
  
    .hero-img {
      display: none;
    }
  
    .refer-friend {
      text-align: center;
    }
  
    .bus-img {
      display: none;
    }
  
    .work-step {
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 767px) {
    .service {
      margin-bottom: 20px;
    }
  
    .location-style {
      flex-direction: column;
    }
  }
  