/* Top Bar */
.top-bar {
    background-color: #7B1D3F;
    height: 30px;
}
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  
  main {
    flex: 1;
  }
/* Navigation Bar */
.nav-bar {
    background-color: transparent !important;
    box-shadow: none !important;
}


.nav-link {
    color: black;
    font-weight: bold;
    text-decoration: none;
}

.nav-link:hover {
    text-decoration: underline;
}

.plan-btn {
    background-color: #7B1D3F;
    border: none;
    color: white;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
  }

.icon {
    font-size: 20px;
    color: black;
    margin-left: 10px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: stretch;
    /* Ensures both child divs have equal height */
    justify-content: center;
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

/* Flex container */
.container {
     flex-wrap: wrap;
    align-items: stretch;
    padding-left: 20px;
    /* Forces equal height for hero-text & hero-image */
}

/* Hero Image */
.hero-image {
    flex: 1;
    /* Takes equal width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hero Text */
.hero-text {
    flex: 1;
    /* Takes equal width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: left;
}

/* Ensure images scale properly */
.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .hero-image,
    .hero-text {
        flex: none;
        width: 100%;
    }
}

.caption {
    color: #7B1D3F;
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}

.hero-text h2 {
    color: #7B1D3F;
    font-weight: bold;
}

.hero-text p {
    color: #333;
}

.cta-btn {
    background-color: transparent;
    border: 2px solid #7B1D3F;
    color: #7B1D3F;
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: #7B1D3F;
    color: white;
}

/* Button Styling */
.hero-text .btn-click {
    display: inline-block;
    padding: 8px 16px;
     font-size: 14px;
     font-weight: bold;
    color: #fff;
    background-color: #7B1D3F;
     border: 2px solid #7B1D3F;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.hero-text .btn-click:hover {
    background-color: #7B1D3F;
     border-color: #7B1D3F;
}
.hero-description {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
}
 .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
 }

.zoomed-image {
    transform: scale(1.5);
    /* Zoom in 1.5x */
    transform-origin: center;
    /* Keep it centered */
    transition: transform 0.5s;
    /* Smooth effect (optional) */
}

.divider {
    height: 2px;
    background-color: #ddd;
    width: 80%;
    max-width: 500px;
    margin: 30px auto;
}

.coming-soon {
    font-size: 18px;
    color: #4f6480;
    /* Slate blue */
    font-weight: 500;
}

.section {
    display: none !important;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 50px 20px;
}

.section.active {
    display: flex !important;
}

.custom-btn {
    padding: 5px 10px;
    background-color:  #f0dbe3;
    color: #7B1D3F;
    border: none;
    outline: none;
     transition: border 0.3s;
     margin-bottom: 20px;
 }

.custom-btn:focus,
.custom-btn:active {
    border: 4px solid #7B1D3F;
 }

.destination-card {
    background-color: #7B1D3F; /* deep maroon */
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(123, 29, 63, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(123, 29, 63, 0.5);
}
.hover-effect {
    transition: transform 0.2s ease-in-out, background-color 0.2s;
    cursor: pointer;
  }
  
  .hover-effect:hover {
    transform: scale(1.05);
    background-color: #7B1D3F;
  } 
  #questionnaireForm {
    width: 100%;
    max-width: 800px;
    margin: auto;
    
  }
  .footer-section {
     background: linear-gradient(135deg, #E5E5E5, #E5E5E5);
    color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}  
  
.footer-section a:hover {
    text-decoration: underline;
}.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo-right {
    text-align: right;
    margin-left: 80px;
  }
  .logo-circle {
    display: inline-block;
    background: white;
    border-radius: 50%;
    padding: 8px;
  }
  
  .logo-circle img {
    height: 50px;
    width: 50px;
    object-fit: contain;
  }
  .nav-right {
    margin-left: auto; 
    display: flex;
    align-items: center;
    text-align: right;
  }
  .nav-right a {
    margin-left: 20px;
    color: #333;
    text-decoration: none;
  }
  
  .search-icon i {
    font-size: 18px;
    cursor: pointer;
    margin-right: 20px;
  }
  html,
  body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .footer-section {
    background-color: rgba(0, 0, 0, 0.7); /* Optional for contrast */
  }

   body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: url('../images/blue.png') no-repeat center center fixed;
    background-size: cover;
  }body.whyus-page {
    background: url(../images/combine\ backgroud.png) no-repeat center center fixed !important;
    background-size: cover;
    margin: 0;
    padding: 0;
    height: 100%;
     

  }
  
  .nav-bar { 
     background: rgba(255, 255, 255, 0.6); /* semi-transparent background */
     padding: 10px 20px;
    z-index: 1000;
  }
  
  .nav-bar .fa-bars,
  .nav-bar .fa-search {
    color: black; /* make icons black */
    font-size: 20px;
  }
  
  
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
     background-color: #fff;
    color: #333;
  }

  .section-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }

  .section-about{
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-about img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  h2 {
    color: #a52a2a;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
  }

  /* Position the navbar over the banner */
.nav-bar-about {
    padding: 10px 20px;
  position: fixed;
   top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: none !important;

  }

/* Full-screen banner with side-by-side images */
.banner {
  display: flex;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.banner img {
  width: 33.33%;
  height: 100%;
  object-fit: cover;
}

.whyus-section {
  padding-top: 300px;
  padding-bottom: 300px;
  background: transparent;
  position: relative;
 
 
}

.whyus-content {
  background-color: #1d5ea9;
  }
 .container-whyus{
  width: 100vw;
 }
.nav-link.active {
    font-weight: bold;
    text-decoration: underline;
 }

