body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    line-height: 1.7;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    /*outline: 1px solid red;*/
}

a {
    text-decoration: none;
}
        
img {
    max-width: 100%;
    height: auto;
    display: block;
}

section  h1 {
    text-align: center;
}

section {
    padding: 50px 50px;
}

.header {
    display: flex;
    flex-direction: row;    
    height: 80px;
    width: 100%;
    background: rgba(255, 247, 237, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 100;
}
.hamburger {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    margin-right: 10px;
    gap: 5px;
    width: 30px;
    height: 24px;
    cursor: pointer;
}
.hamburger span {
    display: flex;
    position: absolute;
    left: 0px;
    height: 5px;
    padding-bottom: 3px;
    width: 100%;
    background-color: green;
    border-radius: 5px;
    transform-origin: center;
}
.logo {
    width: 150px;
}
.nav-links{
    display: none;
}

.nav-links a {
    color: black;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    position: relative;
}

.nav-links a::after {
    content:"";
    position: absolute;
    left: 0;
    bottom: -4px;
    background-color: #F97316;
    height: 2px;
    width: 0%;
    border-radius: 2px;
}

.nav-links a.active {
  color: #F97316;
}

.nav-links a:hover::after {
    width: 100%;
    transition: 0.3s ease-in-out;
}

.nav-links .cta-btn {
    background: #14532D;
    padding: 10px 16px;
    border-radius: 999px;
}


.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
         
.hamburger span:nth-child(3) {
    bottom: 0;
}
         
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
}



.hero {
    display: flex;
    position: relative;
    /* flex-direction: column; */
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-image: url("/src/image/hero-pic.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;    
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    );
}

.hero-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    color: white;
    justify-content: cen;
    align-items: center;
}

.hero-text h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: bold;
    color: white;
    text-align: center;
    line-height: 1.1;
}

.hero-text span {
    font-size: 18px;
    color: white;
    text-align: center;
    opacity: 0.9;
}

.hero-text {
    background: transparent;
    box-shadow: none;
    max-width: 620px;
    padding: 0;
}

.hero-text h2,
.hero-text span {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/*.hero-text {
    padding: 20px 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.0);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}*/

.hero-trust {
    font-size: 14px;
    opacity: 0.85;
    margin-top: 8px;
}


button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
}

.hero-btn,
.cta-btn {
    background: linear-gradient(135deg, #14532D, #166534);
    border-radius: 999px;
    padding: 14px 26px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover,
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20,83,45,0.25);
    opacity: 1;
}

.hero-btn {
    background-color: #14532D;
    padding: 20px;
    align-items: center;
    text-align: center;
    transition: 0.5s ease-in;
    color: white;
    border: none;
    margin-top: 20px;
}

/* Overlay behind the mobile nav */
#mobileNavOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  display: none;
  z-index: 90;
}

/* Mobile Nav Menu (slides in from right) */
.mobile-nav-menu {
  position: fixed;
  top: 80px; /* adjust to your header height */
  right: -300px; /* start hidden off-screen */
  width: 260px;  /* menu width */
  background: rgba(255, 247, 237, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 16px 0 0 16px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.08);
  gap: 16px;
  z-index: 100;
  transition: right 0.35s ease;
}

.mobile-nav-menu a {
  font-size: 18px;
  font-weight: 600;
  color: #14532D;
  text-decoration: none;
  transition: 0.3s;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  color: #F97316;
}

.mobile-nav-menu .cta-btn {
  margin-top: 10px;
  background: #14532D;
  color: white;
  padding: 12px 25px;
  border-radius: 999px;
  font-weight: 600;
}

/* Active state (menu slides in) */
.mobile-nav-menu.active {
  right: 0;
}

#mobileNavOverlay.active {
  display: block;
}

.nav-link.active {
    color: #ff7f50;   /* bright color to stand out */
    font-weight: 700;  /* bold */
    border-bottom: 2px solid #ff7f50; /* optional underline for desktop nav */
}


.about {
    display: flex;
    flex-direction: column;
    
    overflow: hidden;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px 0;
}

.about .about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.about::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -10%;
    width: 500px;
    height: 300px;

    background: url("/src/image/waveabout.svg") no-repeat;
    background-size: contain;

    z-index: 0;
    opacity: 0.25;
}

.about > * {
    position: relative;
    z-index: 1;
}

.about p {
    max-width: 600px;   
      
}

.services {
    display: flex;
    flex-direction: column;
    padding:50px 30px;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

/* .services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url("waveservices.svg") no-repeat center; 
    background-size: cover;

    z-index: 0;
     opacity: 0.15; 
} */

 .services > .con{
    position: relative;
    z-index: 1;
}

.service-container, .service-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background: #FFF7ED;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    width: 100%;        /* Full width on mobile */
    max-width: 500px;   /* Limit width on desktop */
    height: auto;       /* Let content dictate height */
    padding-bottom: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.12);
}

.service-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

.service-img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    
}

.service-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-text h2{
    font-size: 16px;
    padding: 2px 30px;
    border-bottom: 2px solid #F97316;
    margin: 0;
    /* border-image: linear-gradient(to right, #F97316, #FACC15) 1; */
}

.service-text p {
    display: flex;           
    flex: 1;
    justify-content: center;
    align-items: center;     
    height: 50px;  
    margin: 0;
}

