/* Typography - Spinnaker Font for Headings */
h1, h2, h3, h4 {
  font-family: 'Spinnaker', sans-serif !important;
  font-weight: 400;
  line-height: 1.2;
}

/* Global Typography for Body Text */
p, span {
  color: #3b3b3b;
  font-size: 1.14rem;
  margin-bottom: 32px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
/* Global Styles Button Camp Design */
.main-btn {
    display: flex;
    align-items: center;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    text-decoration: none;
    width: max-content;
  
}

.main-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.clip-shape {
    width: 40px;
    height: 60px;
    background: #96be9e;
    clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0 100%);
}

.main-btn-content {
    padding: 30px 20px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    height: 40px;
    box-sizing: border-box;
    background-color: #96be9e !important;
    color: white;
}

.main-btn-content i {
    margin-right: 10px;
    font-size: 16px;
    transform: rotate(-45deg);
}

.end-shape {
    width: 50px;
    height: 60px;
    background: #96be9e;
    clip-path: polygon(0% 0%, 0% 100%, 21% 100%, 21% 17%, 78% 17%, 78% 100%, 39% 100%, 100% 100%, 100% 0%);
}
/** End of Global Styles Button Camp Design */
/* Override span margin for inline elements */
span {
  margin-bottom: 0;
}

/* Enhance heading sizes and spacing */
h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.6rem;
  margin-bottom: 1.25rem;
    color: #292929 !important;  /**dark text color for headings */
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
}
/**home**/
body#default-page div#main {
    max-width: unset;
}
body#default-page .parent_container{
    padding: 0;
}

/* Global Color Utility Classes */
.primary_bg-color {
  background-color: #84a98c !important;
}
.primary_txt-color {
  color: #96be9e !important;
}
.accent_bg-color {
  background-color: #84a98c !important;
}
.accent_txt-color {
  color: #84a98c !important;
}
.dart-txt-color {
  color: #292929 !important;
}
/* Button Hover Utility Classes */
.accent_bg-color:hover {
  background-color: #354f52 !important;
}

/* Box Shadow Utility for Accent Colors 
.accent_shadow {
  box-shadow: 0 4px 18px rgba(47, 255, 113, 0.24) !important;
}
.accent_shadow-card {
  box-shadow: 0 4px 24px rgba(47, 255, 113, 0.24) !important;
}*/
/*other color*/
.nav-link {
  color: #292929; /**dark text color for links */
}
.nav-link:hover,
.nav-link:focus {
  color: #96be9e; /**primary color for links */
}
.cust-two-column__feature-title {
  color: #292929; /**dark text color for links */
}
.showcase-slider__slider .splide__pagination__page.is-active {
    background: #84a98c  !important; /* primary color for active pagination */
    transform: scale(1.3) !important;
    box-shadow: 0 4px 12px rgba(84, 169, 140, 0.4);
}
.showcase-slider__slider .splide__arrow:hover {
        background: #84a98c  !important; /* primary color for active pagination */

    box-shadow: 0 8px 25px rgba(84, 169, 140, 0.4);
}
.promo-btn {
  background-color: #84a98c; /* primary color for promo button */
}
/**********************************/
/* Main Slider Section */
.main-slider {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.splide {
  min-height: 500px;
}

.splide__slide {
  position: relative;
  width: 100vw;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

/* Add 1200px container inside slider */
.splide__slide .slide-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(100% - 120px);
  z-index: 2;
}

.slide-bg {
  position: absolute;
  z-index: 1;
  top: 0; left: 0; right: 0; bottom: 0;
  /*width: 100vw;
  height: 100vh;*/
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
  transition: opacity 1s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity;
}

/* Content over slide */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* CSS Animation for fade-in-up effect */
  opacity: 0;
  transform: translateY(40px);
  animation: slideContentFadeIn 0.4s ease-out 0.2s forwards;
}

/* CSS Keyframe Animation for slide content */
@keyframes slideContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reset animation when slide changes */
.splide__slide:not(.is-active) .slide-content {
  opacity: 0;
  transform: translateY(40px);
  animation: none;
}

.splide__slide.is-active .slide-content {
  animation: slideContentFadeIn .4s ease-out 0.3s forwards;
}

.slide-title span{
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.05;
  font-weight: 900;
  margin: 0;
  color:#fff;
}

.slide-desc {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.03em;
}
p.slide-desc{
  color: #fff;
}

.primary-btn {
  margin-top: 12px;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 16px 38px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.25s;
  letter-spacing: 0.01em;
  width: max-content;
  color: white !important;
}
.primary-btn:hover {
  background: #ff763e;
}
.primary-btn .arrow {
  margin-left: 8px;
}

/* WhatsApp Floating Contact */
.whatsapp-contact {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  user-select: none;
  pointer-events: auto;
}

.whatsapp-info {
  color: #fff;
  text-align: center;
  font-size: 1rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1.3;
}
.whatsapp-info span{
  color: #fff;
}
.whatsapp-info strong {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  font-weight: 800;
  margin-top: 8px;
  display: block;
  color: #fff;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 3px solid rgba(255,255,255,0.2);
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
  background: #128C7E;
}

.whatsapp-icon i {
  font-size: 28px;
  color: #fff;
}

