html, body {
  max-width: 100vw;
  overflow-x: hidden;
}


                       
.container, .container-fluid, .row {
  max-width: 100vw;
  overflow-x: hidden;
}

.slider {
  max-width: 100vw;
  overflow: hidden; /* hide scroll bar */
}

.slide-container {
  display: flex;
  width: max-content;
  animation: scroll 60s linear infinite; /* adjust 60s = slower */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 👈 move half, since images are duplicated */
  }
}

.gall {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  margin-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.gallery {
  flex: 0 0 33.333%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .gallery {
    flex: 0 0 50%;
  }
}
@media (max-width: 600px) {
  .gallery {
    flex: 0 0 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header {
  animation: 1.5s ease-out 0s 1 slideInLeft;
  height: auto;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

nav {
  background-color: transparent;
  position: fixed;
  border-radius: 2px;
  top:0;
  left:0;
  margin-right:10px;
  width:97%;
  
}
.white{
  background-color: #fff;
}
.ourstore {
  text-align: center;
  color: #2dc997;
  font-weight: 700;
}

.button1 {

  color: black;
  border: 1px solid #2dc997;
  font-size: 19px;
}

.button1:hover {
  background-color: #2dc997;
  border: 1px solid black;
  color: white;
  border-radius: 10px 10px 10px 10px;
  transition: 0s;

}

.nav1 {
  color: black;
  font-size: 18px;
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;

}

.navh {
  color: black;
  font-size: 18px;
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
  border-bottom: 3px solid #2dc997;
  border-radius: 0;

}

.nav1:hover {
  border-bottom: 3px solid #2dc997;
  text-align: center;
}
.navbar-nav{
  margin:auto;
}

.navbar-toggler {
  border: 3px solid #2dc997;
  color: #2dc997;
}

.navbar-toggler:hover {
  border: 3px solid #2dc997;
}

#hero {
  width:auto;
  height: 80vh;
  background: url(../images/hero.jpg) center;
  position:absolute;
  overflow: hidden;
  margin: auto;
  background-position: scroll;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (min-width:450px) {
  * {
    margin: 0%;
    padding: 0%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .header {
    animation: 1.5s ease-out 0s 1 slideInLeft;
    height: auto;
  }
}
  @keyframes slideInLeft {
    0% {
      transform: translateX(-100%);
    }
  
    100% {
      transform: translateX(0);
    }
  }
  
  nav {
    background-color: transparent;
    position: fixed;
    border-radius: 2px;
    top:0;
    left:0;
    width:100%;
    
  }
  .white{
    background-color: #fff;
  }
  .ourstore {
    text-align: center;
    color: #2dc997;
    font-weight: 700;
    background-color: #fff;
  }
  
  .button1 {
  
    color: black;
    border: 1px solid #2dc997;
    font-size: 19px;
  }
  
  .button1:hover {
    background-color: #2dc997;
    border: 1px solid black;
    color: white;
    border-radius: 10px 10px 10px 10px;
    transition: 0s;
  
  }
  
  .nav1 {
    color: black;
    font-size: 18px;
    text-align: center;
    margin-left: 15px;
    margin-right: 15px;
  
  }
  
  .navh {
    color: black;
    font-size: 18px;
    text-align: center;
    margin-left: 15px;
    margin-right: 15px;
    border-bottom: 3px solid #2dc997;
    border-radius: 0px;
  
  }
  
  .nav1:hover {
    border-bottom: 3px solid #2dc997;
    text-align: center;
  }
  .navbar-nav{
    margin:auto;
  }
  
  .navbar-toggler {
    border: 3px solid #2dc997;
    color: #2dc997;
  }
  
  .navbar-toggler:hover {
    border: 3px solid #2dc997;
  }
  
  #hero {
    width: 100%;
    height: 80vh;
    background: url(../images/hero.jpg) center;
    background-size: cover;
    position: relative;
    background-position: scroll;
  }
  
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }
  
  #hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  
  #hero h1 {
    margin: 30px 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    color: #2dc997;
  }
  
  @media (max-width: 768px) {
    #hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
  }
  
  #hero h4 {
    color: #eee;
    margin-bottom: 50px;
    font-size: 24px;
  }
  
  @media (max-width: 768px) {
    #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  }
  
  #hero .btn-get-started {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #2dc997;
    color: #2dc997;
  }
  
  #hero .btn-get-started:hover {
    background: #2dc997;
    color: white;
    border: 2px solid #2dc997;
  }
  
  section {
    overflow: hidden;
  }
  
  /* Sections Header
        --------------------------------*/
  .section-header .section-title {
    font-size: 32px;
    color: #111;
    text-align: center;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .section-header .section-description {
    text-align: center;
    padding-bottom: 40px;
    color: #999;
  }
  #abou {
    background: #fff;
    padding: 0px 0;
  }
  
  #abou .about-container .background {
    min-height: 300px;
    border-radius:5px;
    background-color: #fff;
  }
  
  #abou .about-container .content {
    background: #fff;
  }
  
  #abou .about-container .title {
    color: #2dc997;
    font-weight: 700;
    font-size: 32px;
  }
  
  @media (max-width: 768px) {
    #abou .about-container .title {
      padding-top: 15px;
      color: #2dc997;
    }
  }
  
  #abou .about-container p {
    line-height: 26px;
  }
  #abou .about-container p:last-child {
    margin-bottom: 0;
  }
  
  #abou .about-container .icon-box {
    background: #fff;
    background-size: cover;
    padding: 0 0 2  0px 0;
  }
  
  #abou .about-container .icon-box .icon {
    float: left;
    background-color: #2dc997;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #2dc997;
  }
  
  #abou .about-container .icon-box .icon i {
    color: white;
    font-size: 24px;
    line-height: 0;
  }
  
  #abou .about-container .icon-box .title {
    margin-left: 80px;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 18px;
    text-transform: uppercase;
  }
  
  #abou .about-container .icon-box .title a {
    color: #111;
  }
  
  #abou .about-container .icon-box .description {
    margin-left: 80px;
    line-height: 24px;
    font-size: 14px;
  }
  
  .aboutheading{
    color: #2dc997;
    text-decoration:none;
  }
  #facts{
    padding: 40px 0 40px 0;
    background-color: #2dc997;
    margin-bottom:30px;
    color: #111;
  }
  .section{
    color: black;
    text-align:center;
    justify-content: center;
  }
  .section-title{
    color: #fff;
  }
  .aiportimg img{
    float:right;
    width:100%;
  
  }
  @media screen and (width:700){
    .aiportimg img{
        width:100%;
        justify-content: center;
    }
  }
  .airporttext{
    text-align:justify;
  }
  .airporttext h2{
    color: black;
  }
  .map{
    width:100%;
    height:60vh ;
  }
  /* Call To Action Section
  --------------------------------*/
  #call-to-action {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/call-to-action-bg.jpg") fixed center center;
    background-size: cover;
    padding: 100px 0;
  }
  
  @media (max-width: 1024px) {
    #call-to-action {
      background-attachment: scroll;
    }
  }
  
  #call-to-action .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
  }
  
  #call-to-action .cta-text {
    color: #fff;
  }
  
  @media (min-width: 769px) {
    #call-to-action .cta-btn-container {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
  }
  
  #call-to-action .cta-btn {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
  }
  
  #call-to-action .cta-btn:hover {
    background: #2dc997;
    border: 2px solid #2dc997;
  }
  .city
  {
    text-align: center;
    margin-bottom:20px;
    font-weight: 700;
    font-size: 32px;
  }
  .sectionpara{
    text-align: center;
  }
  .Welwyn{
    color:#2dc997;
  }
  .copyright{
    text-align: center;
    justify-content: center;  
    padding: auto;
    margin-top:20px;
    height:auto;
    background-color: #2dc997;
  }
  .slider{
    height:120px;
    position:relative;
    display:grid;
    margin:auto;
    width:100%;
    place-items:center;
    overflow: hidden;
  
  }
  
  .slide-container{
    display:flex;
    animation:scroll 20s linear infinite;
    margin:auto;
    align-items:center;
  }
  @keyframes scroll {
    0%{
        transform: translatex(0);
    }
    100% {
        transform: translatex(calc(-250px*9));
       
    }
  }
  .slide-image img{
    width:140px;
     height:auto;
  transition:transform 1s;
    border-radius:5px;
  }
  .slide-image img:hover{	
    transform:translatez(10px);
    cursor:pointer;
  }
  .specal img:hover{
    transform:translatez(10px);
    cursor:pointer;
  }
  .slide-image{
    width:140px;
    display:flex;
    align-items:center;
    padding:15px;
    perspective:100px;
    margin:0px 25px;
  }
  #fats{
    padding: 20px 0 20px 0;
    background-color: #2dc997;
    margin-bottom:10px;
    width:100%;
    margin: auto;
    color: #111;
  }
  #fats h1{
    font-size:40px;
  }
  .textslide{
    font-size:60px;
    margin: auto;
    padding:10px;
    text-align: center;
    padding-top:10px;
    font-weight: bolder;
    color: #2dc997;
  }
  .specal{
    width:150px;
    margin:0px 20px;
  }
  .slidetext{
    color:#111;
    text-align:center;
  
  }
  form{
    margin:auto;
    width: auto;
  }
  
  form p{
  font-size:17px;
  color: #2dc997;
  font-weight:500;
  }
  .input{
    width:100%;
    margin-bottom:7px;
    margin-top:4px;
  height: 40px;
  border-radius:5px;
  border:1px solid #2dc997;
  }
  
  /* Booking form improvements */
  .modal-body .row {
    margin-bottom: 10px;
  }
  
  .modal-body .col-md-6 {
    padding: 0 5px;
  }
  
  .modal-body .input {
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .modal-body select.input {
    background-color: white;
  }
  
  .modal-body textarea.form-control {
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 14px;
    resize: vertical;
    border: 1px solid #2dc997;
    height: 80px;
  }
  
  .modal-body .submit {
    width: 100%;
    height: 45px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
  }
  
  /* Form sections styling - Safe Cab style */
  .form-section {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .form-section .section-title {
    color: #2dc997;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #2dc997;
    padding-bottom: 8px;
  }
  
  .form-section .section-title i {
    margin-right: 10px;
    font-size: 16px;
    color: #2dc997;
    background-color: #f8f9fa;
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
  }
  
  .form-section:last-child {
    margin-bottom: 15px;
  }
  
  /* Modal styling improvements */
  .modal-dialog {
    max-width: 600px !important;
    width: 100% !important;
  }
  
  .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100% !important;
  }
  .modal-body {
    display: flex;
    justify-content: center;
  }
  
  .modal-header {
    background-color: #2dc997;
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
  }
  
  .modal-title {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .btn-close {
    filter: invert(1);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .modal-body .col-md-6 {
      padding: 0;
    }
    
    .modal-body .row {
      margin-bottom: 5px;
    }
    
    .modal-body .input {
      margin-bottom: 8px;
    }
    
    .form-section {
      padding: 15px;
      margin-bottom: 15px;
    }
    
    .form-section .section-title {
      font-size: 16px;
    }
    
    .modal-dialog {
      max-width: 95%;
      margin: 10px auto;
    }
  }
  form.radio{
    size:20px;
  }
  form select{
    width:100%;
    margin-bottom:7px;
    margin-top:4px;
  height: 40px;
  border-radius:5px;
  border:1px solid #2dc997;
  }
  
  .submit{
    
    border: 1px solid #2dc997;
    background-color: #fff;
  font-weight:600;
  font-size: larger;
  border-radius:5px;
  color: #2dc997;
  }
  
  .submit:hover{
    background-color: #2dc997;
    color: #fff ;
    transition: 1s;
  }
  .cardpayment img{
    text-align: center;
    margin: auto;
  }
  .cardpayment{
    text-align: center;
    margin-top:5px  ;
  }
  
  
  .nav_z{
    position: fixed;
    top: 0;
    right: auto;
    left: auto;
    width: 100%;
    z-index:999;
    background-color: #fff;
  }
  
  #hero{
    padding-top: 250px;
    height: 90vh;
  }
  
  #hero .hero-container {
    padding: 190px 0px 40px;
    justify-content: end;
  }
  
  @media (max-width: 1024px){
      #hero {
        margin-top: 150px;
      }
  }
  .wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 16px;
    left: 10px;
    padding-top:6px;
    background-color: #25d366;
    color: #FFF;
    border-radius:50%;
    text-align: center;
    font-size: 30px;
    z-index:999;
  }
  .ph-float {
    position: fixed;
    padding-top:10px;
    width: 60px;
    height: 60px;
    bottom: 16px;
    right: 10px;
    background-color: #0A3463;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    z-index: 999;
  }

