

@charset "UTF-8";

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #35211f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #200f0d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f95e4d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #f95e4d; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #35211f; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f95e4d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #faf9f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #031013;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Cormorant Infant", serif;
}

a {
  color:#004986;
  text-decoration: none;
  transition: 0.3s;    font-weight: 600;

}

a:hover {
  color: #004986;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #16578d;
      font-weight: 700;

}
button#readMoreBtn {
    background: #004986;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #0a5d98;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(0, 0, 0, 0.26);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 3px 0;
  transition: all 0.5s;
  z-index: 997;
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
        padding: 10px;
    margin: 0;
    margin-top: 27px;
    z-index: 1000;
    position: absolute;
    max-height: 108px;
}

@media only screen and (max-width: 1024px) {
    #header .logo img {
        padding: 10px;
        margin: 0;
        margin-top: 52px;
        z-index: 1000;
        position: absolute;
        max-height: 101px;
    }
}
.img-fluid {
    max-width: 100%;
    height: auto;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #004986;
    background: #f9bc03;
    font-size: 22px;
    padding: 5px 24px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 600;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #004986;
    background: #f9bc03;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color:#004986;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;        padding-left: 140px;

  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 19px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;font-family: "Cormorant Infant", serif;
  }

  .navmenu a em,
  .navmenu a:focus em {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffd342;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #d19806;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: #004986;
  font-size: 19px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color:#ffffff!important;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 18px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a em {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size:18px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: #ffffff;
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a em {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}
footer#footer a {
    color: #f9bc03;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0; color: #83aa05;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #ffb900;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top em {
 font-size: 22px;
    color: #ff5f03;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #ffb900, transparent 20%);
  color: #000;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #000000;
  
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title .ft {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title .ft::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}
.ft {
    font-size: 24px;
    font-weight: 600;
    color: #fcb504;
}
.section-title div {
  color: var(--heading-color);
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  font-family: "Cormorant Infant", serif;
}
section#featured-tours {
    padding: 20px 0px;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .content-grid {
  /* margin-bottom: 5rem; */
}

@media (max-width: 768px) {
  .why-us .content-grid {
    margin-bottom: 3rem;
  }
}

.why-us .about-block {
  background: var(--surface-color);
  padding: 3rem;
  border-radius: 20px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.why-us .about-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-us .about-block .about-header {
  margin-bottom: 2rem;
}

.why-us .about-block .about-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
  line-height: 1.3;
}

.why-us .about-block .about-content p {
  font-size:20px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #000;
    font-weight: 500;    text-align: justify;

}

.why-us .about-block .feature-list {
  margin-top: 2rem;
}

.why-us .about-block .feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.why-us .about-block  em {
  color:#83aa05;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-us .about-block .feature-list .feature-item span {
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .why-us .about-block {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .why-us .about-block .about-header h3 {
    font-size: 1.6rem;
  }
}

.why-us .section-badge {
  display: inline-block;
  background: #f9bc03;
    color: #16578c;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us .image-showcase {
  position: relative;
  height: 100%;
}

.why-us .image-showcase .main-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.why-us .image-showcase .main-image img {
  height: 100%;
  object-fit: cover;
}

.why-us .image-showcase .main-image .overlay-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--surface-color);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-us .image-showcase .main-image .overlay-badge .badge-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-us .image-showcase .main-image .overlay-badge .badge-content i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.why-us .image-showcase .main-image .overlay-badge .badge-content .badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
}

.why-us .image-showcase .main-image .overlay-badge .badge-content .badge-text span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .image-showcase .floating-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.why-us .image-showcase .floating-card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.why-us .image-showcase .floating-card .card-content .rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.why-us .image-showcase .floating-card .card-content .rating i {
  color: #ffc107;
  font-size: 0.8rem;
}

