
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: "Open Sans", sans-serif; */
  color: #444444;
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-style: normal;
}

a {
  color: #003a5d;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
       font-family: "Philosopher", sans-serif;

}
.cormorant-infant-regular {
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-style: normal;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ed502e;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background:#ffa100;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top em {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background:#fcb53b;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #024c89;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;border-top: 5px solid #ffcc32;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#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: -42px;
    z-index: 1000;
    position: absolute;
    max-height: 84px;
    
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 20px;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;    font-weight: 700;

}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #ffd523;
    border-bottom: 3px solid #197ab2;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background:linear-gradient(to right, #ffd31c, #1875ad);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: linear-gradient(to right, #1875ad, #ffd31c);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding:10px 20px;
  text-transform: none;
  color: black;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #18191a;
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffffff;
    font-size: 30px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ed502e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ed502e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


section {
  padding: 30px 0;
}

.section-bg {
  background-color: #f6f9fd;
}

.section-title {
  padding-bottom: 5px; 
    
}

.section-title p {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  color: #fcb53b;
  font-family: "Poppins", sans-serif;
}

.section-title p::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background:#00a5b8;
  margin: 4px 10px;
}

.section-title h1 {
  margin: 0;
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  font-family: "Philosopher", sans-serif;
  color: #024c89;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size:21px;
    font-weight: 600;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
    position: relative;
    font-size: 19px;
    font-weight:500;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul em {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ce3241;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ed502e;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ed502e;
}

.about .content .btn-learn-more:hover {
  background: #ed502e;
  color: #fff;
  text-decoration: none;
}

.about .image-grid {
  display: flex;
  gap: 15px;
  height: 450px;
}
.about .main-image {
  flex: 0 0 65%;
  height: 100%;
}
.about .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .side-images {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about .side-images img {
  width: 100%;
  height: calc(50% - 7.5px);
  object-fit: cover;
}
.about .stats {
  margin-top: 30px;
}
.about .stat-item {
  margin-bottom: 20px;
}
.about .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  line-height: 1;
}
.about .stat-text {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .about .content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .about .image-grid {
    height: auto;
    flex-direction: column;
  }
  .about .main-image,
  .about .side-images {
    flex: 0 0 100%;
  }
  .about .side-images {
    flex-direction: row;
  }
  .about .side-images img {
    height: 200px;
    width: calc(50% - 7.5px);
  }
} 
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box em {
  display: block;
  font-size: 30px;
  color: #ed502e;
  float: left;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #0b2341;
  margin-left: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content {
  padding: 60px 60px 0 60px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 30px;
  color: #123a6d;
}

.why-us .content .title4 {
      font-size: 25px;
    font-weight: 700;
    margin-top: 5px;
    font-family: "Cormorant Infant", serif;
}

.why-us .content p {
  font-size: 20px;
    font-weight: 600;
  color: #848484;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
 /*  padding: 0 100px 60px 100px; */
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 10px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #0b2341;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #00a5b8;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list em {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
  color: #ed502e;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#00a5b8 50%, rgb(0 165 184 / 31%) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #00a5b8;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 50%;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -65px;
}

.testimonials .testimonial-item .title3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #00145f;    text-align: right;

}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;    text-align: right;border-bottom: 1px solid #ccc;

}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ed502e;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed502e;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 1px 0;
    background: #ffda43;
    color: #024c89;
}
.cta a {
    color: #024c89;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #024c89;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ed502e;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ed502e;
  border: 2px solid #ed502e;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0b2341;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ed502e;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info .title2 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b2341;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ed502e;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ed502e;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed502e;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(11, 35, 65, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f9fd;
  min-height: 98px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
font-size: 25px;
    float: right;
    font-weight: 600;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #123a6d;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background:linear-gradient(to top, #000000 12%, #004986 100%);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 19px;font-family: "Cormorant Infant", serif;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Cormorant Infant", serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  
}