/* Splide Pagination Styling */
.splide__pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.splide__pagination__page {
  background: #fff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  margin: 0 2px;
  opacity: 0.42;
  transition: opacity 0.22s;
  border: none;
}
.splide__pagination__page.is-active {
  background: #84a98c;
  opacity: 1;
  transform: scale(1.18);
}
/***homepage 2column section***/

.cust-two-column {
  padding: 80px 0 40px 0;
  background: #fff;
}

.cust-two-column__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 85px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cust-two-column__content {
  flex: 1 1 400px;
  text-align: left;
}

.cust-two-column__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.cust-two-column__label-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.cust-two-column__label-text {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.cust-two-column__title {
  margin: 0 0 18px 0;
}

.cust-two-column__features {
  display: flex;
  gap: 50px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cust-two-column__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cust-two-column__feature-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.cust-two-column__feature-title {
  font-weight: 700;
  font-size: 1.11rem;
  margin-top: 4px;
  text-align: center;
}

.cust-two-column__image-wrap {
  flex: 1 1 370px;
  display: flex;
  justify-content: flex-end;
}

.cust-two-column__image-box {
  position: relative;
  max-width: 100%;
}

.cust-two-column__image {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.cust-two-column__image-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px 16px 18px;
}

.cust-two-column__image-card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.cust-two-column__image-card-title {
  font-size: 1.16rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.cust-two-column__image-card-desc {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.93;
}
span.cust-two-column__label-icon svg {
    border-radius: 50%;
    padding: 10px;
}
span.cust-two-column__label-icon svg path{
fill:white;
}
.cust-two-column__feature svg path {
    fill: #84a98c;
    
}
.cust-two-column__features > * {
    flex: 1;
}
.text-content.cust-two-column-wrapper {
    padding-bottom: 75px;
}
/*************** End of 2 column section styles ***************/
/*************** Modern Header Styles ***************/

/* Modern Header */
.modern-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  isolation: isolate;
}

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

/* Logo */
.header-logo {
  flex: 0 0 auto;
}

.header-logo a {
  display: block;
  text-decoration: none;
}

.header-logo img {
  height: 92px;
  width: auto;
  object-fit: contain;
}

/* Main Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: visible;
  height: auto!important;
  position: relative;
  border: 0;
  margin: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex-wrap: nowrap;
  overflow: visible;
  flex-wrap: wrap;
  height: unset!important;
}

.nav-item {
  position: relative;
  flex-shrink: 1;
  min-width: 0;
  margin: 0 14px;
}
ul.nav-list li a {
    font-family: 'Spinnaker', sans-serif;
}
.nav-link {
  display: flex;
  align-items: center;
  padding: 0px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: capitalize;
}



/* Mega Menu */
.mega-menu {
  position: fixed !important;
  top: 80px !important;
  left: 0 !important;
  right: 0 !important;
  background: #fff !important;
  width: 100vw !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99999 !important;
  padding: 0;
  pointer-events: none;
  /* Ensure content fits naturally */
 
  min-height: 50vh;
    max-height: 80vh;
  overflow-y: auto;
}

/* Enable pointer events when visible */
.nav-item:hover .mega-menu,
.nav-item.has-submenu:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-link:focus + .mega-menu {
  pointer-events: auto;
}

/* Additional mega menu triggers for debugging */
.nav-item .mega-menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}

/* Show mega menu on hover */
.nav-item:hover .mega-menu,
.nav-item.has-submenu:hover .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 99999 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.mega-menu-content {
 max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    height: auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mega-menu-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mega-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu-list li {
 display: flex;
    flex-direction: column;
    height: auto;
    margin-bottom: 25px;
}

.mega-menu-main-link {
  font-weight: 600;
}

.mega-menu-main-link:hover {
  color: #96be9e;
  background: rgba(132, 169, 140, 0.1);
}

.mega-menu-sublist {
  list-style: none;
  margin: 5px 0 0 0;
  padding: 0;
  margin-left: 15px;
  display: flex !important;
    flex-direction: column;
    margin: 0;
    height: auto;
}
a.mega-menu-main-link {
    font-size: 15px;
}
li.mega-menu-item {
    height: auto;
    display: flex !important;
    flex-direction: column !important;
}
.mega-menu-sublist li {
  margin: 0;
    padding: 6px 0;
}

.mega-menu-sub-link:hover {
  color: #96be9e;
  background: rgba(132, 169, 140, 0.08);
}

/* Legacy support for existing links */
.mega-menu-list a {
  display: block;
  padding: 10px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  border-radius: 4px;
  line-height: 1.2;
    padding: 0;
    height: auto;
    text-align: left;
    text-transform: capitalize;
    font-style: normal;
    padding-bottom: 3px;
}

.mega-menu-list a:hover {
  color: #96be9e;
  background: rgba(132, 169, 140, 0.1);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 auto;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: none;
  background: #f8f9fa;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.search-btn:hover {
  background: #84a98c;
  color: #fff;
}

.promo-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: background 0.3s ease;
}
.promo-btn span {
   color: #fff;
    font-size: 14px;
}

.promo-btn:hover {
  background: #354f52;
  color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 2000;
  overflow-y: auto;
}

/* Remove all list bullets from mobile nav */
.mobile-nav *,
.mobile-nav ul,
.mobile-nav li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding-left: 0;
}

