@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


:root {
  --bg1: #d5b398;
  --dark-bg1: #e7ae7f;
  --brand: #cc8152;
  --light-brand: #e9945f;
  --border: #aa896e;
  --border-dark: #886c55;
  --light-border: #cca585;
  --white: #fff;
  --dark: black;
  --c-dark: black;
  --c-brand: #cc8152;
  --c-brand-light: #e7ae7f;
  --c-brand-rgb: 255, 255 255;
  --c-body: #cca585;
  --font-base: "ClashDisplay", sans-serif;
  --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08);
  --transition: all 0.5s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-strong: rgba(255, 255, 255, 0.12);
}

html,
body
{
  overflow-x: hidden;
}


/* =============================================
   HERO SECTION 
   ============================================= */


#hero {
  position: relative;
  height: 100vh;
  min-height: 950px;
  max-height: 1300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* Background image with parallax */
  background-image: url('../img/wallpapers/icon0.webp');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* Dark gradient overlay — better text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(60, 40, 25, 0.6) 100%
  );
  z-index: 1;
}

/* Content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* ---- Welcome text ---- */
.hero-welcome {
  display: inline-block;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  position: relative;
  padding: 0 20px;

  /* Fade in animation */
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards 0.3s;
}

/* Decorative dashes around welcome text */
.hero-welcome::before,
.hero-welcome::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-welcome::before {
  left: -30px;
}

.hero-welcome::after {
  right: -30px;
}

/* ---- Main title ---- */
.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;

  /* Fade in animation */
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s ease forwards 0.6s;
}

/* Subtle warm glow on title */
.hero-title::selection {
  background: var(--border);
  color: #fff;
}

/* ---- Decorative line under title ---- */
.hero-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--light-border), transparent);
  margin: 0 auto 28px auto;
  border-radius: 3px;

  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 0.9s;
}

/* ---- Subtitle ---- */
.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.5px;

  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards 1.1s;
}

/* ---- CTA Button ---- */
.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 18px 44px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards 1.4s;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero i {
  transition: transform 0.3s ease;
}

.btn-hero:hover i {
  transform: translateX(5px);
}

/* ---- Scroll Indicator ---- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 1.8s;
}

.hero-scroll-indicator span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

/* ---- Animations ---- */
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }
}

@supports (-webkit-touch-callout: none) {
  #hero {
    background-attachment: scroll;
  }
}

/* ---- Hero Responsive ---- */
@media (max-width: 768px) {

#hero {
    min-height: 800px;
    /* Remove native background — we use pseudo-element instead */
    background-image: none;
    background-attachment: scroll;
    /* THIS IS THE KEY FIX: clip the fixed pseudo-element to hero bounds */
    clip: rect(0, auto, auto, 0);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }


  #hero::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/wallpapers/icon0.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
  }

   /* Keep overlay above the pseudo-element */
  .hero-overlay {
    z-index: 1;
  }

  /* Keep content above everything */
  .hero-content {
    z-index: 3;
  }

  .hero-welcome::before,
  .hero-welcome::after {
    width: 25px;
  }

  .hero-welcome::before {
    left: -15px;
  }

  .hero-welcome::after {
    right: -15px;
  }

  .btn-hero {
    padding: 14px 32px;
    font-size: 13px;
  }

  .hero-scroll-indicator {
    bottom: 20px;
    z-index: 3;
  }
}

@media (max-width: 480px) {
  #hero {
    min-height: 750px;
  }

  .hero-subtitle br {
    display: none;
  }

  .btn-hero {
    padding: 12px 24px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 380px) {
  #hero {
    min-height: 700px;
  }
}

/* ---- iOS specific fix ---- */
@supports (-webkit-touch-callout: none) {
  #hero {
    background-image: none;
    background-attachment: scroll;
    clip: rect(0, auto, auto, 0);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }

  #hero::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/wallpapers/icon0.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
  }
}


/* NAVBAR BTN */

.navbar .btn {
  font-weight: 500;
  font-size: 17px;
  border-radius: 0;
  padding: 10px 15px;
}

.navbar .btn-brand {
  border-width: 2px;
  border-color: var(--border);
  color: black;
  font-weight: 600;
}

.navbar .btn-brand:hover {
  background-color: var(--border);
  color: white;
  font-weight:600;
}

/* END OF NAVBAR BTN */

/* NAVBAR */

.navbar {
  background: var(--bg1);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
}

.navbar .navbar-nav .nav-item a,
.navbar .navbar-nav .nav-item a.nav-tab {
  text-transform: none;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0 15px 15px;
  margin-right: 15px;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size: 20px;
  line-height: 0;
  margin-left: 5px;
  text-decoration: none;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
  text-decoration: underline overline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
  transition: all 0.4s;
  transition-timing-function: linear;
}

/* NAVBAR BTN */

.navbar .btn {
  font-weight: 500;
  font-size: 17px;
  border-radius: 0;
  padding: 10px 15px;
}

