@charset "utf-8";
/* CSS Document */


.n-yellow,.n-hover-yellow:hover{color:#000!important;background-color:#FCC201!important}
.n-text-yellow,.n-hover-text-yellow:hover{color:#FCC201!important}
.r-red,.r-hover-red:hover{color:#fff!important;background-color:#f44336!important}
.n-goldyellow,.n-hover-goldyellow:hover{color:#000!important;background-color:#D4AF37!important}
.n-greyyellow,.n-hover-greyyellow:hover{color:#000!important;background-color:#C2B280!important}
.n-bananayellow,.n-hover-bananayellow:hover{color:#000!important;background-color:#FAE7B5!important}
.n-text-greyyellow,.n-hover-text-greyyellow:hover{color:#C2B280!important}
.n-text-goldyellow,.n-hover-text-goldyellow:hover{color:#D4AF37!important}
.scroll-wrapper {
    overflow-x: auto;
}

.flex-row {
    display: flex;
    flex-wrap: nowrap;   /* Important: prevent wrapping */
}

.box {
    min-width: 250px;    /* Set fixed/min width */
    flex-shrink: 0;      /* Prevent shrinking */
    margin-right: 16px;
}
.scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.scroll-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #C2B280, #000);
    border-radius: 50px;
}

.image-box {
    position: relative;
}

.overlay-text {
    opacity: 0;
    transition: 0.4s ease;
    color: white;
    text-align: center;
}

.image-box:hover .overlay-text {
    opacity:1;
}

.image-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: 0.4s ease;
}

.image-box:hover::after {
    opacity: 1;
}

.banner {
  position: relative;
}

.banner img {
  width: 100%;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.dashed-border {
  border-style: dashed !important;
}

.top-bottom-dashed {
  border-left: none !important;
  border-right: none !important;
  border-top: 2px dashed #5A5019 !important;
  border-bottom: 2px dashed #5A5019 !important;
}

.service-border-bottom {
	border-bottom-style:dashed;
	border-bottom-width: thin; 
	border-bottom-color:#817C49 !important;
}

.main-border-top {
	border-top-style:dashed; 
	border-top-width: thin; 
	border-top-color:#C0B77A !important;
}
html {
  scroll-behavior: smooth;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 200px;
  height: 60px;
  
  color: white;
  font-size: 16px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.r-show {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.accordion-title {
  cursor: pointer;
  margin: 0;
  padding: 12px 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.equal-height {
  display: flex;
  flex-wrap: wrap;
}

.equal-height > div {
  display: flex;
}
.card {
  width: 100%;
}

.r-modal {
  background-color: rgba(0,0,0,0.7);
}

.hover-content {
  display: none;
}

.hover-title:hover + .hover-content {
  display: block;
}

.hover-box {
  display: inline-block;
}

.hover-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #000;
  margin-top: 5px;
  padding: 0 10px;
}

.hover-box:hover .hover-description {
  max-height: 100px;
  padding: 10px;
}

.hover-description1 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #FAE7B5;
  margin-top: 5px;
  padding: 0 10px;
}

.hover-box:hover .hover-description1 {
  max-height: 100px;
  padding: 10px;
}



.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  align-items: center;
}

.slide-left img {
 
  height: 400px;
  object-fit: cover;
}

.slide-right {
  padding: 60px;
  max-width: 600px;
	opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.slide.active .slide-right {
  opacity: 1;
  transform: translateY(0);
}
.slide-left img {
  transition: transform 1.2s ease;
}

.slide.active img {
  transform: scale(0.95);
}
	.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}
	.prev, .next {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
}

.prev:hover, .next:hover {
  background: #D4AF37;
}

.left img {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
	/* TEXT ZOOM-IN EFFECT */
.right h1,
.right p {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.slide.active .right h1,
.slide.active .right p {
  opacity: 1;
  transform: scale(1);
}
.prev { left: 20px; }
.next { right: 20px; }
@media (max-width: 992px) {
  .slider {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .slider {
    height: auto;
    min-height: auto;
  }

  .slide {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
  }

  .left img {
    height: 300px;
  }
}

.why-flex {
  display: flex;
  gap: 8px;
}

/* Make children equal width on desktop */
.why-flex > div {
  flex: 1;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .why-flex {
    flex-direction: column;
  }
}