.why-us .image-showcase .floating-card .card-content .rating span {
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.why-us .image-showcase .floating-card .card-content p {
  margin: 0;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
  .why-us .image-showcase .main-image {
    min-height: 300px;
  }

  .why-us .image-showcase .overlay-badge {
    top: 15px;
    right: 15px;
    padding: 0.8rem 1rem;
  }

  .why-us .image-showcase .floating-card {
    position: static;
    margin-top: 1rem;
    transform: none;
  }
}

.why-us .why-choose-wrapper {
  margin-top: 6rem;
}

.why-us .why-choose-wrapper .section-header {
  margin-bottom: 4rem;
}

.why-us .why-choose-wrapper .section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .why-us .why-choose-wrapper .section-header h3 {
    font-size: 2rem;
  }
}

.why-us .why-choose-wrapper .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .why-us .why-choose-wrapper {
    margin-top: 4rem;
  }

  .why-us .why-choose-wrapper .section-header {
    margin-bottom: 2.5rem;
  }
}

.why-us .feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: var(--surface-color);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.why-us .feature-box:hover {
  border-color: #005062;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-us .feature-box:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.why-us .feature-box:hover .feature-icon-wrapper .feature-icon {
  background: #004f61;
  color: var(--contrast-color);
}

.why-us .feature-box .feature-icon-wrapper {
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.why-us .feature-box .feature-icon-wrapper .feature-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, #004986, transparent 90%);
  color:#004986;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.why-us .feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.why-us .feature-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

@media (max-width: 768px) {
  .why-us .feature-box {
    padding: 1.5rem;
  }

  .why-us .feature-box .feature-icon-wrapper .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .why-us .feature-box h4 {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Featured Destinations Section
--------------------------------------------------------------*/
.featured-destinations .destination-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.featured-destinations .destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.featured-destinations .destination-card:hover .image-wrapper img {
  transform: scale(1.05);
}

.featured-destinations .destination-card:hover .explore-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateX(5px);
}

.featured-destinations .image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.featured-destinations .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-destinations .image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent 50%);
}

.featured-destinations .image-wrapper .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-destinations .image-wrapper .badge.featured {
  background: #ff6b35;
}

.featured-destinations .image-wrapper .badge.new {
  background: #28a745;
}

.featured-destinations .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
}

.featured-destinations .content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.featured-destinations .content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.featured-destinations .features {
  margin-bottom: 20px;
}