.navbar .btn-brand {
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 600;
  font-size: 17px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .btn-brand:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

/* =============================================
   RESPONSIVE NAVBAR — Sidebar on mobile
   ============================================= */

@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 280px;
    z-index: 1030;
    background: linear-gradient(180deg, var(--dark-bg1), var(--border));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding-top: 80px;
    backdrop-filter: blur(20px);
  }

  .navbar-collapse.show {
    transform: translateX(0);
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.3);
  }

  .navbar-toggler {
    position: relative;
    z-index: 1040;
    padding-bottom: 30px;
    order: -1;
  }

  .navbar-brand {
    margin-right: auto;
  }

  .navbar-collapse {
    justify-content: center;
  }

  .navbar-nav {
    padding: 0 20px;
    margin-top: 20px;
    flex-direction: column;
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin: 6px 0;
  }

  .navbar a,
  .navbar a:focus {
    color: rgba(255, 255, 255, 0.8);
    justify-content: center;
    padding: 12px 0;
  }
}

@media (max-width: 576px) {
  .navbar-collapse {
    width: 250px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {z
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Body and headlines */

body {
  line-height: 1.8;
  background: #cc8152;
}

html {
  scroll-behavior: smooth;
}

.section-padding {
  padding-bottom: 140px;
}

/* =============================================
   SERVICES SECTION — Modern Redesign
   ============================================= */

#service {
  padding: 120px 0 140px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg1) 40%, var(--border) 90%);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative background circles */
#service::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(170, 137, 110, 0.06);
  pointer-events: none;
}

#service::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(170, 137, 110, 0.08);
  pointer-events: none;
}

/* ---- Section Title ---- */

#service .service-subtitle {
  font-size: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--border);
  margin-bottom: 10px;
}

#service .section-title h1 {
  color: #2a2a2a;
  margin-bottom: 0;
}

#service .section-title .line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--border), var(--bg1));
  margin: 16px auto 24px auto;
  border-radius: 2px;
  transition: width 0.5s ease;
}

#service .section-title:hover .line {
  width: 120px;
}

#service .service-intro {
  max-width: 550px;
  margin: 0 auto 60px auto;
  color: var(--border);
  font-size: 20px;
  line-height: 1.7;
}

/* =============================================
   SERVICE CARDS
   ============================================= */

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 70px 55px 60px 55px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  border: 1px solid rgba(var(--c-brand-rgb), 0.12);
  box-shadow: var(--box-shadow);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(170, 137, 110, 0.2);
  border-color:  rgba(170, 137, 110, 0.3);
}

/* Accent top border on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--border-dark), var(--border));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* ---- Card Number ---- */

.service-card-number {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 50px;
  font-weight: 800;
  color: rgba(170, 137, 110, 0.08);
  line-height: 1;
  pointer-events: none;
  transition: color 0.5s ease;
}

.service-card:hover .service-card-number {
  color: rgba(170, 137, 110, 0.15);
}

/* ---- Card Icon ---- */

.service-card-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(213, 179, 152, 0.15), rgba(170, 137, 110, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: var(--transition);
}

.service-card-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--border-dark), var(--border));
  box-shadow: 0 10px 30px rgba(var(--c-brand-rgb), 0.3);
}

.service-card:hover .service-card-icon img {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}

/* ---- Card Title ---- */

.service-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.service-card:hover .service-card-title {
  color: var(--border-dark);
}

/* ---- Card Divider ---- */

.service-card-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-dark), var(--bg1));
  margin-bottom: 18px;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.service-card:hover .service-card-divider {
  width: 70px;
}

/* ---- Card Text ---- */

.service-card-text {
  color: #777;
  font-size: 20px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* ---- Card Link ---- */

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--border-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-card-link i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.service-card-link:hover {
  color: var(--border);
}

.service-card-link:hover i {
  transform: translateX(5px);
}

/* =============================================
   CTA BUTTON
   ============================================= */

.service-cta {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

#service .service-cta .btn-brand {
  color: var(--white);
  padding: 14px 40px;
  background: #886c55;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1.5px;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(var(--c-brand-rgb), 0.3);
}

#service .service-cta .btn-brand:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(136, 108, 85, 0.6);
  color: var(--white);
  background: #886c55;

}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 991px) {
  #service {
    padding: 100px 0 120px 0;
  }

  .service-card {
    padding: 40px 28px 35px 28px;
  }
}

@media (max-width: 768px) {
  #service {
    padding: 80px 0 100px 0;
  }

  .service-intro {
    margin-bottom: 40px;
    font-size: 15px;
  }

  .service-card {
    border-radius: 16px;
    padding: 40px 24px 35px 24px;
  }

  .service-card-icon {
    width: 80px;
    height: 80px;
  }

  .service-card-icon img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  #service {
    padding: 70px 0 90px 0;
  }

  .service-card {
    padding: 35px 20px 30px 20px;
  }

  #service .section-title h1 {
    font-size: 32px;
  }
}



/* HERO BTN */
#hero {
  height: 100%;
}

#hero .btn {
  margin-top: 10px;
  color: black;
  padding: 16px 36px;
  background-color: var(--light-border);
}

#hero .btn-brand {
  border-color: var(--light-border);
  border-width: 4px;
  font-weight: 700;
  border-radius: 5px;
}

#hero .btn-brand:hover {
  transform: translateY(-15px);
  transition: transform 330ms ease-in-out;
  background-color: --light-border;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
  color: black;
}

#service .btn {
  margin-top: 25px;
  color: black;
  padding: 15px 36px;
  background-color: #aa896e;
}

#service .btn-brand {
  border-color: #aa896e;
  border-width: 4px;
  font-weight: 700;
  border-radius: 5px;
}