.service-cta {
    margin-top: 14px;
    background: white;
    color: #14532D;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.gallery-sub {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.carousel-wrapper {
  position: relative;
  max-width: 1100px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 16px;
  align-items: flex-start; /* top-align slides */
}

.carousel-item {
  flex: 0 0 100%; /* mobile: show 1 slide mostly */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item img {
  width: 100%;
  height: auto;        /* let image keep aspect ratio */
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
  background: #14532D;
  transform: scale(1.4);
}

@media (min-width: 768px) {
  .carousel-item {
    flex: 0 0 32%; /* desktop: show 3 slides at once */
  }
}



.carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  align-items: center;
}

.carousel {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.carousel-item {
    min-width: 32%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    height: 500px; /* increase height for taller images */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    width: 100%;
    height: 100%;   /* fill the container */
    object-fit: cover; /* crop but maintain aspect ratio */
}

/* Buttons */
.carousel-btn {
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: none;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
  background: #14532D;
  transform: scale(1.4);
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}
.carousel-slide {
  flex: 0 0 100%;
  position: relative;
}
.carousel-slide img {
  width: 100%;
  display: block;
}

.gallery-cta {
    text-align: center;
    margin-top: 30px;
}

.gallery-btn {
    background: #14532D;
    padding: 12px 20px;
    border-radius: 999px;
    color: white;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
}

.wcu-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 60px 20px 120px;
}

.cta {
    /* background: green; */
    position: relative;
}

.reason {
    background: #fff;
    padding: 20px 24px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    gap: 12px;
    display: flex;
    
    align-items: center;
    text-align: center;
    
    padding: 5px 10px;
    
}

 .reason .icon {
    width: 40px;
    height: 40px;
}

/* .reason .icon img {
    width: 40px;
    height: 40px;
    
} */ 

.testimonials {
    padding: 0 auto;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.cta {
    z-index: 2;
    padding: 50px 0px;
}

.cta-content h2 {
    padding: 20px ;
}

.cta-btn {
    color: white;
    background-color: #14532D;
    border: none;
    border-radius: 6px;
    padding: 9px 15px;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url("src/image/wavecta.svg") no-repeat center; 
    background-size: cover;

    z-index: 0;
     /* opacity: 0.15;  */
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 999;
}
.whatsapp-float img {
    width: 28px;
}


footer {
    padding: 40px 20px;
    position: relative;
    background: #111827;
    color: #e5e7eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 3rem 1.5rem;
}

.footer-links a {
    color: #e5e7eb;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}


.footer-links, .footer-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-grid .social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer-links h3,
.footer-socials h3 {
    margin-bottom: 8px;
}

.footer-links a {
    margin: 4px 0;
    text-decoration: none;
}

.social-icons img {
    width: 40px;
    border-radius: 50%;
}

.footer-bottom {
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: center;
}

.footer-bottom a {
    text-decoration: none;
    color: #F97316;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom .slogan {
    font-weight: bold;
    font-size: large;
    
}
.slogan span {
    color: #F97316;
}


@media (min-width: 768px){
    .nav-links {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-right: 50px;
    }
    
    .hamburger {
        display: none;
    }
    
    
    .hero {
        justify-content: flex-start;
        
    }
    
    .hero-content {
        max-width: 900px;
        width: 100%;
        
        align-items: flex-start;
        padding: 0px 40px;
        margin-top: 150px;
    }
    
    .hero-text {
        text-align: left;
        padding: 30px 10px;
        margin-bottom: 20px;
    }

    .hero-text h2 {
        font-size: 50px;
        line-height: 1.2;
        text-align: left;
    }

    .hero-text span {
        font-size: 25px;
    }
    
    .hero-btn {
        align-self: flex-start;
        width: 100%;
        text-align: center;
    } 
    
    .about {
        flex-direction: row; /* optional if you want text + image side by side */
        justify-content: center; /* center the content in section */
        gap: 40px; /* spacing if you add an image or decoration later */
        padding: 80px 60px; /* desktop padding */
    }

    .about > * {
        max-width: 600px; /* keep text readable */
        text-align: left;  /* left-align the text */
    }

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

    .about p {
        font-size: 18px;
        line-height: 1.6;
        padding: 0; /* remove mobile padding */
    }

    .service-container {
        margin-top: 30px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .service-card {
      position: relative;
      width: 500px;
      overflow: hidden;
    }
    
    .service-img {
        height: 100%;
    }
    
    .service-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        transform: translateY(100%);
        transition: transform 0.4s ease;
    }

    .service-cta {
        margin-top: 12px;
        background: white;
        color: #14532D;
        border-radius: 999px;
        padding: 8px 14px;
        font-weight: 600;
        border: none;
    }

    .service-card:hover .service-overlay {
      transform: translateY(0);
    }

    .carousel-item {
        min-width: 32%;
    }

    .carousel-btn {
        display: block;
    }
    
    .reason {
        border-left: 3px solid #F97316;
    }
    
}

.linecont {
    position: relative;
    display: flex;
    justify-content: center;
    
}

.line {
    width: 100px;
    height: 2px;
    border-radius: 3px;
    background-color: #F97316;
    position: absolute;
    bottom: 50%;
    left: 80px;
}

.line2 {
    width: 100px;
    height: 2px;
    border-radius: 3px;
    background-color: #F97316;
    position: absolute;
    bottom: 50%;
    right: 80px;
}