.featured-destinations .features .feature-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  margin-right: 6px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.featured-destinations .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.featured-destinations .card-footer .tours-count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.featured-destinations .card-footer .explore-btn {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-destinations .card-footer .explore-btn i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.featured-destinations .destinations-cta {
  margin-top: 60px;
  padding: 40px;
  background:linear-gradient(135deg, color-mix(in srgb, #004986, #004986 39%) 0%, color-mix(in srgb, #ffc107, #ffc107 90%) 100%);
  border-radius: 16px;
  text-align: center;
}

.featured-destinations .destinations-cta h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #f9bc03;
}

.featured-destinations .destinations-cta p {
  font-size: 20px;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 713px;
  margin-left: auto;
  margin-right: auto;
}

.featured-destinations .destinations-cta .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.featured-destinations .destinations-cta .btn {
  padding: 6px 20px;
    border-radius: 25px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
    font-size: 20px;
}

.featured-destinations .destinations-cta .btn.btn-primary {
  background: #004986;
    color: #ffffff;
    border-color: #004986;
}

.featured-destinations .destinations-cta .btn.btn-primary:hover {
  background: #005062;
  border-color: #004986;
  transform: translateY(-2px);
}

.featured-destinations .destinations-cta .btn.btn-outline {
 background: transparent;
        color: #004986;
    border-color: #004986;
}

.featured-destinations .destinations-cta .btn.btn-outline:hover {
  background:#00447d;
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .featured-destinations .destination-card .image-wrapper {
    height: 200px;
  }

  .featured-destinations .destination-card .content {
    height: calc(100% - 200px);
    padding: 16px;
  }

  .featured-destinations .destination-card .content h4 {
    font-size: 16px;
  }

  .featured-destinations .destination-card .content p {
    font-size: 13px;
  }

  .featured-destinations .destination-card .card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .featured-destinations .destination-card .card-footer .explore-btn {
    text-align: center;
    justify-content: center;
  }

  .featured-destinations .destinations-cta {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .featured-destinations .destinations-cta h3 {
    font-size: 24px;
  }

  .featured-destinations .destinations-cta p {
    font-size: 14px;
  }

  .featured-destinations .destinations-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .featured-destinations .destinations-cta .cta-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .featured-destinations .features .feature-tag {
    font-size: 10px;
    padding: 2px 6px;
    margin-right: 4px;
  }
}

/*--------------------------------------------------------------
# Featured Tours Section
--------------------------------------------------------------*/
.featured-tours .destination-card {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  position: relative;
  transition: all 0.4s ease;
}

.featured-tours .destination-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 75%);
}

.featured-tours .destination-card .destination-overlay {
  position: relative;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.featured-tours .destination-card .destination-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-tours .destination-card .destination-overlay .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured-tours .destination-card .destination-overlay .badge-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge {
  background-color: #ffb900;
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.hot {
  background-color: #ff4757;
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.cultural {
 /*  background-color: #7209b7; */
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.limited {
  background-color: #ffb900;
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.new {
  background-color: #2ed573;
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.adventure {
  background-color: #ff7675;
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.popular {
  background-color: #fdcb6e;
  color: var(--heading-color);
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.luxury {
  background-color: #a29bfe;
}

.featured-tours .destination-card .destination-overlay .badge-container .price-tag {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  color: var(--heading-color);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.featured-tours .destination-card .destination-overlay .card-details {
  color: var(--contrast-color);
}

.featured-tours .destination-card .destination-overlay .card-details h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--contrast-color);
  line-height: 1.3;
}

.featured-tours .destination-card .destination-overlay .card-details .meta-info {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
}

.featured-tours .destination-card .destination-overlay .card-details .meta-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-tours .destination-card .destination-overlay .card-details .meta-info span i {
  color: var(--accent-color);
  font-size: 14px;
}

.featured-tours .destination-card .destination-overlay .card-details p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.featured-tours .destination-card .destination-overlay .card-details .action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn {
  background-color:#ff5f03;
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-2px);
  color: var(--contrast-color);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars i {
  color: #ffd700;
  font-size: 12px;
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars small {
  margin-left: 6px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-weight: 600;
  font-size: 12px;
}

.featured-tours .destination-card:hover .destination-overlay img {
  transform: scale(1.1);
}

.featured-tours .destination-card:hover .destination-overlay .card-overlay {
  opacity: 1;
}

.featured-tours .discover-more-btn {
  background: linear-gradient(135deg, #ff5f03, color-mix(in srgb, #ffb900, #0066cc 30%));
  color: var(--contrast-color);
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.featured-tours .discover-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.6s ease;
}

.featured-tours .discover-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.featured-tours .discover-more-btn:hover::before {
  left: 100%;
}

@media (max-width: 1200px) {
  .featured-tours .destination-card {
    height: 380px;
  }

  .featured-tours .destination-card .destination-overlay .card-details h5 {
    font-size: 20px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .meta-info {
    flex-direction: column;
    gap: 8px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn {
    text-align: center;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .featured-tours .destination-card {
    height: 350px;
  }

  .featured-tours .destination-card .destination-overlay .card-overlay {
    opacity: 1;
    background: linear-gradient(180deg, color-mix(in srgb, var(--default-color), transparent 60%) 0%, color-mix(in srgb, var(--default-color), transparent 20%) 100%);
  }

  .featured-tours .destination-card .destination-overlay .card-details h5 {
    font-size: 18px;
  }

  .featured-tours .destination-card .destination-overlay .card-details p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .featured-tours .destination-card {
    height: 320px;
  }

  .featured-tours .destination-card .destination-overlay .badge-container {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .featured-tours .destination-card .destination-overlay .badge-container .featured-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .featured-tours .destination-card .destination-overlay .badge-container .price-tag {
    font-size: 14px;
    padding: 6px 12px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .meta-info {
    gap: 6px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row {
    gap: 10px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.title2 {
    font-size: 25px;
    font-weight: 700;
    color: #0d6efd;
    font-family: "Cormorant Infant", serif;
}
.cta {
   font-weight: 700;
    padding: 1px 0;
    background:#004986;
    color: #ffffff;
    font-size: 20px;
}
.cta a{color:#fff;}
.container-fluid.bg {
    background:linear-gradient(46deg, #f9bc03, #004986);
}
.title3 {
   color: #f9bc03;
    font-weight: 800;
    font-size: 25px;
    font-family: "Cormorant Infant", serif;
}.para {
    color: #fff;
}
.featured-destinations
 {
    padding: 0px 20px;
}
.agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #f1f7f417 16%, #1c1d1cd1 68%);
    padding: 1em;
    -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
    -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42);
    box-shadow: 0px 5px 8px 5px rgb(24 24 23 / 42%);
    margin-top: -130px;
    position: relative;
}
.span1_of_1 {
    float: left;
    list-style: none;
    /* width: 30.9%; */
    padding-top: 10px;padding-right: 15px;
    padding-left: 15px;
}
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 16px;
    padding: 10px 20px 10px 20px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;    font-weight: 700;

}
.agileits_reservation em.bi {
    position: absolute;
    color: #004986;
    font-size: 0.9em;
    margin-top: 14px;
    margin-left: 5px;
}
.date_btn input[type="submit"] {
    text-transform: capitalize;
    width: 100%;
    background: #f9bc03;
    color: #004986;
    padding: 6px 0;
    border: none;
    font-size: 20px;
    outline: none;
    font-weight: 700;
    letter-spacing: 2px;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
}
@media (max-width: 480px){
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 15px;
    padding: 10px 46px 10px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;
}}

@media (max-width: 480px){
.col-xs-12.span1_of_1.book_date {
    width: 100% !important;
}
.agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #f1f7f417 16%, #1c1d1cd1 68%);
    padding: 1em;
    -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
    -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42);
    box-shadow: 0px 5px 8px 5px rgb(24 24 23 / 42%);
    margin-top: 20px!important;
    
}
#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}
}
@media only screen and (max-width: 768px){
.col-lg-2.col-sm-4.col-xs-12.span1_of_1.book_date.both {
    clear: both;
}

.agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #f1f7f417 16%, #1c1d1cd1 68%);
    padding: 1em;
    -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
    -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42);
    box-shadow: 0px 5px 8px 5px rgb(24 24 23 / 42%);
    margin-top: -197px;
    position: initial;
}
}
@media only screen and (max-width: 320px){
.header .btn-getstarted, .header .btn-getstarted:focus {
    color: #fff;
    background: #83aa05;
    font-size: 12px;
    padding: 5px 24px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 600;
}

}

/* ---- Sub Pages Codes Starting ---- */
.active-nav-link {
    color: #ff5203 !important;
}


.btn-get-started {
    background: #005062;
    padding: 10px 25px;
    margin-right: 15px;
    border-radius: 8px;
    color: #fff;
}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
    list-style: none;    font-size: 18px;

}
@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
        float: left;
    }
	    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
        float: left;
    }
}
ol, ul {
    padding-left: 0rem;
}
.tp {
    margin-top: 70px;
}
@media (min-width: 992px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color:#004f61;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
}
.btn.btn-primary.form-control {
    background: #8fcc5a;
    border: #004f61;
    color: #fff !important;
}
.gpdn {
    padding-top: 10px;
    color: #fff;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
}
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}
.img-fluid {
    max-width: 100% !important;
    height: auto;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 20px;
}
.videoWrapper {
	position:relative;
	padding-bottom: 55.25%;
    padding-top: 13px;
	height:0
}
.videoWrapper iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%
}



/* ---- Sub Pages Codes Starting ---- */
.active-nav-link {
    color: #f9bc03 !important;
}

/* ---- AMENITIES SECTION STYLES ---- */
#amenities {
    position: relative;
    overflow: hidden;
}
.amenities-content-wrapper {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    margin-bottom: -40px;
}

/* ---- HORIZONTAL TIMELINE FOR AMENITIES ---- */
.timeline-container {
    position: relative;
    padding-top: 50px;
    margin-bottom: 50px;
}
.timeline-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #004986, #004986);
    transform: translateY(-50%);
    z-index: 1;
}
.timeline-progress {
    position: absolute;
    top: 50px;
    left: 0;
    height: 4px;
    background: #f9bc03;
    transform: translateY(-50%);
    z-index: 2;
    width: 0%;
    transition: width 0.5s ease;
}
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}
.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.timeline-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 4px solid #004986;
    margin-bottom: 20px;
    position: relative;
    z-index: 4;
    transition: all 0.3s ease-in-out;
}
.timeline-item.active .timeline-marker {
    background: #f9bc03;
    border-color: #f9bc03;
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(249, 188, 3, 0.2);
}
.timeline-content {
    text-align: center;
    opacity: 0.7;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    width: 160px;
}
.timeline-item.active .timeline-content {
    opacity: 1;
    transform: translateY(0);
}
.timeline-icon {
    font-size: 2rem;
    color: #004986;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}
.timeline-item.active .timeline-icon {
    color: #f9bc03;
    transform: scale(1.2);
}
.timeline-content h3 {
    color: #004986;
    margin-bottom: 8px;
}

/* ---- AMENITY DETAIL BOXES ---- */
.amenity-details-wrapper {
    position: relative;
    min-height: 400px;
    margin-top: 20px;
    margin-bottom: 40px;
}
.amenity-detail {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 73, 134, 0.1);
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-sizing: border-box;
}
.amenity-detail.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}
.detail-image {
    width: 45%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 73, 134, 0.15);
    flex-shrink: 0;
}
.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.amenity-detail:hover .detail-image img {
    transform: scale(1.05);
}
.detail-content {
    width: 55%;
    padding-left: 40px;
    box-sizing: border-box;
}
.detail-content h3 {
    color: #f9bc03;
    margin-bottom: 15px;
}
.detail-content p {
    color: black;
    margin-bottom: 20px;
}

