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

}

a {
  color: #6e6660;
  text-decoration: none;
}

a:hover {
  color: #f1775d;
  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;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background:#daa520;
  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: #f06f54;
  color: #fff;
}

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

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

#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: 0;
    margin: 0;
    margin-top: -32px;
    z-index: 1000;
    position: absolute;
    width: 140px;
}

/*--------------------------------------------------------------
# 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 5px 10px 30px;
  font-size: 20px;
  color: #6e6660;
  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: #333333;
      border-bottom: 5px solid #6e6660;
	  /*border-radius: 0% 0% 0% 30%; */
	  border-right: 1px solid goldenrod;

}

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

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #6e6660;border-radius: 0%;
}

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

.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: 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-bg {
  background-color: #f6f9fd;
}

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

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

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

.section-title h1 {
  margin: 0;
  margin: 0;
  font-size: 45px;
  font-weight: 700;
      font-family: 'Philosopher', sans-serif;

  color:#a6192e;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 22px;
    

}
/*--------------------------------------------------------------
# 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;    line-height: 20px;

    font-weight:500;font-family: "Cormorant Infant", serif;
}

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

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

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

.about .content .btn-learn-more {
  font-family: "Cormorant Infant", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 14px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #ffffff;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 4px solid #8f8f8f;
    background: #69615b;

}

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

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
      background: whitesmoke;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgb(110 102 96 / 58%);
    padding: 30px;
    width: 100%;
    background: linear-gradient(to bottom, #6e6660 30%, #3a3735 92%);
	border-radius: 30px;
}

.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: 20px;
    text-align: left;
    color: #fff;
}

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



.counts2 {
  padding-top: 0;
      background: whitesmoke;
	      padding-top: 30px;
    padding-bottom: 30px;
	background: linear-gradient(rgb(15 15 15 / 39%), rgb(0 0 0 / 52%)), url(../img/amy.jpg) center center;
	    background-size: cover;
    padding: 100px 0;
    background-attachment: fixed;
	
	
	
}

.counts2 .count-box {
  box-shadow: -10px -5px 40px 0 rgb(110 102 96 / 58%);
    padding: 30px;
    width: 100%;
    background: linear-gradient(to bottom, #6e6660 30%, #3a3735 92%);
	border-radius: 30px;
}

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

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

.counts2 .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Cormorant Infant", serif;
   font-size: 20px;
    text-align: left;
    color: #fff;
}

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

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





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

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

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #a6192e;    line-height: 2;

}

.why-us .content h4 {
  font-size: 20px;
  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(#ed502e 50%, rgba(237, 80, 46, 0.4) 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 #ed502e;
  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: #6e6660;
    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 {
    background: linear-gradient(rgb(15 15 15 / 39%), rgb(0 0 0 / 52%)), url(../img/shopping.webp) center center;
    background-size: cover;
    padding: 100px 0;
    background-attachment: fixed;
}

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

.cta p {
  color: #fff;    text-align: center;    font-size: 35px;
    font-family: 'Philosopher', sans-serif;

}

.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: #ff7600;
    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, #494847 42%, #111111f5 100%);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 18px;font-family: "Cormorant Infant", serif;
}

#footer .footer-top {
  padding: 60px 0 30px 0; border-top: 5px solid #DAA520;
    
}

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

#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 #daa520;
  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:#6e6660;font-family: 'Philosopher', sans-serif;
}


/*--------------------------------------------------------------
# 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 / 28%);
  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: 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: #f67200;
   
}

@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: 22px;
    
    color: #ff7600;
    font-weight: 600;
}

p.para {
    color: #fff;
}
.title4 {
   font-size: 40px;
    font-weight: 700;
    font-family: 'Philosopher', sans-serif;
    color: #fff;
    text-align: center;
}
.amt {
    font-size: 20px;
    font-weight: 600;
    color:#ffffff;
        font-family: 'Philosopher', sans-serif;

}
@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;
}
.section-title h1 {
    margin: 0;
    margin: 0;
    font-size: 31px;
    font-weight: 700;
    
    color: #a6192e;
}

}

@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 19px;
    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, #6e6660 16%, #000 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%);
    border-radius: 9px;
}
.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 24px;
    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:#daa520;
    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;
}

.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: #6e6660;
    font-family: "Cormorant Infant", serif;
}
.title4 {
    font-size: 27px;
    font-weight: 700;
    
    color: #a6192e;
    /* line-height: 56px; */
}
a.btn-get-started.animate__animated.animate__fadeInUp.scrollto.center {
   
    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;
}


}

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:#6e6660;
    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 #878787;
    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: #ffffff;
        font-family: 'Philosopher', sans-serif;
}

