
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f8fb;
    width: 100%;
    background-image: url(html/Frame.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
  }
  
  header {
    /* background: #ffffff; */
    padding: 20px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: rgb(111 187 226);
  }
  
  .language-selector {
    font-size: 14px;
    color: #007bff;
  }
  
  .hero-section {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    /* padding: 40px 0px 40px 40px; */
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero-text {
    max-width: 50%;
  }
  
  .hero-text h1 {
    font-size: 51px;
  }
  
  .hero-text .highlight {
    color: #007bff;
  }
  
  .hero-text p {
    color: #666;
  }
  
  .hero-image img {
    max-width: 118%;
    height: auto;
  }
  
  .buttons {
    margin-top: 20px;
  }
  
  .btn {
    padding: 18px 63px;
    font-size: 16px;
    border: none;
    /* display: flex
; */
    cursor: pointer;
    border-radius: 6px;
  }
  
  .btn.book {
    background-color: #007bff;
    color: white;
  }
  
  .btn.call {
    border: 1px solid #007bff;
    background: white;
    color: #007bff;
    margin-left: 20px;
  }
  
  .taxi-options {
    display: flex
    ;
        /* justify-content: space-between; */
        padding: 60px 0;
        max-width: 60%;
        /* margin: 0 auto; */
        gap: 20px;
        position: absolute;
        margin-left: 4%;
        bottom: -10%;
  }
  
  .taxi-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
  }
  
  .taxi-card img {
    width: 236px;
    height: auto;
  }
  
  .taxi-card h3 {
    margin: 10px 0;
  }
  
  .price {
    font-weight: bold;
  }
  
  footer {
    background: #00294d;
    color: white;
    /* padding: 20px; */
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
  }
  .footer-info{
    padding: 20px 0px;
  }
  .footer-info,
  .social-media {
    font-size: 14px;
  }
  .social-media a {
    color: white;
    margin-right: 10px;
    text-decoration: none;
  }
  .social-media i{
    /* width: 40px; */
  }
  .social-media p{
    font-weight: 400;
    font-size: 18px;
  }
  
  /* RESPONSIVE SECTION */
  @media (max-width: 1024px) {
    .hero-section {
      flex-direction: column;
      text-align: center;
      
    }
  
    .hero-text {
      max-width: 100%;
    }
  
    .hero-image img {
      max-width: 70%;
    }
  
    .taxi-options {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .taxi-card {
      width: 45%;
    }
  }
  
  @media (max-width: 768px) {
    .taxi-card {
      width: 100%;
    }
  
    .hero-image img {
      max-width: 100%;
      DISPLAY: NONE;
    }
  
    footer {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .hero-text h1 {
      font-size: 28px;
    }
  
    .btn {
      width: 100%;
      margin-bottom: 10px;
    }
  }
  #selects{
    border: none;
    width: 76px;
    background: transparent;
  }