#footer .footer-top .social-links a:hover {
  color: #fff;
  
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

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

#footer .footer-top .footer-links ul em {
  padding-right: 2px;
  color: #00a5b8;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;    font-size: 18px;

}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #00a5b8;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #ed502e;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ef6445;
}

#footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;    font-size: 16px;

}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

a.bloger {
    background: #ffa100;
}
a.facebook {
    background: #3b5998;
}
a.linkedin {
    background: #0A66C2;
}
a.instagram {
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}
a.youtube {
    background: #d81103;
}

.title2 {
    font-size: 25px;
    font-weight: 700;
    color: #0d6efd;
    
}

.box{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.box:before,
.box:after{
    content: "";
    background: #333;
    transform: scale(0);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease 0s;
}
.box:after{
    background: #000;
    border: 1px solid #aaa;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    transition: all 0.5s ease 0.2s;
}
.box:hover:before{
    opacity: 0.5;
    transform: scale(1);
}
.box:hover:after{
    opacity: 0.35;
    transform: scale(1);
}
.box img{
    width: 100%;
    height: auto;
}
.box .box-content{
    color: #fff;
    width: 85%;
    filter: blur(5px);
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transition: all 0.4s ease 0.3s;
}
.box:hover .box-content{
    filter: blur(0);
    opacity: 1;
}
.box .title{
    font-size: 30px;
    margin: 0 0 1px;
    color: #ffb900;
    font-weight: 700;
    font-family: "Charm", cursive;


}
.box .post {
    font-size: 18px;
    font-weight: 400;
    font-family: "Cormorant Infant", serif;
    letter-spacing: 1px;
    display: block;
    margin: 0 0 10px;
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
}
.box .icon li{
    margin: 0 3px;
    display: inline-block;
}
.box .icon li a{
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    height: 27px;
    width: 27px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.7);
    display: block;
    transition: all 0.3s ease 0s;
}
.box .icon li a:hover{
    color: #fff;
    background-color: #000;
}
@media only screen and (max-width:990px){
    .box{ margin: 0 0 30px; }
}
a.btn-get-started.animate__animated.animate__fadeInUp.scrollto.center {
  font-family: "Charm", cursive;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #ffffff;
    background: #ffb900;
    color: #040404;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  background: url("../img/zoo.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgb(0 0 0 / 72%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 72px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 62px;
  }
}


#hero .btn-get-started {
  font-family: "Charm", cursive;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
 background: #ed1a3b;
   
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
 

}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
.title3 {
    font-size: 25px;
    font-weight: 700;
    color: white;
}

p.para {
    color: #fff;
}
.title4 {
    font-size: 43px;
    font-weight: 700;
    color: #024c89;
}
.amt {
    font-size: 22px;
    font-weight: 600;
    color: #084da4;
    font-family: "Charm", cursive;
}
@media only screen and (max-width: 321px){
#header .logo img {
    max-height: 70px;
    margin-top: -20px;
}}
@media only screen and (max-width: 480px){
#header .logo img {
    padding: 0;
    margin: 0;
            margin-top: -22px;
        z-index: 1000;
        position: absolute;
        max-height: 45px;

}

}

@media only screen and (max-width: 1024px){
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 20px;
    font-size: 17px;
    color: #0b2341;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 700;
}
#header .logo img {
    padding: 0;
    margin: 0;
    margin-top: -20px;
        z-index: 1000;
        position: absolute;
        max-height: 41px;
}
}

.agileits_reservation {
    z-index: 99;
    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:0px;
    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: #555;
    font-size: 0.9em;
    margin-top: 14px;
    margin-left: 5px;
}
.date_btn input[type="submit"] {
    text-transform: capitalize;
    width: 100%;
    background:#0047b5;
    color: #ffffff;
    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;
    
}
}
@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: 0px;
    position: relative;
}
}

