:root {
  --primary: #0d47a1;
  --secondary: #ffcc00;
  --dark: #10243e;
  --light: #f7f9fc;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  background: #ffffff;
}
a {
  text-decoration: none;
  color: inherit;
}



.topbar {
  background: var(--dark);
  color: #ffffff;
  font-size: 14px;
  padding: 8px 0;
  min-height: 40px;
  height: auto;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  flex-wrap: wrap;
}

/* NAVBAR */


.nav{
  position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
   
    background:transparent;
}

.nav .container{
     width:100%;
    max-width:100% !important;
    margin-top:-50px;
    padding:0;

    display:flex;
    align-items:center;
    justify-content:space-between;
     padding:15px 50px;   /* Left & Right equal spacing */


   
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
 
}


.brand img{
    width:95px;
    height:auto;
    display:block;
}

.menu{
  margin-top: 20px;
    display:flex;
    align-items:center;
    gap:25px;
}

.menu a{
    text-decoration:none;
    color:#000;
    font-size:18px;
    font-weight:400;
}

.btn-primary{
    background:#0d47a1;
    color:#fff !important;
    padding:14px 28px;
    border-radius:30px;
}


.brand {
  margin-top: 20px;
  display: flex;
  align-items: center;
  right: -10px;
  gap: 10px; /* pehle 30px tha */
  margin-left: 0;
}

.brand img {
  width: 100px;
  height: auto;
  margin: -10px;
  padding: -10px;
}


.menu {
  display: flex;
  gap: 35px;
  align-items: center;
  flex-wrap: wrap;
}
.menu a {
  color: #011b05;
  font-weight: 600;
  font-size: large;
  transition: all .3s ease;
}

.menu a:hover {
  color: rgb(29, 187, 8);
  transform: translateY(-3px) scale(1.15);
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: var(--secondary);
  color: #111827;
}
.btn-primary:hover {
  background: #1565c0;
  color: #fff;
  box-shadow: 0 15px 35px rgba(13, 71, 161, 0.6);
  letter-spacing: 1.5px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  background: #ffd633;
  color: #000;
  box-shadow: 0 15px 35px rgba(255, 204, 0, 0.6);

  letter-spacing: 1.5px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}


.hero {
  position: static;
  margin-top: 0;
  padding:0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
 
}
.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.25);
}

