/* ============= GLOBAL SETTINGS ============= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #00008B;
  background-color: #fff;
  scroll-behavior: smooth;
}

/* COLORS */
.bg-navy { background-color: #00008B !important; }
.text-gold { color: #C89035 !important; }

/* BUTTONS */
.btn-gold {
  background-color: #C89035;
  color: #fff;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  background-color: #b47a22;
  color: #fff;
}
.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  transition: 0.3s;
}
.btn-outline-dark {
  border: 2px solid #00018b;
  color: #00018b;
  transition: 0.3s;
}
.btn-outline-light:hover {
  background-color: #fff;
  color: #00008B;
}

/* ============= NAVBAR ============= */
.navbar {
  background-color: #fff !important;
  padding: 0.8rem 0;
}
.navbar .nav-link {
  color: #00018b !important;
  margin-left: 15px;
  font-weight: 500;
}
.navbar .nav-link:hover {
  color: #C89035 !important;
}
.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* ============= HERO SECTION ============= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
}
.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
}
.hero-content p {
  max-width: 700px;
  margin: 15px auto;
  font-size: 1.1rem;
}

/* ============= SECTION TITLES ============= */
.section-title {
  font-weight: 700;
  text-transform: uppercase;
  color: #00008B;
  letter-spacing: 1px;
}
.section-title span {
  color: #C89035;
}

/* ============= ABOUT ============= */
#about p {
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}

/* ============= SERVICES ============= */
.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.service-card i {
  font-size: 2rem;
  color: #C89035;
  margin-bottom: 10px;
}
.service-card h5 {
  color: #c89035;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  color: #222222;
 
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ==================== DESTINATIONS SECTION ==================== */
#destinations {
  background-color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}

#destinations h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00008b; /* Travixo Blue */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

#destinations h3 {
  font-size: 1.7rem;
  color: #c89035; /* Travels Gold */
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
}

#destinations h5 {
  font-size: 1.3rem;
  color: #00008b;
  font-weight: 600;
  margin-top: 20px;
  text-transform: capitalize;
}

#destinations .region {
  margin-bottom: 50px;
}

/* Card Styling */
#destinations .card {
  border-radius: 12px;
  overflow: hidden;
  border: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
}

#destinations .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#destinations img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

#destinations .card-body h6 {
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}

/* ==================== FADE-UP ANIMATION ==================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE GRID FIX ==================== */
@media (max-width: 992px) {
  #destinations img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  #destinations h2 {
    font-size: 1.8rem;
  }
  #destinations h3 {
    font-size: 1.4rem;
  }
  #destinations h5 {
    font-size: 1.1rem;
  }
  #destinations .card-body h6 {
    font-size: 0.9rem;
  }
}

/* ==================== INDIA DOMESTIC CATEGORY HEADINGS ==================== */
#india-domestic h5 {
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid #c89035;
  display: inline-block;
  padding-bottom: 6px;
}

#india-domestic .card {
  background-color: #fff;
}

#india-domestic .card:hover {
  background: #f9f9f9;
  border: 1px solid #eee;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ==================== SECTION SPACING FIX ==================== */
#destinations .container {
  max-width: 1200px;
  margin: 0 auto;
}


/* ============= STATS ============= */
#stats h2 {
  color: #C89035;
}
#stats h3 {
  color: #fff;
  font-weight: 700;
  font-size: 2.5rem;
}
#stats p {
  color: #fff;
  font-size: 1.1rem;
}

