/* ------------------------ Hero Section ------------------------------ */
.hero-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
}
.hero-section img {
  height: 90vh;
  width: 100%;
  object-fit: cover;      /* image fill karegi, gap nahi aayega */
  object-position: 50% 70%; 
 /* niche cut kam hoga */
}


/* Caption Overlay */
.carousel-caption {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  /* justify-content: center; */

  justify-content: flex-start; /* Top me le aayega */
  align-items: center;         
  padding: 40px 20px 20px;     
  height: 100%;   

}

/* Headings */
.tagline {
  font-size: 3.5rem;
  font-weight: 700;
  color: var( --color-white);
  line-height: 1.3;
  font-family: sans-serif;
}
.tagline .highlight {
  background: linear-gradient(90deg, #ffcc00, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subtitle {
  font-size: 1.5rem;
  color: var( --light-color);
  margin: 15px auto 25px;
  max-width: 720px;
}

/* Buttons Container */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* Button Base */
/* Common Button Base */
.hero-buttons .btn {
  border-radius: 30px;
  font-weight: 600;
  padding: 12px 25px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* Hover Border Animation (common for all buttons) */
.hero-buttons .btn::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.6s ease;
}
.hero-buttons .btn:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Explore Button */
.btn-explore {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}
.btn-explore:hover {
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

/* Brochure Button */
.btn-brochure {
  background: linear-gradient(135deg, #facc15, #fbbf24);
}
.btn-brochure:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #22c55e;
}
.btn-whatsapp:hover {
  background: #16a34a;
}



/* Responsive Fixes */
@media (max-width: 768px) {
  .tagline { font-size: 2rem; }
  .subtitle { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
} 

/* Smooth carousel transition */
.carousel-item {
  transition: opacity 1.5s ease-in-out !important;
}
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 1.5s;
}
.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Animate caption content */
.carousel-caption h1,
.carousel-caption p,
.carousel-caption .hero-buttons {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-in-out;
}
.carousel-item.active .carousel-caption h1,
.carousel-item.active .carousel-caption p,
.carousel-item.active .carousel-caption .hero-buttons {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------ Destinations Section ------------------------------ */

.designation {
    background-color: var(--bg-mid-dark);
}

.designation .main-heading {
    color: var(--color-white);
}

.designation .pera-text {
    color: var(--color-white);
}

/* CARD STYLING */
.designation-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--color-white);
    padding: 33px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    min-height: 220px;
}

/* FRONT (default view) */
.designation-card .country-front {
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.designation-card .country-front img {
    height: 68px;
    width: 105px;
    border-radius: 10px;
    margin: 12px 0px;
}

.designation-card .country-front .country-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
}
/* HIDDEN CONTENT */
.designation-card .country-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 16px;
    background: var(--color-light-blue);
    color: var(--color-white);
    opacity: 0;
    transform: translateY(100%);   
    transition: opacity 0.4s ease, transform 0.8s ease;
    z-index: 3;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

 .explore-btn {
    background: var(--color-white);
    color: var(--color-blue);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

 .explore-btn:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

.designation-card:hover .country-front {
    opacity: 0; /* Hide front content */
}

.designation-card:hover .country-content {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------ Accommodation Section ------------------------------ */

.accommodation-section{ 
  background-color: var(--color-white);
}
.img-container {
  height: 220px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.img-container img:hover {
  transform: scale(1.07);
}
.accommodation-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.price {
  color: var(--color-blue);
  font-weight: 600;
}
.swiper-slide {
  display: flex;
  height: auto !important; 
}

.accommodation-card .card-body {
  flex-grow: 1; /* content ko expand karega equal height ke liye */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Book Now button neeche chipak jaayega */
}

.accommodation-section .swiper-button-next,
.accommodation-section .swiper-button-prev {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: var(--color-blue) !important;
  transition: all 0.3s ease;
}

.accommodation-section .swiper-button-next::after,
.accommodation-section .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.accommodation-section .swiper-button-next:hover,
.accommodation-section .swiper-button-prev:hover {
  background-color: var(--color-blue);
  color: var(--color-white) !important;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(13, 110, 253, 0.4);
}
.accommodation-section .swiper-button-next, 
.accommodation-section .swiper-button-prev {
    svg {
        height: 50% !important;
    }
}
/* Swiper Pagination Dots */
.accommodation-section .swiper-pagination {
  margin-top: 30px; /* dots aur slider ke beech thoda gap */
  position: relative; /* fixed na ho jaye */
}

.accommodation-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--light-color);
  opacity: 1;
  margin: 0 6px !important;
  border: 2px solid transparent;
  transition: all 0.4s ease; /* smoother transition */
}

.accommodation-section .swiper-pagination-bullet-active {
  background: var(--color-blue);
  /* border: 2px solid #0056b3; */
  transform: scale(1.2);
  box-shadow: 0 0 6px rgba(13,110,253,0.6);
}


/* ------------------------ Contact Us Section ------------------------------ */

.contact-section{
    background-color: var(--bg-mid-dark);
}
.contact-section .main-heading {
  color: var(--color-white);
}
.contact-card{
    border-radius: 20px;
    background: var(--color-white);
    font-size: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.contact-section .form-control {
    background-color: var(--color-white);
    padding: 12px 12px;
    border-radius: 8px;
}
.contact-card a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var( --dark-color);
}

.contact-section .errMsg{
    font-weight: bold;
    color: var(--color-orange);
    font-size: 20px;
}
@media (max-width: 480px) {
    .contact-section .errMsg{
    font-size: 14px;
}
}
.qr-box {
  min-height: 200px; 
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #d6d6d6;
  justify-content: center; 
}

/* Make the QR image fully visible and centered */
.qr-img {
  max-height: 180px; 
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

/* Google map container to match QR height */
.map-container {
  height: 200px; 
  min-height: 200px; 
}
















