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

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

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: "Cormorant Infant", serif;
}
.cormorant-infant-regular {
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-style: normal;
}

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

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

.back-to-top:hover {
  background: #e8c727;
  color: #000;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;border-top: 2px solid #e8c722;
}

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

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

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

#header .logo img {
  padding: 0;
    margin: 0;
    margin-top: -41px;
    z-index: 1000;
    position: absolute;
    max-height: 140px;
}
@media only screen and (max-width: 1024px) {
    #header .logo img {
        padding: 0;
        margin: -23px 0 0;
        z-index: 1000;
        position: absolute;
        max-height: 71px;
    }
}
/*--------------------------------------------------------------
# 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: #0b2341;
  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: #00529c;
    border-bottom: 2px solid #e7c623;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background:#e92a26;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #000;
  background: #e8c722;
}

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

.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: #00529c;
}

.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: #0b2341;
  font-size: 28px;
  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: 9999;
}

.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: #e7c623;
}

.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: 50px 0;
}

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

.section-title {
  padding-bottom: 10px;    padding-top: 40px;

}

.section-title p {
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8c722;font-family: "Cormorant Infant", serif;
  
}

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

.section-title h1, h3 {
  margin: 0;
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  font-family: "Charm", cursive;    padding-top: 20px;

  color:#eeeeee;     text-transform: capitalize;

}
p {
    margin-top: 0;
    margin-bottom: 1rem;
        font-size: 20px;

    font-weight: 600;    text-align: justify;

}
/*--------------------------------------------------------------
# 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: #ed502e;
  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;
}

/*--------------------------------------------------------------
# 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: "Cormorant Infant", serif;
    font-size: 18px;
    text-align: left;
}

.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;    border-bottom: 10px solid #e8c727;
}

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

.why-us .content h4 {
  font-weight: 400;
  font-size: 29px;
  color: #00529c;
}

.why-us .content h4 {
  font-size: 25px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 20px;
    font-weight: 600;
  color: #4d4949;    text-align: justify;

}

.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: #ed502e;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  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(#e8c727 50%, rgb(232 199 39 / 40%) 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 rgb(231 198 33);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #e8c727;
  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;
  }
  .section-title p {
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    line-height: 24px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f0a448;
    font-family: "Cormorant Infant", serif;
}
}

@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: 30px 0;
  background:#3a3737;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;    text-align: center;

}

.cta .cta-btn {
  font-family: "Cormorant Infant", serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ffffff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #e8c722; color:#000;
    border: 2px solid #ffffff;
}

/*--------------------------------------------------------------
# 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-image: linear-gradient(to bottom, #043969 73%, #00529c 100%);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;font-family: "Cormorant Infant", serif;
}

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

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  
    font-size: 18px;
    color: #ffffff;
}

#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: #e8c727;
  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: #fff;
}

#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 #e8c727;
  text-align: center;
  padding-top: 30px;    font-size: 18px;

}

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

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

.title2 {
    font-size: 22px;
    font-weight: 600;
    color:#e92a26;
}

.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: #fcd274;
    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: #fcd274;
    color: #040404;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  background: url("../img/Museum.webp") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
    content: "";
    background: rgb(0 0 0 / 65%);
    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-weight: 600;
    font-size: 30px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    border: 2px solid #fff;
    color: #00529c;
}

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

@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: 30px;
    
    color: #ffffff;
    font-weight: 600;
    font-family: "Cormorant Infant", serif;
}

p.para {
    color: #fff;    font-weight: 100;

}
.title4 {
    font-size: 34px;
    font-weight: 700;
    font-family: "Charm", cursive;
    color: #006a52;
}
.amt {
    font-size: 22px;
    font-weight: 600;
    color:#e8c722;
    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: -18px;
    z-index: 1000;
    position: absolute;max-height: 70px;
}

}

@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: -23px;
    z-index: 1000;
    position: absolute;
    max-height: 70px;
}
}

.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: -172px;
    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:#e92a26;
    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;
}
.box .post {
    font-size: 12px;
    font-weight: 400;
    font-family: "Cormorant Infant", serif;
    letter-spacing: 1px;
    display: block;
    margin: 0 0 10px;
}
.box .title {
    font-size: 15px;
    margin: 30px 0 1px;
    color: #fcd274;
    font-weight: 700;
    font-family: "Charm", cursive;
}
.section-title p {
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    line-height: 17px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f0a448;
    font-family: "Cormorant Infant", serif;
}
.title4 {
    font-size: 27px;
    font-weight: 700;
    font-family: "Charm", cursive;
    color: #006a52;
    /* line-height: 56px; */
}
a.btn-get-started.animate__animated.animate__fadeInUp.scrollto.center {
    font-family: "Charm", cursive;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 12px;
    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: #fcd274;
    color: #040404;
}

}

