/* Navbar Section Start */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth !important;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    url("../../images/bg-areas.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}

/* Navbar Container */
.navv-header {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: fixed !important;
  width: 100%;
  z-index: 1111;
}

.navv-header a {
  text-decoration: none;
}

.navv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* Logo Section - Exactly like image */
.navv-logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navv-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navv-logo-img {
  height: 50px;
  width: 50px;
  background: #333;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
}

.navv-logo-text {
  color: white;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navv-logo-main {
  font-size: 22px;
  font-weight: bold;
  color: #ffe400;
  letter-spacing: 0.5px;
}

.navv-logo-main:hover {
  color: #fff;
}

.navv-logo-sub {
  font-size: 16px;
  color: #ccc;
  font-weight: normal;
}

/* Navigation Menu */
.navv-menu {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.navv-item {
  position: relative;
}

.navv-link {
  color: white;
  text-decoration: none;
  padding: 25px 15px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navv-link:hover {
  background: #333;
  color: #ffcc00;
}

.navv-link.active {
  color: #ffcc00;
  font-weight: bold;
}

.navv-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: #ffcc00;
}

/* Desktop Divider */
.navv-divider {
  color: #666;
  display: flex;
  align-items: center;
  font-size: 18px;
  padding: 0 2px;
}

/* Call Section - Desktop */
.navv-call-desktop {
  display: flex;
  align-items: center;
  background: #ffcc00;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navv-call-desktop:hover {
  background: #ff9900;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 204, 0, 0.3);
}

.navv-call-text {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
}

/* Mobile Menu Button */
.navv-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.navv-mobile-btn:hover {
  background: #333;
}

/* Mobile Menu */
.navv-mobile-menu {
  display: none;
  background: #222;
  padding: 0;
  border-top: 1px solid #333;
}

.navv-mobile-list {
  list-style: none;
}

.navv-mobile-item {
  border-bottom: 1px solid #333;
}

.navv-mobile-item:last-child {
  border-bottom: none;
}

.navv-mobile-link {
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  font-size: 16px;
  transition: all 0.3s ease;
}

.navv-mobile-link:hover {
  background: #333;
  color: #ffcc00;
  padding-left: 25px;
}

.navv-mobile-link.active {
  color: #ffcc00;
  font-weight: bold;
  background: #2a2a2a;
}

/* Mobile Call Button */
.navv-call-mobile {
  display: none;
  margin-left: auto;
  margin-right: 15px;
}

.navv-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #ffcc00;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navv-call-icon:hover {
  background: #ff9900;
  transform: scale(1.1);
}

.navv-phone-icon {
  color: #333;
  font-size: 20px;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navv-link {
    padding: 25px 12px;
    font-size: 13px;
  }

  .navv-call-text {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .navv-call-desktop {
    display: none;
  }
}

@media (max-width: 768px) {
  .navv-menu {
    display: none;
  }

  .navv-call-desktop {
    display: none;
  }

  .navv-call-mobile {
    display: block;
  }

  .navv-mobile-btn {
    display: block;
  }

  .navv-mobile-menu.active {
    display: block;
  }

  .navv-container {
    height: 60px;
  }

  .navv-logo-main {
    font-size: 20px;
  }

  .navv-logo-sub {
    font-size: 14px;
  }

  .navv-logo-img {
    height: 40px;
    width: 40px;
  }
}

@media (max-width: 480px) {
  .navv-container {
    padding: 0 10px;
  }

  .navv-logo-main {
    font-size: 18px;
  }

  .navv-logo-sub {
    font-size: 12px;
  }

  .navv-logo-img {
    height: 35px;
    width: 35px;
  }

  .navv-call-icon {
    width: 40px;
    height: 40px;
  }

  .navv-phone-icon {
    font-size: 18px;
  }
}

/* Demo Content */
.demo-content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.demo-content h1 {
  color: #333;
  margin-bottom: 20px;
  font-size: 32px;
}

.demo-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 16px;
}

/* Navbar Section End */

/* Hero Section Start  */
.main-hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("images/bg-hero.jpg") !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed !important;
  padding-bottom: 40px;
}

/* Overlay */
.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-main-sec {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  /* padding: 20px; */
  padding-top: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-div-01 {
  flex: 1;
  max-width: 520px;
}

.hero-div-01 h1 {
  color: #fff;
  font-size: 42px;
  line-height: 1.3;
  word-break: break-word;
}

@media (max-width: 768px) {
  .hero-main-sec {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .hero-div-01 {
    max-width: 100%;
  }

  .hero-div-01 h1 {
    font-size: 24px;
    color: #5ce1c8 !important;
    margin-top: 60px;
  }

  .hero-main-sec {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 6px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px !important;
  }
}

/* Hero Section End */

.modal-header button {
  background-color: #ffe400 !important;
}

/* Para Section Start */

.para-main-div {
  color: #ccc;
}

#airports, #stations{
   background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}

.para-all-main {
  width: 90%;
  margin: auto;
}

/* Para Section End */

/* Underline Code Start */

.para-h2-first-div {
  padding: 40px 0;
  text-align: center;
}

.para-h2-first-div h2 {
  color: #d9d9d9;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Line + dot design */
.line-with-dot {
  position: relative;
  width: 200px;
  height: 2px;
  background: #f1c40f;
  margin: 0 auto;
}

.line-with-dot span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #f1c40f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Underline Code End  */

/* Extra Code Start */

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
  display: none;
}

.our-app-sec p {
  color: #ccc;
  margin-top: 20px;
}

.our-app-sec a {
  /* border: 2px solid #ffe400; */
  padding: 10px;
  font-size: 20px;
  border-radius: 10px;
  color: #ccc;
  font-weight: 700;
  text-decoration: none;
}

.our-app-sec a:hover {
  color: #ffe400;
}

.typing-link{
  font-size: 26px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
}

/* hide letters initially */
.typing-link span{
  opacity: 0;
}

/* active typing */
.typing-link.active span{
  animation: showLetter 0.15s forwards;
}

/* cursor */
.cursor{
  margin-left: 4px;
  animation: blink 0.8s infinite;
  opacity: 1 !important;
}

/* animations */
@keyframes showLetter{
  to{ opacity: 1; }
}

@keyframes blink{
  50%{ opacity: 0; }
}

/* fast typing speed */
.typing-link.active span:nth-child(1){ animation-delay: 0s; }
.typing-link.active span:nth-child(2){ animation-delay: .3s; }
.typing-link.active span:nth-child(3){ animation-delay: .6s; }
.typing-link.active span:nth-child(4){ animation-delay: .9s; }
.typing-link.active span:nth-child(5){ animation-delay: 1.2s; }
.typing-link.active span:nth-child(6){ animation-delay: 1.5s; }
.typing-link.active span:nth-child(7){ animation-delay: 1.8s; }
.typing-link.active span:nth-child(8){ animation-delay: 2.1s; }
.typing-link.active span:nth-child(9){ animation-delay: 2.4s; }

/* Extra Code End */

/* Airports Code Start */
.airport-main {
  display: flex;
  justify-content: center;
  margin: auto;
  text-align: center;
  width: 70%;
  padding-bottom: 50px;
}

.airport-main-div-cards img{
  width: 60%;
}

.airport-main-div-cards h3 {
  font-size: 14px;
}

.airport-main-div-cards h3 a{
  color: #ccc;
  text-decoration: none !important;
}

.airport-main-div-cards h3 a:hover{
  color: #ffe400;
}

@media screen and (max-width: 1000px) {
  .airport-main {
    display: flex;
    justify-content: center;
    margin: auto;
    text-align: center;
    flex-wrap: wrap; 
    width: 100%;
  }

  .airport-main-div-cards{
    /* width: 50%; */
    width: 33.3%;
  }

  .airport-heading h2{
    font-size: 30px !important;
  }
}

@media screen and (max-width: 500px) {
  .airport-main {
    display: flex;
    justify-content: center;
    margin: auto;
    text-align: center;
    flex-wrap: wrap; 
    width: 100%;
  }

  .airport-main-div-cards{
    /* width: 50%; */
    width: 100%;
  }

  .airport-heading h2{
    font-size: 25px !important;
  }
}

/* Airports Code End */





/* Stationss Code Start */
.stations-main {
  display: flex;
  justify-content: center;
  margin: auto;
  text-align: center;
  width: 90%;
  padding-bottom: 50px;
}

.stations-main-div-cards{
  width: 90%;
}

.stations-main-div-cards img{
  width: 80%;
}

.stations-main-div-cards h3 {
  font-size: 14px;
}

.stations-main-div-cards h3 a{
  color: #ccc;
  text-decoration: none !important;
}

.stations-main-div-cards h3 a:hover{
  color: #ffe400;
}

@media screen and (max-width: 1024px) {
  .stations-main {
    display: flex;
    justify-content: center;
    margin: auto;
    text-align: center;
    flex-wrap: wrap; 
    width: 100%;
  }

  .stations-main-div-cards{
    /* width: 50%; */
    width: 33.3%;
  }

  .stations-heading h2{
    font-size: 30px !important;
  }
}

@media screen and (max-width: 500px) {
  .stations-main {
    display: flex;
    justify-content: center;
    margin: auto;
    text-align: center;
    flex-wrap: wrap; 
    width: 100%;
  }

  .stations-main-div-cards{
    /* width: 50%; */
    width: 100%;
  }

  .stations-heading h2{
    font-size: 25px !important;
  }
}

/* Stationss Code End */


/* Our Service Section Start  */

.our-service--{
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  padding-bottom: 30px;
}

.our-service-main {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  width: 90%;
  margin: auto;
  flex-wrap: wrap;
}

.services-main-div {
  flex: 1 1 300px;
  max-width: 32%;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
}

.heading-services {
  min-height: 70px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.heading-services h3 {
  font-size: 18px;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}

.services-main-div img {
  width: 100%;
  height: 220px;            
  object-fit: contain;        
  object-position: center;    
  display: block;         
}

.our-service-heading h2{
  color: #fff !important;
}

@media (max-width: 992px) {
  .services-main-div img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .our-service-main {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin: auto;
    flex-wrap: wrap;
  }

}

@media (max-width: 576px) {
  .services-main-div {
    max-width: 100%;
  }

  .services-main-div img {
    height: 200px;
  }
}


/* Service Section End  */

/* Our-Fleet Code Start */
#our-fleets{
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}

.our-fleet-main {
  display: flex;
  justify-content: center;
  margin: auto;
  text-align: start;
  width: 80%;
  padding-bottom: 50px;
  gap: 20px;
}

.our-fleet-main-div-cards{
  background-color: rgba(255, 228, 0, .8);
  padding: 10px;
  width: 100%;
}

.our-fleet-main-div-cards:hover{
  background-color: #fff;
}

.our-fleet-main-div-cards img{
  width: 100%;
}

.our-fleet-main-div-cards h3 {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 700;
}

.our-fleet-main-div-cards h3 {
  color: #000;
  text-decoration: none !important;
}

@media screen and (max-width: 1000px) {
  .our-fleet-main {
    display: flex;
    justify-content: center;
    margin: auto;
    text-align: center;
    flex-wrap: wrap; 
    width: 100%;
  }

  .our-fleet-main-div-cards{
    /* width: 50%; */
    width: 33.3%;
  }

  .our-fleet-heading h2{
    font-size: 30px !important;
  }
}

@media screen and (max-width: 500px) {
  .our-fleet-main {
    display: flex;
    justify-content: center;
    margin: auto;
    text-align: center;
    flex-wrap: wrap; 
    width: 100%;
  }

  .our-fleet-main-div-cards{
    /* width: 50%; */
    width: 100%;
  }

  .our-fleet-heading h2{
    font-size: 25px !important;
  }
}

/* Our-Fleet Code End */

/* Contact Section Start  */

/* ================= CONTACT HERO ================= */

.hero-main-about-contact {
  position: relative;
  background-image: url("images/bg-harrow.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-about-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-color: rgba(4, 219, 192, 0.55); */
  background-color: #ffe400b8;
}

.hero-div-about-contact {
  position: relative;
  z-index: 1;
}

.hero-div-about-contact h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 10px;
  text-transform: uppercase;
}

/* ================= CONTACT SECTION ================= */

.con-contact-section {
  background-color: #f6f6f6;
  padding: 60px 20px;
  font-family: "Titillium Web", sans-serif;
}

.con-contact-wrapper {
  max-width: 1200px;
  margin: auto;
}

.con-contact-heading {
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.con-contact-heading p {
  font-size: 20px;
  font-weight: 300;
  color: #ffe400;
  margin-bottom: 6px;
}

.con-contact-heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
}

/* ================= CONTENT ================= */

.con-contact-content {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.con-contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ================= INFO BOX ================= */

.con-info-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 1px dashed #999;
}

.con-info-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffe400;
  font-weight: 600;
}

.con-info-box a {
  display: inline-block;
  /* font-size: 18px; */
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.con-info-box a:hover {
  color: #ffe400;
}

.con-info-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* ================= MAP ================= */

.con-contact-map {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.con-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .con-contact-content {
    flex-direction: column;
  }

  .con-contact-heading h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .hero-div-about-contact h1 {
    font-size: 26px;
    letter-spacing: 4px;
    text-align: center;
  }
}


/* Contact Section End   */

/* Last Section Start  */

.last-section{
  padding: 20px 40px;
  background-color: #ffe400;
  text-align: center;
  position: relative;
}

/* Left & Right vertical lines */
.last-section::before,
.last-section::after{
  content: "";
  position: absolute;
  top: 15%;
  height: 70%;
  width: 4px;
  background-color: #000;
}

.last-section::before{
  left: 20px;
}

.last-section::after{
  right: 20px;
}

.last-section p{
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 500;
}


.socialize-sec-home{
  min-height: 350px;
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url("/mnt/data/871b2d55-9316-4548-bb05-cad6b318cb8b.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.socialize-sec-all{
  min-height: 350px;
  /* background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url("/mnt/data/871b2d55-9316-4548-bb05-cad6b318cb8b.png") center/cover no-repeat; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: #ffffff1c;
}

.socialize-content h2{
  color: #fff;
  font-size: 36px;
  margin-bottom: 15px;
}

.line-dot{
  width: 140px;
  height: 3px;
  background: #f1c40f;
  margin: 15px auto 35px;
  position: relative;
}

.line-dot span{
  width: 12px;
  height: 12px;
  background: #f1c40f;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.social-icons{
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.social-icons a img{
  width: 55px;
  height: 55px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 10px; /* optional rounded corners */
}

.social-icons a:hover img{
  transform: translateY(-5px) scale(1.1);
  opacity: 0.85;
}

.socialize-content p{
  color: #ddd;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px){
  .socialize-content h2{ font-size: 28px; }
  .line-dot{ width: 100px; height: 2px; }
  .line-dot span{ width: 10px; height: 10px; }
  .social-icons a img{ width: 50px; height: 50px; }
}

@media (max-width: 576px){
  .socialize-content h2{ font-size: 24px; }
  .social-icons a img{ width: 45px; height: 45px; }
  .socialize-content p{ font-size: 13px; }
}


/* Last Section End  */



/* Footer Section Start  */
.footer-section{
  padding: 20px 40px;
  background-color: #000;
  text-align: center;
  position: relative;
}

.footer-section p{
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 500;
  color: #ffe400;
}

.footer-section a{
  text-decoration: none !important;
  color: #fff;
}
/* Footer Section End  */