    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background-color: #fefaf5;
      color: #2c2b28;
      scroll-behavior: smooth;
    }
    h1, h2, h3, h4, .serif-head {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
    }
    /* top bar */
    .top-bar {
      background: #1e2a2b;
      color: #f0e7d6;
      font-size: 0.85rem;
      padding: 8px 0;
      letter-spacing: 0.3px;
    }
    .top-bar a {
      color: #f0dbc0;
      text-decoration: none;
      transition: 0.2s;
    }
    .top-bar a:hover { color: #e3b87c; }
    /* navbar */
    .navbar {
      background: white;
      box-shadow: 0 6px 20px rgba(0,0,0,0.03);
    }
    .navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Desktop only center menu */
@media (min-width: 992px) {
  .navbar .container {
    position: relative;
  }

  .navbar-collapse {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobile fix */
@media (max-width: 991px) {
  .navbar-collapse {
    position: static;
    transform: none;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-link {
    padding: 10px 0;
    font-size: 16px;
  }
}
/* Dropdown Styling */
.dropdown-menu {
  border-radius: 12px;
  padding: 10px 0;
  min-width: 220px;
}

.dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.2s;
}

.dropdown-item:hover {
  background: #fef3e6;
  color: #b87c4a;
  padding-left: 25px;
}

/* Smooth dropdown animation */
.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  display: block;
  visibility: hidden;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Mobile fix */
@media (max-width: 991px) {
  .dropdown-menu {
    opacity: 1;
    transform: none;
    visibility: visible;
    display: none;
  }

  .dropdown.show .dropdown-menu {
    display: block;
  }
}
    .navbar-brand {
      font-weight: 700;
      font-size: 1.6rem;
      font-family: 'Playfair Display', serif;
      color: #1e2a2b !important;
      letter-spacing: -0.3px;
    }
    .navbar-brand span {
      color: #b87c4a;
      font-weight: 600;
    }
    .nav-link {
      font-weight: 500;
      color: #2c3a3b !important;
      margin: 0 5px;
      transition: 0.2s;
    }
    .nav-link:hover { color: #b87c4a !important; }
    
    /* HERO SLIDER - INCREASED HEIGHT & FIXED VISIBILITY */
  .hero-slider {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen */
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}
    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.7s ease-in-out, visibility 0.7s;
      background-size: cover;
      background-position: center 30%;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      z-index: 1;
    }
    .slide.active {
      opacity: 1;
      visibility: visible;
      position: relative;
      z-index: 2;
    }
    /* High-quality background images for each slide - using reliable CDN images */
    .slide-1 { 
      background-image: linear-gradient(95deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%), 
      url('./assest/bg/1.png'); 
    }
    .slide-2 { 
      background-image: linear-gradient(95deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%), 
      url('./assest/bg/2.png'); 
    }
    .slide-3 { 
      background-image: linear-gradient(95deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%), 
      url('./assest/bg/3.png'); 
    }
    
    .slide-content {
      max-width: 650px;
      padding: 2rem 2.2rem;
      background: rgba(30, 42, 43, 0.85);
      backdrop-filter: blur(5px);
      border-radius: 28px;
      color: white;
      margin: 2rem 4rem;
      border-left: 6px solid #e3b87c;
      box-shadow: 0 25px 40px -12px rgba(0,0,0,0.4);
      animation: fadeInUp 0.8s ease-out;
    }
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .slide-content h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1.2rem;
      line-height: 1.2;
    }
    .slide-content p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      opacity: 0.95;
      line-height: 1.5;
    }
    .btn-custom {
      background: #e3b87c;
      border: none;
      color: #1e2a2b;
      font-weight: 600;
      padding: 10px 28px;
      border-radius: 40px;
      transition: all 0.25s;
      margin-right: 12px;
      margin-bottom: 8px;
    }
    .btn-custom-outline {
      background: transparent;
      border: 2px solid #e3b87c;
      color: #e3b87c;
      font-weight: 600;
      padding: 10px 28px;
      border-radius: 40px;
      transition: 0.25s;
    }
    .btn-custom-outline:hover {
      background: #e3b87c;
      color: #1e2a2b;
      transform: translateY(-2px);
    }
    .btn-custom:hover {
      background: #cf9f5c;
      transform: translateY(-2px);
      color: #1e2a2b;
    }
    .slider-nav {
      position: absolute;
      bottom: 30px;
      left: 0;
      right: 0;
      text-align: center;
      z-index: 15;
    }
    .dot {
      display: inline-block;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: rgba(255,255,240,0.7);
      margin: 0 7px;
      cursor: pointer;
      transition: 0.2s;
    }
    .dot.active-dot {
      background: #e3b87c;
      transform: scale(1.25);
      box-shadow: 0 0 6px #e3b87c;
    }
    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.55);
      color: white;
      border: none;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      font-size: 1.6rem;
      z-index: 15;
      transition: 0.2s;
      cursor: pointer;
    }
    .prev { left: 25px; }
    .next { right: 25px; }
    .prev:hover, .next:hover { background: #e3b87c; color: #1e2a2b; }
    
    /* section titles */
    .section-title {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
    }
    .section-title h2 {
      font-size: 2.4rem;
      color: #1e2a2b;
      display: inline-block;
      background: #fefaf5;
      padding: 0 20px;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 70px;
      height: 3px;
      background: #e3b87c;
    }
    /* SERVICE CARDS with separate image */
    .service-card {
      background: white;
      border-radius: 24px;
      padding: 1.8rem 1.2rem 1.8rem;
      text-align: center;
      transition: all 0.3s;
      box-shadow: 0 12px 28px -8px rgba(0,0,0,0.05);
      height: 100%;
      border: 1px solid #f0e2d2;
      display: flex;
      flex-direction: column;
    }
    .service-img {
      width: 100%;
      height: 263px;
      object-fit: cover;
      border-radius: 20px;
      margin: 0 auto 1rem auto;
      box-shadow: 0 8px 16px -6px rgba(0,0,0,0.1);
      transition: transform 0.2s;
    }
    .service-card h4 {
      font-weight: 700;
      margin-bottom: 0.8rem;
      font-family: 'Inter', sans-serif;
    }
    .service-card p {
      color: #5a5a55;
      font-size: 0.95rem;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 32px -12px rgba(0,0,0,0.12);
      border-color: #e3b87c;
    }
    .service-card:hover .service-img {
      transform: scale(1.03);
    }
    .why-card {
      background: white;
      border-radius: 28px;
      padding: 1.5rem;
      height: 100%;
      transition: 0.2s;
      border-bottom: 3px solid #e3b87c;
    }
    .why-card i {
      font-size: 2rem;
      color: #b87c4a;
    }
    .faq-item {
      background: white;
      border-radius: 20px;
      margin-bottom: 1rem;
      padding: 1.2rem 1.5rem;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.02);
      border: 1px solid #f2e4d6;
    }
    .faq-question {
      font-weight: 700;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
      color: #5e5b55;
      margin-top: 0;
    }
    .faq-item.active .faq-answer {
      max-height: 180px;
      margin-top: 12px;
    }
    footer {
      background: #1e2a2b;
      color: #e2d9cd;
    }
    .footer-link {
      color: #cfc5b2;
      text-decoration: none;
      transition: 0.2s;
      display: inline-block;
      margin-bottom: 6px;
    }
    .footer-link:hover { color: #e3b87c; transform: translateX(3px); }
    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #2f3f40;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      color: #e2d9cd;
      margin-right: 10px;
      transition: 0.2s;
    }
    .social-icons a:hover { background: #e3b87c; color: #1e2a2b; transform: translateY(-3px);}
    .newsletter-input {
      border-radius: 50px;
      border: none;
      padding: 12px 18px;
      width: 70%;
      background: #2f3f40;
      color: white;
    }
    .newsletter-input::placeholder { color: #bcb29e; }
    .btn-sub {
      border-radius: 50px;
      background: #e3b87c;
      border: none;
      padding: 12px 24px;
      font-weight: 600;
      color: #1e2a2b;
    }
    @media (max-width: 992px) {
      .slide-content h1 { font-size: 2.2rem; }
      .slide-content { margin: 1.5rem; padding: 1.5rem; max-width: 85%; }
    }
    @media (max-width: 768px) {
      .hero-slider, .slider-container { min-height: 75vh; }
      .slide-content h1 { font-size: 1.8rem; }
      .slide-content { margin: 1rem; padding: 1.2rem; max-width: 90%; }
      .section-title h2 { font-size: 1.8rem; }
      .prev, .next { width: 38px; height: 38px; font-size: 1.2rem; }
      .prev { left: 12px; }
      .next { right: 12px; }
    }

    .breadcrumb-section {
  background: linear-gradient(rgba(30,42,43,0.85), rgba(30,42,43,0.85)),
              url('assest/bg/1.png') center/cover no-repeat;
  padding: 80px 0 60px;
  color: #fff;
  text-align: center;
}

.breadcrumb-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #e3b87c;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #ccc;
}
.about-section {
  background: #fefaf5;
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid #e3b87c;
  border-radius: 20px;
  z-index: -1;
}

.why-box {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #f1e3d3;
}

.why-box i {
  font-size: 32px;
  color: #b87c4a;
  margin-bottom: 10px;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-color: #e3b87c;
}

.accordion-button {
  font-weight: 600;
}

.accordion-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

#faqSearch {
  border-radius: 50px;
  border: 1px solid #e3b87c;
}
.contact-form-box {
  background: #fff;
  border: 1px solid #f1e3d3;
}