@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: -197px;
    position: relative;
}
}

/* section#about {
    margin-top: 73px;
} */
@media (min-width: 992px){
.col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
    float: left;
}}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color:#0f2f57;
    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;
}
img.icon {
    position: absolute;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #ed502e;
    line-height: 1;
}
.ftr-link {
    font-size: 22px;
    font-weight: 600;
    color: #e8c727;
    
}
.att {
    font-size: 18px;
    font-weight: 600;
    color: #006a52;
}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0rem;
    list-style: none;
}
.btn-get-started {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    
    
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #979388;
    background: #e8c727;
    color: #00529c;
}
.title-2 {
    font-size: 24px;
    font-weight: 700;
    color: #00529c;
}
.title2 a {
    font-size: 22px;
    font-weight: 600;
    color: #e8c727;
    
}
.credits a {
    color: #fff;
}
 .about-2 .inner-title {
  font-size: 1.75rem;
    font-weight: 700;
    /* margin: 30px 0; */
    color: #00529c;
}
@media (min-width: 991px) {
  .about-2 .inner-title {
    
    margin: 0 0 25px 0;font-family: "Cormorant Infant", serif;
  }
}
.about-2 .our-story {
  padding: 40px;
  background-color:#a6af1617;
}
@media (min-width: 991px) {
  .about-2 .our-story {
    padding-right: 35%;
  }
}
.about-2 .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.about-2 .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.about-2 .our-story p:last-child {
  margin-bottom: 0;
}
.about-2 ul {
  list-style: none;
  padding: 0;
  font-size: 19px;
    font-weight: 600;
}
.about-2 ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.about-2 ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}
.about-2 .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}
.about-2 .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}
.about-2 .watch-video:hover a {
  color: var(--accent-color);
}
.about-2 .about-img {
  min-height: 400px;
  position: relative;
}
@media (min-width: 992px) {
  .about-2 .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}
.about-2 .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
} 

 .services-2 {
  background:#00529c; Color: #cccccceb;

}
.services-2 .servies-title {
  font-size: 25px;
  margin-bottom: 1.5rem;
}
.services-2 .btn-outline-primary {
     color: #00529c;
    font-weight: 700;
   border-color: #e8c722;
    padding: 5px 17px;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: #e8c722;
    font-size: 20px;
}
.services-2 .btn-outline-primary:hover {
  background-color: #00529c;
  color: #fff;font-weight:600;
}
.services-2 .service-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px #ccc;
  height: 100%;
  transition: transform 0.3s ease;
}
.services-2 .service-item:hover {
  transform: scale(1.05);
}
.services-2 .service-item img {
  font-size: 2.5rem;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 15px;
}

.services-2 .service-item .title3 a {
  font-size: 22px;
    margin-bottom: 15px;
    color: #25717a;
    font-weight: 600;
}

.services-2 .service-item p {
 font-size: 18px;
    color: #303233;
}
@media (max-width: 991px) {
  .services-2 h2 {
    font-size: 2rem;
  }
} 
a.twitter {
    background: #1DA1F2;
}
a.facebook {
    background: #3b5998;
}
a.linkedin {
    background: #0A66C2;
}
a.instagram {
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}
a.youtube {
    background: #d81103;
}
.tp {
    margin-top: 73px;
}
.footer-info a {
    color: #e8c727;
}
.footer-gallery {
    width: 100%;
       max-width: 100%;


}

.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% - 25px) / 3);
    margin-right: 5px;
    margin-bottom: 5px;
}

.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: ""
}









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

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

