:root {
    --blue: #003264;
    --black: #202124;
    --white: #f8f9fa;
    --red: #8B0000;
  }
  
  /* Reset & Base Styling */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Comic Neue', cursive;
    background-color: #f4f4f4;
    padding-top: 80px;
  }
  
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 80px;
    transition: all 0.3s ease;
  }
  
  .header-container {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  
  .logo {
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 55px;
    width: auto;
  }
  
  /* Hamburger menu - hidden by default on desktop */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hamburger span {
    height: 3px;
    background-color: var(--blue);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  /* NAV MENU - Desktop version */
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
  }
  
  .nav-menu a {
    color: var(--blue);
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 5px 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .nav-menu a:hover {
    background-color: rgba(0, 50, 100, 0.1);
  }
  
  .nav-menu a.active {
    background-color: var(--red);
    color: white;
  }
  
  /* DROPDOWN MENU - For both desktop and mobile */
  .dropdown {
    position: relative;
  }
  
  .dropdown > a::after {
    content: ' ▼';
    font-size: 0.6em;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--red);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }
  
  .dropdown-content a {
    color: white;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
  }
  
  .dropdown-content a:hover {
    background-color: var(--blue);
    /* background-color: rgba(255, 255, 255, 0.1); */
  }
  
  /* Show dropdown when active class is added */
  .dropdown-content.show {
    display: block;
  }
  
  /* Mobile styles */
  @media (max-width: 992px) {
    .hamburger {
      display: flex;
    }
    
    .nav-menu {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 280px;
      height: calc(100vh - 80px);
      background-color: var(--blue);
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 10px;
      transition: left 0.3s ease;
      overflow-y: auto;
    }
    
    .nav-menu.show {
      left: 0;
    }
    
    .nav-menu a {
      color: white;
      width: 100%;
    }
    
    .dropdown {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
    }
    
    .dropdown-content {
      position: static;
      width: 100%;
      box-shadow: none;
      border-radius: 10px;
      margin-top: 5px;
    }
    
    /* Animate hamburger to X when menu is open */
    .hamburger.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  }

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 900px;
  padding: 30px 40px;
  border-radius: 20px;
  background: rgba(248, 248, 248, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-subheading {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--red);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero h1 span {
  color: var(--blue);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.btn {
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* WHO WE ARE Section */
.who-we-are-section {
  padding: 80px 20px;
  background: linear-gradient(270deg, #890303, #230c88);
  background-size: 600% 600%;
  animation: backgroundShift 15s ease infinite;
}

@keyframes backgroundShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.who-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.who-text {
  flex: 1 1 45%;
}

.who-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--white);
  text-align: center;
}

.animated-text {
  font-size: 1.1rem;
  animation: fadeInUp 3s ease;
  color: var(--white);
  line-height: 1.7;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.who-images {
  flex: 1 1 45%;
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
}

.who-images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.who-images img.show {
  opacity: 1;
}


 /* DESTINATIONS SECTION */
.destinations-section {
  background: linear-gradient(to right,#b80101    ,   #003366);
  padding: 80px 20px;
  text-align: center;
}

.destinations-section h2 {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 60px;
  background-color: var(--white);
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
}

.destinations-section h2 span {
  color: var(--blue);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

.destination-tile {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.destination-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-tile:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: background 0.3s ease;
}

.destination-overlay h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.6);
  padding: 5px 5px;
  border-radius: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.know-more-btn {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.destination-tile:hover .know-more-btn {
  opacity: 1;
  transform: translateY(0);
}


/* BOOKING SECTION */
.booking-section {
  background: linear-gradient(to right, #8b0000, #230c88);
  padding: 80px 20px;
  text-align: center;
}

.booking-section h2 {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 60px;
  background-color: var(--white);
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
}

.booking-section h2 span {
  color: var(--blue);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.booking-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
  animation: floatCard 3.5s ease-in-out infinite;
}

.booking-card:nth-child(1) {
  animation-delay: 0s;
}
.booking-card:nth-child(2) {
  animation-delay: 0.6s;
}
.booking-card:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.booking-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.booking-content {
  padding: 20px;
}

.booking-content h3 {
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.booking-content h3 span{
  color: var(--red);
  font-style: italic;
}

.booking-content p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 15px;
}


/* ✅ Approved By Section */
.approved-by-section {
  /* background: linear-gradient(270deg, #003366, #8b0000); */
  background-size: 400% 400%;
  animation: bgFlow 20s ease infinite;
  padding: 70px 20px;
  text-align: center;
}

@keyframes bgFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.approved-heading {
  font-size: 2rem;
  color: var(--red);
  background-color: var(--white);
  border-radius: 40px;
  padding: 12px 40px;
  margin: 0 auto 50px auto;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

.approved-heading span{
  color: var(--blue);
}

.approvals-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.approvals-logos img {
  width: 130px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approvals-logos img:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .approved-heading {
    font-size: 1.6rem;
    padding: 10px 30px;
  }

  .approvals-logos {
    gap: 25px;
  }

  .approvals-logos img {
    width: 100px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .approved-heading {
    font-size: 1.4rem;
    padding: 8px 20px;
  }

  .approvals-logos img {
    width: 80px;
    height: 60px;
  }
}



/* CTA SECTION */
.cta-section {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  background: url('../images/cta.jpg') center/cover no-repeat;
  animation: bgShift 30s linear infinite;
  min-height: 400px;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  margin: auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn {
  font-size: 1.2rem;
  padding: 12px 30px;
  background-color: var(--red);
  border-radius: 30px;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: var(--blue);
}

/* BUBBLES */
.bubble-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background: rgb(49, 10, 111);
  border-radius: 50%;
  animation: bubbleFloat 15s linear infinite;
}

.bubble:nth-child(1) {
  left: 20%;
  animation-duration: 12s;
  width: 30px; height: 30px;
}
.bubble:nth-child(2) {
  left: 40%;
  animation-duration: 18s;
}
.bubble:nth-child(3) {
  left: 60%;
  animation-duration: 16s;
  width: 50px; height: 50px;
}
.bubble:nth-child(4) {
  left: 75%;
  animation-duration: 20s;
  width: 25px; height: 25px;
}
.bubble:nth-child(5) {
  left: 90%;
  animation-duration: 22s;
  width: 35px; height: 35px;
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
    transform: translateY(-50vh) scale(1.2);
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}


/* Footer Styling */
.main-footer {
  background-color: #003264;
  color: #ffffff;
  padding: 40px 20px 20px 20px;
  font-family: 'Comic Neue', cursive;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
}

.footer-logo,
.footer-links,
.footer-contact {
  flex: 1 1 300px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 1rem;
  color: #ffffff;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a,
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #ffffff;
}

/* Hover Underline Animation */
.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #8B0000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Social Media Icons */
.social-media-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.social-media {
  display: flex;
  gap: 20px;
}

.social-media a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #8B0000;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

  .social-media {
    flex-wrap: wrap;
    justify-content: center;
  }
}