ul, ul li {
  text-align: left !important;
  margin-left: 0px;
}

.same-size-img {
  width: 100% !important;
  height: 100px !important;
  object-fit: cover !important;
  border-radius: 8px;
  display: block;
}

.typed-cursor {
  display: none !important;
}

@media (max-width:450px) {
  * {
    margin: 0%;
    padding: 0%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .header {
    animation: 1.5s ease-out 0s 1 slideInLeft;
    height: auto;
  }
}
  @keyframes slideInLeft {
    0% {
      transform: translateX(-100%);
    }
  
    100% {
      transform: translateX(0);
    }
  }
  
  nav {
    background-color: transparent;
    position: fixed;
    border-radius: 2px;
    top:0;
    left:0;
    width:100%;
    
  }
  .white{
    background-color: #fff;
  }
  .ourstore {
    text-align: center;
    color: #2dc997;
    font-weight: 700;
    background-color: #fff;
  }
  
  .button1 {
  
    color: black;
    border: 1px solid #2dc997;
    font-size: 19px;
  }
  
  .button1:hover {
    background-color: #2dc997;
    border: 1px solid black;
    color: white;
    border-radius: 10px 10px 10px 10px;
    transition: 0s;
  
  }
  
  .nav1 {
    color: black;
    font-size: 18px;
    text-align: center;
    margin-left: 15px;
    margin-right: 15px;
  
  }
  
  .navh {
    color: black;
    font-size: 18px;
    text-align: center;
    margin-left: 15px;
    margin-right: 15px;
    border-bottom: 3px solid #2dc997;
    border-radius: 0px;
  
  }
  
  .nav1:hover {
    border-bottom: 3px solid #2dc997;
    text-align: center;
  }
  .navbar-nav{
    margin:auto;
  }
  
  .navbar-toggler {
    border: 3px solid #2dc997;
    color: #2dc997;
  }
  
  .navbar-toggler:hover {
    border: 3px solid #2dc997;
  }
  
  #hero {
    width: 100%;
    height: 80vh;
    background: url(../images/hero.jpg) center;
    background-size: cover;
    position: relative;
    background-position: scroll;
  }
  
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }
  
  #hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  
  #hero h1 {
    margin: 30px 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    color: #2dc997;
  }
  
  @media (max-width: 768px) {
    #hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
  }
  
  #hero h4 {
    color: #eee;
    margin-bottom: 50px;
    font-size: 24px;
  }
  
  @media (max-width: 768px) {
    #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  }
  
  #hero .btn-get-started {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #2dc997;
    color: #2dc997;
  }
  
  #hero .btn-get-started:hover {
    background: #2dc997;
    color: white;
    border: 2px solid #2dc997;
  }
  
  section {
    overflow: hidden;
  }
  
  /* Sections Header
        --------------------------------*/
  .section-header .section-title {
    font-size: 32px;
    color: #111;
    text-align: center;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .section-header .section-description {
    text-align: center;
    padding-bottom: 40px;
    color: #999;
  }
  #abou {
    background: #fff;
    padding: 0px 0;
  }
  
  #abou .about-container .background {
    min-height: 300px;
    border-radius:5px;
    background-color: #fff;
  }
  
  #abou .about-container .content {
    background: #fff;
  }
  
  #abou .about-container .title {
    color: #2dc997;
    font-weight: 700;
    font-size: 32px;
  }
  
  @media (max-width: 768px) {
    #abou .about-container .title {
      padding-top: 15px;
      color: #2dc997;
    }
  }
  
  #abou .about-container p {
    line-height: 26px;
  }
  #abou .about-container p:last-child {
    margin-bottom: 0;
  }
  
  #abou .about-container .icon-box {
    background: #fff;
    background-size: cover;
    padding: 0 0 2  0px 0;
  }
  
  #abou .about-container .icon-box .icon {
    float: left;
    background-color: #2dc997;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #2dc997;
  }
  
  #abou .about-container .icon-box .icon i {
    color: white;
    font-size: 24px;
    line-height: 0;
  }
  
  #abou .about-container .icon-box .title {
    margin-left: 80px;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 18px;
    text-transform: uppercase;
  }
  
  #abou .about-container .icon-box .title a {
    color: #111;
  }
  
  #abou .about-container .icon-box .description {
    margin-left: 80px;
    line-height: 24px;
    font-size: 14px;
  }
  
  .aboutheading{
    color: #2dc997;
    text-decoration:none;
  }
  #facts{
    padding: 40px 0 40px 0;
    background-color: #2dc997;
    margin-bottom:30px;
    color: #111;
  }
  .section{
    color: black;
    text-align:center;
    justify-content: center;
  }
  .section-title{
    color: #fff;
  }
  .aiportimg img{
    float:right;
    width:100%;
  
  }
  
  @media screen and (width:700){
    .aiportimg img{
        width:100%;
        justify-content: center;
    }
  }
  .airporttext{
    text-align:justify;
  }
  .airporttext h2{
    color: black;
  }
  .map{
    width:100%;
    height:60vh ;
  }
  /* Call To Action Section
  --------------------------------*/
  #call-to-action {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/call-to-action-bg.jpg") fixed center center;
    background-size: cover;
    padding: 100px 0;
  }
  
  @media (max-width: 1024px) {
    #call-to-action {
      background-attachment: scroll;
    }
  }
  
  #call-to-action .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
  }
  
  #call-to-action .cta-text {
    color: #fff;
  }
  
  @media (min-width: 769px) {
    #call-to-action .cta-btn-container {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
  }
  
  #call-to-action .cta-btn {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
  }
  
  #call-to-action .cta-btn:hover {
    background: #2dc997;
    border: 2px solid #2dc997;
  }
  .city
  {
    text-align: center;
    margin-bottom:20px;
    font-weight: 700;
    font-size: 32px;
  }
  .sectionpara{
    text-align: justify;
  }
  .Welwyn{
    color:#2dc997;
  }
  .copyright{
    text-align: center;
    justify-content: center;  
    padding: 4px;
    margin-top:20px;
    height:auto;
    background-color: #2dc997;
  }
  .slider{
    height:120px;
    position:relative;
    display:grid;
    margin:auto;
    width:100%;
    
    overflow: hidden;
  
  }
  
  .slide-container{
    display:flex;
    animation:scroll 20s linear infinite;
    margin:auto;
    align-items:center;
  }
  @keyframes scroll {
    0%{
        transform: translatex(0);
    }
    100% {
        transform: translatex(calc(-250px*9));
       
    }
  }
  .slide-image img{
    width:140px;
     height:auto;
  transition:transform 1s;
    border-radius:5px;
  }
  .slide-image img:hover{	
    transform:translatez(10px);
    cursor:pointer;
  }
  .specal img:hover{
    transform:translatez(10px);
    cursor:pointer;
  }
  .slide-image{
    width:140px;
    display:flex;
    align-items:center;

    perspective:100px;
    margin:0 25px;
  }
  #fats{
    padding: 20px 0 20px 0;
    background-color: #2dc997;
    margin-bottom:10px;
    
    margin: auto;
    color: #111;
  }
  #fats h1{
    font-size:40px;
  }
  .textslide{
    font-size:60px;
    margin: auto;
    padding:10px;
    text-align: center;
    padding-top:10px;
    font-weight: bolder;
    color: #2dc997;
  }
  .specal{
    width:150px;
    margin:0px 20px;
  }
  .slidetext{
    color:#111;
    text-align:center;
  
  }
  form{
    margin:auto;
    width: auto;
  }
  
  form p{
  font-size:17px;
  color: #2dc997;
  font-weight:500;
  }
  .input{
    width:100%;
    margin-bottom:7px;
    margin-top:4px;
  height: 40px;
  border-radius:5px;
  border:1px solid #2dc997;
  }
  
  /* Booking form improvements */
  .modal-body .row {
    margin-bottom: 10px;
  }
  
  .modal-body .col-md-6 {
    padding: 0 5px;
  }
  
  .modal-body .input {
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .modal-body select.input {
    background-color: white;
  }
  
  .modal-body textarea.form-control {
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 14px;
    resize: vertical;
    border: 1px solid #2dc997;
    height: 80px;
  }
  
  .modal-body .submit {
    width: 100%;
    height: 45px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
  }
  
  /* Form sections styling - Safe Cab style */
  .form-section {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .form-section .section-title {
    color: #2dc997;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #2dc997;
    padding-bottom: 8px;
  }
  
  .form-section .section-title i {
    margin-right: 10px;
    font-size: 16px;
    color: #2dc997;
    background-color: #f8f9fa;
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
  }
  
  .form-section:last-child {
    margin-bottom: 15px;
  }
  
  /* Modal styling improvements */
  .modal-dialog {
    max-width: 400px;
  }
  
  .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }
  
  .modal-header {
    background-color: #2dc997;
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
  }
  
  .modal-title {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .btn-close {
    filter: invert(1);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .modal-body .col-md-6 {
      padding: 0;
    }
    
    .modal-body .row {
      margin-bottom: 5px;
    }
    
    .modal-body .input {
      margin-bottom: 8px;
    }
    
    .form-section {
      padding: 15px;
      margin-bottom: 15px;
    }
    
    .form-section .section-title {
      font-size: 16px;
    }
    
    .modal-dialog {
      max-width: 95%;
      margin: 10px auto;
    }
  }
  form.radio{
    size:20px;
  }
  form select{
    width:100%;
    margin-bottom:7px;
    margin-top:4px;
  height: 40px;
  border-radius:5px;
  border:1px solid #2dc997;
  }
  
  .submit{
    
    border: 1px solid #2dc997;
    background-color: #fff;
  font-weight:600;
  font-size: larger;
  border-radius:5px;
  color: #2dc997;
  }
  
  .submit:hover{
    background-color: #2dc997;
    color: #fff ;
    transition: 1s;
  }
  .cardpayment img{
    text-align: center;
    margin: auto;
  }
  .cardpayment{
    text-align: center;
    margin-top:5px  ;
  }
  
  
  .nav_z{
    position: fixed;
    top: 0;
    right: auto;
    left: auto;
    width: 100%;
    z-index:999;
    background-color: #fff;
  }
  
  #hero{
    padding-top: 250px;
    height: 90vh;
  }
  
  #hero .hero-container {
    padding: 190px 0px 40px;
    justify-content: end;
  }
  
  @media (max-width: 1024px){
      #hero {
        margin-top: 150px;
      }
  }
  .wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 16px;
    left: 10px;
    padding-top:6px;
    background-color: #25d366;
    color: #FFF;
    border-radius:50%;
    text-align: center;
    font-size: 30px;
    z-index:999;
  }
  .ph-float {
    position: fixed;
    padding-top:10px;
    width: 60px;
    height: 60px;
    bottom: 16px;
    right: 10px;
    background-color: #0A3463;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    z-index: 999;
  }