.contact-form-box input,
.contact-form-box textarea {
  border-radius: 10px;
  border: 1px solid #ddd;
}

.map-box iframe {
  filter: grayscale(20%);
}
.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #f1e3d3;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: #e3b87c;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.fix-icon {
	display: inline-block;
	position: fixed;
	bottom: 90px;
	left: 10px;
	z-index: 999999;
  }
  
  #fix-icon {
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-name: example;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
  }
  
  @-webkit-keyframes mover {
	0% {
	  transform: translateY(0);
	}
  
	100% {
	  transform: translateY(-20px);
	}
  }
  
  .fix-icon-item img {
	width: 55px !important;
	height: 55px !important;
	background:
	#001f3f;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	padding: 10px;
  }
  
  .fix-icon-whataap {
	display: inline-block;
	position: fixed;
	bottom: 20px;
	left: 10px;
	z-index: 999999;
	transition: all0.5s ease-in-out;
	width: 55px !important;
	height: 55px !important;
  }
  
  .fix-icon-whataap-item img {
	border-radius: 50%;
	box-shadow: 1px 1px 4px rgba(60, 60, 60, .4);
	transition: box-shadow .2s;
	cursor: pointer;
	overflow: hidden;
	width: 55px !important;
	height: 55px !important;
	background:
	  #25d366 !important;
  }

  .policy-banner{
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
      url('assest/bg/banner.jpg') center/cover;
      padding:100px 0;
      color:#fff;
      text-align:center;
    }

    .policy-section{
      padding:70px 0;
    }

    .policy-box{
      background:#fff;
      padding:40px;
      border-radius:12px;
      box-shadow:0 5px 20px rgba(0,0,0,0.08);
    }