.hero .content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin:  0;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.15;
  margin: 0 0 20px;
  text-shadow: 0 5px 20px rgba(0,0,0,.4);
}
.slide-up {
  animation: slideUp 1.5s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero p{
  font-size:1.25rem;
  max-width:850px;
  margin:0 auto 30px;
}
@media(max-width:768px){

  .hero .content{
    margin-top:120px;
  }

  .hero h1{
    font-size:2.2rem;
    line-height:1.2;
  }

  .hero p{
    font-size:1rem;
  }

}

.hero .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.section {
  padding: 72px 0;
  background:linear-gradient(
        135deg,
        #f8fbff,
        #eaf6ff
    );
}

.section-title {

  text-align: center;
  margin-top: 100px;
  gap:0;
}
.section-title h2 {
  margin-top: 20px;
  
  font-size: 2rem;
  color: var(--primary);
}

.section-title p {
  
  margin:30px;
  color: #6b7280;
}
.grid {
  display: grid;
  gap: 22px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
  background: #ffffff18;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  border: 1px solid #eef2f7;
}
.card h3 {
  margin-top: 0;
  color: var(--primary);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.stat {
  background: var(--light);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}
.stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.services .card{
    transition: all .5s ease;
    transform-style: preserve-3d;
    perspective: 1000px;

    background: rgba(255,255,255,0.9);
    border-radius: 20px;

    box-shadow:
      0 10px 25px rgba(0,0,0,.08),
      inset 0 1px 1px rgba(255,255,255,.8);
}

.services .card:hover{
    transform:
      translateY(-15px)
      rotateX(8deg)
      rotateY(-8deg);

    background: linear-gradient(
      135deg,
      #0d47a1,
      #1565c0
    );

    color:#fff;

    box-shadow:
      0 25px 45px rgba(13,71,161,.35);
}

.services .card:hover h3{
    color:#ffcc00;
}

.services .card:hover p{
    color:#ffffff;
}

.contact-card{
    background:#fff;
    border-radius:25px;

    box-shadow:
      0 15px 35px rgba(0,0,0,.12);

    transition:.5s;
}

.contact-card:hover{
    transform:translateY(-12px);
    box-shadow:
      0 25px 45px rgba(13,71,161,.25);
}


.destinations .card {
  padding: 0;
  overflow: hidden;
}
.destinations img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}
.destinations .body {
  padding: 18px;
}
.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
}
.partners {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.partner {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  font-weight: 700;
  color: #374151;
}
.testimonials {
  position: relative;
  overflow: hidden;
}
.slide {
  display: none;
}
.slide.active {
  display: block;
}
.form {
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font: inherit;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.map {
  border: 0;
  width: 100%;
  height: 280px;
  border-radius: 18px;
}
.footer {
  background: var(--dark);
  color: #fff;
  padding: 28px 0;
}



.footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 22px;
}
.footer a {
  color: #dbeafe;
}
.footer h4{
    color:#fff;
    margin-bottom:12px;
    font-size:20px;
    font-weight:700;
}

.footer p{
    color:#dbeafe;
    font-size:15px;
    line-height:1.8;
    margin:6px 0;
}

.footer .contact-box{
    max-width:300px;
}

.footer .contact-box p{
    display:flex;
    align-items:flex-start;
    gap:8px;
}
.footer .contact-box p{
    word-break: break-word;
}
.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 18px;
  padding-top: 14px;
  text-align: center;
  color: #cbd5e1;
  font-size: 14px;
}
.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
}
.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.wa-menu {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(280px, 82vw);
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  display: none;
}
.wa-menu.show {
  display: block;
}
.wa-menu h4 {
  margin: 0 0 10px;
  color: var(--primary);
}
.wa-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  margin-bottom: 8px;
  color: #111827;
  font-weight: 700;
}
.wa-link small {
  display: block;
  color: #6b7280;
  font-weight: 600;
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .partners {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer .cols {
    grid-template-columns: 1fr 1fr;
  }
}

.about-modern {
  background: #eaf6ff;
  padding: 60px  0;
}

.about-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.about-image {
  flex: 2;
}


.about-content {
  flex: 1;
  max-width: 650px;
  margin-top: 50px;
}
.about-content span {
  color: #3b82f6;
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #081b4b;
  margin: 15px 0 20px;
  font-weight: 700;
}
.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 40px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .grid-2,
  .grid-3,
  .stats,
  .form-row,
  .footer .cols {
    grid-template-columns: 1fr;
  }
  .partners {
    grid-template-columns: 1fr 1fr;
  }
  .brand img {
    height: 48px;
  }
}
.destination-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}

.header-box {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 25px;
  cursor: pointer;
  
}

.header-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}

.header-box:hover img {
  transform: scale(1.1);
}

.header-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15));
}

.header-box h2 {
  position: absolute;
  left: 30px;
  bottom: 70px;
  color: white;
  font-size: 48px;
  z-index: 2;
  margin: 0;
}

.header-box p {
  position: absolute;
  left: 30px;
  bottom: 25px;
  color: white;
  z-index: 2;
  width: 80%;
  font-size: 16px;
}

@media (max-width: 768px) {
  .destination-header {
    grid-template-columns: 1fr;
  }

  .header-box {
    height: 250px;
  }

  .header-box h2 {
    font-size: 30px;
    left: 20px;
    bottom: 50px;
  }

  .header-box p {
    font-size: 13px;
    bottom: 10px;
  }
}

/*new line */

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.destination-card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  height:320px;
  cursor:pointer;

  opacity:0;
  transform:translateY(60px);

  transition:all .8s ease;
}

.destination-card.show {
  opacity: 1;
  transform: translateY(0);
}

.destination-card img {
  transition: transform 0.7s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.destination-card:hover img {
  transform: scale(1.12);
}


.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card span {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;

  background: rgba(255, 255, 255, 0.85);
  color: #000;

  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.destination-card h3 {
  position: absolute;
  left: 20px;
  bottom: 55px;
  z-index: 2;

  color: #fff;
  font-size: 30px;
  line-height: 1.1;
  margin: 0;
}

.destination-card p {
  position: absolute;
  left: 20px;
  bottom: 15px;
  z-index: 2;

  color: #fff;
  width: 85%;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.15));
}

@media (max-width: 991px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-header {
    grid-template-columns: 1fr;
  }
}
.destinations-modern {
  background: #0f172a;
  padding: 25px 0 80px;
}

