@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Main Background */
body {
  font-family: 'Montserrat', 'Inter', 'Arial Rounded MT Bold', Arial, sans-serif;
  line-height: 1.6;
  color: #23313A; /* Rich deep navy/teal-greenish slate */
  background: linear-gradient(135deg, #E6F1EC 0%, #EDF6F9 100%);
}

/* Container & Headings */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: none;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #23313A;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* HERO */
.hero {
  height: 100vh;
  background: 
    linear-gradient(135deg, rgba(230,241,236,0.8) 0%, rgba(195,245,230,0.2) 100%),
    url('https://user-gen-media-assets.s3.amazonaws.com/gpt4o_images/97f6647f-15b7-4a2f-a904-ba55f55bcdf6.png');
  background-size: cover;       /* makes image fill screen */
  background-position: center;  /* keeps it centered */
  background-repeat: no-repeat; /* no tiling */
  
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 80px;
  position: relative;
  min-height: 420px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #23313A;
  margin-bottom: 0.7rem;
  letter-spacing: -2px;
  text-shadow: 0px 2px 10px #fff4;
}
.hero p {
  font-size: 1.4rem;
  color: #4a7061;
  font-weight: 500;
  margin-top: 0.5rem;
  text-shadow: 0px 2px 10px #fff3;
}

/* CARD / FEATURE BLOCKS */
.feature-card,
.product-card,
.testimonial,
.contact-form {
  background: #fff;
  padding: 34px 26px;
  color: #23313A;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 6px 16px rgba(99,206,170,0.055), 0 1.5px 7px #c3f5e631;
}

/* Features */
.features {
  padding: 60px 0;
  background: none;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 13px;
  color: #60CEAA; /* Main accent */
}
.feature-card h3 {
  font-size: 1.09rem;
  font-weight: 600;
  color: #1d4632;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
}

/* Products */
.products {
  padding: 60px 0;
  background: linear-gradient(135deg,#f8fafc,#f1f5f9);
  min-height: 100vh;
}
.products-container {
  position: relative;
  height: 65vh;
  padding: 30px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;
}
.products-wrapper {
  display: flex;
  gap: 15px;
  height: 100%;
  scroll-snap-align: start;
  transition: transform 0.6s ease;
  will-change: transform;
}
.product-card {
  flex: 0 0 86vw;
  max-width: 320px;
  height: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 40px 25px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.4);
  scroll-snap-align: start;
  user-select: none;
}
.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.98);
}
.product-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.product-card p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.nav-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  width: 55px; height: 55px;
  border-radius: 50%;
  background:rgba(255,255,255,0.95);
  border:1px solid rgba(74,85,104,0.15);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:1.5rem; color:#2d3748;
  transition:0.3s; user-select:none; font-weight:600;
  z-index: 100;
}
.nav-arrow:hover {
  background:#fff; transform:translateY(-50%) scale(1.1);
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
}
.prev { left: 10px; }
.next { right: 10px; }

/* Hide scrollbar on desktop */
@media (min-width: 769px) {
  .products-container::-webkit-scrollbar {
    display: none;
  }
  .products-container {
    scrollbar-width: none;
  }
}



/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(111deg,#e6f1ec 90%, #f1fff7 100%);
  min-height: 75vh;
}
.testimonials-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 400px;
}
.testimonial {
  position: absolute;
  top: 50%; left: 50%;
  width: 320px;
  padding: 38px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px #60CEAA13;
  opacity: 0.4; filter: blur(1.1px);
  transform: translate(-50%,-50%) scale(0.90);
  transition: 0.6s; border:1px solid #E2E8F0;
  color: #23313A;
}
.testimonial.active {
  opacity: 1; filter: blur(0);
  transform: translate(-50%,-50%) scale(1); z-index:10;
  box-shadow: 0 12px 36px #60CEAA1a;
  background: #f6fffd;
}
.testimonial.prev {
  transform: translate(-180%,-50%) scale(0.92);
  opacity: 0.65; filter: blur(0.7px); z-index:4;
}
.testimonial.next {
  transform: translate(80%,-50%) scale(0.92);
  opacity: 0.65; filter: blur(0.7px); z-index:4;
}
.testimonial-content { font-style: italic; font-size: 1.07rem; margin-bottom: 18px; color: #67a294;}
.testimonial-author { font-weight: 600; font-size: 1.01rem; color: #60CEAA;}
.testimonial-nav { display:flex; justify-content:center; gap: 20px; margin-top: 36px; }
.testimonial-nav button {
  background: #60CEAA;
  color:#fff;
  border:none;
  padding:13px 28px;
  border-radius:26px;
  font-size:1.02rem;
  font-weight:600;
  letter-spacing: .03rem;
  cursor:pointer; transition:0.2s;
}
.testimonial-nav button:hover { background: #67e0c3; color:#23313A; }

/* Contact Section */
.contact {
  padding: 3rem 1rem;
  background: linear-gradient(120deg,#E6F1EC 70%, #F7FFFC 100%);
}

.contact-form-wrapper {
  max-width: 800px;   /* desktop width constraint */
  margin: 0 auto;     /* center on desktop */
  padding: 0 20px;    /* side breathing space */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 2rem;
  border-radius: 17px;
  box-shadow: 0 4px 13px #60CEAA14;
  border: 1px solid #e2e8f0;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
}

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

.contact-form button {
  background: #60CEAA;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: 0 3px 9px #60CEAA30;
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 180px;
}
.contact-form button:hover { 
  background: #67e0c3; 
  color: #23313A; 
}



.social-icons {
  margin-top: 20px;
  text-align: center;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.social-icons a:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* WhatsApp */
.social-icons .whatsapp {
  background: #25D366;
}

/* Email */
.social-icons .email {
  background: #D44638;
}

/* Instagram (gradient) */
.social-icons .instagram {
  background: radial-gradient(circle at 30% 107%, 
              #fdf497 0%, #fdf497 5%, 
              #fd5949 45%, #d6249f 60%, 
              #285AEB 90%);
}
/* About */
.about {
  padding: 70px 0;
  background: #f7fffc;
  text-align: center;
}
.about-content {
  max-width: 900px;
  margin: 0 auto;
  background: none;
}
.about-content h3 {
  font-size: 1.72rem;
  font-weight: 700;
  margin-bottom: 26px;
  color: #23313A;
  letter-spacing: -0.75px;
}
.about-content .quote {
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 18px;
  color: #67a294;
}
.about-content p {
  font-size: 1.07rem;
  color: #23313A;
  line-height: 1.7;
}

/* Responsive */
/* Tablet breakpoint (<=1200px) */
@media (max-width: 1200px) {
  .features-grid { 
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablet */
  }

  .nav-arrow { 
    display: flex !important; /* show arrows on tablet */
  }

  .products-container { 
    overflow-x: hidden;
  }

  .products-container::-webkit-scrollbar { 
    display: none; 
  }

  .contact-form-wrapper {
    max-width: 80%;
  }
  .contact-form {
    max-width: 600px;
    padding: 1.5rem;
  }
}
/* Mobile breakpoint (<=768px) */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr; /* 1 card per row on mobile */
    gap: 14px;
    padding: 0 12px; /* keep some breathing space */
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .nav-arrow { 
    display: none !important; /* hide arrows on mobile */
  }

  .products-container { 
    overflow-x: auto; /* allow swipe scrolling on mobile */
  }
  

  .contact-form-wrapper {
    max-width: 100%;
    padding: 0;
  }
  .contact-form {
    max-width: 100%;
    padding: 20px;
    border-radius: 12px;
  }

}