section#about {
    margin-top: 15px;    text-align: justify;

}
@media (min-width: 992px){
.col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
    float: left;
}
    

}
@media only screen and (max-width: 768px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media only screen and (max-width: 480px) {
.col-xs-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}
@media only screen and (min-width: 1024px) {
.col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color:#002e55;
    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%);
}
@media (min-width: 992px){
.col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
    float: left;
}
.col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
    float: left;
}
.col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
    float: left;
}
.col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
    float: left;
}
}
.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: 0.375rem 0.75rem;
    font-size: 20px;
    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;
}
.agileits_reservation.tp {
    margin-top: 0px;
}
.container-fluid.bg {
    background: #003a5d;
}

.section-title p::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background:#0047b5;
    margin: 4px 10px;
}
.amenities-section {
      max-width: 1200px;
      margin: auto;
    }
    .amenities-title {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 20px;font-family: "Cormorant Infant", serif;
    color: #ffffff;
    }
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .amenity-item {
      background-color: #00a5b8;
      border-radius: 10px;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 15px;    color: #fff;    font-size: 17px;


    }
    .amenity-icon {
      font-size: 24px;
      background-color: white;
      color: #003a5d;
      padding: 8px;
      border-radius: 5px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .view-all-btn {
      margin-top: 30px;
      display: inline-block;
      padding: 12px 24px;
      background-color: transparent;
      border: 2px solid white;
      border-radius: 8px;
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s, color 0.3s;
    }
    .view-all-btn:hover {
      background-color: white;
      color: #1a1729;
    }
	
	
	   .things-to-do {
      max-width: 1200px;
      width: 90%;
      padding: 40px 20px;
    }
    .things-to-do h2 {
      text-align: center;
      font-size: 36px;
      color: #003b6f;
      margin-bottom: 50px;
    }
    .attractions {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    .attraction {
      background-size: cover;
      background-position: center;
      height: 300px;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      transition: transform 0.4s, box-shadow 0.4s;
    }
    .attraction::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }
    .attraction-content {
      position: absolute;
      bottom: 20px;
      left: 20px;
      z-index: 2;
      color: #fff;
    }
    .attraction-content i {
      font-size: 30px;
      margin-bottom: 10px;
      display: block;
    }
    .attraction-content h3 {
      font-size: 24px;
      margin: 0;
    }
    .attraction-content p {
      font-size: 16px;
      margin-top: 5px;
    }
    .attraction:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    }
	
	.card-bg {
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }
    .card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4); /* Soft dark overlay */
    }
    .card-content {
      position: relative;
      z-index: 10;
    }
	
	 .events-2 .card {
  border: 0;
  padding: 0 20px;
  margin-bottom: 30px;
  position: relative;
  height: 100%;
  transition: transform 0.3s ease-in-out;
  background-color: transparent;
}
.events-2 .card:hover {
  transform: translateY(-10px);
}
.events-2 .card:hover .card-img img {
  transform: scale(1.1);
}
.events-2 .card:hover .card-body {
  border-color: 4px solid #00a5b8;
}
.events-2 .card:hover .btn-learn-more {
  color: var(--contrast-color);
  background: 4px solid #00a5b8;
  padding-right: 35px;
}
.events-2 .card:hover .btn-learn-more i {
  transform: translateX(5px);
}
.events-2 .card-img {
  width: calc(100% + 40px);
  margin-left: -20px;
  overflow: hidden;
  z-index: 9;
  border-radius: 15px 15px 0 0;
}
.events-2 .card-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
.events-2 .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fcb53b;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: -30px;
  border-radius: 0 0 15px 15px;
  transition: all 0.3s ease-in-out;
}

.events-2 .card-meta {
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}
.events-2 .card-meta i {
  color: var(--accent-color);
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}
.events-2 .card-meta .date, .events-2 .card-meta .time {
  vertical-align: middle;
}
.events-2 .card-title {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 20px;font-family: "Philosopher", sans-serif;
}
.events-2 .card-title a {
  color:#4b2884;
  transition: 0.3s;
}

