body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  body {
    margin-top: 50px;
  }
}

@media screen and (min-width: 769px) {
  body {
    margin-top: 90px;
  }
}

p {
  font-family: "Poppins", sans-serif;
}

.layout_margin {
  margin-top: 90px;
  margin-bottom: 90px;
}

.layout_padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.layout_padding2 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 120px;
}

.layout_padding-bottom {
  padding-bottom: 120px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.heading_container h2 {
  font-weight: bold;
}

/*header section*/
.hero_area {
  height: auto;
  min-height: 50vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sub_page .hero_area {
  height: auto;
}

.sub_page .hero_area .header_section {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.header_section {
  background-color: #ffffff;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

/* Nueva barra de navegación universal */
.main_nav_container {
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  padding: 10px 0;
}

.main_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_brand {
  color: white;
  font-size: 20px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

.nav_menu_btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav_menu_btn span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s;
}

.nav_menu_btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav_menu_btn.active span:nth-child(2) {
  opacity: 0;
}

.nav_menu_btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Barra de contacto - solo escritorio */
.contact_nav_container {
  background-color: #333;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 8px 0;
}

@media screen and (max-width: 768px) {
  .contact_nav_container {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }
  
  .contact_nav_container .contact_nav {
    display: none !important;
  }
  
  .contact_nav_container .desktop-nav {
    display: none !important;
  }
  
  .main_nav_container {
    padding: 12px 0;
  }
}

.contact_nav_container .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact_nav_container .contact_nav a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.contact_nav_container .contact_nav a {
  color: #ffffff;
}

.header_section .nav_container {
  margin: 0 auto;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link img {
  width: 22px;
  margin-right: 15px;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0px 25px;
  color: #fefeff;
  text-align: center;
  font-family: "Roboto", sans-serif;
}

.custom_menu-btn button {
  margin-top: 12px;
  outline: none;
  border: none;
  background-color: transparent;
}

.custom_menu-btn span {
  display: block;
  width: 35px;
  height: 5px;
  background-color: #252525;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_menu-btn .s-2 {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  width: 20px;
}

.menu_btn-style {
  position: fixed;
  left: 22px;
  top: 15px;
}

.menu_btn-style button {
  margin-top: 12px;
  outline: none;
  border: none;
  background-color: transparent;
}

.menu_btn-style span {
  display: block;
  width: 35px;
  height: 5px;
  background-color: #252525;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu_btn-style button {
  -webkit-transform: translateX(14px);
          transform: translateX(14px);
}

.menu_btn-style button .s-1 {
  -webkit-transform: rotate(45deg) translateY(17px);
          transform: rotate(45deg) translateY(17px);
}

.menu_btn-style button .s-2 {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}

.menu_btn-style button .s-3 {
  -webkit-transform: rotate(-45deg) translateY(-17px);
          transform: rotate(-45deg) translateY(-17px);
}

.navbar-expand-lg {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-expand-lg .navbar-collapse {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: black;
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.overlay .closebtn {
  position: absolute;
  top: 0;
  right: 30px;
}

.overlay a {
  display: inline-block;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 10px 0;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1.5px solid #ffffff;
  border-radius: 5px;
  width: 190px;
}

.overlay a:hover, .overlay a.active {
  border-color: transparent;
  background-color: #ffffff;
  color: #000000;
}

.menu_btn-style {
  display: none;
}

.overlay-content {
  position: relative;
  top: 20%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu_width {
  width: 100%;
}

.scroll-y-hidden {
  overflow-y: hidden;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  background-position: center;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.navbar-brand span {
  font-weight: 700;
  color: #2d2d2c;
  font-size: 24px;
}

.custom_nav-container {
  z-index: 99999;
  padding: 25px 0;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 55px;
}

.user_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.user_option a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 25px;
  color: #000000;
}

.user_option a span {
  text-transform: uppercase;
  margin-right: 5px;
}

/*end header section*/
.slider_section {
  background-image: url(../images/guarde_4.png);
  background-size: cover;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #ffffff;
}

.slider_section #customCarousel1,
.slider_section .carousel-inner,
.slider_section .carousel-item {
  height: 100%;
}

.slider_section #customCarousel1 {
  width: 100%;
  height: 100%;
}

.slider_section .box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.slider_section .box a {
  display: inline-block;
  background-color: black;
  color: #ffffff;
  padding: 12px 45px;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  text-transform: uppercase;
}

.slider_section .box a:hover {
  background-color: black;
}

.slider_section .box .baby_detail {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Google Reviews Section */
.reviews_section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.reviews_section .heading_container {
  margin-bottom: 50px;
}

.reviews_section .heading_container h2 {
  color: #2d2d2c;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.reviews_section .heading_container p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

#reviews-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reviews-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.reviews-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4285f4;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1.5rem;
  color: #ffc107;
}

.star.filled {
  color: #ffc107;
}

.reviews-count {
  color: #666;
  font-size: 1rem;
}

.google-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-weight: 500;
}

.reviews-list {
  display: grid;
  gap: 25px;
}

.review-item {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #fafafa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #4CAF50;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d2d2c;
  margin: 0 0 5px 0;
}

.review-rating {
  margin-bottom: 5px;
}

.review-rating .star {
  font-size: 1rem;
}

.review-date {
  color: #888;
  font-size: 0.9rem;
}

.review-text {
  color: #444;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.reviews-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.view-all-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4285f4;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.view-all-reviews:hover {
  background: #3367d6;
  color: white;
  text-decoration: none;
}

/* Responsive design for reviews */
@media screen and (max-width: 768px) {
  .reviews_section {
    padding: 40px 0;
  }
  
  #reviews-container {
    margin: 0 15px;
    padding: 20px;
  }
  
  .reviews-summary {
    flex-direction: column;
    text-align: center;
  }
  
  .rating-display {
    flex-direction: column;
    gap: 10px;
  }
  
  .rating-number {
    font-size: 2rem;
  }
  
  .review-header {
    flex-direction: column;
    text-align: center;
  }
  
  .reviewer-photo {
    align-self: center;
  }
}ex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.slider_section .box .baby_detail .baby_text {
  padding: 25px 35px;
  background-color: rgba(37, 37, 37, 0.9);
  margin-bottom: 15px;
}

.slider_section .box .baby_detail h2 {
  text-transform: uppercase;
}

.slider_section .box .care_detail {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.slider_section .box .care_detail .care_text {
  padding: 25px 35px;
  background-color: rgba(37, 37, 37, 0.9);
  margin-top: 15px;
}

.slider_section .box .care_detail h2 {
  text-transform: uppercase;
}

.slider_section .carousel-indicators {
  left: initial;
  bottom: initial;
  top: 45px;
  right: 0;
  width: 50px;
  height: 115px;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  width: 20px;
  height: 20px;
  opacity: 1;
  margin: 0;
  border: none;
  background-color: transparent;
  background-color: black;
}

.slider_section .carousel-indicators li.active {
  background-color: #252525;
}

.service_section {
  background-color: #252525;
  position: relative;
}

.service_section .row > div {
  padding: 0;
}

.service_section .box {
  padding: 25px 25px;
  position: relative;
}

.service_section .box .img-box {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service_section .box .img-box img {
  width: 100%;
}

.service_section .box .detail-box {
  color: #ffffff;
  margin-top: 10px;
}

.service_section .box .detail-box h6 {
  text-transform: uppercase;
}

.service_section .box > div {
  position: relative;
  z-index: 3;
}

.service_section .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #252525;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_section .box:hover:before, .service_section .box.active:before {
  background-color: #FFA500;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  z-index: 2;
}

.about_section {
  color: #ffffff;
  padding-left: 10%;
  padding-right: 12%;
}

.about_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.about_section .box .img-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about_section .box .img-box img {
  width: 100%;
}

.about_section .box .detail-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 25px;
  margin: 25px 0;
  background-color: #252525;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about_section .box .detail-box p {
  margin: 0;
}

.about_section .box .detail-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
  color: black;
}

.about_section .box .detail-box a hr {
  border: none;
  width: 90px;
  height: 1px;
  background-color: black;
  margin: 0;
  margin-left: 5px;
}

.wehave_section {
  color: #ffffff;
  padding-left: 10%;
  padding-right: 5%;
  background-color: #252525;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, transparent), color-stop(5%, #252525), color-stop(95%, #252525), color-stop(95%, transparent));
  background: linear-gradient(to bottom, transparent 5%, #252525 5%, #252525 95%, transparent 95%);
}

.wehave_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.wehave_section .box .img-box {
  -webkit-box-flex: 1.4;
      -ms-flex: 1.4;
          flex: 1.4;
}

.wehave_section .box .img-box img {
  width: 100%;
}

.wehave_section .box .detail-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 25px;
  margin: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wehave_section .box .detail-box p {
  margin: 0;
}

.wehave_section .box .detail-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
  color: #82c419;
}

.wehave_section .box .detail-box a hr {
  border: none;
  width: 90px;
  height: 1px;
  background-color: #82c419;
  margin: 0;
  margin-left: 5px;
}

.why_section .why_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.why_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 45px 10px 0 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.why_section .box .img-box {
  width: 100%;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: gray;
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.why_section .box .img-box img {
  width: 45px;
}

.why_section .box .detail-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 15px;
}

.why_section .box .detail-box h5 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.why_section .box .detail-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
  color: #82c419;
}

.why_section .box .detail-box a hr {
  border: none;
  width: 90px;
  height: 1px;
  background-color: #82c419;
  margin: 0;
  margin-left: 5px;
}

.why_section .box:hover .img-box {
  background-color: #252525;
}

.team_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  opacity: 0.2;
  margin: 75px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.team_section .box .img-box img {
  width: 100%;
}

.team_section .box .detail-box {
  background-color: #FF7F32;
  padding: 15px;
  border-radius: 10px;
  color: #ffffff;
  margin-top: -45px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.team_section .box .detail-box h6 {
  text-transform: uppercase;
  font-size: 15px;
}

.team_section .box .detail-box .social_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team_section .box .detail-box .social_box a {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  font-size: 18px;
  margin: 0 5px;
  color: #82c419;
}

.team_section .team_carousel .owl-item.center .box {
  opacity: 1;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.team_section .team_carousel .owl-item.center .box .detail-box {
  visibility: visible;
  opacity: 1;
}

.team_section .team_carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team_section .team_carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  margin: 0 5px;
  background-color: #252525;
  outline: none;
}

.team_section .team_carousel .owl-dots .owl-dot.active {
  background-color: #82c419;
}

/* contact section */
.contact_section .heading_container {
  margin-bottom: 25px;
}

.contact_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_section .detail-box {
  width: 250px;
}

.contact_section .detail-box p {
  margin-top: 5px;
}

.contact_section .contact-form h5 {
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

.contact_section .contact-form .top_input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact_section .contact-form .top_input input {
  width: 48%;
}

.contact_section .contact-form input {
  width: 100%;
  margin: 10px 0;
  height: 45px;
  padding-left: 15px;
  border: 2px solid #222;
  border-radius: 8px; 
  outline: none;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact_section .contact-form input.message_input {
  height: 125px;
}

.contact_section .contact-form input::-webkit-input-placeholder {
  color: #acabab;
}

.contact_section .contact-form input:-ms-input-placeholder {
  color: #acabab;
}

.contact_section .contact-form input::-ms-input-placeholder {
  color: #acabab;
}

.contact_section .contact-form input::placeholder {
  color: #acabab;
}

.contact_section .contact-form .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
}

.contact_section .contact-form .btn-box button {
  display: inline-block;
  background-color: #FF7F32;
  color: #ffffff;
  padding: 10px 65px;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.contact_section .contact-form .btn-box button:hover {
  background-color: black;
}

/* end contact section */
.client_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 15px;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.client_section .box .img-box {
  width: 125px;
  min-width: 125px;
  margin-right: 15px;
  position: relative;
  border: 1.5px solid #82c419;
}

.client_section .box .img-box img {
  width: 100%;
}

.client_section .box .client_detail {
  border: 1px solid #82c419;
  margin-left: -75px;
  margin-top: 45px;
  padding: 45px 35px 35px 90px;
}

.client_section .box .client_detail .client_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 25px;
  margin-bottom: 10px;
}

.client_section .box .client_detail .client_name .client_info h4 {
  font-weight: bold;
  margin: 0;
}

.client_section .box .client_detail .client_name .client_info span {
  color: #82c419;
  font-weight: 600;
}

.client_section .box .client_detail .client_name i {
  color: #82c419;
}

.client_section .owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.client_section .owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: #252525;
  outline: none;
  margin: 0 20px;
  color: #ffffff;
}

.client_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.client_section .carousel-indicators li {
  width: 20px;
  height: 20px;
  opacity: 1;
  margin: 0 5px;
  border: none;
  background-color: transparent;
  background-color: #252525;
}

.client_section .carousel-indicators li.active {
  background-color: #82c419;
}

/* info section */
.info_section {
  background-color: #252525;
  color: #ffffff;
}

.info_section h5 {
  margin-bottom: 20px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #82c419;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  color: #252525;
  border-radius: 100%;
  margin-right: 5px;
}

.info_section .info_social a:hover {
  color: #82c419;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .info_links a {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.info_section .info_links a i {
  margin-right: 5px;
}

.info_section .info_links a:hover, .info_section .info_links a.active {
  color: #82c419;
}

.info_section form input {
  border: 1px solid #82c419;
  background-color: transparent;
  width: 100%;
  height: 45px;
  padding-left: 15px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  display: inline-block;
  background-color: #FF7F32;
  color: #ffffff;
  padding: 10px 55px;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.info_section form button:hover {
  background-color: black;
}

/* end info section */
/* footer section*/
.footer_section {
  background-color: #fdfdfe;
  text-align: center;
  color: #000000;
}

.footer_section p {
  margin: 0;
  padding: 20px 0;
  color: black;
}

.footer_section p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */

.contact_nav_container {
  z-index: 2147483647 !important; /* Valor máximo posible */
}

.activities_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px 0;
}

@media (max-width: 1200px) {
  .activities_container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .activities_container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .activities_container {
    grid-template-columns: 1fr;
  }
}

.activity {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 16px;
  box-shadow: 0 6px 18px 0 rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.activity:hover {
  box-shadow: 0 10px 24px 0 rgba(0,0,0,0.16);
  border-color: #FF7F32;
}

.photo-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.caption {
  padding: 16px;
}

.caption h5 {
  font-size: 18px;
  margin: 0;
  color: #333;
}

.welcome-banner {
  font-size: 4rem;
  font-weight: bold;
  background: linear-gradient(90deg, #FF4E50, #F9D423, #24FE41, #24C6DC, #FF61A6, #a259ff);
  -moz-background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding: 24px 48px;
  border-radius: 10px;
  text-align: center;
  margin: 20px auto;
  width: 100%;
  max-width: 100vw;      /* <- Nunca sobrepasa el viewport */
  box-sizing: border-box;
  position: relative;
  animation: slide 2s ease-in-out infinite alternate;
  overflow-wrap: break-word;
  word-break: break-word;
}

@keyframes slide {
  0% { left: 0; }
  100% { left: 50px; }
}

@media (max-width: 600px) {
  .welcome-banner {
    display: none;
  }
}

.info_contact, .policies-box {
  max-width: 600px; /* Ajusta según el diseño */
  margin: 0 auto; /* Centra horizontalmente */
}


.modal-content a {
  color: #007bff; /* Color azul para el enlace */
  text-decoration: none;
  font-weight: bold;
}

.modal-content a:hover {
  color: #0056b3; /* Azul más oscuro al pasar el mouse */
}

.modal {
  display: none; /* Inicialmente oculto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 50%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.photo-box img {
  width: 100%; /* Ajusta el ancho de la imagen al 100% del contenedor */
  max-width: 300px; /* Tamaño máximo para evitar que se agranden demasiado */
  height: auto; /* Mantiene la proporción de la imagen */
  object-fit: cover; /* Asegura que la imagen cubra sin deformarse */
  border-radius: 10px; /* Opcional: agrega bordes redondeados */
}



/* Hero content section styles */
.hero_area {
  height: auto;
}

.hero_content_section {
  padding: 20px 0 10px 0;
}

.logo_container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.logo_img {
  height: 250px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.hero_content_section .slider_section {
  height: 300px;
  min-height: 300px;
}

.custom_nav-container {
  padding: 5px 0;
}

.header_section {
  margin-bottom: 0;
}

.contact_nav_container {
  padding: 5px 0;
}

.logo_img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.hero_content_section .slider_section {
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .hero_content_section .row {
    flex-direction: column;
  }
  
  .logo_container {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .logo_img {
    height: 180px;
    max-height: 180px;
  }
  
  .hero_content_section .slider_section {
    height: 250px;
    min-height: 250px;
  }
  
  .activities_container {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }
  
  .contact_nav {
    flex-direction: column;
    gap: 5px;
  }
  
  .contact_nav a {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .logo_img {
    height: 150px;
    max-height: 150px;
  }
  
  .hero_content_section .slider_section {
    height: 200px;
    min-height: 200px;
  }
  
  .activities_container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
}
/* Cookie Banner Styles */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #252525;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-accept, .btn-reject {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.btn-accept {
  background-color: #FF7F32;
  color: white;
}

.btn-accept:hover {
  background-color: #e66a1f;
}

.btn-reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.btn-reject:hover {
  background-color: white;
  color: #252525;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}
/* Privacy Policy Modal Styles */
.privacy-modal {
  display: none;
  position: fixed;
  z-index: 2147483647;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}

.privacy-modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 60%;
  max-width: 600px;
  max-height: 70vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin: 0 auto;
  transform: none;
}

.privacy-close {
  color: #666;
  float: right;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.privacy-close:hover {
  color: #fff;
  background-color: #ff4444;
}

.privacy-content h2 {
  color: #252525;
  margin-bottom: 20px;
  text-align: center;
}

.privacy-content h3 {
  color: #FF7F32;
  margin-top: 20px;
  margin-bottom: 10px;
}

.privacy-content p, .privacy-content li {
  line-height: 1.6;
  margin-bottom: 10px;
}

.privacy-content ul {
  padding-left: 20px;
}

#privacyLink {
  color: #FF7F32;
  text-decoration: underline;
}

#privacyLink:hover {
  color: #e66a1f;
}

@media (max-width: 768px) {
  .privacy-modal-content {
    width: 90%;
    max-width: none;
    padding: 20px;
    max-height: 80vh;
  }
  
  .privacy-content h2 {
    font-size: 1.4em;
  }
  
  .privacy-content h3 {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .privacy-modal-content {
    width: 95%;
    padding: 15px;
    max-height: 85vh;
  }
  
  .privacy-content h2 {
    font-size: 1.2em;
  }
  
  .privacy-content h3 {
    font-size: 1em;
  }
}
/* Cookies close button - same style as privacy close */
.cookies-close {
  color: #666;
  float: right;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.cookies-close:hover {
  color: #fff;
  background-color: #ff4444;
}

/* Terms close button - same style as privacy close */
.terms-close {
  color: #666;
  float: right;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.terms-close:hover {
  color: #fff;
  background-color: #ff4444;
}
/* Additional Responsive Improvements */

/* Service Section Responsive */
@media (max-width: 768px) {
  .service_section .box {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .service_section .box .detail-box h4 {
    font-size: 16px;
  }
  
  .service_section .box .detail-box p {
    font-size: 14px;
  }
}

/* About Section Responsive */
@media (max-width: 768px) {
  .about_section {
    padding-left: 5%;
    padding-right: 5%;
  }
  
  .about_section .box {
    flex-direction: column;
  }
  
  .about_section .box .img-box,
  .about_section .box .detail-box {
    flex: none;
    width: 100%;
  }
  
  .about_section .box .detail-box {
    margin: 15px 0;
    padding: 20px;
  }
}

/* Contact Section Responsive */
@media (max-width: 768px) {
  .contact_section .contact-form .top_input {
    flex-direction: column;
  }
  
  .contact_section .contact-form .top_input input {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .contact_section .contact-form input {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Info Section Responsive */
@media (max-width: 768px) {
  .info_section .row {
    flex-direction: column;
    text-align: center;
  }
  
  .info_section .col-md-4 {
    margin-bottom: 30px;
  }
  
  .info_section .info_social {
    justify-content: center;
  }
  
  .info_section .info_social a {
    margin: 0 10px;
  }
}

/* General Text Responsive */
@media (max-width: 768px) {
  .heading_container h2 {
    font-size: 24px;
  }
  
  .heading_container p {
    font-size: 14px;
    padding: 0 15px;
  }
  
  .layout_padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* Navigation Responsive */
@media (max-width: 768px) {
  .header_section .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
  
  .contact_nav_container {
    padding: 8px 0;
  }
  
  .contact_nav_container .contact_nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .contact_nav_container .contact_nav a {
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .contact_nav_container .contact_nav a span {
    display: inline;
    margin-left: 5px;
  }
  
  .contact_nav_container .contact_nav a i {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .contact_nav_container {
    display: none !important;
  }
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer_section p {
    font-size: 12px;
    padding: 15px;
  }
}

/* Modal Responsive Improvements */
@media (max-width: 480px) {
  .privacy-modal-content {
    width: 98%;
    margin: 2% auto;
    padding: 10px;
  }
  
  .privacy-content h2 {
    font-size: 1.3em;
  }
  
  .privacy-content h3 {
    font-size: 1.1em;
  }
  
  .privacy-content p,
  .privacy-content li {
    font-size: 14px;
  }
}

/* Cookie Banner Mobile */
@media (max-width: 480px) {
  .cookie-banner {
    padding: 15px;
  }
  
  .cookie-content p {
    font-size: 12px;
  }
  
  .btn-accept, .btn-reject {
    padding: 8px 15px;
    font-size: 14px;
  }
}

/* Activities Grid Mobile Improvements */
@media (max-width: 320px) {
  .activities_container {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px 0;
  }
  
  .activity {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal scroll */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Toast Notification Styles */
.toast {
  position: fixed;
  top: 100px;
  right: 20px;
  background: white;
  color: #333;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 10000;
  transform: translateX(400px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 4px solid #4CAF50;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  max-width: 350px;
  word-wrap: break-word;
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  border-left-color: #4CAF50;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
}

.toast.warning {
  border-left-color: #FF9800;
  background: linear-gradient(135deg, #FF9800 0%, #f57c00 100%);
  color: white;
}

.toast.error {
  border-left-color: #f44336;
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: white;
}

@media (max-width: 768px) {
  .toast {
    top: 70px;
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }
  
  .toast.show {
    transform: translateY(0);
  }
}
/* Mobile Navigation Styles */
.mobile-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.mobile-brand {
  color: white;
  font-size: 20px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100vh - 50px);
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9997;
}

@media screen and (max-width: 768px) {
  .mobile-menu-overlay {
    top: 50px;
  }
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 30px;
}

.mobile-menu-content a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.3s;
}

.mobile-menu-content a:hover {
  border-color: #FF7F32;
  background-color: rgba(255, 127, 50, 0.1);
}

/* Show/Hide based on screen size */
@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }
  
  .mobile-nav {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
  
  .desktop-nav {
    display: flex !important;
  }
}


/* See More Button Styles */
.see-more-container {
  text-align: center;
  margin: 30px 0;
}

.see-more-btn {
  background-color: #FF7F32;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 127, 50, 0.3);
}

.see-more-btn:hover {
  background-color: #e66a1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 127, 50, 0.4);
}

.see-more-btn:active {
  transform: translateY(0);
}

.hidden-activities {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* New Activities Grid System */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.activities-grid .activity {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 16px;
  box-shadow: 0 6px 18px 0 rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.activities-grid .activity:hover {
  box-shadow: 0 10px 24px 0 rgba(0,0,0,0.16);
  border-color: #FF7F32;
}

.activities-grid .photo-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.activities-grid .photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.activities-grid .caption {
  padding: 16px;
}

.activities-grid .caption h5 {
  font-size: 18px;
  margin: 0;
  color: #333;
}

@media (max-width: 1200px) {
  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .activities-grid {
    grid-template-columns: 1fr;
  }
}
/* Carousel Styles */
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 60px;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 320px;
  margin-right: 20px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  text-align: center;
  transition: transform 0.3s ease;
}

.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.carousel-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-slide h5 {
  padding: 20px 15px;
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #FF7F32 0%, #e66a1f 100%);
  color: white;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 127, 50, 0.4);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, #e66a1f 0%, #d55a0f 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 127, 50, 0.6);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
  left: -30px;
}

.carousel-btn.next {
  right: -30px;
}

@media (max-width: 768px) {
  .carousel-container {
    padding: 0 20px;
    margin: 30px auto;
  }
  
  .carousel-slide {
    min-width: 280px;
    margin-right: 15px;
  }
  
  .carousel-slide img {
    height: 180px;
  }
  
  .carousel-slide h5 {
    font-size: 16px;
    padding: 15px 10px;
  }
  
  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  
  .carousel-btn.prev {
    left: -10px;
  }
  
  .carousel-btn.next {
    right: -10px;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    padding: 0 10px;
  }
  
  .carousel-slide {
    min-width: 250px;
    margin-right: 10px;
  }
  
  .carousel-slide img {
    height: 160px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .carousel-btn.prev {
    left: 5px;
  }
  
  .carousel-btn.next {
    right: 5px;
  }
}