.destination-grid {
  margin-top: 20px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-item .icon {
  width: 30px;
  height: 30px;
  border: 2px solid #2563eb;
  border-radius: 50%;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.feature-item h4 {
  margin: 0 0 5px;
  color: #081b4b;
}

.feature-item p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}
.about-image {
  position: relative;
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
/* this is  a since 2020 box editing */

.experience-box {
  position: absolute;
  bottom: -30px;
  right: -30px;

  width: 200px;
  background: #fff;
  border-radius: 15px;
  padding: 15px;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.experience-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.experience-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #eef2ff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
}

.experience-box h3 {
  margin: 0;
  color: #081b4b;
  font-size: 20px;
  font-weight: 700;
}

.experience-box p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

/* Hero Animation */

.hero .content {
  animation: heroFade 1.5s ease-in-out;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 5rem);
  color: #fff;
  line-height: 1.2;
  white-space: normal;
}

.plane {
  position: absolute;
  left: -180px;
  top: 15px;
  width: 180px;
  z-index: 10;
  animation: flyPlane 6s linear infinite;
}

@keyframes flyPlane {
  from {
    left: -180px;
  }

  to {
    left: 110%;
  }
}

  .airline-glass{
  position: relative;
  padding:100px 0;
  overflow:hidden;
}
.glass-slider {
  overflow: hidden;
  width: 100%;
  margin-top: 50px;
}

.glass-track {
  display: flex;
  width: max-content;
  animation: glassMove 25s linear infinite;
}

.glass-track:hover {
  animation-play-state: paused;
}

.glass-card{
    width:220px;
    height:140px;
    margin:0 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,0.25);
    border-radius:25px;

    /* 3D Effect */
    transform-style:preserve-3d;
    perspective:1000px;

    box-shadow:
      0 10px 25px rgba(0,0,0,0.25),
      inset 0 1px 1px rgba(255,255,255,0.4);

    transition:all .5s ease;
}

.glass-card:hover{
    transform:
      translateY(-12px)
      rotateX(8deg)
      rotateY(-8deg)
      scale(1.05);

    box-shadow:
      0 25px 40px rgba(0,0,0,0.35),
      0 0 25px rgba(255,255,255,0.2);
}

.glass-card img{
    width:140px;
    height:80px;
    object-fit:contain;

    transition:.5s;
    filter:drop-shadow(0 8px 12px rgba(0,0,0,.25));
}

.glass-card:hover img{
    transform:translateZ(30px) scale(1.08);
}

.airline-glass .section-title h2{
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.airline-glass .section-title p {
  color: #fff;
}

@keyframes glassMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
/* itat section start*/


.iata-section{
  margin-top: -30px;
    background:honeydew;
    padding:10px 0;
}

.iata-content{
    max-width:1000px;
    margin:auto;
    text-align:center;
}


.iata-card{
    position:relative;
    overflow:hidden;
  max-width: 900px;
  margin:0 auto;

    padding:35px 30px;

    text-align:center;

    min-height:auto;

    background:linear-gradient(145deg,#f3e6cf,#e6d8bc);
    border-radius:30px;
    padding:50px 30px;

    border:1px solid rgba(255,255,255,.4);

    box-shadow:
        0 15px 35px rgba(0,0,0,.15),
        inset 0 2px 2px rgba(255,255,255,.5);

    transition:all .5s ease;
}

/* Moving Shine Effect */
.iata-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-150%;

    width:60%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);
    transition:1s;
}

/* Hover Effect */
.iata-card:hover{
    transform:translateY(-12px) scale(1.02);

    box-shadow:
        0 25px 50px rgba(0,0,0,.20),
        0 0 30px rgba(13,71,161,.25);
}

.iata-card:hover::before{
    left:180%;
}

/* Logo */


.iata-card img{
    width:150px;
    height:auto;
    display:block;
    margin:0 auto;
}

.iata-card:hover img{
    transform:scale(1.1);

    filter:
        drop-shadow(0 0 10px rgba(13,71,161,.6))
        drop-shadow(0 0 20px rgba(13,71,161,.4));
}

/* Heading */
.iata-card h3{
    font-size:42px;
    color:#0d47a1;
        margin:5px 0 15px;
 
    font-weight:800;
    transition:.4s;
}

.iata-card:hover h3{
    text-shadow:
        0 0 10px rgba(13,71,161,.4),
        0 0 20px rgba(13,71,161,.2);
}

/* Text */
.iata-card p{
    color:#5b6b84;
    line-height:1.8;
    font-size:17px;
}


