:root {
  --primary: #239a84;
  --dark: #323534;
  --light: #f8f8f8;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: var(--dark);
  background: var(--white);
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}

/* Background image with dark overlay + blur */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(50, 53, 52, 0.6), rgba(50, 53, 52, 0.6)), /* dark overlay */
    url("images/site-background.jpg") center/cover no-repeat; /* change to your image path */
  filter: blur(1px); /* ðŸ‘ˆ adjust blur (0 = sharp, 2â€“5px = subtle blur) */
  opacity: 0.2; /* controls overall visibility of background */
  z-index: -1;
  pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 45px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  background: rgba(35, 154, 132, 0.85);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 1050;
}

.navbar.shrink {
  padding: 8px 25px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.logo {
  height: 80px;
}

.navbar.shrink .logo {
  height: 40px;
}

/* ===== DRAWER NAVIGATION ===== */
.drawer {
  display: flex;
  align-items: center;
  gap: 30px;
}

.drawer.open {
  left: 0;
}

.drawer .nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.drawer .nav-links li a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s ease;
}

.drawer .nav-links li a:hover {
  color: var(--light);
}



/* Add top margin so hero isnâ€™t hidden under navbar */
.hero {
  margin-top: 90px;
}

/* ===== HERO SECTION ===== */
/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 400px; /* ensures it doesn’t collapse on smaller devices */
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* adds a subtle parallax effect */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider .hero-text {
  background: rgba(35, 53, 52, 0.6);
  padding: 30px;
  border-radius: 10px;
  max-width: 90%;
}

.hero-slider h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.hero-slider p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-slider .btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-slider .btn-primary:hover {
  background: var(--dark);
}

/* Arrows */
.hero-slider .prev,
.hero-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.hero-slider .prev:hover,
.hero-slider .next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.hero-slider .prev {
  left: 20px;
}

.hero-slider .next {
  right: 20px;
}

/* Dots */
.hero-slider .dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-slider .dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.hero-slider .dots button.active {
  background: var(--primary);
}

/* Responsive Tweaks */
@media (max-width: 1024px) {
  .hero-slider {
    height: 70vh;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
  }
  .hero-slider .slide {
    background-attachment: scroll; /* prevents jumpy parallax on mobile */
  }
  .hero-slider h1 {
    font-size: 1.8rem;
  }
  .hero-slider p {
    font-size: 1rem;
  }
  .hero-slider .prev,
  .hero-slider .next {
    font-size: 1.5rem;
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 50vh;
  }
  .hero-slider h1 {
    font-size: 1.4rem;
  }
  .hero-slider p {
    font-size: 0.9rem;
  }
}



.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--dark);
}
/* ===== SECTIONS ===== */
section {
  padding: 80px 20px;
  text-align: center;
}

h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 20px;
}

p {
  max-width: 800px;
  margin: 0 auto 30px;
}

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: var(--light);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* ===== SOLUTIONS ===== */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.solution-grid div {
  background: var(--light);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ===== FAQ ===== */
details {
  margin: 10px auto;
  max-width: 700px;
  background: var(--light);
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
}

/* ===== CONTACT
.contact form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
} ===== */


/* ===== CONTACT FORM ===== */
.contact-sectionform {
  background: rgba(255, 255, 255, 0.05);
  padding: 60px 20px;
  text-align: center;
}

.contact-sectionform h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
}

#contactForm {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

#contactForm button {
  background: #1b9c85;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

#contactForm button:hover {
  background: #14806c;
}

/* ===== CONTACT SECTION (NO FORM, ONLY INFO + MAP) ===== */

.contact-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--white);
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.contact-info {
  flex: 1 1 350px;
  text-align: left;
  background: rgba(0,0,0,0.3);
  padding: 25px 30px;
  border-radius: 12px;
  color: #fff;
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-info p {
  margin: 12px 0;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info i {
  color: var(--primary);
  margin-right: 8px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--primary);
}

.contact-map {
  flex: 1 1 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 20px;
  }

  .contact-info {
    text-align: center;
  }
}



/* ===== POPUP ===== */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  color: #333;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.popup-content button {
  margin-top: 15px;
  padding: 8px 20px;
  border: none;
  background: #1b9c85;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
.popup-content button:hover {
  background: #14806c;
}


/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
}

.footer img {
  height: 40px;
  margin-bottom: 10px;
}

/* ===== HAMBURGER + DRAWER ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .navbar {
    justify-content: flex-start;
    gap: 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .drawer {
    position: fixed;
    top: 0;
    left: -270px;
    width: 250px;
    height: 100vh;
    background-color: var(--dark);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 120px 25px;
    transition: left 0.3s ease;
    z-index: 1050;
  }

  /* 👇 When open — slide in drawer */
  .drawer.open {
    left: 0;
  }

  .drawer .nav-links {
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }

  .drawer .nav-links li a {
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
  }

  /* Hamburger animation when active */
  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

 /* reCaptcha */
.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}


/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark); /* matte black */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 25px;
  font-size: 0.9rem;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050; /* above everything */
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.top-bar a:hover {
  color: var(--primary);
}

.top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icon i {
  font-size: 1rem;
  transition: 0.3s ease;
}

.social-icon:hover i {
  color: var(--primary);
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

.product-details {
  max-width: 900px;
  margin: auto;
  padding: 80px 20px;
  text-align: center;
}

.product-img {
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  margin: 25px 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  text-align: left;
  max-width: 600px;
}

.feature-list li {
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
}

.feature-list li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}

.card a.btn-primary {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.95rem;
  padding: 10px 20px;
}