.events-2 .card-text {
  color: #525050;
    font-size: 20px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.events-2 .card-footer {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.events-2 .card-footer .location {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}
.events-2 .card-footer .location i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.events-2 .card-footer .location span {
  vertical-align: middle;
}
.events-2 .card-footer .btn-learn-more {
  color: #fff;
    font-weight: 600;
    font-size: 19px;
    transition: all 0.3s ease-in-out;
    padding: 8px 25px;
    border-radius: 50px;
    background: #004986;
}
.events-2 .card-footer .btn-learn-more:hover {
  color: #fff;
    
}
.events-2 .card-footer .btn-learn-more em {
  margin-left: 5px;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .events-2 .card {
    padding: 0 15px;
  }
  .events-2 .card-img {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .events-2 .card-img img {
    height: 200px;
  }
  .events-2 .card-body {
    padding: 20px;
  }
  .events-2 .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .events-2 .card-footer .btn-learn-more {
    width: 100%;
    text-align: center;
  }
} 

.tp {
    margin-top: 139px;
}
.footer-info a {
    color: #fff;
}
.credits a {
    color: #fff;
}

.container-fluid.mt {
    margin-top: 69px;
}

.amenities-highlights {
  background-color: #f9f9f9;
  padding: 40px;
  position: relative;
  
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
}

.highlights-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 8px 8px 0 #0099a9;
}

.highlights-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.highlight-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 48%;
}

.icon {
  background-color: #e2edf1;
  padding: 10px;
  border-radius: 8px;
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text {
  font-size: 15px;
  line-height: 1.2;
}

.text small {
  font-size: 13px;
  color: #666;
}

.amenities-btn {
  margin-top: 20px;
  padding: 10px 20px;
  border: 2px solid #000;
  background-color: #fff;
  cursor: pointer;
  font-weight: 600;
  border-radius: 6px;
}

.disclaimer {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}


 .blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.blog-posts .post-img img {
  transition: 0.5s;
}
.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}
.blog-posts .post-content {
  padding: 30px;
}
.blog-posts .post-title {
  font-size: 21px;
  color: #00a5b8;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;font-family: "Philosopher", sans-serif;
}
.blog-posts .meta i {
  font-size: 16px;
  color: #00a5b8;
}
.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-posts p {
  margin-top: 20px;
}
.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}
.blog-posts .readmore {
  display: flex;
    align-items: center;
    font-weight: 800;
    line-height: 1;
    transition: 0.3s;
    color: #003a5d;
    font-size: 20px;
}
.blog-posts .readmore em {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}
.blog-posts article:hover .post-title, .blog-posts article:hover .readmore {
  color: #00a5b8;
}
.blog-posts article:hover .post-img img {
  transform: scale(1.1);
} 
.videoWrapper {
	position:relative;
	padding-bottom: 55.25%;
    padding-top: 13px;
	height:0
}
.videoWrapper iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%
}
/* Updated Hero - Warmer, Brighter Comfort Inn Theme */
.cinematic-hero {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
  
  background: #000;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transform: scale(1.05);
  filter: brightness(0.95) contrast(1.1);
}
.hero-slide.active { z-index: 2; animation: zoomInFade 1.8s ease-in-out forwards; }
.hero-slide.fade-out { z-index: 1; animation: zoomOutFade 1.8s ease-in-out forwards; }
@keyframes zoomInFade {
  0% { opacity: 0; transform: scale(1.08); }
  40% { opacity: 1; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1.10); }
}
@keyframes zoomOutFade {
  0% { opacity: 1; transform: scale(1.10); }
  100% { opacity: 0; transform: scale(1.13); }
}
/* Lighter black overlay for brighter feel */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 45%, rgba(0,0,0,0.3) 85%);
  z-index: 1;
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  z-index: 2;
}
.hero-left {
  flex: 1;
  color: #fff;
  max-width: 650px;
}
.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-top: 200px;
  text-transform: capitalize;
  background: linear-gradient(90deg, #fff 0%, #ffb703 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(3px 3px 10px rgba(0,0,0,0.9));
  font-weight: 400;font-family: "Philosopher", sans-serif;
}
.hero-title span { display: inline-block; }
@keyframes leafSwing {
  0% { opacity: 0; transform: rotateX(-40deg) rotateY(15deg) translateY(40px); }
  100% { opacity: 1; transform: rotateX(0) rotateY(0) translateY(0); }
}
.hero-nav {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.hero-nav button {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,183,3,0.8);
  color: #ffb703;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(255,183,3,0.5);
}
.hero-nav button:hover {
  background: #ffb703;
  color: #0a2050;
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(255,183,3,0.7);
}
.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-desc {
  padding: 25px 30px;
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  opacity: 0;
  transform: translateY(40px);
  margin-top: 390px;
  background: rgba(255,183,3,0.15);
  border-left: 4px solid #ffb703;
  border-radius: 8px;
  backdrop-filter: blur(6px);
}
.cinematic-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,183,3,0.5), transparent);
  animation: shimmerSweep 12s ease-in-out infinite;
  z-index: 3;
}
@keyframes shimmerSweep {
  0% { left: -60%; }
  60% { left: 120%; }
  100% { left: 120%; }
}
/* Tablets (up to 1024px) */
@media (max-width: 1024px) {
  .cinematic-hero {
    height:75vh;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    text-align: left;
  }

  .hero-left {
    flex: 1;
    max-width: 55%;
  }

  .hero-title {
    font-size: 25px;
    line-height: 1.2;
    margin: 0;
  }

  .hero-nav {
    margin-top: 10px;
    gap: 10px;
  }

  .hero-nav button {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }

  .hero-desc {
    font-size: 1rem;
    max-width: 85%;
    line-height: 1.6;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(229,198,160,0.3);
    border-radius: 8px;
    margin: 0;
  }
}