.iata-badges{
    margin-top:30px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.iata-badges span{
    background:#e8f0ff;
    color:#0d47a1;
    padding:12px 20px;
    border-radius:30px;
    font-weight:600;
}
.why-us{
    background:#eef5fb;
    padding:60px 0;
}

.why-heading{
    text-align:center;
    margin-bottom:70px;
}

.why-heading span{
    color:#2563eb;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.why-heading h2{
    font-size:55px;
    color:#081b4b;
    margin-top:10px;
    font-weight:800;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    
    gap:20px;
}

.why-card{
    text-align:center;
    padding:20px;
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-12px);
}

.why-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
    color:#2563eb;

    background:linear-gradient(
      145deg,
      #ffffff,
      #e8edf5
    );

    box-shadow:
      10px 10px 20px rgba(0,0,0,0.12),
      -6px -6px 15px rgba(255,255,255,0.9);

    border:1px solid rgba(255,255,255,0.8);

    transition:all .4s ease;
    margin-bottom:25px;
}

.why-card:hover .why-icon{
    transform:
      translateY(-8px)
      rotateX(10deg);

    box-shadow:
      15px 15px 25px rgba(0,0,0,0.18),
      -8px -8px 18px rgba(255,255,255,1);
}
.why-icon i{
    text-shadow:0 4px 10px rgba(37,99,235,.35);
}
.why-card h3{
    font-size:32px;
    color:#081b4b;
    margin-bottom:20px;
    line-height:1.2;

    min-height:80px;
}
.why-card p{
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

@media(max-width:768px){

    .why-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .why-heading h2{
        font-size:40px;
    }

    .why-card h3{
        font-size:26px;
    }

}
.testimonials{
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(20px);

    border-radius:30px;
    padding:80px;

    border:1px solid rgba(255,255,255,0.4);

    box-shadow:
      0 25px 50px rgba(0,0,0,.12),
      0 10px 20px rgba(0,0,0,.08),
      inset 0 1px 1px rgba(255,255,255,.8);

    transform-style:preserve-3d;
    transition:.5s ease;
}

.testimonials:hover{
    transform:translateY(-10px);
}

.testimonials .slide h3{
    font-size:30px;
    letter-spacing:4px;
    text-shadow:0 5px 15px rgba(255,193,7,.4);
}

.testimonials .slide p{
    font-size:18px;
    line-height:1.8;
    color:#64748b;
    margin-bottom:20px;
}

.testimonials .slide strong{
    display:block;
    margin-top:20px;
    font-size:18px;
    color:#0d47a1;
    font-weight:700;
}

/* Mobile Responsive */
@media(max-width:768px){

    .testimonials{
        padding:25px 20px;
    }

    .testimonials .slide h3{
        font-size:22px;
    }

    .testimonials .slide p{
        font-size:15px;
        line-height:1.7;
    }

    .testimonials .slide strong{
        font-size:14px;
    }
}

/* Travel Types Dropdown */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;

  background: lightslategreys;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: 0.3s ease;
  overflow: hidden;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: #333 !important;
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: lightsteelblue;
  color: #fff !important;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#travel-types {
  background: #eaf6ff; /* Dark Blue */
  padding-top: 30px;
  max-width: 2000px;
  margin: auto;
}
/* Travel Type Animation */


#travel-types .destination-card:nth-child(1) {
  animation-delay: 0.3s;
}

#travel-types .destination-card:nth-child(2) {
  animation-delay: 0.7s;
}

#travel-types .destination-card:nth-child(3) {
  animation-delay: 1.1s;
}

#travel-types .destination-card:nth-child(4) {
  animation-delay: 1.5s;
}


/* taplate view*/

  @media (max-width: 992px) {
    .hero-title {
      font-size: 45px;
    }
  }
/* phone view */

  @media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 80px 20px;
  }
  


.hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .plane {
    width: 120px;
    top: 50%;
  }

  .actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .actions .btn {
    width: 220px;
    text-align: center;
  }

  .destination-grid {
    grid-template-columns: 1fr !important;
  }

  .about-wrapper {
    flex-direction: column;
  }

  .menu {
    gap: 10px;
    flex-wrap: wrap;
  }
  .destination-card {
    height: 260px;
  }

  .destination-card h3 {
    font-size: 24px;
    bottom: 50px;
  }

  .destination-card p {
    font-size: 13px;
    width: 90%;
  }

  .destination-card span {
    font-size: 10px;
  }
}
/* Mobile Menu */