/* ---- RESPONSIVE ADJUSTMENTS ---- */
@media (max-width: 992px) {
    .amenity-detail {
        flex-direction: column;
        padding: 30px;
        align-items: stretch;
    }
    .detail-image {
        width: 100%;
        height: 250px;
        margin-bottom: 25px;
    }
    .detail-content {
        width: 100%;
        padding: 0;
    }
    .timeline-line, .timeline-progress { display: none; }
    .timeline { flex-wrap: wrap; justify-content: center; gap: 30px; }
    .timeline-item { width: calc(33.33% - 30px); margin-bottom: 20px; }
    .timeline-container { padding-top: 0; }
}
@media (max-width: 768px) {
    .amenity-details-wrapper { min-height: 500px; }
    .timeline-item { width: calc(50% - 20px); }
}
@media (max-width: 576px) {
    #amenities { padding: 60px 15px; }
    .timeline-item { width: 100%; max-width: 250px; margin: 0 auto 15px; }
    .amenity-detail { padding: 20px; }
    .detail-image { height: 200px; }
}

/* Reset and base styles - scoped to our amenities section */
.amenities-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.amenities-bg {
    position: relative;
    background-color: #004986;
    z-index: 1;
    overflow: hidden;
    margin-top: 30px;
}
.amenities-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Section container */
.amenities-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

