/* =========================
   BODY
========================= */

body {
  background: #f4f8fb;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* =========================
   HEADINGS
========================= */

h1,
h2,
h3 {
  color: #0b2545;
}

p {
  color: #475569;
}

/* =========================
   LINKS
========================= */

a {
  color: #1e5f9c;
  text-decoration: none;
}

a:hover {
  color: #0b2545;
}



/* NAVBAR */


.glass-navbar {
  position: absolute;
  /* fixed nahi */
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 35px;
  border-radius: 22px;

  /* Transparent glass background */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.35);

  /* Light border */
  border: 1px solid rgba(255, 255, 255, 0.25);

  /* soft shadow */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all .4s ease;

}


/* ===== LOGO ===== */

.logo {
  height: 100px;
  transition: .3s;
}

.logo:hover {
  transform: scale(1.05);
}


/* ===== MENU ===== */

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-menu a {
  position: relative;
  display: inline-block;
  padding: 10px 22px;
  color: white;
  text-decoration: none;
  border-radius: 40px;
  transition: all .35s ease;
}

/* glass hover background */

.nav-menu a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-100%) scaleX(0);
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: rgba(153, 150, 150, 0.18);
  backdrop-filter: blur(10px);
  transition: transform .5s cubic-bezier(.25, .46, .45, .94) !important;
  z-index: -1;
}



/* clean hover glass */

.nav-menu a:hover {
  color: #fff !important;
  background: #ffffff26 !important;
  transform: translateY(-1px) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .1) !important;
}




/* ===== RIGHT SIDE ===== */

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  color: white;
  font-size: 14px;
}

/* ===== ENQUIRE BUTTON ===== */

