/* Reset & base */
 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}
body {
  background: #b388eb;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: #b388eb;
  padding: 1rem 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  letter-spacing: 2px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li a {
  color: #d4f1d4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #f0fdf4;
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 450px;
  display: flex;
  align-items: center;
  color: #b388eb;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(43, 106, 77, 0.65);
  z-index: 0;
}
.hero-content {
  position: relative;
  max-width: 700px;
  margin: auto;
  z-index: 1;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 500;
  color: #000; /* black */
}
.btn-primary {
  background: #ffd166;
  color: #1a1a1a;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(255, 209, 102, 0.5);
  transition: background 0.3s ease;
  display: inline-block;
}
.btn-primary:hover {
  background: #f4a261;
  color: #fff;
}

/* Products Section */
.products-section {
  margin: 4rem 0;
  text-align: center;
}
.products-section h2 {
  font-size: 2.6rem;
  color: #2b6a4d;
  margin-bottom: 2rem;
  font-weight: 700;
}
.products-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.product-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.product-card h3 {
  margin-bottom: 1rem;
  color: #1b4332;
  font-weight: 700;
  font-size: 1.3rem;
}
.product-link {
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.btn-quote {
  background: #2b6a4d;
  color: #fff;
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-quote:hover {
  background: #1b4332;
}

/* Certifications */
.certifications {
  background: #f7f9f7;
  padding: 3rem 0;
  text-align: center;
}
.certifications h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #2b6a4d;
  font-weight: 700;
}
.certifications-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}
.certifications-logos img {
  max-height: 80px;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}
.certifications-logos img:hover {
  transform: scale(1.1);
}

/* Testimonials */
.testimonials {
  margin: 4rem 0;
  text-align: center;
  background: #d4f1d4;
  padding: 3rem 1rem;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(43, 106, 77, 0.3);
}
.testimonials h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #1b4332;
}
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: auto;
  min-height: 140px;
}
.testimonial-item {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.testimonial-item.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.testimonial-item p {
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: #2b6a4d;
}
.testimonial-item strong {
  color: #1b4332;
}
.carousel-controls {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.carousel-controls button {
  background: #2b6a4d;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.carousel-controls button:hover {
  background: #1b4332;
}

/* Founders Section */
.founders {
  text-align: center;
  margin: 4rem 0;
}
.founders h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #2b6a4d;
}
.founders-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.founders-list li a {
  text-decoration: none;
  color: #1b4332;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.founders-list li a:hover,
.founders-list li a:focus {
  border-color: #2b6a4d;
  background: #d4f1d4;
  outline: none;
}

/* Contact Section */
.contact {
  text-align: center;
  margin: 4rem 0 6rem;
  font-size: 1.1rem;
  color: #333;
}
.contact h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #2b6a4d;
}
.contact a {
  color: #2b6a4d;
  text-decoration: none;
  font-weight: 600;
}
.contact a:hover {
  text-decoration: underline;
}
.social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.social-icons a img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}
.social-icons a:hover img {
  filter: grayscale(0);
}

/* Footer */
.footer {
  background: #2b6a4d;
  color: #d4f1d4;
  padding: 1rem 0;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.footer p {
  margin: 0;
  font-size: 0.9rem;
}
.footer nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.footer nav ul li a {
  color: #d4f1d4;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer nav ul li a:hover {
  text-decoration: underline;
}

/* Floating WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  cursor: pointer;
}
.whatsapp-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.2));
}

/* Floating AI Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 25px;
  background: #2b6a4d;
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(43, 106, 77, 0.7);
  z-index: 9999;
  transition: background 0.3s ease;
}
.chat-widget:hover {
  background: #1b4332;
}
.floating-chat {
  position: fixed;
  bottom: 160px;
  right: 25px;
  width: 320px;
  height: 400px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-radius: 12px;
  display: none;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
}
.floating-chat-header {
  background: #2b6a4d;
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.floating-chat-header button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
}
.floating-chat iframe {
  flex-grow: 1;
  border: none;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .founders-list {
    flex-direction: column;
    gap: 1rem;
  }
  .testimonial-carousel {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
}

.testimonialSwiper {
  width: 100%;
  padding: 2rem 0;
}

.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.testimonial-card strong {
  display: block;
  font-weight: 600;
}


#testimonials {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
}

.testimonialSwiper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.testimonial-card p {
  font-size: 1.1rem;
  color: #333;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card strong {
  font-weight: 600;
  color: #444;
}

.swiper-button-next,
.swiper-button-prev {
  color: #333;
}

header.hero h1,
header.hero p {
  text-align: center;
  font-weight: 700;
}


*//////////////////////////////////////////////////////////////////////////////////////////////



body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    animation: bgCycle 30s infinite;
    background-size: cover;
    background-repeat: no-repeat;
}
@keyframes bgCycle {
    0% { background-image: url('../images/bg1.jpg'); }
    33% { background-image: url('../images/bg2.jpg'); }
    66% { background-image: url('../images/bg3.jpg'); }
    100% { background-image: url('../images/bg1.jpg'); }
}
header, footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
}
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}
.product-card {
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    text-align: center;
}
.product-card img {
    max-width: 100%;
    border-radius: 8px;
}