/* Section header */
.amenities-header {
    text-align: center;
    margin-bottom: 60px;
}
.amenities-header h2 {
    color: #ffffff; 
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.amenities-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f9bc03; 
    border-radius: 2px;
}
.amenities-header p {
    color: #dddddd; 
    max-width: 600px;
    margin: 20px auto 0;
}

/* Flip card container */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.flip-card {
    background-color: transparent;
    perspective: 1000px;
    height: 220px;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.flip-card-front {
    background-color: #ffffff; 
    color: #004986; 
    border: 2px solid #f9bc03; 
}
.flip-card-back {
    background-color: #f9bc03; 
    color: #000000; 
    transform: rotateY(180deg);
}
.amenity-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.amenity-name {
}
.amenity-description {
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}
@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .flip-card {
        height: 200px;
    }
    .amenities-section {
        padding: 60px 15px;
    }
}

/* BUBBLE ANIMATION STYLES */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.bubble {
    position: absolute;
    list-style: none;
    display: block;
    border-radius: 50%;
    background-color: #f9bc03; 
    bottom: -150px;
    animation: fall 25s linear infinite;
    opacity: 0.3;
    box-shadow: 0 0 10px #f9bc03, 0 0 5px #f9bc03;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        top: -10%;
    }
    100% {
        transform: translateY(0) rotate(720deg);
        opacity: 0;
        top: 110%;
    }
}
.bubble:nth-child(1) { left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.bubble:nth-child(2) { left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
.bubble:nth-child(3) { left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.bubble:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.bubble:nth-child(5) { left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
.bubble:nth-child(6) { left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.bubble:nth-child(7) { left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.bubble:nth-child(8) { left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
.bubble:nth-child(9) { left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
.bubble:nth-child(10) { left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 21s; }
.bubble:nth-child(11) { left: 5%; width: 40px; height: 40px; animation-delay: 5s; animation-duration: 30s; }
.bubble:nth-child(12) { left: 90%; width: 30px; height: 30px; animation-delay: 8s; animation-duration: 15s; }


/* =================================================================
   1. STYLES FOR THE "ATTRACTIONS" SECTION
   ================================================================= */
.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px;
}
.attractions-container .category {
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    background-color: #fff;
}
.attractions-container .category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}
.attractions-container .category-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 4px solid #f9bc03;
}
.attractions-container .category-header {
    padding: 20px;
    background-color: #004986;
    color: white;
    position: relative;
    margin-top: -4px;
}

.attractions-container .attraction-list {
    padding: 20px;
}
.attractions-container .attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.attractions-container .attraction:last-child {
    border-bottom: none;
}
.attractions-container .attraction-info {
    flex: 1;
}
.attractions-container .attraction-name {
    margin-bottom: 4px;
    color: #000;
}
.attractions-container .attraction-type {
    color: #000;
}
.attractions-container .attraction-distance {
    background-color: #f9bc03;
    color: black;
    padding: 5px 12px;
    border-radius: 20px;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
}
.attractions-container .attraction:hover .attraction-distance {
    background-color: #004986;
    color: white;
    transform: scale(1.05);
}
@media (max-width: 900px) {
    .attractions-container {
        grid-template-columns: 1fr;
    }
    .attractions-container .category {
        max-width: 500px;
        margin: 0 auto;
    }
}


/* =================================================================
   2. STYLES FOR THE "ROOSEVELT AMENITIES" SECTION
   ================================================================= */
.roosevelt-amenities *, .roosevelt-amenities *::before, .roosevelt-amenities *::after {
    box-sizing: border-box;
}
.roosevelt-amenities {
    width: 100%;
    padding: 2rem 0;
}
.roosevelt-amenities-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.roosevelt-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}
.roosevelt-category-section {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.roosevelt-category-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.roosevelt-category-title {
    color: #004986;
    margin-top: 0;
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
    font-size: 35px;
}
.roosevelt-category-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f9bc03;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}
.roosevelt-category-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.roosevelt-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.roosevelt-category-image:hover img {
    transform: scale(1.08);
}
.roosevelt-amenities-features-grid {
    width: 100%;
}
.roosevelt-amenities-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.roosevelt-amenities-feature-list li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 73, 134, 0.15);
    transition: all 0.3s ease-in-out;
}
.roosevelt-amenities-feature-list li:hover {
    background-color: rgba(249, 188, 3, 0.05);
    padding-left: 15px;
}
.roosevelt-amenities-feature-list li:last-child {
    border-bottom: none;
}
.roosevelt-amenities-feature-icon {
    color: #f9bc03;
    margin-right: 1.5rem;
    font-size: 1.6rem;
    min-width: 28px;
    text-align: center;
}
.roosevelt-amenities-feature-text {
    color: #000 !important;
    font-size: 20px;
}
@media (max-width: 1280px) {
    .roosevelt-amenities-container {
        padding: 0 1.5rem;
    }
}
@media (max-width: 992px) {
    .roosevelt-amenities {
        padding: 4rem 0;
    }
    .roosevelt-amenities .roosevelt-categories-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
@media (max-width: 576px) {
    .roosevelt-amenities .roosevelt-category-title:after {
        width: 50px;
        height: 3px;
    }
}


/* =================================================================
   3. LOCATION SECTION
   ================================================================= */
.location-container {
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    background: white;
}
.location-title {
    text-align: center;
    color: #004986;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}
.location-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f9bc03;
}
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
    align-items: stretch;
}
.location-info {
    flex: 1;
    min-width: 300px;
}
.coordinates-box {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 73, 134, 0.1);
    border: 1px solid rgba(0, 73, 134, 0.1);
}
.coordinates-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #004986;
}
.coordinate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
}
.coordinate em {
    color: #f9bc03;
    font-size: 1.2rem;
}
.directions-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 73, 134, 0.1);
    border: 1px solid rgba(0, 73, 134, 0.1);
}
.directions-form label {
    color: #004986;
    text-align: left;
}
.directions-form input {
    padding: 9px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.directions-form input:focus {
    outline: none;
    border-color: #004986;
    box-shadow: 0 0 0 3px rgba(0, 73, 134, 0.2);
}
.directions-form button {
    background: #004986;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.directions-form button:hover {
    background: #f9bc03;
    color: black;
    transform: translateY(-2px);
}
.location-map {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 73, 134, 0.1);
    border: 1px solid rgba(0, 73, 134, 0.1);
    transition: transform 0.3s ease;
}
.location-map:hover {
    transform: translateY(-5px);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
@media (max-width: 768px) {
    .location-content {
      flex-direction: column;
    }
    .location-info, .location-map {
      width: 100%;
    }
}


/* =================================================================
   4. CONTACT SECTION
   ================================================================= */
.content-wrapper {
    display: flex;
    gap: 30px;
    padding: 30px;
}
.contact-card {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: auto;
}
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.contact-card h2 {
    color: #004986;
    margin-bottom: 25px;
    position: relative;
}
.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #f9bc03;
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}
.info-item em {
    color: #f9bc03;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 25px;
}
.info-text .title {
    margin-bottom: 5px;
    color: #004986;
}
.info-text p, .info-text a {
    text-decoration: none;
    transition: color 0.3s;font-size: 20px;
    font-weight: 500;
}
.info-text a:hover {
    color: #004986;
}
.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}
.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    .contact-card, .map-container {
        width: 100%;
        height: auto;
    }
    .map-container {
        height: 350px;
    }
}