/* Phones (up to 767px) */
@media (max-width: 767px) {
  .cinematic-hero {
    height: 50vh;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    text-align: left;
    margin: 10px;
  }

  .hero-left {
    flex: 1;
    max-width: 55%;
  }

  .hero-title {
    font-size: 20px;
    line-height: 1.2;
    margin: 10px;
    font-weight: 300;
    background: linear-gradient(90deg, #fff 0%, #e5c6a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
  }

  .hero-nav {
    margin-top: 8px;
    gap: 8px;
  }

  .hero-nav button {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }

  .hero-desc {
    font-size: 0.85rem;
    max-width: 90%;
    line-height: 1.4;
    padding: 10px 14px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(229,198,160,0.25);
    border-radius: 8px;
    opacity: 0.95;
    text-align: right;
  }
}
.amenities-3 .amenity-card {
  /* background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 2%)); */ background: #ffffffde;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.amenities-3 .amenity-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.amenities-3 .amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.amenities-3 .amenity-card:hover:before {
  opacity: 1;
}
.amenities-3 .amenity-card:hover .amenity-icon i {
  transform: scale(1.1);
  color: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
}
.amenities-3 .amenity-card:hover .feature-tag {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.amenities-3 .card-header {
  padding: 40px 35px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.amenities-3 .card-header h4 {
      font-size: 21px;
    font-weight: 700;
    margin: 0;
    color: #dc3545;
  flex: 1;
}
.amenities-3 .amenity-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.amenities-3 .amenity-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.amenities-3 .amenity-content {
  padding: 0 35px 35px;
}
.amenities-3 .amenity-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.amenities-3 .amenity-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.amenities-3 .feature-tag {
  background-color: #dc3545;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
  transition: all 0.3s ease;
}
.amenities-3 .amenities-cta {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 20px;
  padding: 50px 40px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}
.amenities-3 .amenities-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.amenities-3 .amenities-cta .cta-content h5 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.amenities-3 .amenities-cta .cta-content p {
  font-size: 18px;
  color: #ffc107;
  line-height: 1.6;
}
.amenities-3 .btn-explore {
  display: inline-block;
  padding: 16px 25px;
    background:#0047b5;
    color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.amenities-3 .btn-explore:hover {
  background: #dc3545;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}
@media (max-width: 992px) {
  .amenities-3 .card-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 35px 30px 20px;
  }
  .amenities-3 .card-header h4 {
    font-size: 22px;
  }
  .amenities-3 .amenity-content {
    padding: 0 30px 30px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .amenities-3 .amenity-icon {
    width: 60px;
    height: 60px;
  }
  .amenities-3 .amenity-icon i {
    font-size: 28px;
  }
  .amenities-3 .card-header {
    padding: 30px 25px 15px;
  }
  .amenities-3 .card-header h4 {
    font-size: 20px;
  }
  .amenities-3 .amenity-content {
    padding: 0 25px 25px;
  }
  .amenities-3 .amenities-cta {
    padding: 40px 25px;
  }
  .amenities-3 .amenities-cta .cta-content h5 {
    font-size: 24px;
  }
  .amenities-3 .amenities-cta .cta-content p {
    font-size: 15px;
  }
  .amenities-3 .btn-explore {
    padding: 14px 32px;
    font-size: 15px;
  }
}
#amenities-3 {
  width: 100%;
  height: 100%;
  background: url("../img/portfolio/Lobby3.jpg") center center;
  background-size: cover;
  position: relative;
}

#amenities-3 .container {
  padding-top:30px;
}

#amenities-3:before {
  content: "";
  background:#292d34e6;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  #amenities-3 {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #amenities-3 {
    height: 100%;
  }

  #amenities-3 .container {
    padding-top: 60px;
  }

  #amenities-3 h3 {
    font-size: 20px;
    line-height: 36px;
  }
}
.about-home .about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.about-home .about-content .lead {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.about-home .about-content p {
  margin-bottom: 1.25rem;    text-align: justify;
  line-height: 1.7;
}
.about-home .about-content .stats-row {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 576px) {
  .about-home .about-content .stats-row {
    flex-direction: column;
    gap: 1rem;
  }
}
.about-home .about-content .stats-row .stat-item {
  text-align: center;
}
.about-home .about-content .stats-row .stat-item .stat-number {
 font-size: 19px;
    font-weight: 700;
    color: #0d6efd;
}
.about-home .about-content .stats-row .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.25rem;
}
.about-home .about-content .about-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 576px) {
  .about-home .about-content .about-actions {
    flex-direction: column;
  }
}
.about-home .about-content .about-actions .btn-primary, .about-home .about-content .about-actions .btn-secondary {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.about-home .about-content .about-actions .btn-primary {
      background-color: #004986;
    color: #fff;
    border-color: #fcb53b;
}
.about-home .about-content .about-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
.about-home .about-content .about-actions .btn-secondary {
      background-color: #004986;
    color: #fff;
    border-color: #fcb53b;
}
.about-home .about-content .about-actions .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}
.about-home .about-images {
  position: relative;
  height: 500px;
}
.about-home .about-images .main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 70%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.about-home .about-images .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-home .about-images .secondary-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.about-home .about-images .secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-home .about-images .experience-badge {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 3;
}
.about-home .about-images .experience-badge .badge-content {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.about-home .about-images .experience-badge .badge-content .badge-number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.about-home .about-images .experience-badge .badge-content .badge-text {
  font-size: 0.75rem;
  line-height: 1.2;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .about-home .about-images {
    height: 400px;
    margin-top: 2rem;
  }
  .about-home .about-images .main-image {
    width: 80%;
    height: 65%;
  }
  .about-home .about-images .secondary-image {
    width: 65%;
    height: 45%;
  }
  .about-home .about-images .experience-badge {
    right: 5%;
  }
  .about-home .about-images .experience-badge .badge-content {
    width: 80px;
    height: 80px;
    padding: 1rem;
  }
  .about-home .about-images .experience-badge .badge-content .badge-number {
    font-size: 1.25rem;
  }
  .about-home .about-images .experience-badge .badge-content .badge-text {
    font-size: 0.6rem;
  }
}
@media (max-width: 992px) {
  .about-home .row {
    flex-direction: column-reverse;
  }
  .about-home .about-content {
    margin-top: 2rem;
    text-align: center;
  }
  .about-home .about-content .stats-row {
    justify-content: center;
  }
} 

@media (min-width: 1024px) {
    #services {
        background-attachment: fixed;
    }
}

