:root {
  --white: #FFFFFF;
  --yellow: #FEBA17;
  --Blue: #10536E;
  --green: rgba(97, 197, 97, 1);
  --bg-section: rgba(250, 255, 250, 1);
  --padding-section: 100px 0;
  --Grey: rgba(67, 67, 67, 1);
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  height: 200vh;
}

section {
  width: 100%;
  overflow: hidden;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--Blue);
  margin-bottom: 80px;
  position: relative;
  display: inline-block;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 91px;
  height: 8px;
  background-color: var(--green);
}

.section-title::before {
  left: calc(50% - 110px);
}

.section-title::after {
  right: calc(50% - 110px);
}

.section-title span {
  display: inline-block;
  width: 15px;
  height: 13px;
  background-color: var(--green);
  border-radius: 50%;
  position: absolute;
  top: calc(100% + -3px);
  left: 50%;
  transform: translateX(-50%);
}

/* Navbar Styles */
.navbar {
  transition: all 0.3s ease;
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.80);
}

.navbar.scrolled {
  background-color: var(--bg-section);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  height: 50px;
}

.nav-link {
  color: var(--Blue);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 10px;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--yellow);
}

.navbar-toggler {
  color: var(--Blue);
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  transition: all 0.2s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.34);
  z-index: 2;
} */

.hero-content {
  position: absolute;
  color: #fff;
  width: 80%;
  max-width: 900px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-carousel .owl-item {
  height: 100vh;
  min-height: 600px;
}

.carousel-item {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: block !important;
  filter: brightness(75%) contrast(0.9);
}

/* Owl Carousel Customization */
.hero-carousel .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-carousel .owl-dot span {
  background: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.3s ease;
}

.hero-carousel .owl-dot.active span {
  background: var(--white) !important;
  width: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    padding: 0 10%;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 5%;
    align-items: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}

/* Banner Search Section */
.banner-search-section {
  position: absolute;
  margin-top: -80px;
  z-index: 10;
  padding-bottom: 30px;
}

.search-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.32);
}

.search-field {
  margin-bottom: 15px;
}

.search-field label {
  font-weight: 600;
  color: var(--Grey);
  margin-bottom: 8px;
  display: block;
  font-size: 0.9rem;
}

.form-control, .form-select {
  border: 1px solid rgba(16, 83, 110, 0.1);
  padding: 10px 12px;
  height: 45px;
  font-size: 0.9rem;
}

.btn-search {
  background-color: var(--Blue);
  color: white;
  border: none;
  padding: 10px;
  font-weight: 600;
  border-radius: 8px;
  height: 45px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .banner-search-section {
      margin-top: -40px;
      padding-bottom: 20px;
  }
  
  .search-card {
      padding: 15px;
  }
  
  .search-field {
      margin-bottom: 10px;
  }
  
  .form-control, .form-select {
      height: 40px;
      padding: 8px 10px;
  }
  
  .btn-search {
      height: 40px;
  }
}

@media (max-width: 576px) {
  
  .banner-search-section {
      margin-top: -200px;
  }
  
  .search-card {
      padding: 12px;
  }
  
  .search-field label {
      font-size: 0.8rem;
  }
  
  .form-control, .form-select {
      font-size: 0.8rem;
      height: 38px;
  }
  
  .btn-search {
      font-size: 0.8rem;
  }
}


/* About Section  */
.about-section {
  background-color: var(--bg-section);
  position: relative;
  overflow: hidden;
  padding: var(--padding-section);
}

.sec-title {
  color: var(--Blue) !important;
  text-transform: uppercase;
  font-size: 20px;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(129, 129, 129, 1);
  position: relative;
  padding-bottom: 15px;
}


.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.about-image img {
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);

}

.about-content {
  position: relative;
  padding-left: 30px
}

.about-content::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(97, 197, 97, 1);
  border-radius: 2px;
}

.about-content p {
  font-weight: 400;
  line-height: 1.7;
  color: var(--Grey, rgba(67, 67, 67, 1));
}

.about-content p span {
  font-weight: 700;
  justify-content: center;
}


/* Why Choose Us  */
.why-choose-section {
  padding: var(--padding-section);
  background-color: var(--bg-section);
}