.mobile-nav ul::before,
.mobile-nav li::before,
.mobile-nav *::before {
  content: none !important;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  min-height: auto;
}

.mobile-nav-header h2 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  border: none;
  background: #f8f9fa;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.mobile-nav-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  list-style: none !important;
}

.mobile-nav-header-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: 50px;
}

.mobile-nav-link {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  flex: 1;
}

.mobile-nav-link:hover {
  background: #f8f9fa;
  color: #96be9e;
}

.mobile-submenu-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  color: #666;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.mobile-submenu-toggle:hover {
  background: #f0f0f0;
  border-radius: 50%;
}

.mobile-submenu-toggle.active {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-submenu {
  list-style: none !important;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #f8f9fa;
}

.mobile-submenu.active {
  max-height: 2000px;
  padding: 5px 0;
}

.mobile-submenu-item {
  border-bottom: 1px solid #e9ecef;
  list-style: none !important;
  position: relative;
}

.mobile-submenu-header-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: 45px;
}

.mobile-submenu-link {
  display: block;
  padding: 12px 40px;
  color: #666;
  text-decoration: none;
  transition: background 0.3s ease;
  flex: 1;
  font-size: 14px;
}

.mobile-submenu-link:hover {
  background: #e9ecef;
  color: #96be9e;
}

/* Sub-submenu styles */
.mobile-sub-submenu-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border: none;
  background: none;
  cursor: pointer;
  color: #666;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.mobile-sub-submenu-toggle:hover {
  background: #dee2e6;
  border-radius: 50%;
}

.mobile-sub-submenu-toggle.active {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-sub-submenu {
  list-style: none !important;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #e9ecef;
}

.mobile-sub-submenu.active {
  max-height: 1500px;
  padding: 5px 0;
}

.mobile-sub-submenu-item {
  border-bottom: 1px solid #dee2e6;
  list-style: none !important;
}

.mobile-sub-submenu-link {
  display: block;
  padding: 10px 60px;
  color: #666;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 13px;
}

.mobile-sub-submenu-link:hover {
  background: #dee2e6;
  color: #96be9e;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-content {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  position: relative;
}

.search-overlay-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  background: #f8f9fa;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.search-form {
  margin-top: 20px;
}

.search-input-group {
  display: flex;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.search-input-group:focus-within {
  border-color: #84a98c;
}

.search-input {
  flex: 1;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.search-submit {
  background: #84a98c;
  border: none;
  color: #fff;
  padding: 15px 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-submit:hover {
  background: #52796f;
}


/* Mobile Overlay - DISABLED */
.mobile-nav-overlay {
  display: none !important;
}

.mobile-nav-overlay.active {
  display: none !important;
}
header {
    min-height: unset!important;
}
/* Mega Menu Enhanced Styles */

/* Ensure mega menu appears above everything with stronger selectors */
.nav-item:hover .mega-menu,
.nav-item.has-submenu:hover .mega-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 99999 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

/* Duplicate special positioning rules removed - using full width mega menu */

/* Ensure sliders don't interfere */
.main-slider, .slideshow-container, .splide {
  position: relative;
  z-index: 1;
}

#main {
  position: relative;
  z-index: 1;
}
/*************** End of Modern Header Styles ***************/

/* Critical Mega Menu Fixes */

/* Ensure header creates proper stacking context */
.modern-header {
  isolation: isolate;
  contain: layout style;
}

/* Force mega menu to be interactive on hover */
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

/* Special positioning rules removed - using full width mega menu */

/* Debug mega menu visibility - subtle shadow */
.mega-menu {
  box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
}

/* Ensure grandchildren are visible */
.mega-menu-sublist {
  display: block !important;
  padding-top: 6px;
}

.mega-menu-sub-link {
  color: #777 !important;
  font-style: italic;
}

/* Keep mega menu visible when hovering over it */
.mega-menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Prevent any elements from interfering with mega menu */
.main-slider,
.splide,
.slideshow-container,
#main {
  position: relative;
  z-index: 1;
}

/* Ensure mega menu appears above everything */
.mega-menu {
  z-index: 999999 !important;
}
/* Search overlay fixes */
.search-overlay {
  z-index: 999999;
}

/* Enhanced mega menu interaction */
.nav-item {
  transition: all 0.1s ease;
}

.nav-item:hover {
  z-index: 999999;
  position: relative;
}

/* Smoother mega menu animations */
.mega-menu {
  will-change: opacity, visibility, transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Better mobile menu performance */
.mobile-nav {
  will-change: right;
  backface-visibility: hidden;
}

.mobile-submenu {
  will-change: left;
  backface-visibility: hidden;
}

/* Prevent layout shift */
.header-container {
  min-height: 80px;
}

/* Fix any overflow issues */
.modern-header {
  overflow: visible;
}

.header-nav {
  overflow: visible;
}

.nav-list {
  overflow: visible;
}



/* Accessibility improvements */
.nav-link:focus,
.search-btn:focus,
.promo-btn:focus,
.mobile-menu-toggle:focus {
  outline: 2px solid #84a98c;
  outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #84a98c;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 100000;
}

.skip-link:focus {
  top: 6px;
}

/* Print styles */
@media print {
  .modern-header {
    position: static !important;
    box-shadow: none !important;
  }
  
  .mega-menu,
  .mobile-nav,
  .search-overlay,
  .header-actions {
    display: none !important;
  }
}

/* Font Awesome Icon Fixes */
.fas, .fa, .far, .fab {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  display: inline-block !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* Ensure all Font Awesome icons display properly */
.search-btn i, 
.promo-btn i, 
.mobile-nav-close i, 
.search-overlay-close i,
.mobile-submenu-toggle i,
.mobile-sub-submenu-toggle i,
.whatsapp-icon i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  display: inline-block !important;
  font-style: normal !important;
  line-height: 1 !important;
}

/* Force Font Awesome content to show with specific Unicode */
.fa-search::before { content: "\f002" !important; }
.fa-times::before { content: "\f00d" !important; }
.fa-tags::before { content: "\f02c" !important; }
.fa-chevron-down::before { content: "\f078" !important; }
.fa-whatsapp::before { content: "\f232" !important; }

/* Fix search button icon size */
.search-btn i {
  font-size: 16px !important;
}

/* Fix promo button icon */
.promo-btn i {
  font-size: 14px !important;
  margin-right: 5px !important;
  color: #fff;
}
.primary-btn span.arrow {
    color: white;
}

/* Fix mobile nav close icon */
.mobile-nav-close i,
.search-overlay-close i {
  font-size: 16px !important;
}

/* Fix mobile submenu toggle icons */
.mobile-submenu-toggle i,
.mobile-sub-submenu-toggle i {
  font-size: 12px !important;
  transition: transform 0.3s ease !important;
}

/* Fix WhatsApp icon */
.whatsapp-icon i {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}
.text-content.cust-two-column-wrapper {
    padding: 0 20px;
}

/**************** End of Mega Menu Enhanced Styles ***************/


/*************** Modern Activities Grid Section Home ***************/

/* Activities Grid Container */
.activities-section {
  padding: 0px;
  background: #fff;
}

.activities-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.activities-header {
  text-align: center;
  margin-bottom: 60px;
}

.activities-title {

  margin: 0 0 16px 0;
  color: #333;

}


/* Activities Grid */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* Activity Card */
.activity-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.activity-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  text-decoration: none;
  color: inherit;
}

/* Card Image Container */
.activity-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.activity-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.activity-card:hover .activity-card-image img {
  transform: scale(1.08);
}

/* Card Content */
.activity-card-content {
  padding: 25px;
}

.activity-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #333;
  transition: color 0.3s ease;
}