#service .btn-brand:hover {
  transform: translateY(-10px);
  transition: transform 330ms ease-in-out;
  background-color: #aa896e;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
  color: black;
}



/* SECTION TITLE */

.section-title {
  align-items: center;
}

.section-title .line {
  width: 60px;
  height: 4px;
  background-color: var(--border);
  margin: 16px auto 24px auto;
  transition: width 0.5s ease; 
}

.section-title:hover .line {
  width: 120px; /* Expand to full width minus margins (adjust as needed) */
}

.section-title p {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}


/* ICONBOX */

.iconbox {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--light-brand), 0.1);
  color: var(--brand);
  font-size: 34px;
  flex: none;
}

.theme-shadow {
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.678);
  align-items: center;
}


.col-md-6 {
  padding-top: 20px;
}

/* INTRO */

#hero .intro {
  border-style: double;
  border-width: 2px;
}

.intro h2 {
  padding-top: 20px;
  border-width: 5px;
}

.intro h5 {

  margin-top: 16px;
  margin-bottom: 16px;
}

.intro p {
  font-weight: 100;
  padding: auto;
}

/* SWIPER */

#gallery h2 {
  color: black;
}

#gallery {
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--border) 50%, rgba(255,255,255,0.6) 100%);
  min-height: 900px;
  max-height: 1400px;

}

#gallery .intro .section-title{
  padding-top: 50px;
  padding-bottom: 50px;
  color: black;
}

#gallery div.intro div.section-title div.line{
  background: var(--bg1);
}

.section-title:hover .line {
  width: 120px;
}

#gallery .btn {
  margin-top: 25px;
  color: black;
  padding: 15px 36px;
  background-color: var(--border-dark);
}

#gallery .btn-brand {
  border-color: var(--border-dark);
  border-width: 4px;
  font-weight: 700;
  border-radius: 5px;
}

#gallery .btn-brand:hover {
  transform: translateY(-10px);
  transition: transform 330ms ease-in-out;
  background-color: var(--border);
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
  color: black;
}

#gallery .column {
  -ms-flex: 25%;
  flex: 25%;
  max-width: 25%;
  padding: 0 6px;
}

#gallery .column img {
  margin-top: 12px;
  vertical-align: middle;
  width: 100%;
  border-radius: 8px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#gallery .column img:hover {
  -ms-transform: scale(1.04);
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

#gallery .row {
  margin: 14px -16px;
}

#gallery .row,
#gallery .row > .column {
  padding: 10px;
}

#gallery .swipe-msg {
  color: #fff;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
  font-weight: 600;
  padding-top: 50px;
  animation-name: move;
  animation: move 1s infinite;
  animation-direction: alternate-reverse;
}

@keyframes move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(20px);
  }
}

#gallery .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
}

#gallery .swiper-slide img {
  display: block;
  width: 100%;
}

#gallery .btnFilter {
  margin-top: 10px;
  padding: 14px 24px;
  border: none;
  outline: none;
  background-color: var(--white);
  cursor: pointer;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#gallery .btnFilter:hover {
  background-color: #705844;
}

.btnFilter.active {
  background-color: var(--border-dark);
  color: var(--white);
}

/* =============================================
   RESPONSIVE — Gallery
   ============================================= */

@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
    padding: 0 5px;
  }

  .column img {
    margin-top: 10px;
  }

  #gallery {
    padding: 80px 0 100px 0;
    min-height: auto;
  }

  #myBtnContainer {
    padding: 80px 0 20px 0;
  }
}

@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
    padding: 0 4px;
  }

  .column img {
    margin-top: 8px;
    border-radius: 6px;
  }

  #gallery {
    padding: 60px 0 80px 0;
  }

  #myBtnContainer {
    padding: 70px 0 15px 0;
    gap: 8px;
  }

  .btnFilter {
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* MEDIA */

@media (max-width:1199px) {
  #hero .text {
    vertical-align: bottom;
    display: inline-block;
    text-align: center;
  }
}



@keyframes animate {

  0% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-800px) rotate(360deg);
    opacity: 0;
  }

}

