/* HERO BASE */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* VIDEO */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 0;

    animation: zoomVideo 20s infinite alternate ease-in-out;
}

/* VIDEO SUBTLE ZOOM */
@keyframes zoomVideo {
    from { transform: translate(-50%, -50%) scale(1.1); }
    to { transform: translate(-50%, -50%) scale(1.2); }
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;

    background: linear-gradient(
        120deg,
        rgba(10, 37, 64, 0.8) 0%,
        rgba(10, 37, 64, 0.5) 40%,
        rgba(10, 37, 64, 0.2) 100%
    );
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
    text-align: center;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* HEADING */
#hero-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0 20px;
}

/* SUBHEADING */
#hero-subheading {
    font-size: 20px;
    margin-bottom: 30px;
    padding: 0 20px;
}

@media (max-width:425px) {
    #hero-heading {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 15px;
        padding: 0 20px;
    }

    /* SUBHEADING */
    #hero-subheading {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
}

/* CTA BUTTON */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: coral;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 5px solid white;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: tomato;
    transform: translateY(-3px);
}

/* ANIMATIONS */

/* Fade + Slide Up */
.fade-up {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide from Left */
.slide-left {
    animation: slideLeft 0.8s ease forwards;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Zoom In */
.zoom-in {
    animation: zoomIn 0.8s ease forwards;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-section{
    padding: 0px;
}

#hero-cta{
    animation: fadein 4s infinite ease forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}








/*About Us*/

.aboutMainWrapper{
    padding: 0;
}

.aboutImageWrapper{
    padding: 10px 40px;
}

#aboutImage{
    background-image: url('Assets/about6.jpg');
    background-position: center;
    background-size: cover;
    min-height: 650px;
    border: 10px solid white;
    border-radius: 30px;
}


#formImage{
    background-image: url('Assets/tourist.jpg');
    background-position: center;
    background-size: cover;
    min-height: 650px;
    border: 10px solid white;
    border-radius: 30px;
}




@media (min-width: 768px) and (max-width: 1200px){
    #aboutImage{
    background-image: url('Assets/about5.jpg');
    background-position: right;
    background-size: cover;
    min-height: 650px;
    border: 10px solid white;
    border-radius: 30px;
}
}

.aboutLeft{
    display: flex;
    align-items: center;    
    padding: 10px 40px;
}

/*Popular Cities*/
.hero-section, .popular-cities, .process-journey, .contact-section, .aboutMainWrapper, .cta-section-main, .cta-section-sub, .problems-solutions, .faq-wrapper-main{
    border-bottom: 5px solid white;
}

.popular-cities, .process-journey, .contact-section{
    background-color: bisque;
}

.aboutMainWrapper, .problems-solutions, .faq-wrapper-main{
    background-color: lemonchiffon;
}