/* ============= GALLERY ============= */
.gallery-img {
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ============= TESTIMONIALS ============= */
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.testimonial-card h6 {
  color: #00008B;
  margin-top: 10px;
}
.testimonial-card:hover {
  transform: translateY(-6px);
}

/* ============ Contact Form Message Animation ============ */
.fade-message {
  transition: opacity 0.8s ease;
  font-weight: 500;
}
.fade-message.success {
  color: green;
}
.fade-message.error {
  color: red;
}


/* ============= FOOTER ============= */
footer {
  text-align: center;
}
.footer-logo {
  height: 45px;
  width: auto;
}
footer a {
  color: #C89035;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #fff;
}

/* ============= ANIMATIONS ============= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.contact-section {
  background: #fafafa;
}

.contact-box {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-box i {
  font-size: 22px;
  color: #2b59ff;
  background: #eef1ff;
  padding: 12px;
  border-radius: 50%;
}

.contact-box small {
  display: block;
  color: #888;
}

.form-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-control {
  border-radius: 10px;
  padding: 10px 15px;
}

.btn-gold {
  background: #c79a3b;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
}

.btn-gold:hover {
  background: #b4882f;
  color: #fff;
}
.form-label {
  text-align: left !important;
  display: block;
}
.text-left-block,
.text-left-block * {
  text-align: left !important;
}

.stat-icon {
  font-size: 32px;
  color: #c89035;
}

#stats h3 {
  font-weight: 700;
  font-size: 36px;
}

#stats p {
  opacity: 0.85;
}


.gallery-img {
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.gallery-img {
  object-fit: cover;
  transition: 0.4s;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.gallery-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}

/* Zoom Icon */
.zoom-icon {
  color: white;
  font-size: 40px;
  transform: scale(0);
  transition: 0.4s;
}

/* Hover Effects */
.gallery-box:hover .gallery-img {
  filter: blur(3px);
  transform: scale(1.1);
}

.gallery-box:hover .gallery-overlay {
  opacity: 1;
}

.gallery-box:hover .zoom-icon {
  transform: scale(1);
}
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 320px;   /* Fixed Height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin: auto;
}

.m15{
    margin-left: 15px;
}
.nav-logo{
    max-width: 210px;
}
.navbar-toggler-icon{
 --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video,
.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.carousel-item {
  position: relative;
}

.text-gold {
  color: #d4af37;
}

/* SERVICES */
.service-card{
  background:#fff;
  border-radius:16px;
  padding:30px 25px;
  height:100%;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:.3s;
  border-top:4px solid transparent;
}
.service-card:hover{
  transform:translateY(-6px);
  border-top-color:#C89035;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}
.service-icon{
  width:64px;height:64px;
  margin:0 auto 15px;
  border-radius:50%;
  background:rgba(200,144,53,.15);
  display:flex;align-items:center;justify-content:center;
  font-size:26px;color:#C89035;
}


/* ===== QUOTE MODAL ===== */
.quote-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.65);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.quote-overlay.active{
  display:flex;
}

.quote-box{
  background:linear-gradient(135deg,#00008B,#0c0c3a);
  width:100%;
  max-width:450px;
  padding:32px;
  border-radius:18px;
  color:#fff;
  position:relative;
  box-shadow:0 0 40px rgba(200,144,53,0.45);
}

.quote-box h3{
  text-align:center;
  font-weight:700;
}

.quote-line{
  width:90px;
  height:3px;
  background:#C89035;
  margin:12px auto 28px;
}

.quote-close{
  position:absolute;
  top:16px;
  right:18px;
  background:none;
  border:2px solid #C89035;
  color:#C89035;
  width:36px;
  height:36px;
  border-radius:50%;
  font-size:20px;
  cursor:pointer;
}

.quote-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.quote-grid label{
  font-size:0.85rem;
  margin-bottom:4px;
  display:block;
}

.quote-grid input,
.quote-grid select,
.quote-grid textarea{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:none;
}

.quote-grid .full{
  grid-column:1/3;
}

.btn-gold-lg{
  background:#C89035;
  color:#fff;
  border:none;
  padding:12px 50px;
  font-weight:600;
  border-radius:30px;
}

.btn-gold-lg:hover{
  background:#b47a22;
}

.main-footer {
    /* background: linear-gradient(135deg, #071a26, #0d2b3f); */
    background: #00018b;
    padding: 80px 0 0;
    color: #fff;
}

.footer-logo {
    width: 140px;
}

.brand-name {
    font-weight: 700;
    font-size: 26px;
}

.brand-name span {
    color: #d4af37;
}

.brand-tagline {
    color: #cfcfcf;
    font-size: 15px;
    margin: 15px 0 25px;
    max-width: 300px;
}

/* Social */
.social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.4s;
}

.social-icons a:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-4px);
}