.activity-card:hover .activity-card-title {
  color: #fff;
}

/*.activity-card-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}*/
h3.activity-card-title {
    margin: 0 !important;
    color: white;
}
.activity-card-content {
    background: #96be9e !important;
    text-align: center;
}
/* Special Text Cards (for boxes 3, 6, 9) */
.activity-card.text-card {
  background: linear-gradient(135deg, #84a98c, #52796f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 320px;
}

.activity-card.text-card:hover {
  background: linear-gradient(135deg, #52796f, #354f52);
}

.activity-card.text-card .activity-card-content {
  padding: 40px 30px;
}

.activity-card.text-card .activity-card-title {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.activity-card.text-card:hover .activity-card-title {
  color: #fff;
}

/*.activity-card.text-card .activity-card-description {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}*/

/*************** Video Promo Section ***************/
.video-promo-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.video-promo-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.video-promo-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
}

.video-promo-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.video-play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
}

.play-icon {
    color: white;
    font-size: 24px;
    margin-left: 3px;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.video-close:hover {
    color: #ccc;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
section.showcase-slider {
    padding-bottom: 160px !important;
}
.product-link {
    background-color: #96be9e!important;
  }
  .product-link a:hover {
    color: #fff !important;
}
/* Responsive Design */

/*************** Video Promo Section ***************/
.video-promo-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.video-promo-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.video-promo-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
}

.video-promo-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.video-play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
}

.play-icon {
    color: white;
    font-size: 24px;
    margin-left: 3px;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.video-close:hover {
    color: #ccc;
}
h2.video-promo-title {
    color: white !important;
}
/* Responsive Design */

/*************** Video Promo Section ***************/
/* Video Promo Section Styles */
.video-promo-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.video-promo-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.video-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.video-promo-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
}

.video-promo-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.video-play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
}