.box{
    background: linear-gradient(#1515158a, #000000db);
    font-family: "Cormorant Infant", serif;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.box:hover{ box-shadow: 0 0 20px -7px rgba(0,0,0,0.35); }
.box img{
    width: 100%;
    height: auto;
    opacity: 1;
    transition: all 0.5s ease 0s;
}
.box:hover img{ 
    opacity: 0.3;
}
.box .box-content{
    color: #fff;
    background-color:#ff7600;
    width: 100%;
    padding: 7px 10px 5px;
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 2;
    transition: all 0.25s ease;
}
.box:hover .box-content{
    top:0;    
}
.box .title{
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 1px;
}
.box .post{
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    display: block;
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scaleY(0);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transition: all 0.3s ease 0s;
}
.box:hover .icon{
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scaleY(1);
}
.box .icon li{
    margin: 0 3px;
    display: inline-block;
}
.box .icon li a{
    color: #0846da;
    background: #fff;
    font-size: 14px;
    line-height: 32px;
    height: 30px;
    width: 30px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}
.box .icon li a:hover{
    text-shadow: 4px 4px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.5);
}
@media only screen and (max-width:990px){
    .box{ margin: 0 0 30px; }
}
.b-x {
 border:1px solid #d4d3d35c;
    padding: 30px 30px;
}
footer#footer a {
    color: #fff;
}
a.twitter, .facebook , .instagram , .linkedin {
    background: #daa520;
}
#fsocial {
    position: fixed;
    width: 200px;
    height: auto;
    float: right !important;
    margin: 440px -52px;
    border-radius: 5px 5px 5px 5px;
    /* box-shadow: 0px 1px 1px rgb(0 0 0 / 20%); */
    z-index: 5000;
    right: 0;
    text-align: center;
    font-size: 24px;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #ed502e;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 18px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ed502e;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #ff7600;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;    font-size: 20px;

}

.contact .php-email-form button[type=submit]:hover {
  background:#ff7600;
}

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

  100% {
    transform: rotate(360deg);
  }
}
.container-fluid.tp {
    margin-top: 70px;
}
p.para-upper {
    font-family: "Cormorant Infant", serif;
    font-size: 18px;
    
}
.rm_oth {
   margin-top: 20px;
   background: #fbfbfb;
   font-size: 16px;
}
button#myBtn {
    background: #e16924;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .card {
  border: 0;
  padding: 282px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.values .card-body {
  z-index: 10;
  background: linear-gradient(to bottom, #6e6660 16%, #3a3735 68%);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgb(110 102 96);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}
.values .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.values .card-title a {
  color: #fff;
}
.values .card-text {
  color: #fff;
}
.values .read-more a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  transition: 0.4s;
}
.values .read-more a:hover {
  text-decoration: underline;
}
.values .card:hover .card-body {
    background: linear-gradient(to bottom, #3a3735 30%, #6e6660 92%);
}
}
.values .card:hover .read-more a, .values .card:hover .card-title, .values .card:hover .card-title a, .values .card:hover .card-text {
  color: #fff;
}
.att {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    
}
.card-body {
     flex:none; 
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
}

.bg {
    background: #e6e6e5;
}
footer#footer p {
    font-size: 18px;
}
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: #e9401e;
}

.videoWrapper {
	position:relative;
	padding-bottom:56.25%;
	padding-top:25px;
	height:0
}
.videoWrapper iframe {
	position:absolute;
	top:10px;
	left:0;
	width:100%;
	height:100%
}
.contact 
{

	background: linear-gradient(rgb(15 15 15 / 39%), rgb(0 0 0 / 52%)), url(../img/map.jpg) center center;
	    background-size: cover;
    padding: 50px 0;
    background-attachment: fixed;
	
}




























