#carouselExampleInterval h2 {
  color: #fff;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
  text-decoration: underline;
  font-size: 32px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.card {
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card .row {
  padding-top: 20px;
  padding-bottom: 20px;

}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #e97f5f;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Grid
--------------------------------------------------------------*/
.partners-section {
  padding: 50px 0;
  text-align: center;
  background-color: var(--border);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

.logo-item {
    padding: 10px;
    transition: transform 0.3s ease;
}

.logo-item img {
    width: 100%;
    max-width: 150px;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Responsive Hero Image */

@media (max-width: 640px) {

  #hero h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  #hero .btn-get-started {
    font-size: 13px;
  }
}

/* Centering Tab Links on Mobile */ 


@media (max-width: 991px) {
  .navbar-collapse {
    text-align: center; /* Center align the links */
  }

  .navbar-nav {
    display: flex;
    justify-content: center; /* Center the navbar items */
    flex-direction: column; /* Stack items vertically */
    padding-left: 0; /* Remove default padding */
  }

  .navbar-nav .nav-item {
    margin: 10px 0; /* Add vertical margin for spacing */
  }
}

@media (max-width: 576px) {
  .navbar-collapse {
    background-color: transparent; /* Background color for collapsed navbar */
    padding: 10px; /* Add padding */
    border-top: 1px solid var(--border); /* Add border on top */
  }

  .navbar-toggler {
    color: var(--dark); /* Color for the toggler icon */
    border-color: var(--dark); /* Border color */
  }

  .navbar-nav .nav-item {
    margin: 10px 0; /* Adjust margin */
  }
}



/* Centering tab links on mobile */
@media (max-width: 991px) {
  .navbar-collapse {
    text-align: center; /* Center align the links */
  }

  .navbar-nav {
    display: flex;
    justify-content: center; /* Center the navbar items */
    flex-direction: column; /* Stack items vertically */
    padding-left: 0; /* Remove default padding */
  }

  .navbar-nav .nav-item {
    margin: 10px 0; /* Add vertical margin for spacing */
  }
}

@media (max-width: 576px) {
  .navbar-collapse {
    background-color: transparent; /* Background color for collapsed navbar */
    padding: 10px; /* Add padding */
    border-top: 1px solid var(--border); /* Add border on top */
  }

  .navbar-toggler {
    color: var(--dark); /* Color for the toggler icon */
    border-color: var(--dark); /* Border color */
  }

  .navbar-nav .nav-item {
    margin: 10px 0; /* Adjust margin */
  }
}


/* Custom styles for the collapsed navbar */
@media (max-width: 991.98px) {

  .navbar-collapse {
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      width: 250px; /* Adjust width as needed */
      z-index: 1030; /* Sidebar above other content */
      background-color: var(--bg1); /* Match navbar background */
      transform: translateX(-100%); /* Hide it off-screen */
      transition: transform 0.3s ease; /* Smooth transition */
      padding-top: 60px; /* Space for close button */
  }

  .navbar-collapse.show {
      transform: translateX(0); /* Show sidebar */
  }

  .navbar-toggler {
    position: relative; /* Keep the toggler above the sidebar */
    z-index: 1040; /* Higher z-index to keep it clickable */
    padding-bottom: 30px;
}

  .navbar-nav {
      padding: 0; /* Remove default padding */
      margin-top: 30px; /* Adjust margin to give space at the top */
  }

  .nav-link {
      display: block; /* Ensure links take full width */
      padding: 10px 0; /* Adjust padding for clickable area */
  }

  .nav-link:hover {
      background-color: rgba(0, 0, 0, 0.1); /* Optional hover effect */
  }
}

.fa-tiktok {
  background-color: #010101;
  color: white;
  font-size: 30px;
  padding: 20px;
  width: 60px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa-tiktok:hover {
  opacity: 0.7;
  background-color: white;
  color: #010101;
  transition: all 0.3s ease-in-out;
  transform: translateY(-5px);
}

.video-container {
  width: 100vw; /* Full width of the viewport */
  margin: 0;
  margin-left: calc(-50vw + 50%); /* Center the video properly */
  padding: 0;
}

.video-container video {
  width: 100%;
  height: 800px;
  object-fit: cover; /* Ensure the video covers the width */
  padding: 0;
  margin: 0;

  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}


#text h4 {
  font-size: 20px; /* Adjust heading size for smaller screens */
}

#text p {
  font-size: 18px; /* Adjust paragraph size */
}


#hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #aa896e;
  padding: 50px;
  position: relative;
}


/* Overlay image styling - placed at the bottom left of the main image */
.overlay-image {
  position: absolute;
  width: 35%; /* Make it smaller than the main image */
  height: auto;
  bottom: 3%; /* Positioning relative to the bottom of the main image */
  left: 2%; /* Positioning relative to the left of the main image */
}

/* Media query for tablets */
@media (max-width: 1200px) {
  .main-image {
      max-width: 400px; /* Reduce main image size on medium screens */
  }

  .overlay-image {
      width: 35%; /* Make overlay image smaller on tablets */
      bottom: 3%; /* Adjust positioning for smaller screens */
      left: 2%;
  }
}

/* Media query for smaller tablets and large phones */
@media (max-width: 992px) {
  #hero {
      flex-direction: column; /* Stack items vertically */
      text-align: center;
      padding: 20px; /* Reduce padding on smaller devices */
  }

  #text {
      text-align: center;
      margin-bottom: 20px;
  }

  #text h4 {
      font-size: 18px; /* Adjust heading size for smaller screens */
  }

  #text p {
      font-size: 16px; /* Adjust paragraph size */
  }

  .main-image {
      max-width: 350px; /* Further reduce main image size */
  }

  .image-collage {
      max-width: 400px;
  }

  .overlay-image {
      width: 35%; /* Resize for smaller screens */
      bottom: 3%;
      left: 2%;
  }
}

/* Media query for smaller devices like phones */
@media (max-width: 768px) {
  #hero {
      padding: 15px;
  }

  #text h4 {
      font-size: 18px;
  }

  #text p {
      font-size: 16px;
  }

  .main-image {
      max-width: 300px; /* Reduce main image size on mobile */
  }

  .image-collage {
      max-width: 350px; /* Further reduce max width */
  }

  .overlay-image {
      width: 35%; /* Larger overlay for small screens */
      bottom: 3%;
      left: 2%;
  }
}