/* ---- HORIZONTAL TIMELINE FOR AMENITIES ---- */
.timeline-container {
    position: relative;
    padding-top: 50px;
    margin-bottom: 50px;
}
.timeline-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #00529c, #00529c);
    transform: translateY(-50%);
    z-index: 1;
}
.timeline-progress {
    position: absolute;
    top: 50px;
    left: 0;
    height: 4px;
    background: #e92a26;
    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 #00529c;
    margin-bottom: 20px;
    position: relative;
    z-index: 4;
    transition: all 0.3s ease-in-out;
}
.timeline-item.active .timeline-marker {
    background: #e92a26;
    border-color: #e92a26;
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(233, 42, 38, 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: #00529c;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}
.timeline-item.active .timeline-icon {
    color: #e92a26;
    transform: scale(1.2);
}
.timeline-content h3 {
    color: #00529c;
    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, 82, 156, 0.1); /* Updated alpha value with new primary blue */
    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, 82, 156, 0.15); /* Updated alpha value with new primary blue */
    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: #e92a26;
    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: #00529c; /* Already #00529c, unchanged */
    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: #e92a26;
    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: #00529c;
    border: 2px solid #e92a26;
}
.flip-card-back {
    background-color: #e92a26;
    color: #ffffff;
    transform: rotateY(180deg);
}
.amenity-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.amenity-name {
    /* Styles removed for global font settings */
}
.amenity-description {
    /* Styles removed for global font settings */
}

@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: #e8c727; /* Remains #e8c727 as it's a new color */
    bottom: -150px;
    animation: fall 25s linear infinite;
    opacity: 0.3;
    box-shadow: 0 0 10px #e8c727, 0 0 5px #ff8c4c; /* Keep secondary orange shade for contrast */
}

@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 #e92a26;
}
.attractions-container .category-header {
    padding: 20px;
    background-color: #00529c;
    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: #e92a26;
    color: white;
    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: #00529c;
    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: 1400px;
    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: #00529c;
    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: #e92a26;
    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, 82, 156, 0.15); /* Updated alpha value with new primary blue */
    transition: all 0.3s ease-in-out;
}
.roosevelt-amenities-feature-list li:hover {
    background-color: rgba(233, 42, 38, 0.05); /* Updated alpha value with new accent red */
    padding-left: 15px;
}
.roosevelt-amenities-feature-list li:last-child {
    border-bottom: none;
}
.roosevelt-amenities-feature-icon {
    color: #e92a26;
    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;
    }
}


.title3-direction {
    color: #fff;
    font-size: 20px;
}

.title3-attraction {
    color: black;
    font-size: 20px !important;
}



















/* =================================================================
   3. LOCATION SECTION
   ================================================================= */
.location-container {
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    background: white;
}
.location-title {
    text-align: center;
    color: #00529c; /* Replaced #151b83 */
    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: #e92a26; /* Replaced #ff5203 */
}
.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, 82, 156, 0.1); /* Updated from rgba(21, 27, 131, 0.1) */
    border: 1px solid rgba(0, 82, 156, 0.1); /* Updated from rgba(21, 27, 131, 0.1) */
}
.coordinates-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #00529c; /* Replaced #151b83 */
}
.coordinate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
}
.coordinate i {
    color: #e92a26; /* Replaced #ff5203 */
    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, 82, 156, 0.1); /* Updated from rgba(21, 27, 131, 0.1) */
    border: 1px solid rgba(0, 82, 156, 0.1); /* Updated from rgba(21, 27, 131, 0.1) */
}
.directions-form label {
    color: #00529c; /* Replaced #151b83 */
    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: #00529c; /* Replaced #151b83 */
    box-shadow: 0 0 0 3px rgba(0, 82, 156, 0.2); /* Updated from rgba(21, 27, 131, 0.2) */
}
.directions-form button {
    background: #00529c; /* Replaced #151b83 */
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.directions-form button:hover {
    background: #e92a26; /* Replaced #ff5203 */
    transform: translateY(-2px);
}
.location-map {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 82, 156, 0.1); /* Updated from rgba(21, 27, 131, 0.1) */
    border: 1px solid rgba(0, 82, 156, 0.1); /* Updated from rgba(21, 27, 131, 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: #00529c; /* Replaced #151b83 */
    margin-bottom: 25px;
    position: relative;
}

.p-contact {
    font-size: 25px !important;
}