/* New Facility Section */
.new-facility-section {
    text-align: center;
    color: black; /* Changed from #333 */
    background-color: white;
}


.new-facility-container {
    margin: 0 auto;
}

.new-facility-title {
    color: #e16924; /* NEW Accent Color */
    margin-bottom: 40px;
    position: relative;
}

.new-facility-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #6e6660; /* NEW Primary Color */
    margin: 15px auto;
}

/* ----- MODIFICATION APPLIED HERE ----- */
/* Grid Styling */
.facility-grid-creative {
    display: grid;
    /* This creates the 4-column layout you requested */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
}
/* ----------------------------------- */

/* Facility Box */
.facility-box-creative {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.facility-box-creative:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Icon Background */
.icon-background {
    background: #6e6660; /* NEW Primary Color */
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    border-bottom: 5px solid #e16924; /* NEW Accent Color */
}

.icon-background i {
    font-size: 2.5em; /* Set icon size to medium */
}


.facility-box-creative:hover .icon-background {
    background: #6e6660; /* NEW Primary Color */
}

/* Facility Information */
.facility-info {
    padding: 25px 20px;
    text-align: center;
}

.facility-info h3 {
    color: #e16924; /* NEW Accent Color */
    margin-bottom: 12px;
}

.facility-info p {
    color: black; /* Changed from #555 */
    margin-bottom: 0;
}

/* =================== THE SECTION BELOW IS UNCHANGED AS REQUESTED =================== */

/* Features Section */
.features-section {
    padding: 60px 20px;
    background: #6e6660; /* NEW Primary Color */
    color: #fff;
    text-align: center;
}

.features-title {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-size: 35px;
}

.features-underline {
    display: block;
    width: 80px;
    height: 4px;
    background: #e16924; /* NEW Accent Color */
    margin: 10px auto;
}

.features-subtitle {
    opacity: 0.9;
}

/* Cards Container */
.features-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

/* Card Base */
.feature-card {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 380px;
    padding: 30px;
    color: black; /* Changed from #333 */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    box-sizing: border-box;
    flex-grow: 1;
}

/* Special wider style for the Room Types card */
.feature-card.card-red {
    max-width: 450px;
    min-width: 380px;
}

/* Card Colors */
.card-blue .card-icon {
    background: #6e6660; /* NEW Primary Color */
}

.card-red .card-icon {
    background: #e16924; /* NEW Accent Color */
}

.card-purple .card-icon {
    background: #6e6660; /* NEW Primary Color */
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Card Heading */
.card-heading {
    color: #6e6660; /* NEW Primary Color */
}

/* Card List */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.card-list li {
    background: #f4f6f8;
    margin-bottom: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
}

/* Dot Style (for blue card) */
.dot {
    width: 8px;
    height: 8px;
    background: #6e6660; /* NEW Primary Color */
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Number Style (for red card) */
.number {
    background: #e16924; /* NEW Accent Color */
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Minus Style (for purple card) */
.minus {
    width: 20px;
    height: 4px;
    background: #6e6660; /* NEW Primary Color */
    border-radius: 2px;
    margin-right: 10px;
    margin-top: 8px;
    flex-shrink: 0;
}

/* =================== RESPONSIVE DESIGN (Important for Smaller Screens) =================== */

/* Responsive Design */
@media (max-width: 1024px) {
    /* Changes main amenities to 3 columns on tablets */
    .facility-grid-creative {
        grid-template-columns: repeat(3, 1fr);
    }
    .feature-card.card-red {
        max-width: 380px;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    /* Changes main amenities to 2 columns on small tablets */
    .facility-grid-creative {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .feature-card {
        max-width: 100%;
    }

    .feature-card.card-red {
        max-width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    /* Changes main amenities to 1 column on mobile phones */
    .facility-grid-creative {
        grid-template-columns: 1fr;
    }

    .icon-background {
        padding: 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }
}


/* Main Amenities Section */
.roosevelt-amenities {
    width: 100%;
    padding: 2rem 0;
    box-sizing: border-box; 
}

.roosevelt-amenities-container {
    width: 100%;
    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;
}

.roosevelt-category-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
}

.roosevelt-category-title {
    font-size: 2.2rem; 
    color: #6e6660; /* NEW Primary Color */
    margin-top: 0;
    margin-bottom: 1.5rem; 
    position: relative;
    font-weight: 700;
    width: 100%;
}

.roosevelt-category-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e16924; /* NEW Accent Color */
    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-column {
    padding: 0;
    background: none;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
}

.roosevelt-amenities-feature-column:hover {
    transform: none;
    box-shadow: none;
}

.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;
    /* Updated rgba border using new accent color #e16924 */
    border-bottom: 1px solid rgba(225, 105, 36, 0.2); 
    transition: all 0.3s ease-in-out;
}

.roosevelt-amenities-feature-list li:hover {
    /* Updated rgba background using new accent color #e16924 */
    background-color: rgba(225, 105, 36, 0.05); 
    padding-left: 15px; 
}

.roosevelt-amenities-feature-list li:last-child {
    border-bottom: none;
}

.roosevelt-amenities-feature-icon {
    color: #e16924; /* NEW Accent Color */
    margin-right: 1.5rem; 
    font-size: 1.6rem; 
    min-width: 28px; 
    text-align: center;
}

.roosevelt-amenities-feature-text {
    color: #000000; /* Set to black */
    font-size: 1.15rem; 
    font-weight: 500;
}

.roosevelt-amenities-divider {
    display: none; 
}

/* Attractions Section */

.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px;
}

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

.category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.category-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 4px solid #e16924; /* NEW Accent Color */
}

.transport-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.airport-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.restaurant-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.category-header {
    padding: 20px;
    background-color: #6e6660; /* NEW Primary Color */
    color: white;
    position: relative;
    margin-top: -7px;
}

.category-header h2 {
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.attraction-list {
    padding: 20px;
    background-color: #fff;
}

.attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee; 
}

.attraction:last-child {
    border-bottom: none;
}

.attraction-info {
    flex: 1;
}

.attraction-name {
    font-weight: 500;
    margin-bottom: 4px;
    color: #000; 
    font-size: 1.1rem;
}

.attraction-type {
    color: #000000; /* Set to black */
    font-size: 0.95rem;
}

.attraction-distance {
    background-color: #e16924; /* NEW Accent Color */
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.95rem; 
    font-weight: 500;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
}

.attraction:hover .attraction-distance {
    background-color: #6e6660; /* NEW Primary Color */
    transform: scale(1.05);
}


/* --- Responsive Adjustments --- */
@media (max-width: 1280px) {
    .roosevelt-amenities-container { padding: 0 1.5rem; }
    .roosevelt-category-title { font-size: 2rem; }
}
@media (max-width: 992px) {
    .roosevelt-amenities { padding: 4rem 0; }
    .roosevelt-categories-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .roosevelt-category-section { padding: 2rem; }
    .roosevelt-category-image { height: 220px; margin-bottom: 1.5rem; }
    .roosevelt-category-title { font-size: 1.8rem; }
}
@media (max-width: 900px) {
    .attractions-container { grid-template-columns: 1fr; }
    .category { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .roosevelt-amenities-container { padding: 0 1rem; }
    .roosevelt-category-section { padding: 1.8rem; }
    .roosevelt-category-image { height: 200px; }
    .roosevelt-category-title { font-size: 1.6rem; margin-bottom: 1rem; }
    .roosevelt-amenities-feature-list li { padding: 0.8rem 0; }
    .roosevelt-amenities-feature-icon { font-size: 1.4rem; min-width: 24px; margin-right: 1rem; }
    .roosevelt-amenities-feature-text { font-size: 1rem; }
}
@media (max-width: 576px) {
    .roosevelt-amenities { padding: 3rem 0; }
    .roosevelt-categories-grid { gap: 2rem; }
    .roosevelt-category-section { padding: 1.5rem; }
    .roosevelt-category-title { font-size: 1.5rem; }
    .roosevelt-category-title:after { width: 50px; height: 3px; margin-top: 0.5rem; }
    .roosevelt-category-image { height: 180px; margin-bottom: 1rem; }
}



.location-container {
  width: 100%;
  max-width: 100%;
  padding: 40px 0;
  background: white;
}

.location-title {
  text-align: center;
  color: #6e6660; /* NEW Primary Color */
  font-size: 2.4rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e16924; /* NEW Accent Color */
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.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(110, 102, 96, 0.1); /* NEW Primary with alpha */
  border: 1px solid rgba(110, 102, 96, 0.1);
}

.coordinates-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #6e6660; /* NEW Primary Color */
  font-size: 1.4rem;
  font-weight: 600;
}

.coordinate {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
  font-size: 1.05rem;
}

.coordinate i {
  color: #e16924; /* NEW Accent Color */
  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(110, 102, 96, 0.1); /* NEW Primary with alpha */
  border: 1px solid rgba(110, 102, 96, 0.1);
}

.directions-form label {
  font-weight: 600;
  color: #6e6660; /* NEW Primary Color */
  font-size: 1.05rem;
}

.directions-form input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.directions-form input:focus {
  outline: none;
  border-color: #6e6660; /* NEW Primary Color */
  box-shadow: 0 0 0 3px rgba(110, 102, 96, 0.2); /* NEW Primary with alpha */
}

.directions-form button {
  background: #6e6660; /* NEW Primary Color */
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.directions-form button:hover {
  background: #e16924; /* NEW Accent Color */
  transform: translateY(-2px);
}

.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(110, 102, 96, 0.1); /* NEW Primary with alpha */
  border: 1px solid rgba(110, 102, 96, 0.1);
  transition: transform 0.3s ease;
}

.location-map:hover {
  transform: translateY(-5px);
}

.location-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
  }
  
  .location-info, .location-map {
    width: 100%;
  }
}

.content-wrapper {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }


.contact-card {
            flex: 1;
            background: white;
            padding: 30px;
            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: 450px;
        }
        
        @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: #6e6660; /* NEW Primary Color */
            margin-bottom: 25px;
            font-size: 1.8rem;
            position: relative;
        }
        
        .contact-card h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .info-item i {
            color: #e16924; /* NEW Accent Color */
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 18px;
        }
        
        .info-text h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #6e6660; /* NEW Primary Color */
        }
        
        .info-text p, .info-text a {
            font-size: 1.1rem;
            color: #000000;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .info-text a:hover {
            color: #e16924; /* NEW Accent Color */
        }
        
        .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) {
            header h1 {
                font-size: 2rem;
            }
            
            .content-wrapper {
                flex-direction: column;
            }
            
            .contact-card, .map-container {
                width: 100%;
                height: auto;
            }
            
            .map-container {
                height: 350px;
            }
        }







        /* Scoped styles using section ID */
        
        #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: black; /* Changed */
            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 #e0e0e0;
            height: 120px; /* Fixed height for rectangular format */
        }
        
        #hotel-navigation-section .nav-link:hover {
            background: #e16924; /* NEW Accent Color */
            color: white;
            box-shadow: 0 8px 16px rgba(110, 102, 96, 0.2); /* NEW Primary with alpha */
            transform: translateY(-3px);
        }
        
        #hotel-navigation-section .nav-icon {
            font-size: 24px;
            margin-bottom: 12px;
            color: #e16924; /* NEW Accent Color */
            transition: all 0.3s ease;
        }
        
        #hotel-navigation-section .nav-link:hover .nav-icon {
            color: white;
            transform: scale(1.1);
        }
        
        #hotel-navigation-section .nav-text {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        #hotel-navigation-section .nav-desc {
            font-size: 13px;
            opacity: 0.8;
            line-height: 1.4;
        }
        
        /* Responsive styles */
        @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;
            }
        }