#services {
    width: 100%;
    height: 100%;
    background: url(../img/hotel-amenities.webp) center center;
    background-size: cover;
    position: relative;
}
#services:before {
    content: "";
    background: #292d34e6;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.services .services-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}
.services .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services .services-image .image-overlay {
  position: absolute;
  inset: 0;
  background:linear-gradient(to top, rgb(26 26 27) 12%, rgb(15 42 68 / -45%) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.services .services-image .image-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}
.services .services-image .image-overlay .overlay-link {
  color: #fcb53b;
    font-weight: 600;
    font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.services .services-image .image-overlay .overlay-link:hover {
  gap: 12px;
}
.services .service-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: all 0.3s ease;
}
.services .service-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.services .service-item:hover .service-icon {
  background: var(--accent-color);
}
.services .service-item:hover .service-icon i {
  color: var(--contrast-color);
}
.services .service-item .service-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.services .service-item .service-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.services .service-item .service-body h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.services .service-item .service-body p {
  font-size: 17px;
  line-height: 1.6;
  color: #ccc;
  margin: 0;
}
@media (max-width: 991px) {
  .services .services-image {
    min-height: 300px;
    margin-bottom: 8px;
  }
}
@media (max-width: 575px) {
  .services .service-item {
    flex-direction: column;
    padding: 24px;
  }
} 
.service-title {
    font-size: 25px;
    color:#ffd72e;  font-weight: 800;

    font-family: "Cormorant Infant", serif;
}
/* Default state: Hide the additional content */
    #additionalContent {
        display: none;
    }

    /* Fullscreen Mode Styles */
    #about.fullscreen-mode {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 10000;
        overflow-y: auto; /* Enable scrolling for the content */
        box-sizing: border-box;
        padding: 40px 20%;
        
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    
    /* <<< THIS IS THE NEW RULE >>> */
    /* In fullscreen mode, HIDE the original content grid */
    #about.fullscreen-mode .content-grid {
        display: none;
    }

    /* In fullscreen mode, SHOW the additional content */
    #about.fullscreen-mode #additionalContent {
        display: block;
        max-width: 900px;
        width: 100%;
        text-align: center;
    }

    #about.fullscreen-mode #additionalContent h2 {
        text-align: center;
    }


    /* Center the Read Less button */
    #about.fullscreen-mode #readLessBtn {
        display: block;
        margin: 20px auto 0;
    }