.play-icon {
    color: white;
    font-size: 64px;
    margin-left: 3px;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.video-close:hover {
    color: #ccc;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/*************** End Video Promo Section ***************/

/* Responsive Design */
/*** Modern  Responsive Styles ***/
@media (max-width: 1200px) {
  .slide-content {
    max-width: 730px;
  }
  .header-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-actions .promo-btn span {
    display: none;
  }
  
  .header-actions .promo-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
   .mobile-nav {
    z-index: 99999;
  }
  
  .mobile-nav-overlay {
    z-index: 99998;
  }
  button.mobile-submenu-toggle {
    padding: 0;
}
button.mobile-nav-close {
    padding: 0;
}
button.mobile-sub-submenu-toggle {
    padding: 0;
}
.mobile-submenu.active, ul.mobile-sub-submenu.active {
    height: auto;
            display: flex;
        flex-direction: column;
}
.mobile-nav-link {
    font-weight: 400;
  line-height: unset;
    height: auto;
    text-transform: capitalize;
    font-family: unset;
}
.mobile-submenu-link, .mobile-sub-submenu-link {
    height: unset;
    line-height: unset;
    text-transform: capitalize;
    font-weight: 300;
}
.mobile-nav-item {
    margin: unset !important;
    width: 100%;
}
}



@media (max-width: 768px) {
   h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.1rem;
  }
  
  h3 {
    font-size: 1.475rem;
  }
  
  h4 {
    font-size: 1.125rem;
  }
  .whatsapp-contact {
    display: none;
  }
  
  .header-container {
    padding: 0 15px;
    min-height: 70px;
  }
  
  .header-logo img {
    height: 50px;
  }
  
  .mobile-nav {
    width: 100%;
    right: -100%;
  }
  
  .search-overlay-content {
    padding: 30px 20px;
  }

body#default-page .parent_container {
    padding: 0!important;
}
body#default-page .parent_container div#content {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}
/***grid layout for activities section***/
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /*** Video Promo Section Responsive - Tablet ***/
  .video-promo-section {
    height: 50vh;
    min-height: 300px;
  }
  
  .video-promo-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .video-play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-icon {
    font-size: 20px;
  }
  
  .video-modal-content {
    width: 95%;
    margin: 0 2.5%;
  }
  
  .video-close {
    top: -35px;
    font-size: 28px;
  }
  
  .activity-card-image {
    height: 180px;
  }
  
  .activity-card-content {
    padding: 20px;
  }
  
  .activity-card-title {
    font-size: 1.2rem;
  }
  
  .activity-card.text-card {
    min-height: 280px;
  }
  .cust-two-column__content {
    width: 100%;
}
}

@media (max-width: 480px) {
  .header-actions {
    gap: 10px;
  }
  /*** Activities Grid for Mobile **/
.activities-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  
  /*** Video Promo Section Responsive - Mobile ***/
  .video-promo-title {
    font-size: 1.5rem;
  }
  
  .video-play-button {
    width: 50px;
    height: 50px;
  }
  
  .play-icon {
    font-size: 18px;
  }
  
  .activities-section {
    padding: 60px 0;
  }
  
  .activities-container {
    padding: 0 15px;
  }
  
  
  
  .activity-card-image {
    height: 200px;
  }
  
  .activity-card.text-card {
    min-height: 250px;
  }
  
  .activity-card.text-card .activity-card-content {
    padding: 30px 25px;
  }

}

/*************** Custom Middle Section Styles ***************/

/* Custom Middle Section */
.custom-middle-section {
  padding: 80px 0;
  background: #fff;
}

.custom-middle-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 60px;
  display: flex;
  flex-direction: column;
}

.custom-middle-header {
  text-align: center;
}

.custom-middle-title {
  margin: 0;
  color: #292929;
}

/*  Content Layout */
.custom-middle-content-wrapper {
 display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.custom-middle-image-section {
  flex: 0 0 50%;
      overflow: hidden;
    border-radius: 10px;
}

.custom-middle-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.custom-middle-image:hover {
  transform: translateY(-5px);
}

.custom-middle-text-section {
  flex: 1;
  padding-left: 20px;
}

/* Event Text Elements */
.custom-middle-date p {
 text-align: center;
  margin-bottom: 60px;
  
}

.custom-middle-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #292929;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.custom-middle-description {
  color: #3b3b3b;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.custom-middle-description p {
  margin-bottom: 16px;
}

.custom-middle-description p:last-child {
  margin-bottom: 0;
}