/* Visitor */
.visitor-box {
    margin-top: 25px;
    background: rgba(255,255,255,0.06);
    padding: 15px 20px;
    border-radius: 10px;
    width: fit-content;
}

.visitor-box h5 {
    color: #d4af37;
    margin: 5px 0 0;
}

/* Titles */
.footer-title {
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    text-align: left;
}

.footer-title::after {
    content: "";
    width: 45px;
    height: 2px;
    background: #d4af37;
    display: block;
    margin-top: 8px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 6px;
}

/* Contact */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.contact-item i {
    margin-right: 12px;
    color: #d4af37;
}

/* Bottom */
.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Bottom Links */
.bottom-links a {
    margin-left: 30px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.bottom-links a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #d4af37;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: #d4af37;
}

.bottom-links a:hover::after {
    width: 100%;
}

.section-hero {
  position: relative;
  height: 50vh;
  width: 100%;
  margin-top: 70px;
  overflow: hidden;
}

.section-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.section-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.section-hero-content h1 {
  font-size: 5rem;
  font-weight: 700;
}

.section-hero-content p {
  font-size: 1.2rem;
}
.vm-box {
    background: rgb(255 255 255 / 61%);
    padding: 40px 30px;
    border-radius: 15px;
    transition: 0.4s ease;
    height: 100%;
}

.vm-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.vm-icon {
    width: 75px;
    height: 75px;
    background: #d4af37;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
}

.vm-box h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.vm-box p {
    color: #393737;
    font-size: 15px;
    margin-top: 10px;
}

.bg-f1{
  background: #f1f1f1;
}

.why-choose-us {
    background: #ffffff;
}

.choose-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s ease;
    height: 100%;
}

.choose-box i {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 15px;
}

.choose-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.luxury-destinations {
  background: #f9fafc;
  font-family: 'Poppins', sans-serif;
}

.light-side {
  background: #ffffff;
}

/* Category Heading */
.category-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.category-header p {
  color: #666;
}

/* Card Styling */
.featured-card,
.small-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.featured-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.6s ease;
}

.small-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Overlay */
.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
  text-align: center;
}

.card-overlay h4,
.card-overlay h6 {
  margin-bottom: 10px;
  font-weight: 600;
}

/* Buttons */
.overlay-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #d4af37;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.overlay-btn:hover {
  background: #fff;
  color: #000;
}

.small-btn {
  padding: 5px 14px;
  font-size: 12px;
}

/* Hover Zoom */
.featured-card:hover img,
.small-card:hover img {
  transform: scale(1.1);
}


/* ============ GALLERY GRID ============ */
.gallery-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.gallery-box:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
}

/* SECTION */
.services-premium {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* TITLE */
.section-title span {
  color: #c9a227;
}

/* ROW SPACING */
.service-row {
  padding: 30px 0;
}

/* IMAGE WRAP */
.service-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.service-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .6s ease;
}

/* IMAGE HOVER ZOOM */
.service-img-wrap:hover img {
  transform: scale(1.08);
}

/* CONTENT CARD */
.service-content {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-content h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.service-content p {
  color: #666;
  line-height: 1.7;
}

/* GOLD BUTTON */
.btn-gold {
  background: linear-gradient(135deg, #c9a227, #e6c65c);
  border: none;
  color: #000;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  transition: .3s;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201,162,39,.4);
}
/* ===== IMAGE FIX ===== */
.service-img-wrap {
  width: 100%;
  height: 400px;        /* 🔥 desktop height */
  overflow: hidden;
  border-radius: 18px;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* 🔥 image stretch nahi hogi */
  display: block;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .service-img-wrap {
    height: 250px;      /* 🔥 mobile height */
  }
}

/* MOBILE */
@media (max-width: 991px) {
  .service-img-wrap img {
    height: 260px;
  }

  .service-content {
    margin-top: 20px;
    padding: 25px;
  }
}


/* Responsive */
@media (max-width: 768px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .bottom-links {
        margin-top: 10px;
    }

    .bottom-links a {
        margin: 0 12px;
    }
}


/* Mobile */
@media(max-width:768px){
  .quote-grid{
    grid-template-columns:1fr;
  }
  .quote-grid .full{
    grid-column:1;
  }
}