a.btn-secondary {
        background-color: #ffcd35;
    color: #00447c;
    border-color: #fcb53b;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 50%;
    text-align: center;
    font-size: 20px;
}
.center {
    text-align: center;
}
ol, ul {
    padding-left: 0;
    list-style: none;
}
em.ri-check-double-line {
    color: #024d89;
}
.about-content ul li {
    font-size: 20px;
    font-weight: 500;
}

/* Modal Styles */
    .modal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 10000; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 40px;
        border: 1px solid #888;
        width: 80%;
        max-width: 800px;
        border-radius: 8px;
        position: relative;
        text-align: left;
    }

    .close-btn {
        color: #aaa;
        position: absolute;
        top: 15px;
        right: 25px;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
    }

    .close-btn:hover,
    .close-btn:focus {
        color: black;
        text-decoration: none;
    }

    .modal-content ul {
        list-style: none;
        padding-left: 0;
    }

    .modal-content ul li {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
        padding-left: 30px;
        position: relative;
    }
    
    .modal-content .ri-check-double-line {
        color: #024d89;
        font-size: 24px;
        position: absolute;
        left: 0;
        top: 2px;
    }

    .modal-content h2 {
        text-align: center;
        margin-bottom: 20px;
    }


.tp{margin-top:77px;}
.gallery {
    width: 50%;
    max-width: 23.3%;
    margin-right: 0;
    float: left
}