.process-journey{
    min-height: 625px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


.popCit {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
  padding: 10px 50px;
}

/* Create four equal columns that sits next to each other */
.popCol {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.popCol img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .popCol {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .popCol {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}


.maxW1200{
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
}



.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.cities-grid { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.city-card {
  text-decoration: none;
}

.city-inner {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 8px; /* requested padding */
  background: #fff;
}

.city-inner img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform 0.4s ease;
}

.city-overlay {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  padding: 16px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

.city-inner:hover img {
  transform: scale(1.08);
}



:root {
    /*--uk-blue: #0073e6;*/
    --uk-blue: black;
    --uk-red: #cf142b;
    --light-grey: bisque;
    --white: black;
}


/* Section 2: Comparison Grid */
.comparison-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
    text-align: center;
}

.pain-points, .solutions {
    flex: 1;
    padding: 40px;
    border-radius: 12px;
    min-width: 300px;
}

.pain-points { background: repeating-linear-gradient(45deg, rgba(256,0,0,0.1), rgba(256,256,256,.3) 15px); border-left: 6px solid var(--uk-red); border-right: 6px solid var(--uk-red); }
.solutions { background: repeating-linear-gradient(135deg, rgba(0,256,0,0.1), rgba(256,256,256,.3) 15px); border-left: 6px solid #22c55e; border-right: 6px solid #22c55e; }

.comparison-grid h3 { margin-bottom: 20px; }
.comparison-grid ul { list-style: none; padding: 0; }
.comparison-grid li { margin-bottom: 15px; text-align: left;}

@media  (min-width: 1100px){
    .comparison-grid li { padding-left: 2rem;}
}


/* Section 4: Process Journey */

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.circle {
    width: 60px;
    height: 60px;
    background: white;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0,36,125,0.3);
    border: 5px solid black;
}

.process-journey .section-title{
    -webkit-text-stroke: 1px black;
}

.process-step h4 { color: var(--uk-blue); margin-bottom: 10px; }
.process-step p { font-size: 0.95rem; color: #666; padding: 0 10px; }

/* Desktop Connector Line for Steps */
@media (min-width: 769px) {
    .steps-container::before {
        content: "";
        position: absolute;
        top: 30px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: #cbd5e1;
        z-index: 0;
    }
}


.whyus-para{
    text-align: center;
    margin: 25px 0;
}

.start-step{
    text-align: center;
    margin: 50px 0 0;
}

.start-step .cta-button{
    color: black;
    border: 5px solid black;
    background-color: white;
}




















.contact-section {
    overflow-x: hidden;
}

/* Image Container Styling */
.contact-image-container {
    height: 100%;
    min-height: 100vh;
    padding: 40px; /* Adjust margin/padding around the image as requested */
}

.contact-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills space without stretching */
    border-radius: 20px; /* Optional: adds a modern feel */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Form Styling */
.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-control, .form-select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    border-color: #0073e6;
    box-shadow: 0 0 0 0.25rem rgba(0, 36, 125, 0.1);
}

.btn-uk-blue {
    background-color: #0073e6;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-uk-blue:hover {
    background-color: #001a5e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,36,125,0.3);
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .contact-image-container {
        display: none; /* Hides image on mobile to focus on the form */
    }
    .min-vh-100 {
        min-height: auto !important;
    }
}


.ready{
    background-color: lightseagreen;
}

.mymap{
    height: 600px;
    border: none;
}

.mapSection{
    padding: 0;
}

#airIcon{
    position: fixed;
    right: 8%;
    bottom: 7%;
    padding: 10px;
    border: 2px solid salmon;
    border-radius: 50%;
    background: white;
    color: salmon;
    z-index: 1000;
    transition: bottom 1s ease-in-out, top 1s ease-in-out;
    cursor: pointer;
}

#airIcon.fly-up {
  bottom: 90%; /* Adjust this percentage to where 'top' should be */
}

#airIcon.invisible {
  opacity: 0;
  transition: none; /* Instant snap-back without sliding */
}

#airIcon:hover{
    cursor: pointer;
}

#airIcon svg{
    width: 30px;
    height: 30px;
}


.plane {
    position: absolute;
    top: 40%; /* Position from top */
    left: -150px; /* Start off-screen */
    width: 100px;
    /* Duration: 8s, Timing: linear, Repeat: infinite */
    animation: flyRight 8s linear;
  }

  @keyframes flyRight {
    0% {
      left: -150px;
      transform: translateY(0);
      top: 36%;
    }
    50% {
      /* Subtle dip in the middle for realism */
      transform: translateY(50px);
      top: 18%;
    }
    100% {
      left: 50%;
      transform: translateY(0);
      top: 0%;
    }
  }

  @media (max-width:1023px) {
    @keyframes flyRight {
    0% {
      left: -150px;
      transform: translateY(0);
      top: 20%;
    }
    50% {
      /* Subtle dip in the middle for realism */
      transform: translateY(50px);
      top: 10%;
    }
    100% {
      left: 65%;
      transform: translateY(0px);
      top: 0%;
    }
  }    
  }




  @media (min-width: 773px){
    .sfoot{
        padding-left: 10%;
    }
  }
