body {
  font-family: 'Poppins', sans-serif;
}
.font-montserrat {
  font-family: 'Montserrat' !important;
}
/* NAVBAR */
.custom-navbar {
  background: linear-gradient(to right, #000000, #000000);
  padding: 0;
  z-index: 999;
}
.navbar-dark .navbar-nav .nav-link {
  color: #ebebeb;
  font-size: 14px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

/* Hover color */
.navbar-dark .navbar-nav .nav-link:hover {
  color: #f4c430;
}

/* Hover underline */
.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f4c430;
  transition: width 0.3s ease;
}

/* Show underline on hover */
.navbar-dark .navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Active link */
.active-link {
  color: #f4c430 !important;
}

/* Active underline */
.active-link::after {
  width: 100%;
}

/* Call Button */
.call-btn {
  color: #000;
  /* padding: 6px 16px;
  border-radius: 6px; */
  font-size: 14px;
}

/* Dropdown */
.dropdown-menu {
  background: #d4d4d4;
  border: none;
}

.dropdown-item {
  color: #000000;
}

.dropdown-item:hover {
  background: #f4c430;
  color: #000;
}

/* MOBILE */
@media (max-width: 991px) {

  .navbar-collapse {
      background: #000000;
      /* padding: 15px;
      border-radius: 8px;
      margin-top: 10px; */
  }

  .navbar-nav {
      gap: 12px;
  }

  .navbar-nav .nav-link {
      font-size: 15px;
  }

  .active-link::after {
      display: none;
  }

  .call-btn {
      margin-top: 12px;
      width: 100%;
      text-align: center;
  }
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif !important;
}
/* HERO */
.hero {
    min-height: 100vh;
    background: url("image/back3final.png")
        center/cover no-repeat;
    padding-top: 20px;
    position: relative;
    overflow: hidden;
}
.shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
}
.airport {
  background: url("image/Frame 8.png"); /* your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}
.events {
  background: url("image/Ellipse 2.png"); /* your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* BUTTON OVERRIDE */
.btn-warning {
    color: #000;
}

/* RESPONSIVE TEXT */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
    .hero span {
        font-size: 2rem;
    }
}



/* FOOTER TEXT */
.site-footer {
    background-color: #000000;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 30px;
  }
  
  .footer-heading {
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .site-footer a {
    color: #444;
    text-decoration: none;
  }
  
  .site-footer a:hover {
    text-decoration: underline;
  }
  
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav li {
    margin-bottom: 8px;
  }
  
  .social-links a {
    font-size: 18px;
    margin-left: 10px;
  }
  
  .footer-bottom {
    background-color: #e0e0e0;
    font-size: 14px;
  }
 
 





  body {
    margin: 0;
  }
  
  .trusted-logos {
    display: flex;
    background-color: #000000;
    padding: 60px 20px;
  }
  
  .logo-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
  }
  
  .logo-box img {
    max-height: 200px;
    width: 200px;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .logo-container {
      flex-direction: column;
      text-align: center;
    }
  
    .logo-box {
      justify-content: center;
    }
  }





  
  /* GALLERY PAGE IMAGES */
  .col-md-4 img {
    width: 100%;            /* responsive */
    max-width: 400px;       /* keep original size */
    border-radius: 10px;    /* smooth corners */
    padding: 5px;           /* inner space */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: block;
    transition: .3s;
  }
  .images,
  .col-md-4 img {
    border-radius: 10px;
      margin-top: 12px;

  }
  .col-md-4{
    overflow: hidden;
  }
  .col-md-4:hover img{
    scale: 1.1;
  }




  /* Contact form */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: Arial, sans-serif; */
  }
  /* Background */
.git-contact-wrap {
  background: url("https://images.unsplash.com/photo-1501117716987-c8e1ecb210d5")
              center/cover no-repeat;
  padding: 60px 20px;
}

.git-bg-overlay {
  background: rgba(255, 255, 255, 0.85);
  padding: 50px 0;
}

.git-container {
  max-width: 1200px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.git-title {
  font-size: 36px;
  margin-bottom: 15px;
}

.git-desc {
  max-width: 900px;
  color: #444;
  margin-bottom: 40px;
}

.git-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.git-label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.git-input {
  width: 100%;
  height: 45px;
  border: 1px solid #999;
  padding: 10px;
  margin-bottom: 20px;
  background: transparent;
}

.git-textarea {
  width: 100%;
  height: 310px;
  border: 1px solid #999;
  padding: 10px;
  background: transparent;
  resize: none;
}

.git-form-bottom {
  grid-column: 1 / -1;
}


.git-submit-btn {
  background: #f5c400;
  border: none;
  padding: 12px 30px;
  font-size: 15px;
  cursor: pointer;
}

.git-submit-btn:hover {
  background: #e0b200;
}

.consent-row {
  margin-bottom: 15px;
  font-size: 14px;
}

.captcha-row {
  display: none;
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

.captcha-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #f9f9f9;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .git-form {
    grid-template-columns: 1fr;
  }

  .git-textarea {
    height: 200px;
  }

  .git-title {
    font-size: 28px;
  }
}



  /* <!-- FEATURES --> */
  .services {
    padding: 60px 20px;
    background: #ffffff;
  }
  
  .services .sevice {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .services .service-box {
    margin: 10px;
    padding: 30px 25px;
    text-align: center;
    border-right: 1px solid #ccc;
  }
  
  .services .service-box:last-child  {
    border-right: none;
  }
  
  .services .service-box i {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
  }
  
  .services .service-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
  }
  
  .services .service-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
  }
  
  /* Tablet */
  @media (max-width: 992px) {
    .services .sevice {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .services .service-box:nth-child(2),
  .services .service-box:nth-child(4)  {
      border-right: none;
    }
  }
  
  /* Mobile */
  @media (max-width: 576px) {
    .services .sevice {
      grid-template-columns: 1fr;
    }
    .services .service-box {
      border-right: none;
      border-bottom: 1px solid #ccc;
    }
  
    .services .service-box:last-child {
      border-bottom: none;
    }
  }




  
/* Background section */
.hero1 {
  min-height: 100vh;
  background: url("image/Frame 7.png")
  center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
}

/* OUTER BORDER */
.outer-border {
  padding: 25px;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

/* INNER WHITE BOX */
.inner-box {
  position: relative;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.92);
  padding: 50px 40px;
  text-align: center;
}

/* INNER THIN BORDER */
.inner-box::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid #cfcfcf;
  pointer-events: none;
}

/* TEXT STYLING */
.top-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.inner-box h2 {
  margin: 35px 0 25px;
  font-size: 30px;
  font-weight: 500;
}

.inner-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

/* BUTTON */
.more-btn {
  margin-top: 25px;
  padding: 10px 30px;
  background: #d4aa00;
  border: none;
  font-weight: 600;
  cursor: pointer;
}



/* Error styling */
.form-control.error {
  border: 1px solid #ff4d4f !important;
}

.error-msg {
  display: none;
  color: #ff4d4f;
  font-size: 12px;
  margin-top: 4px;
}
