/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  background-color: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}



.custom-hero {
   padding: 30px 20px 60px;
  background: #f7fff7;
  padding: 60px 20px;
}
.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.hero-left {
  flex: 1 1 48%;
}
.hero-left h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: #1d7723;
}
.hero-left h2 span {
  color: #39b54a;
  font-weight: bold;
}
.hero-left p {
  font-size: 1.1rem;
  margin: 20px 0;
  color: #333;
  line-height: 1.6;
}
.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #39b54a;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.hero-btn:hover {
  background-color: #2e8b3c;
}
.hero-right {
  flex: 1 1 48%;
  text-align: center;
}
.hero-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-left, .hero-right {
    flex: 1 1 100%;
  }
  .hero-left h2 {
    font-size: 2rem;
  }
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #004d00;
  margin-bottom: 40px;
}

.why-tiffinmart {
  background-color: #f5fff5;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #004d00;
  margin-bottom: 40px;
}
.features-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 30px;
}
.feature-box {
  min-width: 350px;
  background-color: #ffffff;
  border: 1px solid #ddf5dd;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 77, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}
.feature-box:hover {
  transform: translateY(-5px);
}
.feature-box img {
  width: 40px;
  margin-bottom: 15px;
}
.feature-box h3 {
  font-size: 1.2rem;
  color: #004d00;
  margin-bottom: 10px;
}
.feature-box p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Plans Section */
.plans {
  background-color: #ffffff;
  padding: 60px 20px;
}
.plans-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.plan-card {
  min-width: 350px;
  border: 2px solid #ddf5dd;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  background-color: #f9fff9;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-6px);
}
.plan-card h3 {
  font-size: 1.6rem;
  color: #004d00;
  margin-bottom: 10px;
}
.plan-card .price {
  font-size: 1.3rem;
  color: #007000;
  font-weight: bold;
  margin-bottom: 20px;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.plan-card ul li {
  margin: 8px 0;
  color: #333;
  font-size: 0.95rem;
}
.plan-btn {
  display: inline-block;
  background-color: #004d00;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.plan-btn:hover {
  background-color: #007f00;
}
.popular {
  border-color: #1db954;
  background-color: #e9ffe9;
}
/* Menu Section */
.menu {
  padding: 60px 20px;
  background-color: #f8fff8;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.menu-item {
  background: white;
  border: 1px solid #d4f5d4;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.menu-item:hover {
  transform: translateY(-5px);
}
.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.menu-item h4 {
  padding: 15px 10px 5px;
  color: #004d00;
}
.menu-item p {
  padding: 0 10px 15px;
  font-size: 0.95rem;
  color: #555;
}
/* Testimonials Section */
.testimonials {
  background-color: #ffffff;
  padding: 60px 20px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.testimonial-card {
  background: #f5fff5;
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid #d0f0d0;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.customer-info {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.customer-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #aaffaa;
}
.customer-info h4 {
  margin: 0 0 3px;
  color: #004d00;
  font-size: 1rem;
}
.stars {
  color: #f1c40f;
  font-size: 1rem;
}
/* WhatsApp CTA Section */
.cta-whatsapp {
  background: linear-gradient(120deg, #004d00, #007f00);
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.cta-container h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.cta-container p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.whatsapp-btn {
  background-color: #ffffff;
  color: #004d00;
  padding: 14px 28px;
  font-size: 1.1rem;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0,64,0,0.3);
  transition: background 0.3s ease;
}
.whatsapp-btn:hover {
  background-color: #ddf5dd;
  color: #003300;
}
/* FAQ Section */
.faq {
  padding: 60px 20px;
  background-color: #fff;
}
.faq-list {
  margin-top: 30px;
}
.faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #cceccc;
  padding-bottom: 15px;
}
.faq-item h4 {
  color: #004d00;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.faq-item p {
  color: #444;
  font-size: 0.95rem;
}
/* Newsletter Section */
.newsletter {
  background-color: #e9ffe9;
  padding: 40px 20px;
  text-align: center;
}
.newsletter-box h3 {
  color: #004d00;
  margin-bottom: 10px;
}
.newsletter-box p {
  color: #333;
  margin-bottom: 20px;
}
.newsletter-btn {
  background-color: #004d00;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.newsletter-btn:hover {
  background-color: #007700;
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,64,0,0.3);
  transition: transform 0.3s;
}
.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: #004d00;
  color: white;
  padding: 40px 20px 20px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.footer-logo h2 {
  margin-bottom: 10px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin: 6px 0;
}
.footer-links a {
  color: #aaffaa;
}
.footer-contact a {
  color: #aaffaa;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #77cc77;
  padding-top: 15px;
  font-size: 0.9rem;
}
/* Enhanced FAQ Section with Icons */
.faq {
  padding: 60px 20px;
  background-color: #f8fff8;
}
.faq-list {
  max-width: 800px;
  margin: 30px auto 0;
}
.faq-item {
  background: #ffffff;
  border: 1px solid #d4f5d4;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: border 0.3s ease;
}
.faq-item[open] {
  border-color: #004d00;
}
.faq-item summary {
  font-size: 1.05rem;
  font-weight: 600;
  color: #004d00;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
.faq-item[open] summary .icon {
  transform: rotate(45deg); /* + turns to × */
}
.faq-item p {
  padding: 0 20px 15px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

.contact-hero {
  background: #ebffef;
  padding: 50px 20px;
  text-align: center;
}

.contact-hero h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004d00;
  border-bottom: 2px solid #004d00;
  display: inline-block;
  padding-bottom: 5px;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-icons div {
  text-align: center;
}

.contact-icons img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.contact-icons p {
  font-size: 1.1rem;
  color: #333;
}

.contact-form-wrap {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

.contact-form-wrap h3 {
  text-align: center;
  font-size: 1.4rem;
  color: #004d00;
  border-bottom: 2px solid #004d00;
  display: inline-block;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row input,
.form-row textarea {
  flex: 1 1 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
}

.form-row input {
  flex: 1 1 calc(50% - 10px);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.full-width {
  display: flex;
  justify-content: center;
}

.submit-btn {
  padding: 15px 40px;
  background-color: #39b54a;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #2e8b3c;
}

@media (max-width: 768px) {
  .form-row input {
    flex: 1 1 100%;
  }

  .contact-icons {
    flex-direction: column;
    gap: 40px;
  }
}
/* Hero Section */
.about-hero {
  background-image: url('https://images.unsplash.com/photo-1548943487-a2e4d7f1f90c');
  background-size: cover;
  background-position: center;
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(0, 77, 0, 0.6);
  padding: 40px;
  text-align: center;
  color: white;
  width: 100%;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.about-hero .tagline {
  font-size: 1.3rem;
}

/* Section Containers */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Story Section */
.our-story {
  padding: 60px 0;
  background: #f8fff8;
}

.story-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.story-text {
  flex: 1;
}

.story-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Mission Section */
.mission-section {
  text-align: center;
  padding: 60px 0;
}

.mission-section img {
  width: 100%;
  max-width: 700px;
  margin-top: 20px;
  border-radius: 10px;
}

/* Why Choose Us */
.why-choose-us {
  background-color: #e6ffe6;
  padding: 60px 0;
  text-align: center;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.feature-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 77, 0, 0.1);
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box img {
  width: 60px;
  margin-bottom: 15px;
}

.feature-box h3 {
  color: #004d00;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #004d00;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .story-content {
    flex-direction: column;
  }

  .feature-box {
    max-width: 90%;
  }
}
/* Plans Hero */
.plans-hero {
  background-color: #eaffea;
  padding: 60px 20px;
  text-align: center;
}

.plans-hero h1 {
  font-size: 2.5rem;
  color: #004d00;
  margin-bottom: 10px;
}

.plans-hero p {
  color: #555;
  font-size: 1.1rem;
}

/* Plans Grid */
.plans-section {
  padding: 60px 20px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.plan-box {
  background: #ffffff;
  border: 2px solid #d0ffd3;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.plan-box h2 {
  color: #004d00;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.plan-box p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 15px;
}

.plan-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.plan-box ul li {
  margin-bottom: 8px;
  color: #333;
}

.plan-box .btn {
  background-color: #39b54a;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.plan-box .btn:hover {
  background-color: #2e8b3c;
}

.plan-box.popular {
  border-color: #39b54a;
  box-shadow: 0 0 10px rgba(57, 181, 74, 0.2);
}
/* Global Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Menu Hero */
.menu-hero {
  background-color: #eaffea;
  padding: 50px 20px;
  text-align: center;
}
.menu-hero h1 {
  font-size: 2.5rem;
  color: #004d00;
}
.menu-hero p {
  color: #444;
  font-size: 1.1rem;
}

/* Weekly Menu */
.weekly-menu {
  padding: 40px 20px;
}
.day-menu {
  background-color: #fff;
  margin-bottom: 25px;
  padding: 15px;
  border-left: 6px solid #39b54a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.day-menu img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}
.day-menu h3 {
  color: #004d00;
  margin-bottom: 5px;
}
.day-menu p {
  color: #444;
  font-size: 1rem;
}

/* Responsive for Day Menu */
@media (max-width: 768px) {
  .day-menu {
    flex-direction: column;
    text-align: center;
  }
  .day-menu img {
    width: 80%;
    height: auto;
  }
}

/* Plans Info Section */
.plans-info {
  background: #f4fff4;
  padding: 40px 20px;
  text-align: center;
}
.plans-info h2 {
  font-size: 2rem;
  color: #004d00;
  margin-bottom: 30px;
}
.plan-type {
  margin-bottom: 20px;
}
.plan-type h4 {
  color: #39b54a;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.plan-type p {
  color: #444;
  font-size: 1.05rem;
}
.custom-note {
  font-style: italic;
  margin-top: 10px;
  color: #777;
}

/* CTA Section */
.menu-cta {
  background-color: #004d00;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
.menu-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.menu-cta p {
  font-size: 1.1rem;
  margin: 5px 0;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .menu-hero h1,
  .plans-info h2,
  .menu-cta h3 {
    font-size: 1.6rem;
  }
}

/* Meal Plans Section */
/* Meal Plans Section */
.meal-plans {
  background: #ecfff2;
  padding: 60px 20px;
  text-align: center;
}
.meal-plans h2 {
  font-size: 2.2rem;
  color: #004d00;
  margin-bottom: 10px;
}
.meal-plans .subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

/* Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Plan Card */
.plan-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-5px);
}
.plan-card h3 {
  color: #006400;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.plan-card p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.plan-card .price {
  font-size: 1.6rem;
  color: #39b54a;
  margin: 15px 0;
  font-weight: bold;
}
.plan-card ul {
  text-align: left;
  padding-left: 20px;
  margin-bottom: 20px;
}
.plan-card ul li {
  margin-bottom: 8px;
  color: #333;
  font-size: 0.95rem;
}

/* CTA Button */
.btn-plan {
  display: inline-block;
  padding: 10px 24px;
  background: #39b54a;
  color: white;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 1rem;
}
.btn-plan:hover {
  background: #2e8b3c;
}

/* Badge */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ccc;
  color: white;
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 6px;
  text-transform: uppercase;
}
.badge.green {
  background: #39b54a;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .meal-plans h2 {
    font-size: 1.8rem;
  }
  .meal-plans .subtitle {
    font-size: 1rem;
  }
  .btn-plan {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

/* Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5fff5;
  color: #1b3c2b;
}

/* Header */
.header {
  background-color: #1b5e20; /* Dark Green */
  padding: 20px 0;
}
.logo {
  color: #fff;
  font-size: 1.8rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: #c8e6c9;
  text-decoration: none;
  font-weight: bold;
}
.nav-links a.active,
.nav-links a:hover {
  color: #fff;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* About Section */
.about-section {
  background-color: #e8f5e9;
  padding: 60px 20px;
}
.about-section h2 {
  color: #2e7d32;
  margin-bottom: 20px;
  font-size: 2rem;
}
.about-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #2e3d30;
}

/* Kitchen Gallery */
.kitchen-gallery {
  background-color: #f1f8e9;
  padding: 60px 20px;
  text-align: center;
}
.kitchen-gallery h2 {
  color: #33691e;
  font-size: 2rem;
  margin-bottom: 10px;
}
.kitchen-gallery p {
  margin-bottom: 30px;
  color: #2e3d30;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.day-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 50px;
  margin-top: 50px;
}

.day-menu {
  background-color: #f9fff9;
  border: 1px solid #dcedc8;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  gap: 15px;
  height: 150px;
  align-items: flex-start;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.day-menu:hover {
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .day-menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .day-menu {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 20px;
  }

  .day-menu img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
}


.day-menu h3 {
  margin: 0 0 5px;
  color: #2e7d32;
}

.day-menu p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

#success-popup {
  position: fixed;
  top: 30px;
  right: 30px;
  background-color: #4CAF50;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0;
  z-index: 9999;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out, transform 0.3s ease;
  transform: translateY(-20px);
}

#success-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

footer {
  background-color: #004d00;
  color: #ffffff;
  padding: 30px 15px 15px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo h2 {
  margin-bottom: 8px;
  font-size: 22px;
  color: #ffffff;
}

.footer-logo p {
  font-size: 14px;
  color: #dddddd;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
  color: #a3ffa3;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.footer-contact p {
  margin-bottom: 8px;
  color: #dddddd;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1c661c;
  padding-top: 15px;
  margin-top: 20px;
  font-size: 12px;
  color: #cccccc;
}

/* Extra small devices < 480px */
@media (max-width: 480px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    width: 100%;
  }

  .footer-logo h2 {
    font-size: 18px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 15px;
  }

  footer {
    font-size: 13px;
  }
}

/* Ultra tiny (e.g. 100px–200px width like smartwatches) */
@media (max-width: 200px) {
  footer {
    padding: 10px;
    font-size: 10px;
  }

  .footer-columns {
    gap: 10px;
  }

  .footer-logo h2 {
    font-size: 14px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 13px;
  }.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}


  .footer-bottom {
    font-size: 10px;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

/* Laptop and Desktop View */
@media screen and (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on laptop+ */
    gap: 30px;
  }

  .feature-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
    background-color: #fff;
  }

  .feature-box:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .feature-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
}