.menu-toggle {
  display: none;
  font-size: 30px;
  color: rgb(255, 255, 255);
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0d47a1;
    flex-direction: column;
    padding: 10px 0;
    text-align: center;
    gap: 155px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .menu.active {
    display: flex;
  }

  .nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* mobile me show hone ke liye*/

@media (max-width:768px){

  .about-image img{
      height:350px;
  }

  .nav .container{
      padding:13px 20px;
  }

  .plane{
      width:80px;
      top:-25px;
  }

}
/* mobile tapbar*/

@media (max-width:768px){

  .topbar{
    height:auto;
    padding:10px 0;
  }

  .topbar .container{
    flex-direction:column;
    text-align:center;
    gap:5px;
    padding:5px 0;
  }

}
@media (max-width:768px){

  .topbar .container{
    flex-direction:column;
    text-align:center;
    gap:5px;
  }

  .nav{
    position:relative;
    top:0;
    background:#10243e;
  }

   .plane{
    display:block;
    width:80px;
    top:20px;
  }

  .hero{
    padding-top:40px;
  }

}.airline-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.airline-glass::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:1;
}

.airline-glass .section-title,
.airline-glass .glass-slider{
  position:relative;
  z-index:2;
}

.footer-modern{
    background:#eef5fb;
    padding:60px 0 10px;
    width:100vw;
    margin:0;
}




.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.office-box{
    display:block;
}

.footer-company img{
    width:100px;
    margin-bottom:20px;
}

@media(max-width:768px){
    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
}



.footer-company p,
.office-box p{
    color:#64748b;
    line-height:1.8;
    font-size:17px;
}

.office-box h3{
    color:#081b4b;
    font-size:30px;
    margin-bottom:25px;
}


.social-icons a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.3s;
}

.social-icons a:hover{
    transform:translateY(-5px);
}

.footer-copy{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #dbe4ef;
    color:#64748b;
}

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .office-box h3{
        font-size:24px;
    }

    .footer-company{
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }
}.social-icons{
  display:flex;
  gap:15px;
  position:relative;
}

.footer-wa-menu{
  position:absolute;
  left:0;
  bottom:70px;
  width:250px;
  background:#fff;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,.2);
  display:none;
  z-index:9999;
}

.footer-wa-menu.show{
  display:block;
}
.footer-wa-menu a{
  display:block;
  padding:12px 15px;
  color:#333;
  text-decoration:none;
  border-bottom:1px solid #eee;
}

.footer-wa-menu a:hover{
  background:#f5f5f5;
}

.footer-wa-menu small{
  display:block;
  color:#666;
  margin-top:4px;
}
/* About Page 3D Cards */

.about-card{
    background: rgba(255, 255, 255, 0.041);
    backdrop-filter: blur(10px);
    margin-top: 25px;

    border-radius: 25px;
    padding: 35px;

    border: 1px solid rgba(255,255,255,0.6);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        inset 0 1px 1px rgba(255,255,255,0.7);

    transition: all .4s ease;
}

.about-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.18);
}

.about-card h3{
    color:#0d47a1;
    font-size:32px;
    margin-top:20px;
    gap: 50px;
}

.about-card p{
    color:#475569;
    line-height:1.8;
}
.about-page .grid{
    margin-top: 20px;
}

.about-card{
    transition: all 0.4s ease;
}

