
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
}

/* header  */
.navbar-light .navbar-nav .nav-link {
  color: #000;
}

/* header  */

/* hero  */
/* .hero {
  position: relative;
  padding: 100px 0;
  background: #ff7043;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
} */

/* .hero h1,
.hero p {
  color: #fff;
  text-transform: capitalize;
}

.hero h1 {
  font-size: 40px;
}

.hero p {
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
} */

@media only screen and (max-width: 992px) {
  /* .hero h1 {
    font-size: 35px;
  }

  .hero p {
    font-size: 18px;
  } */

  .content p {
    font-size: 16px;
  }
}

/* @media only screen and (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 18px;
  }
} */

/* @media only screen and (max-width: 576px) {
  .hero {
    padding: 50px 0 !important;
    background: #ff7043 !important;
  }

  .hero h1 {
    font-size: 25px;
  }

  .hero p {
    display: none;
  }
} */

/* hero  */

/* content  */
.content {
  padding: 50px 0;
}

.content h2 {
  font-size: 25px;
}

.content p {
  color: #000;
  font-size: 16px;
}

.content ul li {
  margin-left: 25px;
}

@media only screen and (max-width: 992px) {
  .content h2 {
    font-size: 30px;
  }

  .content p {
    color: #000;
    font-size: 18px;
  }
}

@media only screen and (max-width: 768px) {
  .content h2 {
    font-size: 25px;
  }

  .content p {
    color: #000;
    font-size: 16px;
  }
}

@media only screen and (max-width: 576px) {
  .content {
    padding: 30px 0;
  }

  .content h2 {
    font-size: 18px;
  }

  .content p {
    color: #000;
    font-size: 14px;
  }

  .content ul li {
    font-size: 14px;
    margin-left: 10px;
  }
}

/* content  */



/* ===== Fleet Section ===== */

.fleet-section{
  padding: 60px 0;
  background: #fff;
}

.fleet-header{
  text-align: center;
  margin-bottom: 40px;
}

.fleet-header h2{
  font-size: 36px;
}

.fleet-header h2 span{
  color: #ff7043;
}

.fleet-header p{
  max-width: 600px;
  margin: 10px auto 0;
  color: #666;
}

/* Grid */
.fleet-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.fleet-card{
  background: #262626;
  border-radius: 6px;
  overflow: hidden;
  transition: 0.3s;
}

.fleet-card:hover{
  transform: translateY(-6px);
}

/* Car image */
.fleet-car{
  width: 100%;
  display: block;
  padding: 10px;
}

/* Title */
.fleet-card h3{
  padding: 15px;
  font-size: 22px;
  color: #ff7043;
}

/* Info bar */
.fleet-info{
  background: #1e2f5f;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 14px 0;
}

/* icon + number */
.fleet-info-item{
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
}

.fleet-info-item img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 991px){
  .fleet-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px){
  .fleet-grid{
    grid-template-columns: 1fr;
  }

  .fleet-header h2{
    font-size: 28px;
  }
}

/* ===== Fleet Section ===== */

/* services  */
.services-sec {
  padding: 50px 0;
}

.services-sec h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #262626;
  background-color: #FF7043;
  padding: 10px;
  margin-bottom: 0px !important;
}

.services-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hover-box {
  padding: 20px;
}

.services-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    text-align: center;
}

.services-info {
  position: absolute;
  top: 100%;
  height: 100%;
  left: 0;
  right: 0;
  padding: 30px;
  color: white;
  background-color: rgba(24, 46, 110, 0.65);
  transition: 1s ease;
  opacity: 0;
}

.pb-ic {
  filter: brightness(0) invert(1);
}

.hover-box:hover .services-info {
  top: 35px;
  opacity: 1;
  height: 100%;
}

.services-car img {
  width: 100%;
  height: auto;
  /* padding: 50px 0; */
}

.services-info .luggage img {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  margin: auto;
}

.services-info a{
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none !important;
}

@media only screen and (max-width: 576px) {
  .services-sec {
    padding: 30px 0;
  }

  .services-sec h3 {
    font-size: 30px;
  }

  .services-info .luggage img {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: auto;
    width: 100px;
}


}

/* services  */

/* app  */
.app {
  padding: 50px 0;
}

.app h3 {
  font-size: 40px;
  color: #ff7043;
}

.app_info {
  display: grid;
  align-items: center;
  align-content: center;
}

@media only screen and (max-width: 576px) {
  .app {
    padding: 30px 0;
  }

  .app h3 {
    font-size: 30px;
  }
}

/* app  */

/* airport  */

/* .airport_main{
  text-align: center;
  padding: 30px;
  background-image: url("../../images/bg-airport.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(29, 34, 49, 0.8);
} */