/* Media query for extra small devices (mobile) */
@media (max-width: 576px) {
  #hero {
      padding: 10px;
  }

  #text h4 {
      font-size: 16px;
  }

  #text p {
      font-size: 14px;
  }

  .main-image {
      max-width: 250px; /* Further reduce main image size */
  }

  .image-collage {
      max-width: 300px;
  }

  .overlay-image {
      width: 35%; /* Adjust overlay size for mobile */
      bottom: 3%;
      left: 2%;
  }
  #hero
  {
    background: var(--border);
  }
}

/* Media query for very small screens (extra small phones) */
@media (max-width: 400px) {
  #text h4 {
      font-size: 10px;
  }

  #text p {
      font-size: 12px;
  }

  .main-image {
      max-width: 200px; /* Further reduce main image size */
  }

  .image-collage {
      max-width: 250px;
  }

  .overlay-image {
      width: 70%; /* Adjust further for very small screens */
      bottom: 2%;
      left: 2%;
  }
  #hero 
  {
    background: var(--border);
  }
}
  

/* =============================================
   SCROLL TO TOP
   ============================================= */

#myButton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    backdrop-filter: blur(20px);
    cursor: pointer;
    text-decoration: none;
}

#myButton i {
    color: var(--white);
    font-size: 16px;
}

#myButton:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

#myButton.show {
    opacity: 1;
    visibility: visible;
}

/* =============================================
   ABOUT US SECTION 
   ============================================= */

   #about-us {
    background: linear-gradient(180deg, var(--bg1) 40%, 
    rgba(255, 255, 255, 0.9) 90%);
   }
/* ---- Section Background ---- */
.about-section {
  background-color: var(--bg1);
  padding: 80px 0;
  overflow: hidden;
}

/* ---- Animated Row Entrance ---- */
.about-row {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Staggered Delay per Row ---- */
.about-row:nth-child(2) {
  transition-delay: 0s;
}

.about-row:nth-child(3) {
  transition-delay: 0.1s;
}

.about-row:nth-child(4) {
  transition-delay: 0.2s;
}

.about-row:nth-child(5) {
  transition-delay: 0.3s;
}

/* ---- Number Label ---- */
.about-label {
  display: inline-block;
  font-size: 50px;
  font-weight: 800;
  color: rgba(170, 137, 110, 0.25);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
  transition: color 0.4s ease;
}

.about-row:hover .about-label {
  color: rgba(170, 137, 110, 0.5);
}

/* ---- Heading ---- */
.about-heading {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--border-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* ---- Divider Under Heading ---- */
.about-divider {
  width: 60px;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 20px;
  transition: width 0.4s ease;
}

.about-row:hover .about-divider {
  width: 100px;
}

/* ---- Description Text ---- */
.about-description {
  font-size: 24px;
  line-height: 1.85;
  color: #5a4636;
  margin-bottom: 8px;
}

/* ---- Text Block Wrapper ---- */
.about-text-block {
  padding: 20px 0;
}

/* =============================================
   IMAGE CONTAINER — Circular with Accent Border
   ============================================= */

.about-img-container {
  position: relative;
  width: 400px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  flex-shrink: 0;
}

/* The Actual Image */
.about-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-row:hover .about-img {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* Decorative Accent Frame Behind the Image */
.about-img-accent {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--border);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.5s ease;
  pointer-events: none;
}

.about-row:hover .about-img-accent {
  top: 10px;
  left: 10px;
}

/* Mirror the Accent for Right-Side Images */
.about-img-container.mirror .about-img-accent {
  left: auto;
  right: 14px;
}

.about-row:hover .about-img-container.mirror .about-img-accent {
  right: 10px;
}

/* =============================================
   RESPONSIVE — About Us Section
   ============================================= */

.about-row.g-4 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

/* ---- Tablet (max-width: 991px) ---- */
@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }

  /* Force side by side */
  .about-row > .col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .about-row .col-lg-6.order-lg-1 {
    order: 1 !important;
  }

  .about-row .col-lg-6.order-lg-2 {
    order: 2 !important;
  }

  .about-img-container {
    width: 200px;
  }

  .about-img-accent {
    top: 12px;
    left: 12px;
  }

  .about-img-container.mirror .about-img-accent {
    left: auto;
    right: 12px;
  }

  .about-row:hover .about-img-accent {
    top: 8px;
    left: 8px;
  }

  .about-row:hover .about-img-container.mirror .about-img-accent {
    right: 8px;
  }

  .about-label {
    font-size: 36px;
  }

  .about-heading {
    font-size: 1.3rem;
  }

  .about-description {
    font-size: 14px;
    line-height: 1.65;
  }

  .about-text-block {
    padding: 10px 0;
  }

  .about-divider {
    width: 40px;
    margin-bottom: 12px;
  }

  .about-row:hover .about-divider {
    width: 60px;
  }

  .about-row.g-4 {
    --bs-gutter-x: 0.75rem;
  }

}