/* =================================================================
   5. HOTEL NAVIGATION SECTION
   ================================================================= */
#hotel-navigation-section .container {
    margin: 0 auto;
    padding: 0 20px;
}
#hotel-navigation-section .navigation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#hotel-navigation-section .nav-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
#hotel-navigation-section .nav-item {
    display: flex;
    height: 100%;
}
#hotel-navigation-section .nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #004986;
    text-decoration: none;
    background: white;
    border-radius: 8px;
    padding: 25px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f9bc03;
    height: 120px;
}
#hotel-navigation-section .nav-link:hover {
    background: #004986;
    color: white;
    box-shadow: 0 8px 16px rgba(0, 73, 134, 0.2);
    transform: translateY(-3px);
}
#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #f9bc03;
    transition: all 0.3s ease;
}
#hotel-navigation-section .nav-link:hover .nav-icon {
    color: white;
    transform: scale(1.1);
}
#hotel-navigation-section .nav-text {
    margin-bottom: 5px;
}
#hotel-navigation-section .nav-desc {
    opacity: 0.8;
}
@media (max-width: 992px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: repeat(2, 1fr);
    }
    #hotel-navigation-section .nav-link {
        height: 110px;
        padding: 20px 10px;
    }
}
@media (max-width: 576px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: 1fr;
    }
    #hotel-navigation-section .nav-link {
        height: 100px;
        padding: 15px 10px;
    }
    #hotel-navigation-section {
        padding: 30px 0;
    }
}