.airport_main{
  position: relative;
  text-align: center;
  padding: 30px;
  background-image: url("../../images/bg-airport.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  color: #fff;
  padding: 100px;
}

/* overlay color */
.airport_main::before{
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(29, 34, 49, 0.8); 
  z-index: 1;
}

/* content ko upar lane ke liye */
.airport_main *{
  position: relative;
  z-index: 2;
}

.airport_main h2 span{
  color: #ff7043;
}

.airport_main p{
  width: 70%;
  margin: auto;
}


.airports-main-div{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
  margin-top: 20px;
  flex-wrap: wrap;
}

.airport-main-cards{
  padding: 10px;
}

.airport-main-cards img{
  width: 100px;
}

.airports-main-div h2{
  font-size: 18px;
  margin-top: 10px;
}

.airports-main-div a{
  color: #000 !important;
}

@media only screen and (max-width: 576px) {
.airport_main p{
  width: 100%;
  /* margin: auto; */
}

.airport_main{
  text-align: center;
  padding: 10px;
  background-color: #f5f5f5;
  
}

.airport-main-cards img{
  width: 100%;
  padding: 20px;
}
}

/* airport  */

/* station  */


/* station  */

/* button  */
.btn {
  color: #fff;
  padding: 8px 12px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 5px;
}

.btn-danger {
  color: #fff;
  background-color: #ff7043;
  border-color: #ff7043;
  border: none;
}

.btn-danger:hover {
  background-color: #000 !important;
  color: #fff !important;
  border: none !important;
}

/* button  */


/* footer  */
.footer {
  background: rgba(56, 55, 55, 0.95);
  padding: 30px 0;
}

.footer .copyright-row p a {
  color: #ff7043;
  margin-right: 5px;
}

.footer p {
  margin-bottom: 0;
}

.footer h2{
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.3px;
  text-transform: uppercase;  
}

.footer ul li a{
  color: #fff !important;
}

.footer li{
  color: #fff !important;
}

.footer ul{
list-style: none !important;
}

.footer a, .footer p{
  color: #fff;
}

@media only screen and (max-width: 576px) {
  .footer {
    font-size: 15px;
    background: #f5f5f5;
  }
}

/* footer  */

/* faq */
.faq-section {
  max-width: 700px;
}

.faq-title {

  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
  border-radius: 8px;

}

.faq-item {

  background-color: white;
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  color: #000;
  padding: 10px;
  text-align: left;
  border: none;
  background-color: white;

  border-bottom: 1px solid rgb(191, 191, 191);
  font-size: 1rem;
  cursor: pointer;
}


.faq-answer {
  display: none;
  padding: 15px 20px;

  color: #333;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  display: block;
}
.footer_a{
        color: #000 !important;
        text-decoration: underline;
    }
    .footer_a:hover{
        color: #ff7043 !important;
        text-decoration: underline;
    }
    .app-img{
      width: 100%;
    }


    .contact-item {
    display:flex; 
    flex-wrap: nowrap;
    gap:10px;
    flex-direction:column;
    padding: 15px;
    border-radius: 6px;
    background-color: #ff7043;
    color: white;
    margin:10px 10px ;
    justify-content: center;
            flex: 0 0 31%

  }



  .contact-item:hover a {
    color: white;
    text-decoration: none;
  }

  .contact-item a {
    color: inherit;
    transition: color 0.3s ease;
  }
  @media only screen and (max-width: 768px) {

  .contact-item {
    display:block; 
    flex: 0 0 95%
  }
  
  }
@media (max-width: 600px) {
  .faq-title {
    font-size: 1.5rem;
  }

  .faq-question,
  .faq-answer {
    font-size: 0.95rem;
  }
}

/* faq */


/* contact */

  .contact-item {
    display:flex; 
    flex-wrap: nowrap;
    gap:10px;
    flex-direction:column;
    padding: 15px;
    border-radius: 6px;
    background-color: #ff7043;
    color: white ;
    margin:10px 10px ;
    justify-content: center;
    flex: 0 0 31%

  }
  .contact-item  a, .contact-span{
    color: #fff !important;
  }

  .contact-item:hover a {
    color: white;
    text-decoration: none;
  }

  .contact-item a {
    color: inherit;
    transition: color 0.3s ease;
  }

  .contact h2{
    font-weight: 800;
    color: #ff7043;
    letter-spacing: 3px;
  }
  @media only screen and (max-width: 768px) {

  .contact-item {
    display:block; 
    flex: 0 0 95%
  }
  
  }

/* app  */

.app_main{
  position: relative;
  text-align: center;
  padding: 30px;
  background-image: url("../../images/bg-app.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  color: #fff;
  padding: 100px;
}

/* overlay color */
.app_main::before{
  content: "";
  position: absolute;
  inset: 0;
  /* background-color: rgba(29, 34, 49, 0.8);  */
      background-color: #000000bf;
  z-index: 1;
}

/* content ko upar lane ke liye */
.app_main *{
  position: relative;
  z-index: 2;
}

.app_main h2 span{
  color: #ff7043;
}

.app_main p{
  width: 70%;
  margin: auto;
}



@media only screen and (max-width: 576px) {
.app_main p{
  width: 100%;
  /* margin: auto; */
}

.app_main{
  text-align: center;
  padding: 10px;
  background-color: #f5f5f5;
  
}


}

/* app  */