.footer-gallery {
    width: 100%;
    max-width: 95%
}

.flex-w {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap
}

.item-gallery-footer {
    display: block;
    position: relative;
    width: calc((100% - 30px) / 3);
    margin-right: 10px;
    margin-bottom: 10px
}

.wrap-pic-w img {
    width: 100%
}

.item-gallery-footer::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}
 .about-2 {
  padding: 100px 0;
}
.about-2 .image-block {
  position: relative;
  padding: 20px;
}
.about-2 .image-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 65%;
  background-color:#e8c928;
  border-radius: 16px;
  z-index: 0;
}
.about-2 .image-block img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
}
.about-2 .image-block .experience-badge {
  position: absolute;
  bottom: -10px;
  left: 30px;
  z-index: 2;
  background: linear-gradient(to right, #1385c9, #024c89);
  border-radius: 10px;
  padding: 18px 24px;
  max-width: 300px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}
@media (max-width: 992px) {
  .about-2 .image-block .experience-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    max-width: none;
  }
}
.about-2 .image-block .experience-badge .badge-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.about-2 .image-block .experience-badge .badge-inner em {
  font-size: 28px;
  flex-shrink: 0;
}
.about-2 .image-block .experience-badge .badge-inner strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.about-2 .image-block .experience-badge .badge-inner span {
  font-size: 13px;
  opacity: 0.85;
}
.about-2 .info-panel .overline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e8c928;
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}
.about-2 .info-panel .overline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background-color:#024c89;
}
.about-2 .info-panel h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  font-family: var(--heading-font);
}
@media (max-width: 768px) {
  .about-2 .info-panel h2 {
    font-size: 28px;
  }
}
.about-2 .info-panel .intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 20px;
  font-weight: 400;
}
.about-2 .info-panel .text-content p {
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}
.about-2 .counter-row {
  margin-top: 40px;
  margin-bottom: 40px;
}
.about-2 .counter-row .counter-card {
  padding: 20px;
  border-left: 3px solid var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 0 8px 8px 0;
  transition: transform 0.3s ease;
}
.about-2 .counter-row .counter-card:hover {
  transform: translateY(-3px);
}
.about-2 .counter-row .counter-card .count {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}
.about-2 .counter-row .counter-card .count-suffix {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}
.about-2 .counter-row .counter-card p {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 8px 0 0 0;
}
.about-2 .discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color:#e8c928;
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.about-2 .discover-btn i {
  transition: transform 0.3s ease;
}
.about-2 .discover-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}
.about-2 .discover-btn:hover i {
  transform: translateX(4px);
}
@media (max-width: 992px) {
  .about-2 .info-panel {
    margin-bottom: 50px;padding: 10px;
        text-align: justify;
  }
  .about-2 .counter-row {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}


/* ---- 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 .category-header h2 {
    color: white;
    margin: 0;
}
.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 i {
    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;
    margin-top: -40px;
}
.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;
    margin-top: -50px;
}

.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: 1.25rem;
    font-weight: 600;
    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;
}

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

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

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

.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;
}