.why-choose-section .section-header {
  max-width: 600px;
  margin: 0 auto;
}

.choose-card {
  background-color: rgba(235, 102, 43, 0.23);
  transition: all 0.3s ease;
  border-radius: 20px;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.choose-card .icon i {
  margin-bottom: 15px;
  color: rgba(235, 102, 43, 1);
}

.card-title {
  font-size: 16px;
  font-weight: 500;
  color: rgba(5, 7, 60, 1);
}

/* Destinations Section */
.destinations-section {
  background-color: var(--bg-section);
  padding: var(--padding-section);
}

.destinations-slider {
  position: relative;
  /* padding: 0 50px; */
}

.destination-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 300px;
  /* width: 600px; */
}

.destination-img {
  height: 100%;
}

.destination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  transform: translateY(20px);
  transition: all 0.5s ease;
  opacity: 0;
}

.destination-name {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.destinations-slider .owl-item.center .destination-overlay {
  transform: translateY(0);
  opacity: 1;
}

.destination-item:hover .destination-img img {
  transform: scale(1.05);
}

.btn-see-more {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
  padding: 8px;

}

.btn-see-more:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

/* Owl Carousel Customization */
/* Owl Carousel Customization */
.destinations-slider .owl-stage-outer {
  padding: 50px 0;
}

.destinations-slider .owl-item {
  transition: all 0.5s ease;
  z-index: 1;
}
.destinations-slider .owl-item:not(.center.active) {
  opacity: 0.8;
  min-height: 450px;
}
.destinations-slider .owl-item.active:not(.center) {
  filter: blur(1px);
  opacity: 0.8;
}

.destinations-slider .owl-item.active.center {
  z-index: 2;
  transform: scale(1.2) translateY(60px);
  opacity: 1;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .destinations-slider {
    padding: 0;
  }


}

.destination-description {
  color: var(--Grey);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Modal Styles (applies to all) */
.modal-content {
  border-radius: 15px;
  overflow: hidden;
  border: none;
}

.modal-header {
  background-color: var(--Blue);
  color: white;
  padding: 20px 25px;
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
}

.btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-section);
  padding: var(--padding-section);
}

.contact-card {
  background: linear-gradient(180deg, rgba(16, 83, 110, 0.72) 0%, rgba(97, 197, 97, 0.72) 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.contact-card-img .img-top{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.contact-card-img .img-bottom{
  position: absolute;
  bottom: 0;
  right: 0;
}

.contact-info {
  color: var(--Blue);
}


.contact-title {
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--white);
}

.contact-description {
  line-height: 1.7;
  font-weight: 400;
  color: var(--Grey);
}

.detail-item {
  display: flex;
  gap: 15px;
}

.icon-box {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-title {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--Blue);
}

.detail-text {
  color: black;
  font-weight: 400;
  font-size: 15;
  margin-bottom: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-control {
  border: 1px solid rgba(16, 83, 110, 0.2);
  /* padding: 12px 15px; */
  border-radius: 20px;
  opacity: 0.5;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(97, 197, 97, 0.25);
}

.btn-submit {
  background-color: var(--white);
  opacity: 0.8;
  color: black;
  border: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s ease;
  /* width: 50%; */
}

.btn-submit:hover {
  background-color: var(--green);
  transform: translateY(-3px);
}

.contact {
  text-decoration: none;
  font-size: 14px;
  color: black;
  font-weight: 700;
}

.contact:hover {
  color: var(--Blue);
}

/* Footer Styles */
.footer-section {
  background-color: var(--Blue);
  color: white;
}

.footer-description {
  opacity: 0.8;
  line-height: 1.7;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: white;
  background-color: var(--green);
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-link:hover {
  color: var(--green);
  text-decoration: underline;
  opacity: 1;
}

.copyright-section {
  font-size: 0.9rem;
}


.subscribe-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin-top: 15px;
}

.subscribe-title {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  padding-bottom: 10px;
}


.subscribe-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

.subscribe-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  height: 40px;
  font-size: 0.9rem;
}

.subscribe-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.btn-subscribe {
  background-color: var(--green);
  color: white;
  border: none;
  padding: 0 15px;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  color: var(--Blue);
}

.subscribe-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 10px;
  margin-bottom: 0;
}