html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.navbar {
  padding-top: -3rem;
  padding-bottom: -3rem;
  
}

.navbar .container-fluid {
 margin-left: 5px;
 margin-right: 5px;
}


.navbar-brand {
  width: 120px;
  height: auto;
  padding: 0;
  margin-right: 0; 
}

.navbar-nav {
  display: flex;
  gap: 4.5rem; 
  align-items: center;
  justify-content: center; 
  width: 100%;
}

.nav-item .nav-link {
  font-size: 22px;
  font-weight: 700;
}

.nav-link:hover {
  border-bottom: 4px solid #cfb003;
}

header {
  background: url("resized_background_image.jpeg") center/cover no-repeat;
  height: 78vh;
  position: relative;
  color: white; 
  z-index: 0;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

header * {
  position: relative;
  z-index: 2; 
}


  form{
    background-color: rgba(128, 128, 128,0.5);
    padding: 15px;
    margin-top: 90px;
  }
  
  .btn-quote {
    display: inline-block;
    background-color: #cfb003;
    color: #0a0a0a;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .btn-quote:hover {
    background-color: #a58d03; 
    transform: scale(1.05); 
  }

  .btn-quote:active {
    transform: scale(0.98); 
  }

  .subtitle{
   
     font-weight: 600;
     font-size: 34px;
     color: #ffffff;
  }

  .companyName{
    color: #a58d03;
    font-weight: 800;
  }

  h1{
    padding-top: 120px;
  }

  .tagline{
    font-size: 22px;
    font-style: italic;
  }

  .bookParagraph{
    color: white;
    font-weight: 400;
    font-size: 18px;
  }

  .headerPhone {
    display: inline-block;
    background-color: #cfb003;
    color: #0a0a0a;
    padding: 12px 20px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-right: 26px;
  }

 .headerPhone:hover {
    color: #cfb003;
    border: 1px solid #a58d03;
    transform: scale(1.05); 
   background-color: transparent;
  }

  .headerPhone:active {
    transform: scale(0.98); 
  }

  .headerEmail:hover {
    background-color: #a58d03; 
    color: #0a0a0a;
    transform: scale(1.05); 
    border: none;
  }

  .headerEmail:active {
    transform: scale(0.98); 
  }

  .headerEmail{
    display: inline-block;
    border: 1px solid #cfb003;
    color: #a58d03;
    padding: 12px 20px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-right: 26px;
  }

  .firstSection{
padding: 20px;
  }
  .firstSection h2{
    font-size: 37px;
    font-weight: 600;
    text-align: center;
    margin-top: 25px;
  }

  .shuttleHeading{
    letter-spacing: 5px;
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    color: #a58d03;
 }

 .aboutParagraph{
  margin: 30px;
  text-align: center;
  font-size: 20px;
 }

 .routes{
  text-align: center;
  margin-bottom: 30px;
 }

 .routesB{
  font-weight: 700;
 }

 .secondSection{
  background: linear-gradient(135deg, #f5f5f5, #808080, #303030);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
 
 }

 .servciesHeading{
  margin: 30px;
  padding-top: 30px;
  text-align: center;
  font-weight: 800;
  font-size: 38px;
 }

 .whyUsHeading{
  margin-top: 10px;
  font-size: 42px;
  font-weight: 800;
  text-align: start;
 }

 .card{
  height: 480px;
 }

.image-stack img {
  width: 330px;
  height: auto;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-stack img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

h6 {
  font-weight: 700;
  font-size: 22px;
  margin-top: 22px;
}

.icon-text p {
  margin-bottom: 0px;
  font-size: 20px;
  color: #555;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
 padding-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-item i {
  font-size: 24px;
  color: #a99906;
  flex-shrink: 0;
  margin-top: 30px;
}

.feature-item h5 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.feature-item p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #555;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 1s ease-out forwards;
  opacity: 0;
}

.lastSection{
  margin-top: 35px;
  background: linear-gradient(135deg, #f5f5f5, #c0bebe, #d9d7d7);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.lastSectionHeading{
  padding: 25px;
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
letter-spacing: 3px;
}

.lastSection h5, .fleet-list li{
margin-left: 45px;
}

.fleetContainer{
display: flex;
justify-content: center;
}

.fleetParagraph{
  margin: 20px;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  color: #212121;
}

.figure-caption{
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}

.figure-caption span{
  color: #0a0a0a;
}

h5{
  font-size: 28px;
  padding-top: 20px;
}

.fleet-list li{
 padding: 10px;
 font-size: 20px;
 
}

.contactHeading{
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  padding-top: 25px;
}

.contactForm{
  margin-top: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f5f5f5, #808080, #4f4d4d);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.form-btn{
   background-color: #cfb003;
   border: none;
    color: #0a0a0a;
    padding: 12px 20px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-right: 26px;
    margin-bottom: 20px;
}

.form-btn:hover{
  background-color: #a58d03;
}

.sendMsgWrapper{
  background-color: #f6f4f1;
  justify-content: center; 
  align-items: center;
  gap: 60px; 
  flex-wrap: wrap; 
  text-align: center;
  margin: 40px 0; 
}

.sendMsgWrapper .email,
.sendMsgWrapper .call {
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 10px;
}

.email i, .call i{
  font-size: 35px;
  color: #0a0a0a;
}


footer {
  margin-top: 50px;
  background: black;
  padding: 50px;
}
footer h4 {
  color: #a99906;
  font-family: var(--header-font);
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-logo{
  width: 200px;
  margin-top: -20px;
}

footer a {
  text-decoration: none;
  color: rgb(250, 245, 245);
  font-family: var(--section-font);
  opacity: 0.7;
  
}
footer li {
  list-style: none;
  margin-left: -30px;
}
footer i {
  background-color: rgb(250, 245, 245);
  color: black;
  padding: 8px;
  margin: 2px;
  font-size: 19px;
  border-radius: 50%;
  transition: all 150ms ease-in-out;
  text-align: center;
}

footer ul li a:hover {
  color: rgb(250, 245, 245);
  padding-left: 8px;
}

footer i:hover {
  background-color: #cfb003;
  color: var(--text-color);
  cursor: pointer;
}

.tiktok-icon:hover{
  background-color: #cfb003;
  cursor: pointer;
}

.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 10px;
  padding: 8px 15px;
  font-size: 32px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  text-decoration: none;
}


@media (max-width: 768px) {
  .sendMsgWrapper {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  header{
    height: 100vh;
    position: relative;
  }

  h1{
    padding: 5px;
  }

  .lastSectionParagraph{
    margin-top: 5px;
    font-size: 18px;
  }

  .nav-link:hover{
    border-bottom: none;
  }
 
  .navbar-brand{
    width: 70px;
  }

  .firstForm{
    margin-top:5px;
  }

  .aboutParagraph{
    font-size: 14px;
    text-align: center;
  }

}

@media (max-width:999px) {
  .lastSectionParagraph{
    margin-top: -25px;
  }

  .navbar-nav{
    display: flex;
    gap: 1rem;
  }
  .card{
    height:auto
  }

}