@media (max-width: 767px) {

   .about-section {
    padding: 40px 0;
  }

  .about-row > .col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .about-img-container {
    width: 140px;
  }

  .about-img-accent {
    top: 8px;
    left: 8px;
    border-width: 2px;
  }

  .about-img-container.mirror .about-img-accent {
    left: auto;
    right: 8px;
  }

  .about-row:hover .about-img-accent {
    top: 6px;
    left: 6px;
  }

  .about-row:hover .about-img-container.mirror .about-img-accent {
    right: 6px;
  }

  .about-label {
    font-size: 28px;
    margin-bottom: 2px;
  }

  .about-heading {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .about-description {
    font-size: 13px;
    line-height: 1.55;
  }

  .about-divider {
    width: 30px;
    height: 2px;
    margin-bottom: 8px;
  }

  .about-row {
    margin-bottom: 12px !important;
  }

  .about-row.g-4 {
    --bs-gutter-x: 0.5rem;
  }

}

@media (max-width: 575px) {
  .about-section {
    padding: 30px 0;
  }

  .about-row > .col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .about-img-container {
    width: 110px;
  }

  .about-img-accent {
    top: 6px;
    left: 6px;
    border-width: 2px;
  }

  .about-img-container.mirror .about-img-accent {
    left: auto;
    right: 6px;
  }

  .about-row:hover .about-img-accent {
    top: 4px;
    left: 4px;
  }

  .about-row:hover .about-img-container.mirror .about-img-accent {
    right: 4px;
  }

  .about-label {
    font-size: 22px;
    margin-bottom: 0;
  }

  .about-heading {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .about-description {
    font-size: 11.5px;
    line-height: 1.5;
    margin-bottom: 2px;
  }

  .about-divider {
    width: 25px;
    height: 2px;
    margin-bottom: 6px;
  }

  .about-row:hover .about-divider {
    width: 40px;
  }

  .about-text-block {
    padding: 5px 0;
  }

  .about-row {
    margin-bottom: 10px !important;
  }

  .about-row.g-4 {
    --bs-gutter-x: 0.35rem;
    --bs-gutter-y: 0.5rem;
  }
}


@media (max-width: 400px) {

  .about-section {
    padding: 20px 0;
  }

  .about-row > .col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .about-img-container {
    width: 90px;
  }

  .about-img-accent {
    top: 5px;
    left: 5px;
    border-width: 1.5px;
  }

  .about-img-container.mirror .about-img-accent {
    left: auto;
    right: 5px;
  }

  .about-row:hover .about-img-accent {
    top: 3px;
    left: 3px;
  }

  .about-row:hover .about-img-container.mirror .about-img-accent {
    right: 3px;
  }

  .about-label {
    font-size: 18px;
  }

  .about-heading {
    font-size: 0.8rem;
    margin-bottom: 3px;
  }

  .about-description {
    font-size: 10.5px;
    line-height: 1.45;
    margin-bottom: 1px;
  }

  .about-divider {
    width: 20px;
    height: 1.5px;
    margin-bottom: 5px;
  }

  .about-row:hover .about-divider {
    width: 30px;
  }

  .about-row {
    margin-bottom: 8px !important;
  }

  .about-row.g-4 {
    --bs-gutter-x: 0.25rem;
    --bs-gutter-y: 0.25rem;
  }
}


/* =============================================
   GALLERY SWIPER — Swipe Hint & Navigation
   ============================================= */

/* ---- Swipe Hint Container ---- */
.swipe-hint-container {
  padding: 10px 0 20px 0;
}

.swipe-hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: rgba(170, 137, 110, 0.15);
  border: 1px solid rgba(170, 137, 110, 0.3);
  border-radius: 50px;
  color: #5a4636;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: hintPulse 3s ease-in-out infinite;
}

/* Hand pointer icon */
.swipe-hint-icon {
  font-size: 18px;
  color: var(--border);
  animation: swipeHandMove 2s ease-in-out infinite;
}

/* Hint text */
.swipe-hint-text {
  white-space: nowrap;
}

/* Chevron arrows */
.swipe-hint-arrows {
  display: flex;
  gap: 4px;
  font-size: 12px;
  color: var(--border);
}

.swipe-arrow-left {
  animation: arrowSlideLeft 1.5s ease-in-out infinite;
}

.swipe-arrow-right {
  animation: arrowSlideRight 1.5s ease-in-out infinite;
}

/* ---- Swipe Hint Animations ---- */
@keyframes swipeHandMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(12px); }
}

@keyframes arrowSlideLeft {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(-5px); opacity: 0.4; }
}

@keyframes arrowSlideRight {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(5px); opacity: 0.4; }
}

@keyframes hintPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Auto-hide hint after user interacts */
.swipe-hint.hidden {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s ease;
  pointer-events: none;
}

/* ---- Swiper Navigation Arrows ---- */
.mySwiper .swiper-button-prev,
.mySwiper .swiper-button-next {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mySwiper .swiper-button-prev::after,
.mySwiper .swiper-button-next::after {
  font-size: 24px;
  font-weight: 900;
  color: #886c55;
}

.mySwiper .swiper-button-prev:hover,
.mySwiper .swiper-button-next:hover {
  background: #886c55;
  box-shadow: 0 6px 20px rgba(170, 137, 110, 0.4);
}

.mySwiper .swiper-button-prev:hover::after,
.mySwiper .swiper-button-next:hover::after {
  color: #fff;
}

/* ---- Swiper Pagination Dots ---- */
.mySwiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.mySwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--border);
  opacity: 0.4;
  transition: all 0.3s ease;
}

.mySwiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  border-radius: 5px;
  background: var(--border-dark);
}

