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

body, html {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.5;
  color: #333;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Slim Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #142989;
  color:  white;
  font-size: 0.85rem;
  padding: 4px 10px;
  top: 0;
  z-index: 1001;
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #fff;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Logo Image */
.logo-img {
  height: 50px; /* medium size, adjust as needed */
  width: auto;  /* maintain aspect ratio */
  display: block;
  margin-left: 13px;
}

/* Navbar Inner */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 10px;
}

/* Remove extra spaces top/bottom */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.menu {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex: 1;
}

.menu a {
  padding: 8px 12px;
  transition: 0.3s;
  color: #111;
  font-weight: 500;
}

.menu a.active, .menu a:hover {
  color: #0a9a49;
}

.menu a.btn {
  background: rgb(63, 155, 11); /* lighter to darker */
  color: #fff;
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
  display: inline-block;
  text-align: center;
}

/* Hover effect */
.menu a.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #3dfb76 0%, #10d04a 100%);
}


.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.6); /* dims the image to 60% brightness */
}


.hero-inner {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 20px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 900px;
  margin: 0 auto;
  z-index: 1; /* above overlay */
}

.hero-inner h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-inner p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.hero-inner .cta a {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  background: rgb(63, 155, 11); /* lighter to darker */
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}

/* Optional hover effect to make it more interactive */
.hero-inner .cta a:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #3dfb76 0%, #10d04a 100%);
}


/* Responsive Hero */
@media(max-width:1024px) {
  .hero-inner h1 {
    font-size: 2rem;
  }

  .hero-inner p {
    font-size: 1rem;
  }

  .hero-inner .cta a {
    padding: 12px 24px;
  }
}

@media(max-width:480px) {
  .hero-inner h1 {
    font-size: 1.6rem;
  }

  .hero-inner p {
    font-size: 0.9rem;
  }

  .hero-inner .cta a {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}



/* Features / Cards */
.features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 10px;
}

.card {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 8px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.card h3, .card h4 {
  margin-bottom: 8px;
}

.apple-ish {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* Small Cards in Hero */
.small-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.small-card {
  background: rgba(255,255,255,0.9);
  padding: 12px;
  border-radius: 6px;
  flex: 1 1 180px;
  text-align: center;
}

/* Products Preview */
.products-preview {
  padding: 20px 10px;
  text-align: center;
}

.products-preview h2 {
  margin-bottom: 8px;
}

.products-preview .sub {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.center {
  text-align: center;
  margin-top: 12px;
}


/* Contact Section */
section .glass {
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  padding: 16px;
}

/* Footer */
.footer {
  background: #037b4b;
  color: #fff;
  padding: 30px 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  border-top: 1px solid white;
  padding-top: 12px;
}

/* Responsive */
@media(max-width:1024px) {
  .features, .small-cards {
    flex-direction: column;
    align-items: center;
  }

  .menu {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media(max-width:768px) {
  .hero-inner h1 {
    font-size: 2rem;
  }

  .hero-inner p {
    font-size: 1rem;
  }

  .cta a {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.8rem;
    gap: 4px;
  }
}

@media(max-width:480px) {
  .hero-inner h1 {
    font-size: 1.6rem;
  }

  .hero-inner p {
    font-size: 0.9rem;
  }

  .cta a {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}


.icons-section {
  width: 100%;
  padding: 40px 10px;
  background: #fff; /* plain background */
  text-align: center;
}

.icons-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px; /* space between icons */
}

.icon-item {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

/* Optional hover effect */
.icon-item img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media(max-width:1024px) {
  .icon-item {
    width: 80px;
    height: 80px;
  }
  .icons-wrapper {
    gap: 30px;
  }
}

@media(max-width:480px) {
  .icon-item {
    width: 60px;
    height: 60px;
  }
  .icons-wrapper {
    gap: 20px;
  }
}


.secondary {
  display: inline-block;
  padding: 12px 26px;
  font-weight: 500;
  color: #2ecc71;
  background: transparent;
  border-radius: 6px;
  position: relative;
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(90deg, #6ee7b7, #16a34a);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.35s ease;
}

/* Hover Effect */
.secondary:hover {
  color: #fff;
  background-image:
    linear-gradient(90deg, #6ee7b7, #15803d),
    linear-gradient(90deg, #6ee7b7, #15803d);
  transform: translateY(-2px);
}


@media (max-width: 1024px) {
  .hero-inner h1 { font-size: 2rem; }
  .hero-inner p { font-size: 1rem; }
  .icon-item { width: 80px; height: 80px; }
  .icons-wrapper { gap: 30px; }
}

/* ≤ 768px */
@media (max-width: 768px) {
  .menu { display: none; }
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.8rem;
    gap: 4px;
  }
}

/* ≤ 480px */
@media (max-width: 480px) {
  .hero-inner h1 { font-size: 1.6rem; }
  .hero-inner p { font-size: 0.9rem; }
  .icon-item { width: 60px; height: 60px; }
  .icons-wrapper { gap: 20px; }
}

/* ≤ 360px */
@media (max-width: 360px) {
  .hero-inner h1 { font-size: 1.4rem; }
  .hero-inner p { font-size: 0.85rem; }
}



/* ===============================
   WHATSAPP FLOATING ICON
================================ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

/* Mobile adjustment */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    right: 16px;
    bottom: 16px;
  }
}


@media (max-width: 480px) {
  .hero {
    height: 70vh; /* avoid oversized hero */
  }

  .hero-img {
    filter: brightness(0.5); /* better text contrast */
  }

  .hero-inner {
    padding: 16px;
    max-width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}


@media (max-width: 600px) {
  .hero {
    height: 75vh;
  }

  .hero-inner {
    padding: 20px;
    max-width: 100%;
  }
}


@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .hero-inner {
    padding: 24px;
    max-width: 90%;
  }
}


@media (max-width: 1024px) {
  .hero {
    height: 90vh;
  }

  .hero-inner {
    max-width: 95%;
  }
}


@media (max-width: 768px) {
  .hero {
    height: 100svh; /* safer than 100vh on mobile */
  }
}