.payment-methods {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
  overflow-x: auto;
}
.payment-methods img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.payment-section {
  text-align: center;
  margin: 40px 0 30px 0;
  background: #fff;
}

.payment-section h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.payment-marquee {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 20px 0;
}

.payment-track {
  display: flex;
  gap: 30px;
  align-items: center;
  animation: payment-marquee 15s linear infinite;
  width: max-content;
}

.payment-track img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  max-width: 80px; 
}

@keyframes payment-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
























/* Review Section Styles */
.reviews-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reviews-section .section-title {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.reviews-section .section-subtitle {
  color: #666;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.review-form-container {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.review-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.review-form .form-control {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 8px 12px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.review-form .form-control:focus {
  border-color: #2dc997;
  box-shadow: 0 0 0 0.2rem rgba(45, 201, 151, 0.25);
}

/* Star Rating Styles */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 3px;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 1.5rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.3s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #ffd700;
}

.star-rating input:checked ~ label {
  color: #ffd700;
}

/* Review Submit Button */
.review-submit-btn {
  background: linear-gradient(135deg, #2dc997 0%, #20c997 100%);
  border: none;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(45, 201, 151, 0.3);
}

/* Reviews Display */
.reviews-display {
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.reviewer-name {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.review-date {
  color: #888;
  font-size: 0.8rem;
}

.review-stars {
  color: #ffd700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.review-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.review-text {
  color: #666;
  line-height: 1.4;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .review-form-container {
    padding: 20px;
    margin: 15px;
  }
  
  .reviews-section .section-title {
    font-size: 1.5rem;
  }
  
  .star-rating label {
    font-size: 1.2rem;
  }
  
  .review-card {
    padding: 15px;
  }
}