.faq-section {
    margin: 20px auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}


.faq-header p {
    color: black;
    font-size: 18px;
    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 #6e6660; /* NEW Primary Color */
}

.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: #e16924; /* NEW Accent Color */
    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 {
    font-size: 18px;
    font-weight: 600;
    color: black; /* Changed */
}

.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, #6e6660, transparent); /* NEW Primary */
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: black; /* Changed */
}

.faq-answer a {
    color: #6e6660; /* NEW Primary Color */
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: #e16924; /* NEW Accent Color */
    border-bottom-color: #e16924;
}

.faq-answer .fa-caret-right {
    color: #e16924; /* NEW Accent Color */
    margin-right: 8px;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 20px;
    }
}


em{color: #6e6660;font-size: 20px;text-align:center; padding:0 0px 0 0; border-radius: 50%;-moz-border-radius: 50%;-webkit-border-radius: 50%;-o-border-radius: 50%;transition: all ease 0.3s;-moz-transition: all ease 0.3s;-webkit-transition: all ease 0.3s;-o-transition: all ease 0.3s;-ms-transition: all ease 0.3s;}




.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 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .highlighted-subtitle {
            font-size: 1.3rem;
        }

        .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 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: black; /* Changed */
            display: flex;
            align-items: center;
        }

        .highlighted-features li strong {
            color: #6e6660; /* NEW Primary Color */
        }

        .highlighted-text {
            font-size: 1rem;
            line-height: 1.6;
            color: black; /* Changed */
            margin-bottom: 15px;
        }

        .highlighted-reservation-btn {
            display: inline-block;
            padding: 12px 24px;
            background: #6e6660; /* NEW Primary Color */
            color: #fff !important;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .highlighted-reservation-btn:hover {
            background: #e16924; /* NEW Accent Color */
            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;
            }

            .highlighted-title {
                font-size: 2rem;
            }

            .highlighted-subtitle {
                font-size: 1.1rem;
            }
        }

        .highlighted-hospital-section {
            padding: 80px 20px;
            background: #fdfcfb;
            color: #6e6660; /* NEW Primary Color */
            text-align: center;
        }

        .highlighted-hospital-container {
            max-width: 1200px;
            margin: 0 auto;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            background: #ffffff;
            padding: 40px;
        }

        .hospital-header {
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, #f7f9fc, #dfeaf1);
            border-radius: 15px;
        }

        .hospital-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: bold;
            color: #6e6660; /* NEW Primary Color */
        }

        .hospital-subtitle {
            font-size: 1.3rem;
            color: #6e6660; /* NEW Primary Color */
        }

        .hospital-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .hospital-description {
            flex: 1;
            text-align: left;
        }

        .hospital-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .hospital-features li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: black; /* Changed */
            display: flex;
            align-items: center;
        }

        .hospital-features li strong {
            color: #6e6660; /* NEW Primary Color */
        }

        .hospital-text {
            font-size: 1rem;
            line-height: 1.6;
            color: black; /* Changed */
            margin-bottom: 15px;
        }

        .hospital-reservation-btn {
            display: inline-block;
            padding: 12px 24px;
            background: #6e6660; /* NEW Primary Color */
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .hospital-reservation-btn:hover {
            background: #e16924; /* NEW Accent Color */
            transform: translateY(-3px);
        }

        .hospital-image {
            flex: 1;
            max-height: 300px;
            overflow: hidden;
        }

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

        .hospital-img:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 768px) {
            .hospital-content {
                flex-direction: column;
            }

            .hospital-title {
                font-size: 2rem;
            }

            .hospital-subtitle {
                font-size: 1.1rem;
            }
        }

        .attraction-details-section {
            padding: 80px 20px;
            background: #fdfcfb;
            color: #6e6660; /* NEW Primary Color */
            text-align: center;
        }

        .attraction-details-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .details-title {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: bold;
            color: #6e6660; /* NEW Primary Color */
        }

        .details-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            color: #e16924; /* NEW Accent Color */
        }

        .details-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .details-image {
            flex: 1;
        }

        .details-image .image {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .details-image .image:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .details-description {
            flex: 1;
            text-align: left;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .features-list li {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: black; /* Changed */
        }

        .features-list li strong {
            color: #6e6660; /* NEW Primary Color */
        }

        .details-reservation-btn {
            display: inline-block;
            padding: 15px 30px;
            background: #6e6660; /* NEW Primary Color */
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
            margin-top:10px;
        }

        .details-reservation-btn:hover {
            background: #e16924; /* NEW Accent Color */
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .details-content {
                flex-direction: column;
            }

            .details-title {
                font-size: 2.5rem;
            }

            .details-subtitle {
                font-size: 1.3rem;
            }
        }

        .dining-details-section {
            padding: 80px 20px;
            background: #fdfcfb;
            color: #6e6660; /* NEW Primary Color */
            text-align: center;
        }

        .dining-details-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .dining-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #6e6660; /* NEW Primary Color */
        }

        .dining-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: #e16924; /* NEW Accent Color */
        }

        .dining-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .dining-image {
            flex: 1;
        }

        .dining-img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .dining-img:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .dining-description {
            flex: 1;
            text-align: left;
        }

        .dining-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .dining-features li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: black; /* Changed */
            display: flex;
            align-items: center;
        }

        .dining-features li strong {
            color: #6e6660; /* NEW Primary Color */
        }

        .dining-text {
            font-size: 1rem;
            line-height: 1.6;
            color: black; /* Changed */
            margin-bottom: 15px;
        }

        .dining-reservation-btn {
            display: inline-block;
            padding: 12px 24px;
            background: #6e6660; /* NEW Primary Color */
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .dining-reservation-btn:hover {
            background: #e16924; /* NEW Accent Color */
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .dining-content {
                flex-direction: column;
            }

            .dining-title {
                font-size: 2rem;
            }

            .dining-subtitle {
                font-size: 1.1rem;
            }
        }


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

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

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

/* --- MODIFIED DESKTOP STYLES --- */
@media (min-width: 1024px) {
    .New-attraction-attraction-quality-cards {
        /* Create a 6-column grid to allow for precise placement */
        grid-template-columns: repeat(6, 1fr);
    }

    /* First 3 items (top row): make each span 2 columns */
    .New-attraction-card:nth-child(-n+3) {
        grid-column: span 2;
    }
    
    /* 4th item: start at column 2 and span 2 columns */
    .New-attraction-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    /* 5th item: start at column 4 and span 2 columns */
    .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);
    /* NEW Primary color with transparency for shadow */
    box-shadow: 0 8px 12px rgba(110, 102, 96, 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;
    /* NEW Accent color */
    color: #e16924;
}

.New-attraction-card-description {
    font-size: 1rem;
    /* Changed to black for contrast on white background */
    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;
    /* Changed to black for contrast on white background */
    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 --- */

/* Style for new Font Awesome icons */
.New-attraction-card-details i {
    /* NEW Accent color */
    color: #e16924;
    font-size: 16px;
    width: 16px; 
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Style for the link text */
.New-attraction-card-details a {
    color: inherit; /* Use the default text color (black) */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

/* Change the link text color on hover */
.New-attraction-card-details a:hover {
    /* NEW Primary color */
    color: #6e6660;
}


/* ===================================================================
   --- 3. NEARBY ATTRACTIONS SECTION ---
   =================================================================== */

.attractions-section {
  background: white; 
  padding: 39px 8% 80px 8%;
  color: black; 
}

/* Header */
.attractions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.attractions-title {
  font-size: 2.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #000000; /* Set to black */
  margin: 0;
  position: relative;
}

.attractions-title span {
  color: #e16924; /* UPDATED: Using new accent color */
}

.attractions-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #e16924; /* UPDATED: New accent color */
  display: block;
  margin: 12px 0 0;
  border-radius: 2px;
}

/* Attractions Grid */
.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px 20px;
    max-width: 1500px;
}

.attractions-container .category {
    background: white;
    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);
    flex: 1;
}

.attractions-container .category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.attractions-container .category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #e16924; /* UPDATED: New accent color border */
}

.attractions-container .category-header {
    padding: 20px;
    background-color: #6e6660; /* UPDATED: New primary color background */
    color: white; 
    text-align: center;
}

.attractions-container .category-header h2, .title2 {
    margin: 0;
    font-size: 24px;
}

.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-name, .title3-attraction {
    margin-bottom: 4px;
    font-size: 16px;
    color: #000000; /* Set to black */
}

.attractions-container .attraction-type {
    color: #000000; /* Set to black */
}

.attractions-container .attraction-distance {
    background-color: #e16924; /* UPDATED: New accent color */
    color: white; 
    padding: 5px 12px;
    border-radius: 20px;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.attractions-container .attraction:hover .attraction-distance {
    background-color: #6e6660; /* UPDATED: New primary color on hover */
    transform: scale(1.05);
    color: white; 
}


.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(0, 0, 0, 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;
}