.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #e92a26; /* Replaced #ff5203 */
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}
.info-item em {
    color: #e92a26; /* Replaced #ff5203 */
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 25px;
}
.info-text .title {
    margin-bottom: 5px;
    color: #00529c; /* Replaced #151b83 */
}
.info-text p, .info-text a {
    text-decoration: none;
    transition: color 0.3s;font-size: 17px;
    font-weight: 500;
}
.info-text a:hover {
    color: #e8c727; /* Replaced #151b83 */
}
.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: 580px;
}
.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: #00529c; /* Replaced #151b83 */
    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 #e92a26; /* Replaced #ff5203 */
    height: 120px;
}
#hotel-navigation-section .nav-link:hover {
    background: #00529c; /* Replaced #151b83 */
    color: white;
    box-shadow: 0 8px 16px rgba(0, 82, 156, 0.2); /* Updated from rgba(21, 27, 131, 0.2) */
    transform: translateY(-3px);
}
#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #e92a26; /* Replaced #ff5203 */
    transition: all 0.3s ease;
}
#hotel-navigation-section .nav-link:hover .nav-icon {
    color: white;
    transform: scale(1.1);
}
#hotel-navigation-section .nav-text {
    margin-bottom: 5px;
}
#hotel-navigation-section .nav-desc {
    opacity: 0.8;
}
@media (max-width: 992px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: repeat(2, 1fr);
    }
    #hotel-navigation-section .nav-link {
        height: 110px;
        padding: 20px 10px;
    }
}
@media (max-width: 576px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: 1fr;
    }
    #hotel-navigation-section .nav-link {
        height: 100px;
        padding: 15px 10px;
    }
    #hotel-navigation-section {
        padding: 30px 0;
    }
}


/* =================================================================
   6. FAQ SECTION
   ================================================================= */
.faq-section {
    margin: 20px auto;
    padding: 0 20px;
}
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}
.faq-header h2 {
    color: #00529c; /* Replaced #003a70 */
    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, #00529c, #e8c727); /* Updated from #003a70, #fcb100 */
    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 #00529c; /* Replaced #003a70 */
}
.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: #e8c727; /* Replaced #fcb100 */
    color: white;
    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, #00529c, transparent); /* Updated from #003a70 */
}
.faq-answer p {
    margin: 0;
    color: #555;
}
.faq-answer a {
    color: #00529c; /* Replaced #003a70 */
    text-decoration: none !important;
}
.faq-answer a:hover {
    color: #e8c727; /* Replaced #fcb100 */
    border-bottom-color: #e8c727; /* Replaced #fcb100 */
}
.faq-answer .fa-caret-right {
    color: #e8c727; /* Replaced #fcb100 */
    margin-right: 8px;
}
@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-question, .faq-answer {
        padding: 20px;
    }
}


/* =================================================================
   7. HIGHLIGHTED ATTRACTION SECTION
   ================================================================= */
.highlighted-attraction-section {
    color: black;
    text-align: center;
}
.highlighted-container {
    max-width: 1200px;
    margin: 40px auto;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #ffffff;
}
.highlighted-header {
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f7f9fc, #dfeaf1);
}
.highlighted-title {
    margin-bottom: 10px;
}
.highlighted-subtitle {
    /* Styles removed for global font settings */
}
.highlighted-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 30px;
}
.highlighted-description {
    flex: 1;
    text-align: left;
}
.highlighted-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.highlighted-features li {
    margin-bottom: 15px;
    color: #444;
    display: flex;
    align-items: center;
}
.highlighted-features li strong {
    color: #e8c727; /* Replaced #fcb100 */
}
.highlighted-text {
    color: #444;
    margin-bottom: 15px;
}
.highlighted-reservation-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #e8c727; /* Replaced #fcb100 */
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.highlighted-reservation-btn:hover {
    background: #e92a26; /* Replaced #f1a74b (old hover) with new red */
    transform: translateY(-3px);
}
.highlighted-image {
    flex: 1;
    max-height: 300px;
    overflow: hidden;
}
.highlighted-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlighted-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
    .highlighted-content {
        flex-direction: column;
    }
}







/* Gallery Grid Styling */
.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;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    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);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

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

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

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Semi-transparent background */
    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;
    box-shadow: 0 10px 25px rgba(0,0,0,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);
}

/* ▼▼▼ THIS IS THE NEW CSS FOR THE CAPTION ▼▼▼ */
#lightbox-caption {
    text-align: center;
    color: #f1f1f1;
    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 */
.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: white;
    cursor: pointer;
    font-weight: bold;
    user-select: none; /* Prevents text selection */
    transition: color 0.2s ease;
}

.close-btn:hover, .prev-btn:hover, .next-btn:hover {
    color: #bbb;
}

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