/* ---------------- GLOBAL RESET ---------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}




/* ---------------- NAVBAR ---------------- */
.navbar {
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    position: sticky;
    top: 0;
   background:#f6ffe6;
    z-index: 100;
}

/* Logo */
.logo img {
    width: 100px;
    height: 100px;
    margin-left: 50px;

}

/* Menu links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    color:black;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    transition: 0.3s;
    color:black;
}


/* Hamburger icon */
.hamburger {
    display: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

/* Hide checkbox */
#menu-toggle {
    display: none;
}

/* ---------------- MOBILE RESPONSIVE ---------------- */
@media (max-width: 900px) {

  .navbar {
    position: relative;
    flex-direction: row;
  }

  .nav-links {
    position: absolute;
    top: 100%;              /* ✅ key fix */
    left: 0;
    width: 100%;
    background: #f7ffe2;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
    z-index: 999;
  }

  #menu-toggle:checked ~ .nav-links {
    height: auto;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .nav-links a {
    font-size: 18px;
  }

  .hamburger {
    display: block;
    font-size: 32px;
    cursor: pointer;
    color: #000;
  }
}







/* ---------------- DEMO CONTENT ---------------- */
.content {
    padding: 40px;
    text-align: center;
}





.footer-section {
  background: #F7FFE2;
  margin-top: 60px;

}

/* HEADINGS */
.footer-title {
  font-size: 26px;
  margin-bottom: 18px;
}

/* TEXT */
p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 14px;
}

/* ICON SPACING */
.phone-icon,
.email-icon,
.location-icon {
  margin-right: 12px;
  font-size: 18px;
}

/* QUICK LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #3faf38;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 22px;
  margin-top: 5px;
}

.social-icons i {
  color: #000;
}

.social-icons i:hover {
  color: #3faf38;
}

/* DIVIDER LINE */
.footer-line {
  border-top: 2px solid #000;
  margin: 10px 0 20px 0;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 15px;
  text-decoration: none;
}

.designer {
  color: #3faf38;
  font-weight: bold;
   text-decoration: none;
}



/* ================= MOBILE FOOTER RESPONSIVENESS ================= */
@media (max-width: 768px) {

  /* Footer container spacing */
  .footer-section {
    padding: 40px 20px 20px;
  }

  /* Stack columns */
  .footer-section .row {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* Titles */
  .footer-title {
    font-size: 22px;
    margin-bottom: 14px;
    text-align: left;
  }

  /* Text */
  .footer-section p {
    font-size: 15px;
    line-height: 24px;
  }

  /* Quick links */
  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 15px;
  }

  /* Social icons alignment */
  .social-icons {
    justify-content: flex-start;
    gap: 18px;
  }

  .social-icons i {
    font-size: 22px;
  }

  /* Divider line */
  .footer-line {
    margin: 25px 0 15px;
  }

  /* Copyright */
  .footer-copy {
    font-size: 14px;
    line-height: 22px;
    padding: 0 10px;
  }
}





















































/* ===== PAGE BACKGROUND ===== */
body {
  background: #eef4f1;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ===== SECTION SPACING ===== */
.card-section {
  width: 100%;
  padding: 30px 0;
}

/* ===== CARD DESIGN ===== */
.info-card {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;               /* card background */
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ===== CONTENT (LEFT) ===== */
.card-content {
  flex: 1;
}

.card-content h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #08254c;
  text-transform: uppercase;
}

.card-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.card-content ul li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}

/* ===== BUTTON ===== */
.view-btn {
  display: inline-block;
  background: #7fbf2a;
  color: #fff;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.view-btn:hover {
  background: #6aa522;
}

/* ===== IMAGE (RIGHT) ===== */
.card-image {
  flex: 1;
  text-align: center;
}

.card-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .info-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .card-content h2 {
    font-size: 28px;
  }

  .card-content ul {
    text-align: left;
    display: inline-block;
  }
}



/* REMOVE DEFAULT BODY MARGIN */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* FULL WIDTH SECTION */
.product-banner {
  width: 100%;
}

/* IMAGE CONTAINER */
.product-image-box {
  position: relative;
  width: 100%;
  height: 420px;          /* banner height */
  overflow: hidden;
}

/* IMAGE */
.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.product-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* TEXT CENTER */
.product-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.product-text h1 {
  color: #ffffff;
  font-size: 64px;
  letter-spacing: 5px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-image-box {
    height: 260px;
  }

  .product-text h1 {
    font-size: 36px;
    letter-spacing: 3px;
  }
}



















/* BUTTON */
.view-btn {
  display: inline-block;
  background: #8CC63F;
  color: white;
  padding: 14px 40px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid #000;
  transition: 0.3s;
}

.view-btn:hover {
  background: #7CB232;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .info-card {
    flex-direction: column;
  }

  .card-image,
  .card-content {
    width: 100%;
    text-align: center;
  }

  .card-content ul {
    text-align: left;
    display: inline-block;
  }
}










/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 9999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  text-decoration: none;
}

.floating-whatsapp:hover {
  background: #1ebc57;
}

/* FLOATING PHONE */
.floating-phone {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #34c759;   /* phone green */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 9999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  text-decoration: none;
}

.floating-phone:hover {
  background: #2db14f;
}