/* =================================================================
   6. FAQ SECTION
   ================================================================= */
.faq-section {
    margin: 20px auto;
    padding: 0 20px;
}
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}
.faq-header h2 {
    color: #004986;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #004986, #f9bc03);
    border-radius: 2px;
}
.faq-header p {
    color: black;
    max-width: 700px;
    margin: 0 auto;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}
.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #004986;
}
.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}
.faq-icon {
    width: 40px;
    height: 40px;
    background: #f9bc03;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}
.faq-question-text {
    color: #333;
}
.faq-answer {
    padding: 25px;
    position: relative;
}
.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #004986, transparent);
}
.faq-answer p {
    margin: 0;
    color: #555;
}
.faq-answer a {
    color: #004986;
    text-decoration: none !important;
}
.faq-answer a:hover {
    color: #f9bc03;
    border-bottom-color: #f9bc03;
}
.faq-answer .fa-caret-right {
    color: #f9bc03;
    margin-right: 8px;
}
@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-question, .faq-answer {
        padding: 20px;
    }
}


/* App Layout */
.New-attraction-app-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.New-attraction-attraction-quality-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- MODIFIED DESKTOP STYLES --- */
@media (min-width: 1024px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(6, 1fr);
    }
    .New-attraction-card:nth-child(-n+3) {
        grid-column: span 2;
    }
    .New-attraction-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    .New-attraction-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}