/* ---- Disabled Navigation Arrows ---- */
.mySwiper .swiper-button-prev.swiper-button-disabled,
.mySwiper .swiper-button-next.swiper-button-disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* ---- Edge fade effect to show start/end ---- */
.mySwiper {
  position: relative;
}

.mySwiper::before,
.mySwiper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Left fade — visible only when NOT at start */
.mySwiper::before {
  left: 0;
  background: linear-gradient(to right, var(--border) 0%, transparent 100%);
  opacity: 0;
}

.mySwiper.has-prev::before {
  opacity: 1;
}

/* Right fade — visible only when NOT at end */
.mySwiper::after {
  right: 0;
  background: linear-gradient(to left, var(--border) 0%, transparent 100%);
  opacity: 1;
}

.mySwiper.at-end::after {
  opacity: 0;
}


/* ---- Responsive Gallery Hint ---- */
@media (max-width: 768px) {
  .swipe-hint {
    font-size: 13px;
    padding: 8px 18px;
    gap: 8px;
  }

  .swipe-hint-icon {
    font-size: 16px;
  }

  .mySwiper .swiper-button-prev,
  .mySwiper .swiper-button-next {
    width: 36px;
    height: 36px;
  }

  .mySwiper .swiper-button-prev::after,
  .mySwiper .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .swipe-hint-text {
    font-size: 12px;
  }

  .swipe-hint-arrows {
    display: none;
  }

  .mySwiper .swiper-button-prev,
  .mySwiper .swiper-button-next {
    width: 32px;
    height: 32px;
  }

  .mySwiper .swiper-button-prev::after,
  .mySwiper .swiper-button-next::after {
    font-size: 12px;
  }
}


/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials-section {
  padding: 120px 0 140px 0;
  background: rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}


/* ---- Section Title ---- */
.testimonials-subtitle {
  font-size: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--border-dark);
  margin-bottom: 10px;
}

.testimonials-section .section-title h1 {
  color: #2a2a2a;
  margin-bottom: 0;
}

.testimonials-section .section-title .line {
  background: linear-gradient(90deg, var(--border), var(--bg1));
}

.testimonials-intro {
  max-width: 500px;
  margin: 0 auto;
  color: var(--border-dark);
  font-size: 20px;
  line-height: 1.7;
}

/* ---- Carousel Wrapper ---- */
.testimonials-carousel-wrapper {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

/* ---- Testimonial Card ---- */
.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 50px 50px 40px 50px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(170, 137, 110, 0.1);
  margin: 20px 60px;
  transition: all 0.5s ease;
}

.testimonial-card:hover {
  box-shadow: 0 20px 60px rgba(170, 137, 110, 0.15);
  transform: translateY(-4px);
}

/* Accent top border */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--border-dark), var(--border));
  border-radius: 0 0 4px 4px;
}

/* ---- Quote Icon ---- */
.testimonial-quote-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(213, 179, 152, 0.15), rgba(170, 137, 110, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.testimonial-quote-icon i {
  font-size: 22px;
  color: var(--border);
}

/* ---- Testimonial Text ---- */
.testimonial-text {
  font-size: 17px;
  line-height: 1.85;
  color: #5a4636;
  font-style: italic;
  margin-bottom: 20px;
  min-height: 100px;
}

/* ---- Stars ---- */
.testimonial-stars {
  margin-bottom: 20px;
}

.testimonial-stars i {
  font-size: 16px;
  color: #f0a500;
  margin: 0 2px;
}

/* ---- Divider ---- */
.testimonial-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-dark), var(--bg1));
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

/* ---- Author ---- */
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(170, 137, 110, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  border-color: var(--border);
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 2px;
}

.testimonial-badge {
  font-size: 12px;
  color: var(--border);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.testimonial-badge i {
  margin-right: 4px;
  font-size: 11px;
}

/* ---- Navigation Buttons ---- */
.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-nav-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.testimonial-nav-icon i {
  font-size: 14px;
  color: var(--border-dark);
}

.testimonial-nav-btn:hover .testimonial-nav-icon {
  background: var(--border-dark);
  box-shadow: 0 6px 20px rgba(170, 137, 110, 0.4);
}

.testimonial-nav-btn:hover .testimonial-nav-icon i {
  color: #fff;
}

/* ---- Indicators ---- */
.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.testimonial-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--light-border);
  opacity: 0.4;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-indicators button.active {
  opacity: 1;
  width: 28px;
  border-radius: 5px;
  background: var(--border-dark);
}

/* ---- Responsive Testimonials ---- */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 100px 0 120px 0;
  }

  .testimonial-card {
    margin: 20px 40px;
    padding: 40px 35px 35px 35px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0 100px 0;
  }

  .testimonial-card {
    margin: 15px 15px;
    padding: 35px 24px 30px 24px;
    border-radius: 18px;
  }

  .testimonial-text {
    font-size: 15px;
    min-height: auto;
  }

  .testimonial-nav-btn {
    display: none;
  }

  .testimonials-intro {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 70px 0 90px 0;
  }

  .testimonial-card {
    margin: 10px 5px;
    padding: 30px 18px 25px 18px;
  }

  .testimonial-quote-icon {
    width: 48px;
    height: 48px;
  }

  .testimonial-quote-icon i {
    font-size: 18px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-avatar {
    width: 46px;
    height: 46px;
  }
}


