:root {
  --primary: #f0a654;
  --dark: #0f0f1a;
  --text-light: #eaeaea;
}
/* Header */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* // If your header overlaps sections when scrolling, add this CSS:
This ensures the section title is perfectly visible after clicking a nav item. */
section {
  scroll-margin-top: 100px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 24px;
}
.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

/* HEADER */
.site-header {
  position: absolute;
  top: 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  margin: auto
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.logo .heart {
  color: #0f5132;
  font-size: 18px;
}
.logo span{
  font-size: clamp(16px, 5vw, 18px);
}

/* HEADER BASE */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: transparent !important;
}

/* WHEN SCROLLED */
.site-header.scrolled {
  background: #ffffff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* NAV TEXT COLOR SWITCH (OPTIONAL) */
.site-header.scrolled .nav-links a,
.site-header.scrolled .nav-icons a,
.site-header.scrolled .logo {
  color: #111 !important;
}

.site-header.scrolled .menu-toggle{
  color: #000;
}

/* HERO OFFSET FIX */
.hero {
  /* margin-top: 90px; height of header */
}


/* NAV */
.nav {
  display: flex !important;
  /* align-items: center; */
  color: #fff !important;
  gap: 30px !important;
  justify-content: space-evenly !important;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
}

.nav-icons a {
  margin-left: 14px;
  font-size: 14px;
  text-decoration: none;
  color: #111;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* HERO */
.hero-1 {
  position: relative;
  height: 80vh;
  border-radius: 28px;
  margin: 90px 24px 0;
  background: url("assets/images/hero/hero-ps1.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.15)
  );
}

/* HERO CONTENT */
.hero-content-1 {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-1 h1 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-content-1 p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 28px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  background: #0f5132;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 575px) {
  .site-header{
    height: 75px;
  }
  .nav-wrapper {
    padding: 15px 15px;
  }
}
@media (max-width: 900px) {
  .nav-links,
  .nav-icons {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-1 {
    height: 75vh;
    margin: 80px 16px 0;
  }
}

/* MOBILE NAV OVERLAY */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  padding: 30px 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

/* ACTIVE STATE */
.mobile-nav.active {
  transform: translateX(0);
}

/* CLOSE BUTTON */
.close-nav {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* LINKS */
.mobile-nav ul {
  list-style: none;
  margin-top: 40px;
}

.mobile-nav ul li {
  margin-bottom: 24px;
}

.mobile-nav ul a {
  text-decoration: none;
  font-size: 18px;
  color: #111;
  font-weight: 500;
}

/* SOCIALS */
.mobile-socials {
  margin-top: auto;
  display: flex;
  gap: 16px;
  font-size: 14px;
}
.mobile-links{
  display: inline-block;
  font-size: 14px;
}

/* DARK BACKDROP */
/* body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 9998;
} */

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9998;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}


/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDER */
.hero-slider {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.35) 50%,
    rgba(0,0,0,.6) 100%
  );
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 0 6%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 2rem;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 30px;
  text-decoration: none;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .3s ease;
}

.btn-primary:hover {
  background: #d8923d;
}

/* NAVIGATION */
.nav-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 3;
}

.nav-arrows.prev { left: 20px; }
.nav-arrows.next { right: 20px; }

/* MOBILE */
@media (max-width: 768px) {
  .hero {
  position: relative;
  height: 78vh;
  overflow: hidden;
}
  .hero-content {
    max-width: 100%;
    padding: 0 1.5rem;
    text-align: left;
  }
.nav-arrows.prev { left: 20px; display: none; }
.nav-arrows.next { right: 20px; display: none; }
  .hero-content h1 {
    font-size: 2rem;
  }

  .nav {
    display: none;
  }
}

.hero-content h1,
.hero-content p,
.hero-content a {
  opacity: 0;
}

.hero-slide.active .hero-content h1 {
  animation: slideUpFade .8s ease forwards;
}

.hero-slide.active .hero-content p {
  animation: slideUpFade .8s ease forwards;
  animation-delay: .2s;
}

.hero-slide.active .hero-content a {
  animation: slideUpFade .8s ease forwards;
  animation-delay: .4s;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Trust */
.trust {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #b39898;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  gap: 30px;
}

.trust h3 {
  font-size: 28px;
}

/* ABOUT US*/
.about-section h2{
  color: #fff;
}
.about-section p{
  color: #ddd;
  font-size: 16px;
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonial-sec .testimonial-card p {
  /* font-size: clamp(20px, 1.25rem + ((1vw - 3.2px) * 1.25), 32px); */
    font-size: clamp(18px, 0.85rem + ((1vw - 3.2px) * 1.25), 18px);

  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}

small{
    /* font-family: Lexend, sans-serif; */
}

.testimonial-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.testimonial-header h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.testimonial-header p {
  font-size: 15px;
  color: #555;
}

/* SLIDER */
.testimonial-slider {
  margin-top: 40px;
}

.testimonial-card {
  border-radius: 22px;
  padding: 36px;
  min-height: 260px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 14px;
  position: relative;
}

/* VARIANTS */
.image-card {
  background: url("assets/images/testimonial/testimonial-1.webp") center/cover no-repeat;
}
.image-card-4{
  background: url("assets/images/testimonial/testimonial-4.webp") center/cover no-repeat;
}
.image-card-5{
  background: url("assets/images/testimonial/testimonial-5.webp") center/cover no-repeat;
}
.image-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  border-radius: 22px;
}
.image-card-4 .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  border-radius: 22px;
}
.image-card-5 .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  border-radius: 22px;
}

.green {
  background: #064e3b;
}

.dark {
  background: #000;
}

.wide {
  min-height: 300px;
}

.image-dark {
  background: url("testimonial-2.jpg") center/cover no-repeat;
}

/* TEXT */
.testimonial-card p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card .name {
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.testimonial-card small {
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

/* SLICK CLEANUP */
.slick-dots {
  bottom: -40px;
}

.slick-dots li button:before {
  font-size: 10px;
  opacity: 0.4;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
}

/* Services */
.card{
  border-color: #111 !important;
}
.services-sec .card:hover{
  transform: scale(1.05);
  transition: all 0.5s ease-in-out;
}
.services {
  padding: 80px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 6px;
}

/* Testimonial */
.testimonial {
  background: #fafafa;
  padding: 80px 0;
  text-align: center;
}

.testimonial blockquote {
  font-size: 20px;
  max-width: 700px;
  margin: auto;
}

.testimonial span {
  display: block;
  margin-top: 15px;
  color: #555;
}

/* Contact */
.contact {
  padding: 80px 0;
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  border-top: 1px solid #eee;
  padding: 30px 0;
  text-align: center;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.35) 0%,
      rgba(0,0,0,.65) 60%,
      rgba(0,0,0,.85) 100%
    );
  }

  .hero-content {
    top: 224px;
    bottom: 12%;
    transform: none;
    max-width: 100%;
    padding: 0 1.5rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: .95rem;
    margin-bottom: 1.5rem;
  }

  .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: .85rem;
    text-align: center;
  }

  .nav {
    display: none;
  }

  .hero-1 h1 {
    font-size: 32px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  line-height: 54px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  z-index: 999;
  animation: subtlePulse 1.5s ease-in-out infinite;
}

/* Elegant pulse */
@keyframes subtlePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 14px 35px rgba(0,0,0,0.22);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  }
}

