* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #222;
}

/* ===== Cylindrical Floating Navbar ===== */
.nav-wrap {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(96%, 1100px);
  z-index: 1000;
  padding: 6px;                     /* thin outer rim */
  border-radius: 9999px;            /* full pill */
  background: linear-gradient(180deg, #fdfdfd, #e9eef5);
  box-shadow: 0 4px 8px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.7);
}

.nav-wrap::before {                 /* subtle top highlight for 3D feel */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0));
  pointer-events: none;
  mix-blend-mode: screen;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #f8f9fa, #eef3f8); /* “clean” */
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.8), inset 0 -2px 6px rgba(13,33,66,0.06);
}

/* Brand */
.brand {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;                /* keeps logo inside circle */
  background: radial-gradient(circle at 30% 30%, #2ca24c, #178a3a);
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.4),
              0 4px 10px rgba(0,0,0,0.1);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;               /* fills the circle */
}


/* Links */
.links {
  list-style: none;
  display: flex;
  gap: clamp(10px, 4vw, 22px);
}

.links a {
  color: #0d2142;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.links a:hover {
  background: #2ca24c;
  color: #fff;
  transform: translateY(-1px);
}

/* Right slot: text + hamburger */
.right-slot {
  display: flex;
  align-items: center;
  gap: 10px;
}

.right-text {
  color: #0d2142;
  font-weight: 700;
  white-space: nowrap;
}

/* Hamburger (mobile) */
.menu-btn {
  display: none;
  border: none;
  background: #0d2142;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12), inset 0 2px 6px rgba(255,255,255,0.2);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .right-text { display: none; }   /* hide right text on small screens */
}

@media (max-width: 768px) {
  .menu-btn { display: inline-grid; place-items: center; }

  /* Collapse links into dropdown panel */
  .links {
    position: absolute;
    top: calc(100% + 10px);
    right: 10px;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    display: none;
    min-width: 180px;
  }
  .links.show { display: flex; }

  .links a {
    color: #0d2142;
    padding: 10px 12px;
  }
}
/* Sections */
section {
  padding: 100px 20px;
  text-align: center;
}
.nav-wrap {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(96%, 1100px);
  z-index: 1000;
  padding: 6px;
  border-radius: 9999px;

  /* Glassmorphism effect */
  background: rgba(248, 249, 250, 0.7);  /* semi-transparent */
  backdrop-filter: blur(12px);           /* blur background */
  -webkit-backdrop-filter: blur(12px);   /* Safari support */

  box-shadow: 0 10px 28px rgba(0,0,0,0.12), 
              inset 0 1px 0 rgba(255,255,255,0.7);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Slightly darker on scroll for contrast */
.scrolled .nav-wrap {
  background: rgba(248, 249, 250, 0.9);
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}
nav {
  transition: top 0.4s ease, box-shadow 0.3s ease;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

nav.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
html {
  scroll-behavior: smooth;
}
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("assets/hero bg 3.png") no-repeat center center/cover;
  /* 👆 rename this to your actual background image file name */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 6%;
}

/* Overlay */
.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* Logo */
.logo img {
  width: 220px;
  margin-bottom: 25px;
}

/* Heading */
.hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #d1def0;
}

/* Paragraph */
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Button */
.btn {
  display: inline-block;
  background: #2ecc71;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #27ae60;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }
  .logo img {
    margin: 0 auto 20px auto;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  .logo img {
    width: 180px;
  }
}

/* Products */

/* Section container */
.products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Title */
.section-title {
  margin: 0 0 20px;
  font-size: 1.8rem;
  color: #0d2142;
  text-align: center;   /* Centered heading */
}

/* Grid for cards */
.product-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: 1 per row */
  gap: 20px;
}

/* Card */
.product-card {
  display: flex;
  flex-direction: column; /* Image on top, info at bottom */
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
}

/* Card Image */
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;  /* Square image */
  object-fit: cover;
}

/* Info at bottom */
.product-info {
  padding: 14px;
  text-align: center;
  background: #fff;
}

.product-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #0d2142;
}

.product-info p {
  margin: 6px 0 0;
  font-size: .9rem;
  color: #555;
}

/* Desktop view */
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}





/* Contact */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: auto;
}

.contact input,
.contact textarea {
  padding: 14px;
  border: none;
  background: #f2f6f3;
  border-radius: 8px;
  font-size: 0.95rem;
}

.contact button {
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #2ca24c;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.footer-email {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.footer-email img {
  width: 18px;
  height: 18px;
}

.footer-email a {
  color: #2ca24c;
  text-decoration: none;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.contact .copyright {
  font-size: 0.8rem;
  color: #777;
  margin-top: 15px;
}
.brand img {
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: scale(1.1) rotate(5deg);
}
.about {
  max-width: 100%;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
  background: #fdfcf7;
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #0d2142;
  position: relative;
}

.about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2ca24c;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about .intro,
.about .vision {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

.commitments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.commitments .card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitments .card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.commitments .card h3 {
  font-size: 1rem;
  color: #0d2142;
}

.commitments .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
/* For tablets and smaller screens */
@media (max-width: 768px) {
  .commitments {
    grid-template-columns: 1fr; /* one card per row */
    gap: 16px;
  }

  .commitments .card {
    padding: 16px;
    text-align: center; /* looks better in single row */
  }

  .commitments .card span {
    font-size: 1.8rem;
  }

  .commitments .card h3 {
    font-size: 1rem;
  }
}

.about .tagline {
  margin-top: 30px;
  font-size: 1.1rem;
  color: #2ca24c;
  font-weight: bold;
}
/* Remove blue tap highlight on mobile */
a, button {
  -webkit-tap-highlight-color: transparent; /* For iOS Safari & Android Chrome */
  outline: none;
}

a:focus, button:focus {
  outline: none;
}
/* === Scroll Reveal Animation === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