.custom-middle-button-wrapper {
  margin-top: 30px;
}
.custom-middle-content-wrapper.reverse{
    flex-direction: row-reverse;
}
/* Layout Variations */
body#product-page .owl-item {
    border: 1px solid #bdbdbd;
    border-radius: 20px;
    max-width: 397px;
}
body#product-page .recently-views p span.ourPrice {
    color: #94ba99!important;
   
}
body#product-page .owl-item .inner {
    border: unset;
}
body#product-page span.productheading2 {
    font-family: 'Spinnaker', sans-serif !important;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    border: unset!important;
    text-align: center;
}
body#product-page div#detail p a.float-right {
    color: #94bb9a!important;
    font-size: 14px;
}
body#product-page  .productright a.buy_affiliate_link span {
    color: #93bb9c !important;
}
/* Responsive Design */
@media (max-width: 768px) {
  .custom-middle-section {
    padding: 60px 0;
  }
.activity-card {
    background: #96be9d;
  }
  .custom-middle-container {
    padding: 0 15px;
  }

  .custom-middle-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .custom-middle-image-section {
    flex: none;
    width: 100%;
  }

  .custom-middle-text-section {
    flex: none;
    padding-left: 0;
  }

  .custom-middle-section.event-image-right .custom-middle-text-section {
    padding-right: 0;
  }

  .custom-middle-title {
    font-size: 1.8rem;
  }

  .custom-middle-description {
    font-size: 1rem;
  }

  .custom-middle-button {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .custom-middle-section {
    padding: 50px 0;
  }

  
  .custom-middle-content-wrapper {
    gap: 30px;
  }

  .custom-middle-title {
    font-size: 1.6rem;
  }

  .custom-middle-date {
    font-size: 0.85rem;
    padding: 6px 14px;
  }

  .custom-middle-button {
    width: 100%;
    text-align: center;
  }
}

/*************** End Events Section Styles ***************/

/*************** Showcase Slider Styles ***************/

/* Showcase Slider Styles */
.showcase-slider {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.showcase-slider__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.showcase-slider__header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-slider__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.showcase-slider__title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

/* Slider Styles */
.showcase-slider__slider {
    padding: 0 60px;
}

.showcase-slider__slider .splide__track {
    padding: 20px 0 40px;
}

.showcase-slider__slider .splide__slide {
    opacity: 0.6;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.showcase-slider__slider .splide__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

/* Card Styles */
.showcase-slider__card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   /* transition: all 0.3s ease;*/
    height: 100%;
    display: flex;
    flex-direction: column;
}

.showcase-slider__card:hover {
    /**transform: translateY(-5px);**/
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.showcase-slider__image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.showcase-slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
   /* transition: transform 0.3s ease;*/
}

.showcase-slider__card:hover .showcase-slider__image {
   transform: scale(1.05);
}

/* Content Styles */
.showcase-slider__content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.showcase-slider__card-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.showcase-slider__amenities {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.showcase-slider__amenity {
    font-size: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.showcase-slider__amenity:hover {
    opacity: 1;
}

/* Footer Styles */
.showcase-slider__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.showcase-slider__details-btn {
   margin-top: 12px;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 16px 38px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.25s;
  letter-spacing: 0.01em;
  width: max-content;
  color: white !important;
  background-color: #84a98c !important;
}

.showcase-slider__details-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.showcase-slider__price {
    text-align: right;
}

.showcase-slider__price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    line-height: 1;
}

.showcase-slider__price-period {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

/* Custom Splide Arrows */
.showcase-slider__slider .splide__arrow {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: all 0.3s ease;
}



.showcase-slider__slider .splide__arrow svg {
    fill: #2c3e50;
    transition: fill 0.3s ease;
}

.showcase-slider__slider .splide__arrow:hover svg {
    fill: white;
}

.showcase-slider__slider .splide__arrow--prev {
    left: 10px;
}

.showcase-slider__slider .splide__arrow--next {
    right: 10px;
}

/* Custom Pagination */
.showcase-slider__slider .splide__pagination {
    bottom: 0;
    padding: 0;
}

.showcase-slider__slider .splide__pagination__page {
    background: #bdc3c7;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.showcase-slider__slider .splide__pagination__page.is-active {
    background: #ff6b35;
    transform: scale(1.2);
}

/* Animation Styles */
.showcase-slider {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.showcase-slider.animate-in {
    opacity: 1;
    transform: translateY(0);
}
.recently-views-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; /* spacing between items */
}

.recently-views-grid .item {
  border: 1px solid #eee;
  padding: 10px;
  text-align: center;
  display: flex;
  box-shadow: 0 2px 4px rgb(0 0 0 / 16%);
    border-radius: 20px;
}

.recently-views-grid .image img {
  max-width: 100%;
  height: auto;
}
.recently-views-grid .inner {
    border: unset;
    width: 100%;
}
.recently-views-grid .inner p {
    font-weight: 700;
    color: #82a689;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .showcase-slider__slider {
        padding: 0 40px;
    }
    
    .showcase-slider__title {
        font-size: 40px;
    }
    .recently-views-grid {
  grid-template-columns: repeat(3, 1fr);

}
}

@media (max-width: 768px) {
    .showcase-slider {
        padding: 60px 0;
    }
    .recently-views-grid {

  grid-template-columns: repeat(1, 1fr);
}
    .showcase-slider__slider {
        padding: 0 20px;
    }
    
    .showcase-slider__title {
        font-size: 32px;
    }
    
    .showcase-slider__header {
        margin-bottom: 40px;
    }
    
    .showcase-slider__content {
        padding: 20px;
    }
    
    .showcase-slider__card-title {
        font-size: 20px;
    }
    
    .showcase-slider__image-wrapper {
        height: 250px;
    }
    
    .showcase-slider__footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .showcase-slider__details-btn {
        width: 100%;
        text-align: center;
    }
    
    .showcase-slider__price {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .showcase-slider__container {
        padding: 0 15px;
    }
    
    .showcase-slider__slider {
        padding: 0 10px;
    }
    
    .showcase-slider__title {
        font-size: 28px;
    }
    
    .showcase-slider__slider .splide__arrow {
        width: 40px;
        height: 40px;
    }
    
    .showcase-slider__slider .splide__arrow--prev {
        left: 5px;
    }
    
    .showcase-slider__slider .splide__arrow--next {
        right: 5px;
    }
}

/*************** End Showcase Slider Styles ***************/

/*************** ByCamp Style Showcase Slider Override ***************/

.showcase-slider {
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    position: relative;
    overflow: hidden;
}

.showcase-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGRlZnM+CjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPgo8Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIxIiBmaWxsPSJyZ2JhKDI1NSwgMTU0LCA1MywgMC4wNSkiLz4KPC9wYXR0ZXJuPgo8L2RlZnM+CjxyZWN0IHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPgo8L3N2Zz4=') repeat;
    opacity: 0.5;
    z-index: 1;
}

.showcase-slider__container {
    max-width: 1400px !important;
    position: relative;
    z-index: 2;
}

/* ByCamp Style Cards Override */
.showcase-slider__card {
    background: white;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
   /* transition: all 0.4s ease !important;*/
    position: relative;
    height: 400px !important;
    margin: 0 10px !important;
    display: block !important;
    flex-direction: initial !important;
}

.showcase-slider__card:hover {
    /*transform: translateY(-10px) !important;*/
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

.showcase-slider__image-wrapper {
    position: relative;
    height: 100% !important;
    overflow: hidden;
        border-radius: 20px;
}

.showcase-slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease !important;
}

.showcase-slider__card:hover .showcase-slider__image {
    transform: scale(1.1) !important;
}

.showcase-slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgb(153 191 160 / 57%), rgb(167 194 168 / 78%));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-slider__card:hover .showcase-slider__overlay {
    opacity: 1;
}

.showcase-slider__amenities {
    display: flex !important;
    gap: 15px !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 !important;
}

.showcase-slider__amenity {
    font-size: 24px !important;
    padding: 8px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease !important;
    width: auto !important;
    height: auto !important;
}

.showcase-slider__amenity:hover {
    transform: scale(1.2) !important;
    background: rgba(255, 255, 255, 0.2) !important;
}

.showcase-slider__content {
   padding: 25px !important;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 20px;
    right: 0;
    border-radius: 20px;
    margin-bottom: -59px;
    background: #fff;
    height: 120px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex: initial !important;
    z-index: 999999;
}

.showcase-slider__card-title {
    font-size: 22px !important;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0 !important;
    font-family: 'Playfair Display', serif;
    line-height: 1.3 !important;
}

.showcase-slider__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto !important;
}

.showcase-slider__details-btn {
    background: #96be9e;
    color: white;
    border: none;
    padding: 12px 25px !important;
    border-radius: 50px;
    font-size: 14px !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.showcase-slider__details-btn:hover {
    background: #96be9e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.showcase-slider__price-amount {
    font-size: 28px !important;
    font-weight: 700;
    color: 84a98c !important;
    display: block;
    line-height: 1;
}

.showcase-slider__price-period {
    font-size: 12px !important;
    color: #7f8c8d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Custom Splide Styling - ByCamp Style Override */
.showcase-slider__slider .splide__track {
    overflow: visible !important;
    padding: 0 !important;
}

.showcase-slider__slider .splide__slide {
    padding: 0 5px !important;
    opacity: 1 !important;
}

.showcase-slider__slider .splide__arrow {
    background: white !important;
    border: none;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    opacity: 1;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.showcase-slider__slider .splide__arrow:hover {
    background: #ff6b35 !important;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3) !important;
    transform: translateY(-50%) scale(1.1);
}

.showcase-slider__slider .splide__arrow svg {
    fill: #2c3e50 !important;
    transition: fill 0.3s ease;
    width: 24px;
    height: 24px;
}

.showcase-slider__slider .splide__arrow:hover svg {
    fill: white !important;
}



.showcase-slider__slider .splide__arrow--prev {
    left: -30px !important;
}

.showcase-slider__slider .splide__arrow--next {
    right: -30px !important;
}

/* Custom Pagination - ByCamp Style */
.showcase-slider__slider .splide__pagination {
    bottom: -60px !important;
    padding: 0;
}

.showcase-slider__slider .splide__pagination__page {
    background: rgba(44, 62, 80, 0.3) !important;
    opacity: 1;
    width: 14px !important;
    height: 14px !important;
    margin: 0 8px !important;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.showcase-slider__slider .splide__pagination__page.is-active {
  
    transform: scale(1.3) !important;
   
}
/* category page**/
 body#department-page p.product-card-description,
 body#department-page  a.product-link {
    display: none;
}
 body#department-page h3.product-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0;
} 
 body#department-page  .product-card-content
 {
    background-color: #96be9e !important;
}
/***/
/* Responsive Design - ByCamp Style Override */
@media (max-width: 1200px) {
    .showcase-slider__slider .splide__arrow--prev {
        left: -20px !important;
    }
    
    .showcase-slider__slider .splide__arrow--next {
        right: -20px !important;
    }
}

@media (max-width: 1024px) {
    .showcase-slider {
        padding: 80px 0 !important;
    }
    
    .showcase-slider__slider .splide__arrow {
        width: 50px !important;
        height: 50px !important;
    }
    
    .showcase-slider__slider .splide__arrow--prev {
        left: -10px !important;
    }
    
    .showcase-slider__slider .splide__arrow--next {
        right: -10px !important;
    }
}

@media (max-width: 768px) {
  body#department-page .products-block {
   
    margin: 0!important;
    padding: 0!important;
}
body#department-page .mobile-nav {
       
        right: -105%;
    }
    .showcase-slider {
        padding: 60px 0 !important;
    }
    
    .showcase-slider__card {
        height: 350px !important;
        margin: 0 5px !important;
    }
    
    .showcase-slider__image-wrapper {
        height: 220px !important;
    }
    
    .showcase-slider__content {
        padding: 20px !important;
        height: 130px !important;
    }
    
    .showcase-slider__card-title {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    
    .showcase-slider__footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .showcase-slider__details-btn {
        width: 100%;
        text-align: center;
        padding: 10px 20px !important;
    }
    
    .showcase-slider__price {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .showcase-slider__card {
        height: 320px !important;
    }
    
    .showcase-slider__image-wrapper {
        height: 200px !important;
    }
    
    .showcase-slider__content {
        height: 120px !important;
        padding: 15px !important;
    }
    
    .showcase-slider__amenities {
        gap: 10px !important;
    }
    
    .showcase-slider__amenity {
        font-size: 20px !important;
        padding: 6px !important;
    }
}

/*************** End ByCamp Style Override ***************/

/* Specific fixes for showcase slider padding issues */
#showcaseSlider.splide {
    padding: 0 !important;
}

#showcaseSlider .splide__track {
    padding: 0 !important;
}

#showcaseSlider .splide__slide {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: none !important;
}