/* --- END OF MODIFIED STYLES --- */


/* Card Styles */
.New-attraction-card {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.New-attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(249, 188, 3, 0.1);
}

.New-attraction-card-image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.New-attraction-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.New-attraction-card:hover .New-attraction-card-image {
    transform: scale(1.05);
}

.New-attraction-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.New-attraction-card-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #004986;
}

.New-attraction-card-description {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.New-attraction-card-details {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #000000;
}

.New-attraction-card-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;    font-size: 18px;

}

.New-attraction-card-details li + li {
    margin-top: 0.75rem;
}

/* --- UPDATED STYLES FOR ICONS AND LINKS --- */

.New-attraction-card-details em {
    color: #f9bc03;
    font-size:21px;
  
    text-align: center;
    flex-shrink: 0;
    margin-top: 0px;
}

.New-attraction-card-details a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.New-attraction-card-details a:hover {
    color: #f9bc03;
}



.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 0px auto;
    padding: 20px;
    margin-top: -40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    /* Shadow using a transparent version of the dark blue */
    box-shadow: 0 4px 8px rgba(15, 32, 64, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the container without distortion */
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Hover effect on gallery thumbnails */
.gallery-item:hover {
    transform: translateY(-5px);
    /* A deeper shadow on hover */
    box-shadow: 0 8px 16px rgba(15, 32, 64, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Lightbox Styling --- */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark blue semi-transparent background */
    background-color: rgba(15, 32, 64, 0.9);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Animation: Fade-in effect */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

/* This class will be added by JavaScript to show the lightbox */
.lightbox.active {
    visibility: visible;
    opacity: 1;
}

/* Animation: Zoom-in effect for the image */
#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;  /* Adjusted max-height to make room for caption */
    object-fit: contain;
    border-radius: 5px;
    /* Soft shadow with the dark blue color */
    box-shadow: 0 10px 25px rgba(15, 32, 64, 0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active #lightbox-img {
    transform: scale(1);
}

/* Caption with the new gold text color */
#lightbox-caption {
    text-align: center;
    /* Gold color for text */
    color: #c5a059;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 1.1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: opacity 0.4s ease-in-out; /* Fades in with lightbox */
}


/* Navigation & Close Buttons with the new gold color */
.close-btn, .prev-btn, .next-btn {
    position: absolute;
    /* Gold color for icons/text */
    color: #c5a059;
    cursor: pointer;
    font-weight: bold;
    user-select: none; /* Prevents text selection */
    transition: color 0.2s ease;
}

/* Lighter gold for the hover effect */
.close-btn:hover, .prev-btn:hover, .next-btn:hover {
    color: #dec179;
}

.close-btn {
    top: 20px;
    right: 35px;
    font-size: 40px;
}

.prev-btn, .next-btn {
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    padding: 16px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}
.restp {
    margin-top: 231px;
}