.enquire-btn {
  background: linear-gradient(135deg, #2b6cb0, #1e4e8c);
  padding: 10px 22px;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.enquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ===== WHATSAPP ===== */

.whatsapp-icon {
  background: #25D366;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: .3s;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* =========================
   SECTIONS
========================= */

section {
  padding: 100px 0;
}

/* HERO SECTION */

/* =========================
   NEXT LEVEL HERO
========================= */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Background with zoom animation */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://res.cloudinary.com/dyyngvnp3/image/upload/v1772079588/Taj_Mahal__Edited_qjgpmf.jpg') center/cover no-repeat;
  animation: zoomHero 20s ease-in-out infinite alternate;
  z-index: 0;
}

/* Cinematic gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.55));
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeUp 1.2s ease forwards;
}

/* Subtitle */
.hero-subtitle {
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
  color: #fff;
}

/* Title */
.hero-title {
  font-size: 90px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
  color: antiquewhite;
}

/* Buttons */
.hero-buttons {
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 1s;
}

.btn-primary {
  background: #2a9d8f;
  padding: 14px 35px;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  margin-right: 15px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #21867a;
  transform: translateY(-4px);
}

.btn-outline {
  border: 2px solid #fff;
  padding: 12px 35px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: white;
  color: #000;
}

/* Animations */

@keyframes zoomHero {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */

@media (max-width: 768px) {
  .hero-title {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
}




/* ABOUT SECTION */

.about {
  padding: 110px 0;
  background: #f4f8fb;
}

/* container width + left alignment */

.about-container {
  max-width: 900px;
  margin-left: 140px;
  /* left margin */
  margin-right: 40px;
  text-align: left;
}

/* heading */

.about-heading {
  font-size: 42px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 10px;
}

/* divider line */

.about-divider {
  width: 70px;
  height: 4px;
  background: #1e5f9c;
  margin: 15px 0 30px 0;
  border-radius: 3px;
}

/* intro paragraph */

.about-intro {
  font-size: 19px;
  line-height: 1.9;
  color: #334155;
}

/* hidden content */

.about-more {
  display: none;
}

.about-more p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
}

/* highlighted words */

.highlight {
  color: #1e5f9c;
  font-weight: 600;
}

/* button */

.about-btn {
  margin-top: 35px;
  padding: 12px 32px;
  border: none;
  background: linear-gradient(135deg, #1e5f9c, #0b2545);
  color: white;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* DESTINATION SLIDER */


.destinations-section {
  padding: 140px 0;
  background: #ffffff;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 80px;
}

.carousel {
  width: 100%;
  display: flex;
  justify-content: center;
  perspective: 1200px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 60px;
  transition: transform 1s ease;
}

.card {
  width: 380px;
  height: 520px;
  border-radius: 35px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
  background: #000;
  /* helps text visibility */
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.05) contrast(1.05);

  /* Remove continuous scaling */
  transition: transform 0.6s ease;
}



.card-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 5;
}

.card-info h3,
.card-info p {
  display: inline-block;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  background: rgba(0, 0, 0, 0.45);
  color: #fff;

  padding: 8px 16px;
  border-radius: 12px;

  margin-bottom: 8px;
}

.card-info h3 {
  font-size: 28px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.card-info p {
  font-size: 13px;
  opacity: 0.95;
}




/* Hover effect */
.card:hover img {
  transform: scale(1.08);
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  z-index: 5;
}

.nav-btn:hover {
  background: #2a9d8f;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 40px;
}

.next {
  right: 40px;
}


/* WHY US SECTION */

/* White Cards */
.why-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #f9fafc, #eef2f7);
  text-align: center;
}

.why-container {
  width: 85%;
  margin: auto;
}

.why-heading {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.why-underline {
  width: 70px;
  height: 4px;
  background: #2a9d8f;
  margin: 15px auto 70px;
  border-radius: 10px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Card */
.why-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
  position: relative;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Icon Circle */
.icon-wrap {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2a9d8f, #4cc9f0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 25px;
  color: white;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: #666;
}


/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* REVIEWS SECTION */

.reviews-section {
  padding: 140px 0;
  background: linear-gradient(to bottom, #f9fafc, #eef2f7);
}

.reviews-title {
  text-align: center;
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 80px;
  letter-spacing: 2px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  width: 85%;
  margin: auto;
}

.review-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

/* Header */
.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.review-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.review-header h4 {
  font-size: 18px;
  margin-bottom: 3px;
}

.review-header span {
  font-size: 13px;
  color: #777;
}

/* Stars */
.stars {
  color: #f4b400;
  margin-bottom: 15px;
  font-size: 18px;
}

/* Text */
.short-text {
  font-weight: 600;
  margin-bottom: 10px;
}

.full-text {
  font-size: 14px;
  color: #555;
  display: none;
  margin-top: 10px;
}

/* Button */
.read-toggle {
  background: none;
  border: none;
  color: #2a9d8f;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
}



/* Trusted Partner */

.trusted-partners{

background:#000;

/* footer se attach karne ke liye */

margin-bottom:-1px;

/* sirf top corners round */

border-top-left-radius:60px;
border-top-right-radius:60px;

padding:90px 0 80px;

text-align:center;

}

/* inner container */

.partners-container{

max-width:1200px;
margin:auto;
padding:0 40px;

}

/* title */

.partners-title{

color:#444;

font-size:15px;

letter-spacing:5px;

margin-bottom:60px;

}

/* logos row */

.partners-logos{

display:flex;

align-items:center;

justify-content:center;

gap:120px;

flex-wrap:wrap;

}

/* logos */

.partners-logos img{

height:80px;

opacity:0.45;

filter:grayscale(100%) brightness(0.8) invert(1);

transition:all .4s ease;

}

/* hover */

.partners-logos img:hover{

opacity:1;

filter:grayscale(0);

transform:translateY(-3px);

}

@media(max-width:900px){
.partners-logos{
justify-content:center;
}
}

/* FOOTER */

.footer {
  position: relative;
  overflow: hidden;
margin-top: 0;
  padding: 110px 8% 45px;

  /* luxury blue glass gradient */

  background: linear-gradient(135deg,
      rgba(6, 15, 28, 0.96),
      rgba(8, 24, 46, 0.95),
      rgba(5, 12, 22, 0.97));

  /* glass blur */

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  /* soft border */

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  color: #aeb7c2;
  font-family: 'Poppins', sans-serif;

}



.footer::before {

  content: "";

  position: absolute;

  top: -50%;
  left: -50%;

  width: 200%;
  height: 200%;

  background: radial-gradient(circle at 30% 20%,
      rgba(80, 150, 255, 0.06),
      transparent 60%);

  pointer-events: none;


}

.footer p {
  color: #8f9bad;
}

.footer a {
  color: #9aa6b2;
}

.footer a:hover {
  color: white;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  /* columns ke beech space */
  row-gap: 16px;
  /* vertical gap approx 15‑16px */
}

/* headings */

.footer-col h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 28px;
  /* thoda aur gap */
  position: relative;
}

/* red underline */

.footer-col h3::after {
  content: "";
  width: 35px;
  height: 3px;
  background: #ff2b2b;
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* brand */

.brand h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 15px;
}

/* list */

.footer-col ul {
  list-style: none;
  margin-bottom: 16px;
  /* pehle 12px tha */
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 50px;
}

/* links */

.footer-col ul li a {
  text-decoration: none;
  color: #9fb0c3;
  transition: all .35s ease;
  position: relative;
}

/* premium hover */

.footer-col ul li a:hover {
  color: #ff2b2b;
  padding-left: 8px;
}

/* red indicator */

.footer-col ul li a::before {
  content: "";
  width: 0px;
  height: 1px;
  background: #ff2b2b;
  position: absolute;
  left: -10px;
  top: 50%;
  transition: width .3s, ease;
}

.footer-col ul li a:hover::before {
  width: 7px;
}

/* social icons */

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background: #1c1c1c; */
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  transition: .3s;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
  background: #2b6cb0;
  box-shadow: 0 6px 20px rgba(43, 108, 176, 0.6);
  transform: translateY(-3px);
}

/* bottom */

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  margin-top: 70px;
  padding-top: 25px;
  text-align: center;
}


.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

/* icons */

.contact-item i {
  color: #ff2b2b;
  font-size: 18px;
  margin-top: 3px;
}

/* text */
.contact-text {
  color: #9aa3ad;
  font-size: 15px;
  line-height: 1.6;
  transition: .3s;
}

/* hover effect */

.contact-item:hover .contact-text {
  color: #ff2b2b;
  transform: translateX(3px);
}






/* CONTACT US SECTION */
/* SECTION */

.contact-container {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT SIDE */

.contact-title{
font-size:20px;
color:#0b2545;
font-weight:600;
}

.contact-heading{
font-size:38px;
font-weight:700;
color:#0b2545;
margin:5px 0;
}

.contact-sub{
color:#ff6a00;
font-weight:600;
margin-bottom:20px;
}

/* FORM */

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea{

width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.form-row{
display:flex;
gap:12px;
}

.form-row input{
flex:1;
}

textarea{
height:90px;
resize:none;
}

/* BUTTON */

.enquiry-button{
background:linear-gradient(135deg,#ff6a00,#ff3c00);
border:none;
color:white;
padding:12px 28px;
border-radius:6px;
font-weight:600;
cursor:pointer;
}

/* MAP */

.map iframe{
width:100%;
height:420px;
border-radius:10px;
border:none;
}

/* RESPONSIVE */

@media(max-width:900px){

.contact-section{
grid-template-columns:1fr;
}

}



















/* Responsive */
@media (max-width: 768px) {
  .slide {
    min-width: 100%;
  }
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .reviews-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-container {
    grid-template-columns: 1fr;
  }

  .reviews-title {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 20px;
  }
}