#showcaseSlider .splide__slide.is-active {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Simple ByCamp-style layout: 1 center slide with 30% padding peek effect */
#showcaseSlider .splide__list {
    display: flex;
    align-items: center;
}

/* Center slide gets full prominence, side cards peek through padding */
#showcaseSlider .splide__slide {
    width: 60% !important;
    flex: 0 0 auto;
}

/* Ensure perfect centering */
#showcaseSlider .splide__track {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Arrow positioning for edge design */
#showcaseSlider .splide__arrow--prev {
    left: 15px !important;
}

#showcaseSlider .splide__arrow--next {
    right: 15px !important;
}

/* ===================================================
   MODERN FOOTER - BYCAMP STYLE
   =================================================== */

.modern-footer {
    background-color: #f8f9fa;
    margin-top: 60px;
    padding: 0;
    border-top: 1px solid #e9ecef;
    max-width: 100% !important;
    height: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Brand Section */
.footer-brand {
    max-width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.footer-logo img {
    width: 120px;
}
ul.footer-links li {
    list-style: none;
    margin: 0;
    margin-bottom: 10px;
}
.footer-logo-icon {
    font-size: 24px;
    color: #96be9e;
    margin-right: 12px;
}

.footer-logo h3 {
    font-family: 'Spinnaker', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #292929;
    margin: 0;
    letter-spacing: 1px;
}

.footer-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}
button#myBtn {
    font-size: 21px!important;
    background: #85a98c !important;
    border-radius: 50%;
    width: 50px!important;
    height: 50px!important;
}
.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #84a98c;
    color: white !important;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background-color: #354f52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(132, 169, 140, 0.3);
    color: white !important;
}