.about-card:hover{
    background: linear-gradient(135deg,#038d1a,#160177);
    color: white;
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 45px rgba(13,71,161,.35);
}

.about-card:hover h3{
    color: #ffcc00;
}

.about-card:hover p{
    color: #5de997;
}
.career-hero{
    background:linear-gradient(
        rgba(13,71,161,.85),
        rgba(16,36,62,.85)
    ),
    url("assets/career-banner.jpg") center/cover;
    
    padding:150px 20px;
    text-align:center;
    color:#fff;
}

.career-hero h1{
    font-size:55px;
    margin-top:15px;
}

.career-hero p{
    font-size:20px;
}
/* Booking Form Premium 3D */

.booking-card{
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(15px);

    border-radius: 25px;
    padding: 35px;

    border: 1px solid rgba(255,255,255,.7);

    box-shadow:
      0 15px 35px rgba(0,0,0,.12),
      inset 0 1px 1px rgba(255,255,255,.8);

    transition: all .5s ease;
}

.booking-card:hover{
    transform: translateY(-12px);

    background: linear-gradient(
      135deg,
      #0cc77f,
      #1565c0
    );

    box-shadow:
      0 25px 45px rgba(13,71,161,.35);
}


.booking-card input,
.booking-card select,
.booking-card textarea{
    background:#fff;
    border:none;

    box-shadow:
      inset 2px 2px 6px rgba(0,0,0,.08),
      inset -2px -2px 6px rgba(255,255,255,.9);

    transition:.3s;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus{
    outline:none;

    transform:translateY(-2px);

    box-shadow:
      0 0 0 3px rgba(13,71,161,.15),
      inset 2px 2px 6px rgba(0,0,0,.05);
}

.booking-card .btn{
    margin-top:10px;
    width:100%;
    font-size:18px;
}
.booking-card input,
.booking-card select,
.booking-card textarea{
    background:#fff;
    border:none;

    box-shadow:
      inset 3px 3px 8px rgba(0,0,0,.08),
      inset -3px -3px 8px rgba(255,255,255,.9);

    transition:.3s;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus{
    outline:none;
    transform:translateY(-2px);

    box-shadow:
      0 0 0 3px rgba(13,71,161,.15),
      inset 2px 2px 6px rgba(0,0,0,.05);
}
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.footer-modern{
    overflow-x:hidden;
}
/* Career Page Active Menu */

.menu a.active{
    color:#052501;
    font-weight:700;
}
.menu a[href="career.html"]:hover{
    color:#1dbb08;
    transform: translateY(-3px) scale(1.1);
}
.career-hero{
    background:linear-gradient(
        rgba(13,71,161,.85),
        rgba(54, 211, 15, 0.85)
    ),
    url("assets/career-banner.jpg") center/cover;

    padding:220px 20px 150px;
    text-align:center;
    color:#fff;
}
.nav{
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 999;
}

.career-hero{
    padding-top:220px;
}
.career-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:40px;
}

.career-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-decoration:none;
    color:#333;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:.3s;
}

.career-card:hover{
    transform:translateY(-8px);
    background:#568303;
    color:#fff;
}

.career-card h3{
    margin-bottom:10px;
}

@media(max-width:768px){
    .career-grid{
        grid-template-columns:1fr;
    }
}
.apply-section{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:100px 20px;
    background:linear-gradient(
        rgba(13,71,161,.85),
        rgba(16,36,62,.9)
    ),
    url("assets/travel-bg.jpg") center/cover;
}

.apply-card{
max-width:850px;
width:100%;
margin:0 auto;   /* Center karega */
background:#17e9a3;
padding:50px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.2);
}

.apply-card h1{
    text-align:center;
    color:#0d47a1;
    margin-bottom:10px;
}

.apply-card p{
    text-align:center;
    color:#666;
    margin-bottom:35px;
}

.apply-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.apply-form input,
.apply-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #09a7a7;
    border-radius:10px;
    font-size:15px;
}

.apply-form textarea{
    height:140px;
    resize:none;
}

.upload-label{
    font-weight:600;
    color:#0d47a1;
}

.apply-form button{
    background:#0d47a1;
    color:#ffffff;
    border:none;
    padding:15px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.apply-form button:hover{
    background:#ffcc00;
    color:#000;
}

@media(max-width:768px){

    .apply-card{
        padding:30px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

}
.apply-wrapper{
    max-width:1300px;
    margin:auto;
    display:none;
  
    align-items:center;
    justify-content:center;
    gap:60px;
    padding:40px 20px;
}

.apply-animation{
    flex:1;
    display:flex;
    justify-content:center;
}

.apply-card{
    flex:1;
}

@media(max-width:992px){

    .apply-wrapper{
        flex-direction:column;
    }

    .apply-animation lottie-player{
        width:280px !important;
        height:280px !important;
    }
}
.home-page .nav{
    background:rgba(255,255,255,0.18);
}

.about-page .nav{
    background:#b9ccc6 !important;
}

.services-page .nav{
    background:#e2adbd !important;
}

.career-page .nav{
    background:#d0a7ee !important;
}

.contact-page .nav{
    background:#06dddd !important;
}






.footer-section .container{
    position:relative;
    z-index:2;
}

.footer-title{
        color:#dae813;

    font-size:22px;
    font-weight:700;
    margin-bottom:22px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin:14px 0;
    transition:.3s;
}

.footer-links i{
    color:#0b0132;
    margin-right:10px;
}

.footer-links a{
    color:#010c36;
    text-decoration:none;
    transition:.3s;
}

.footer-links li:hover,
.footer-links a:hover{
    color:#d2eb11;
    padding-left:10px;
}