/* =============================================
   PARTNERS / COLLABORATION SECTION
   ============================================= */

.partners-section {
  padding: 120px 0 140px 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%,  var(--border-dark) 100%);
  position: relative;
  overflow: hidden;
}

/* ---- Section Title ---- */
.partners-subtitle {
  font-size: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: black;
  margin-bottom: 10px;
}

.partners-section .section-title h1 {
  color: black;
  margin-bottom: 0;
}

.partners-intro {
  max-width: 500px;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.75);
  font-size: 20px;
  line-height: 1.7;
}

/* ---- Logos Grid ---- */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.logo-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  min-height: 100px;
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.logo-item img {
  width: 100%;
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%) brightness(2);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.logo-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.08);
}

/* ---- Responsive Partners ---- */
@media (max-width: 991px) {
  .partners-section {
    padding: 100px 0 120px 0;
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 80px 0 100px 0;
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .logo-item {
    padding: 18px 14px;
    border-radius: 12px;
    min-height: 80px;
  }

  .logo-item img {
    max-width: 90px;
  }

  .partners-intro {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .partners-section {
    padding: 70px 0 90px 0;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .logo-item {
    padding: 16px 12px;
    min-height: 70px;
  }

  .logo-item img {
    max-width: 80px;
  }
}


/* =============================================
   FOOTER SECTION — Modern Redesign
   ============================================= */

.footer-section {
  background: linear-gradient(180deg, var(--border-dark) 0%, #7a6350 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative glow */
.footer-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 179, 152, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Footer Top ---- */
.footer-top {
  padding: 90px 0 60px 0;
  position: relative;
  z-index: 1;
}

/* ---- Footer Logo & Brand ---- */
.footer-brand {
  padding-right: 20px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 24px;
  transition: filter 0.3s ease;
}

.footer-logo:hover {
  filter: brightness(1.15);
}

.footer-about {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  text-align: justify;
  margin-bottom: 28px;
}

/* ---- Social Icons (unified style) ---- */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.footer-social-link:hover {
  background: var(--bg1);
  border-color: var(--bg1);
  color: var(--border-dark);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(170, 137, 110, 0.3);
}

/* ---- Override old .fa social icon styles inside footer ---- */
.footer-section .footer-social-link .fab,
.footer-section .footer-social-link .fa {
  background: none !important;
  color: inherit !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px !important;
  text-align: center;
  line-height: 1;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-section .footer-social-link:hover .fab,
.footer-section .footer-social-link:hover .fa {
  color: var(--border-dark) !important;
  background: none !important;
  transform: none;
  opacity: 1;
}

/* ---- Footer Headings ---- */
.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.footer-heading-line {
  width: 30px;
  height: 2px;
  background: var(--bg1);
  border-radius: 2px;
  margin-bottom: 28px;
  transition: width 0.4s ease;
}

.footer-contact:hover .footer-heading-line,
.footer-hours:hover .footer-heading-line {
  width: 60px;
}

/* ---- Footer Map ---- */
.footer-map-wrapper {
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- Footer Contact List ---- */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-contact-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-list li:hover,
.footer-contact-list li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-list li i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(213, 179, 152, 0.12);
  font-size: 13px;
  color: var(--bg1);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-list li:hover i,
.footer-contact-list li a:hover i {
  background: var(--bg1);
  color: var(--border-dark);
}

/* ---- Footer Hours ---- */
.footer-hours-list {
  margin: 0;
  padding: 0;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  margin-bottom: 4px;
}

.footer-hours-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.day-name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.day-hours {
  font-weight: 500;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.day-hours.closed {
  color: rgba(255, 140, 140, 0.85);
  font-weight: 600;
  background: rgba(255, 120, 120, 0.08);
}

/* Today highlight */
.footer-hours-list li.today {
  background: rgba(213, 179, 152, 0.12);
  border: 1px solid rgba(213, 179, 152, 0.2);
}

.footer-hours-list li.today .day-name {
  color: var(--bg1);
}

.footer-hours-list li.today .day-hours {
  color: var(--bg1);
  background: rgba(213, 179, 152, 0.15);
}

/* ---- Footer Bottom ---- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 28px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 1px;
}

/* =============================================
   RESPONSIVE — Footer
   ============================================= */

@media (max-width: 991px) {
  .footer-top {
    padding: 70px 0 50px 0;
  }

  .footer-brand {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-about {
    text-align: center;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-socials {
    justify-content: center;
    margin-bottom: 10px;
  }

  .footer-heading-line {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 50px 0 30px 0;
  }

  .footer-heading {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .footer-about {
    font-size: 14px;
  }

  .footer-contact-list li,
  .footer-hours-list li {
    font-size: 13px;
  }

  .footer-contact-list li i {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 6px;
  }

  .footer-hours-list li {
    padding: 10px 10px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: 40px 0 20px 0;
  }

  .footer-logo {
    max-width: 140px;
  }

  .footer-social-link {
    width: 38px;
    height: 38px;
    font-size: 14px;
    border-radius: 10px;
  }

  .footer-section .footer-social-link .fab,
  .footer-section .footer-social-link .fa {
    font-size: 14px !important;
  }

  .footer-hours-list li {
    padding: 8px 8px;
    border-radius: 8px;
  }

  .day-hours {
    font-size: 12px;
    padding: 2px 8px;
  }
}