/* Ensure Font Awesome icons display properly */
.social-link i {
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    color: white !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

.social-link:hover i {
    color: white !important;
}

/* Footer Sections */
.footer-section h4 {
    font-family: 'Spinnaker', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #292929;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-link {
    display: flex;
    align-items: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #96be9e;
}

.contact-link i {
    margin-right: 12px;
    width: 20px;
    color: #84a98c !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #6c757d;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    padding-left: 0;
}

.footer-links li a:hover {
    color: #96be9e;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #e9ecef;
    border-top: 1px solid #dee2e6;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #96be9e;
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-content {
        padding: 60px 20px 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-content {
        padding: 40px 20px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo h3 {
        font-size: 20px;
    }
    
    .footer-section h4 {
        font-size: 18px;
    }
    
    .footer-description,
    .contact-link,
    .footer-links li a {
        font-size: 14px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ===================================================
   VIDEO BANNER SECTION - SAME AS SLIDER BUT STATIC
   =================================================== */

.video-banner {
    position: relative;
    height: auto;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    object-fit: cover;
}

.video-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Use the same styling as the slider */
.video-banner .video-banner-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.video-banner .slide-title {
    font-family: 'Spinnaker', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.video-banner .slide-title span {
    display: inline-block;
}

.video-banner .slide-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.video-banner .primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: white;
    background-color: #84a98c;
    border: none;
}

.video-banner .primary-btn:hover {
    background-color: #354f52;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(132, 169, 140, 0.4);
}

.video-banner .arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.video-banner .primary-btn:hover .arrow {
    transform: translateX(4px);
}

/* WhatsApp contact - same styling as slider */

/* Responsive Design for Video Banner */
@media (max-width: 1200px) {
    .video-banner .slide-title {
        font-size: 3.5rem;
    }
    
    .video-banner .whatsapp-contact {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .video-banner {
        height: 80vh;
        min-height: 500px;
    }
    
    .video-banner .slide-content {
        max-width: 100%;
        text-align: center;
    }
    
    .video-banner .slide-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .video-banner .slide-desc {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }
    
    .video-banner .whatsapp-contact {
        position: static;
        margin-top: 40px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .video-banner .whatsapp-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .video-banner {
        height: 70vh;
        min-height: 450px;
    }
    
    .video-banner .slide-title {
        font-size: 2rem;
    }
    
    .video-banner .slide-desc {
        font-size: 1rem;
    }
    
    .video-banner .primary-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .video-banner .whatsapp-contact {
        padding: 12px 16px;
    }
    
    .video-banner .whatsapp-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Animation for video banner content */
@keyframes slideContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Magnify effect for custom-middle-image (based on reference .about .item img) */
.custom-middle-image {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
    border-radius: 10px;
}
.custom-middle-image-section:hover .custom-middle-image {
    transform: scale(1.15);
}
