/* ===============================
   ROOT VARIABLES - Brand Colors
================================= */
:root {
  --green-primary: #77dd77; /* darker green for better contrast */
  --green-bg: #034e29;
  --white: #ffffff;
  --nav-height: 60px;
}

/* ===============================
   RESET + BASE STYLES
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--white);
  color: var(--white);
}

/* ===============================
   HERO VIDEO BACKGROUND
================================= */
.hero-carousel {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

/* ===============================
   CENTERED TEXT OVER VIDEO
================================= */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  animation: fadeIn 2s ease-in-out;
}

.hero-text img {
  height: 25rem;
  margin-bottom: 0.2rem;
}

.hero-text .brand-subtitle {
  /* margin-top: -10rem; */
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
  background: rgba(3, 78, 41, 0.6);
  padding: 6px 12px;
  border-radius: 8px;
  z-index: 1;
  display: inline-block;
}

/* Fade-in animation for hero text */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* ===============================
   FLOATING OVAL NAVBAR
================================= */
.floating-navbar {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(3, 78, 41, 0.95);
  border-radius: 50px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  gap: 30px;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Logo inside Navbar */
.floating-navbar .logo img {
  height: 2rem;
  scale: 2;
  vertical-align: middle;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
}

/* Navbar links (Desktop) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a.active {
  color: #7edb52; /* light green or any color */
  font-weight: bold;
  border-bottom: 2px solid #7edb52;
}

.nav-links li a:hover {
  color: var(--green-primary);
}

/* ===============================
   WHY GREENPOLY SECTION
================================= */
.why-greenpoly-section {
  background-color: #e6f9e6; /* light green */
  padding: 80px 20px;
  text-align: center;
}

.why-greenpoly-section .section-title {
  font-size: 4rem;
  color: #14532d; /* dark green */
  font-weight: 900;
  margin-bottom: 10px;
}

.why-greenpoly-section .section-subtitle {
  font-size: 2rem;
  color: #333; /* light green */
  font-weight: 600;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.feature-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  background-color: #f5fff5; /* very light green tint on hover */
}

.feature-card:hover .icon,
.feature-card:hover h3 {
  color: #7ed957; /* light green for hover state */
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card .icon {
  color: #14532d; /* dark green */
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #14532d;
}

.feature-card p {
  font-size: 0.95rem;
  color: #333;
}

/* Responsive text alignment */
@media (max-width: 768px) {
  .why-greenpoly-section .section-title {
    font-size: 2.5rem;
  }

  .why-greenpoly-section .section-subtitle {
    font-size: 1rem;
  }
}

/* ===========================
           ABOUT GREENPOLY SECTION
      ============================  */
.about-greenpoly {
  background-color: #ffffff; /* soft matching green background */
  padding: 80px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-text h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #2e7d32;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 30px;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #7edb52;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.view-more-btn:hover {
  background-color: #66c345;
  transform: translateY(-2px);
}

.view-more-btn i {
  transition: transform 0.3s ease;
}

.view-more-btn:hover i {
  transform: translateX(5px);
}

/* Responsive for Mobile */
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-text p {
    font-size: 1.1rem;
  }

  .view-more-btn {
    justify-content: center;
  }
}

/* ===========================
      QUOTE SECTION
      ============================  */
.quote-section {
  background-color: #e6f9e6; /* light green */
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.quote-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.quote-text {
  flex: 1;
  font-family: "Georgia", serif;
  font-size: 1.5rem;
  color: #2d2d2d;
  line-height: 1.6;
  position: relative;
}

.quote-text blockquote {
  font-style: italic;
  font-weight: 500;
  quotes: "“" "”" "" " " "";
  position: relative;
  padding-left: 20px;
  margin: 0 0 20px;
}

.quote-text cite {
  display: block;
  text-align: right;
  font-size: 1.2rem;
  font-weight: bold;
  color: #555;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .quote-container {
    flex-direction: column;
    text-align: center;
  }

  .quote-image img {
    margin-bottom: 20px;
    width: 180px;
    height: 180px;
  }

  .quote-text {
    font-size: 1.2rem;
  }

  .quote-text cite {
    text-align: center;
  }
}

/* ===========================
      PRODUCTS SECTION
  ============================  */
.products-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fdfdf7; /* soft cream */
}

.products-section h2 {
  font-size: 3rem;
  color: #2b5727;
  margin-bottom: 10px;
}

.products-subheading {
  color: #033; /* light green */
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.product-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 80%;
  object-fit: contain;
}

.product-card h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px;
  color: #2b5727;
}

/* Button Style */
.btn-primary {
  background-color: #7edb52;
  color: #1f422d;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background-color: #256c1a;
  color: #ffffff;
  cursor: pointer;
  transform: scale(1.05);
}

.btn-primary .arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(5px);
}

/* Responsive padding */
@media (max-width: 768px) {
  .products-section {
    padding: 40px 15px;
  }

  .product-card img {
    height: 180px;
  }
  .products-section h2 {
    font-size: 2rem;
  }
  .products-subheading {
    font-size: 1rem;
    font-weight: bold;
  }
}

.highlight {
  color: #7ed957; /* light green brand color */
}

/* ===========================
      FAQ SECTION
  ============================  */
.faq-section {
  padding: 60px 20px;
  background-color: #e6f9e6;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.faq-container h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  text-align: center;
  color: #2b5727;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  font-size: 1.1rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  color: #2b5727;
  padding: 0;
}

.faq-question:focus {
  outline: none;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-answer p {
  margin: 10px 0 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ===========================
      FOOTER SECTION
  ============================  */
.site-footer {
  background-color: #f4f4f4;
  color: #333;
  padding: 50px 20px 20px;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  border-top: 1px solid #ddd;
}

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

.footer-column {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-column h3,
.footer-column h4 {
  color: #2d7b36;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #2d7b36;
}

.contact-info i {
  margin-right: 8px;
  color: #2d7b36;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #333;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #2d7b36;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #ddd;
}

/* ======= Responsive Footer ======= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* gap: 2rem; */
  }

  .footer-column {
    max-width: 90%;
    max-height: 210px;
  }

  .social-icons {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/* ===========================
      ABOUT US BANNER SECTION
  ============================  */
.about-banner {
  position: relative;
  background: url("/assets/images/about-banner.png") center/cover no-repeat;
  height: 400px;
  margin: auto;
  overflow: hidden;
}

.contact-banner {
  position: relative;
  background: url("/assets/images/contact-banner.png") center/cover no-repeat;
  height: 400px;
  margin: auto;
  overflow: hidden;
}

.product-banner {
  position: relative;
  background: url("/assets/images/product-banner.png") center/cover no-repeat;
  height: 500px;
  margin: auto;
  overflow: hidden;
}

.sustain-banner {
  position: relative;
  background: url("/assets/images/sustain-banner.png") center/cover no-repeat;
  height: 500px;
  margin: auto;
  overflow: hidden;
}

/* Dark overlay for better text visibility */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animated title */
.banner-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #7ed957;
  text-align: center;
  animation: fadeInUp 1.2s ease-in-out forwards;
  font-family: "Poppins", sans-serif;
}

/* Fade-up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .about-banner {
    height: 200px;
  }
  .banner-title {
    font-size: 1.8rem;
    padding: 0 15px;
  }
  .about-banner {
    height: 20rem;
  }
}

/* ===========================
    WHO ARE WE SECTION
  ============================  */
.notice-board {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  background-color: #e6f9e6; /* Light neutral background */
}

.notice-board-container {
  background-color: #d8f3dc; /* Pastel green */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Slight shadow for notice board feel */
  max-width: 800px;
  text-align: center;
  position: relative;
  border: 2px solid #b7e4c7; /* Slightly darker pastel green border */
}

/* Simulated pins on corners */
.notice-board-container::before,
.notice-board-container::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #fefae0; /* Pin color */
  border-radius: 50%;
  top: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.notice-board-container::before {
  left: 10px;
}
.notice-board-container::after {
  right: 10px;
}

/* Heading style */
.notice-board-container h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #1b4332;
  margin-bottom: 1rem;
}

/* Paragraph style */
.notice-board-container p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #2d6a4f;
}

/* Responsive Design */
@media (max-width: 600px) {
  .notice-board-container {
    padding: 1.5rem;
  }
  .notice-board-container h2 {
    font-size: 1.6rem;
  }
  .notice-board-container p {
    font-size: 1rem;
  }
}

/* ===========================
    BENTO IMAGE SECTION
  ============================  */

/* 📌 Bento Gallery Section */
.bento-gallery {
  padding: 50px 20px;
  background-color: #ffffff; /* Soft pastel green */
  text-align: center;
}

.bento-gallery h2 {
  font-size: 3rem;
  margin-bottom: 35px;
  color: #2d572c;
  font-weight: bold;
}

/* 📌 Grid Container with Centered Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  gap: 20px;
  max-width: 1100px; /* Prevents 100% full-width look */
  margin: 0 auto; /* Centers the grid */
  padding: 0 10px;
}

/* 📌 Image Card Styles */
.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08); /* Soft shadow for modern look */
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Hover Animation */
.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
}

.bento-item img:hover {
  transform: scale(1.05);
}

/* 📌 Bento Layout Variations */
.large {
  grid-column: span 2;
  grid-row: span 2;
}

.wide {
  grid-column: span 2;
}

.tall {
  grid-row: span 2;
}

/* 📱 Mobile Friendly */
@media (max-width: 768px) {
  .bento-gallery {
    padding: 30px 10px;
  }
  .bento-gallery h2 {
    font-size: 1.6rem;
  }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .large,
  .wide,
  .tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* 📱 Extra Small Screens */
@media (max-width: 480px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
      CEO SECTION
  ============================  */
.ceo-section {
  padding: 50px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #e6f9e6;
}

/* Section Title */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 3rem;
  color: #2d572c;
  font-weight: bold;
}

.highlight {
  color: #3ba33b; /* Opposite green shade for contrast */
}

/* CEO Container Layout */
.ceo-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

/* CEO Image */
.ceo-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.ceo-image img {
  max-width: 280px;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
}

/* CEO Info */
.ceo-info {
  flex: 2 1 500px;
}

.ceo-info h3 {
  font-size: 1.6rem;
  color: #2d572c;
  margin-bottom: 5px;
}

.designation {
  font-weight: 500;
  color: #555;
  margin-bottom: 15px;
}

.ceo-bio {
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.education {
  font-style: italic;
  color: #2d572c;
  margin-bottom: 10px;
}

.linkedin-link {
  display: inline-block;
  color: #0a66c2;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
}

.linkedin-link:hover {
  text-decoration: underline;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .ceo-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ceo-info {
    padding: 0 10px;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
}

/* ===========================
      VISION-MISSION SECTION
  ============================  */
.vmv-section {
  background: #ffffff;
  padding: 60px 20px;
  color: white;
}

/* 📦 Container */
.vmv-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 📌 Each Box */
.vmv-box {
  /* background: rgba(255, 255, 255, 0.08); */
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vmv-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* 📝 Headings */
.vmv-box h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #2d572c;
}

/* 📄 Text */
.vmv-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #033;
}

/* ✅ Values List */
.vmv-box ul {
  list-style: none;
  padding: 0;
}

.vmv-box ul li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #033;
}

/* 📱 Mobile Responsive */
@media (max-width: 900px) {
  .vmv-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===========================
      CTA SECTION
  ============================  */
/* Section background & padding */
.green-future {
  background-color: #e6f9e6; /* light green tint for eco feel */
  padding: 50px 20px;
}

/* Container for layout */
.green-future .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap; /* Allows stacking on smaller screens */
}

/* Text content styles */
.green-future .text-content {
  flex: 1;
  min-width: 300px;
}

.green-future h2 {
  font-size: 3rem;
  color: #2e7d32; /* deep eco green */
  margin-bottom: 15px;
}

.green-future p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

/* CTA button styles */
.cta-button {
  display: inline-block;
  background-color: #2e7d32;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #1b5e20; /* darker green on hover */
}

/* Image styles */
.image-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.image-content img {
  max-width: 100%;
  height: 400px;
  border-radius: 10px;
}

/* ===== Responsive Design ===== */

/* On smaller screens, stack items vertically */
@media (max-width: 768px) {
  .green-future .container {
    flex-direction: column;
    text-align: center;
  }

  .green-future .text-content {
    order: 2; /* Move text below image on mobile */
  }

  .green-future .image-content {
    order: 1; /* Show image first on mobile */
  }
  .image-content img {
    height: 200px;
  }
  .green-future h2 {
    font-size: 2rem;
  }
  .green-future p {
    font-size: 1rem;
    text-align: center;
  }
}

/* ===========================
   MAP + CONTACT SECTION
=========================== */
.contact-section {
  padding: 60px 0;
  font-family: "Segoe UI", sans-serif;
}

.contact-heading {
  text-align: center;
  margin-bottom: 30px;
}

.contact-heading h2 {
  font-size: 3rem;
  color: #2e7d32;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-heading p {
  font-size: 1.2rem;
  color: #033;
  max-width: 600px;
  margin: auto;
}

/* ==== Container ==== */
.contact-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
  align-items: flex-start;
}

/* ==== Map ==== */
.contact-map {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}

/* ==== Form ==== */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form h2 {
  color: #2e7d32;
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: none;
  border-radius: 10px;
  background: #e8f5e9;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #d0f0d2;
  box-shadow: 0 0 0 2px #2e7d32;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #256b27;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 5rem;
  }

  .contact-map iframe {
    min-height: 400px;
  }

  .contact-form {
    width: 80%;
  }
}

@media (max-width: 576px) {
  .contact-heading h2 {
    font-size: 26px;
  }

  .contact-heading p {
    font-size: 0.9rem;
    padding: 0 10px;
    width: 80%;
  }

  .contact-form h2 {
    font-size: 2rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 12px;
  }

  .contact-form button {
    font-size: 14px;
    padding: 12px;
  }
}

/* ===========================
   CONTACT INFO SECTION
=========================== */
.contact-info-section {
  background: #e6f9e6;
  padding: 50px 20px;
}

.contact-info-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.contact-info-item {
  flex: 1 1 250px;
}

.contact-info-icon {
  background: #2e7d32;
  color: white;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin: 0 auto 15px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-info-icon:hover {
  background: #1b5e20;
  transform: scale(1.1);
}

.contact-info-item h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #033;
}

.contact-info-item p {
  font-size: 14px;
  color: #555;
  margin: 2px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-container {
    flex-direction: column;
    gap: 2px;
    align-items: center;
    width: 80%;
  }
}

/* ===========================
    Services Section Styles
   =========================== */
/* ===== Services Section ===== */
.services-section {
  width: 80%;
  margin: auto;
  padding: 50px 0;
  background-color: #f9fdf9;
  font-family: "Segoe UI", sans-serif;
}

/* Category Heading */
.services-category {
  text-align: center;
  margin-bottom: 40px;
}
.services-category h2 {
  font-size: 32px;
  color: #2e7d32;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-description {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 1.2rem auto;
  line-height: 1.6;
}
.services-category p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: auto;
}

/* Product Layout */
.services-item {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 6rem;
}

/* Left: Image */
/* Container needs to clip the overlay */
.services-image {
  flex: 1;
  min-width: 280px;
  position: relative; /* enable absolute positioning for ::after */
  border-radius: 12px; /* move radius to the container */
  overflow: hidden; /* clip the overlay inside the rounded corners */
}

/* Product image */
.services-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit; /* match container radius */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1; /* sits under the overlay now */
}

/* Right: Table */
.services-details {
  flex: 1;
  min-width: 280px;
}
.services-details h3 {
  font-size: 24px;
  color: #1b5e20;
  margin-bottom: 15px;
}
.services-details table {
  width: 100%;
  border-collapse: collapse;
}
.services-details th,
.services-details td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: center;
  color: #033;
}
.services-details th {
  background-color: #e8f5e9;
  color: #2e7d32;
}

/* Thumbnails Row */
.services-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: nowrap;
  margin-bottom: 5rem;
}
.services-thumbnails img {
  width: 100px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.services-thumbnails img:hover {
  transform: scale(1.05);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .services-item {
    flex-direction: column;
    text-align: center;
  }

  /* Thumbnails Slider */
  .services-thumbnails {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
    scrollbar-width: thin;
  }
  .services-thumbnails img {
    flex: 0 0 auto;
    width: 50%;
  }
  .download-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* =========================
   PRODUCT CATELOGUE
========================= */
.catalogue-download {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.download-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #2e7d32; /* main green */
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
  background-color: #1b5e20; /* darker green */
  transform: scale(1.05);
}

/* =========================
   STORY-DRIVEN SECTION STYLES
   SEO & Accessibility: 
     - Mobile-first approach
     - Legible font sizes
     - High contrast text
========================= */

.brand-story {
  padding: 60px 20px;
  background: #e6f9e6; /* Light background for readability */
}

.story-container {
  display: flex;
  flex-direction: column; /* Mobile-first stacking */
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.story-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-content {
  text-align: left;
  color: #333;
}

.story-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2e7d32;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .story-container {
    flex-direction: row; /* Side-by-side layout */
    align-items: flex-start;
  }

  .story-content {
    flex: 1;
    padding-left: 30px;
  }

  .story-image {
    flex: 1;
  }
}

/* =========================
   COUNTER SECTION STYLES
========================= */
/* ===== COUNTERS SECTION ===== */
.counters-section {
  background: #ffffff;
  padding: 60px 20px;
  color: #2e7d32;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}

.counters-heading h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: bold;
}

.counters-heading p {
  font-size: 16px;
  margin-bottom: 30px;
  color: black;
}

.counters-item p {
  opacity: 1;
}

/* Flex container for counters */
.counters-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Counter Item */
.counter-item {
  flex: 1 1 250px;
  min-width: 200px;
}

.counter-number {
  font-size: 40px;
  font-weight: bold;
  display: block;
}

.counter-label {
  font-size: 16px;
  margin-top: 8px;
  opacity: 0.85;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .counter-number {
    font-size: 32px;
  }
  .counter-label {
    font-size: 14px;
  }
}

/* ================================
   Section: Packaging Comparison
   SEO-friendly, Mobile Responsive
   ================================ */

#packaging-comparison {
  padding: 2rem 10rem;
  margin: auto;
  font-family: Arial, sans-serif;
  background-color: #e6f9e6;
}

#packaging-comparison h2 {
  text-align: center;
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 1.5rem;
}

#packaging-comparison .intro-text {
  text-align: center;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

#packaging-comparison .table-wrapper {
  overflow-x: auto; /* Mobile scrolling for table */
}

#packaging-comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 600px;
}

#packaging-comparison thead tr {
  background-color: #edf2f7;
  color: #2d3748;
}

#packaging-comparison th,
#packaging-comparison td {
  padding: 12px;
  border: 1px solid #cbd5e0;
  text-align: left;
}

#packaging-comparison tbody td {
  color: #2e7d32;
  border: 1px solid #e2e8f0;
}

#packaging-comparison .conclusion {
  margin-top: 1.5rem;
  text-align: center;
  color: #4a5568;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Responsive Typography */
@media (max-width: 768px) {
  #packaging-comparison {
    padding: 2rem 1rem;
  }

  #packaging-comparison h2 {
    font-size: 1.5rem;
  }

  #packaging-comparison table {
    font-size: 0.9rem;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  #packaging-comparison h2 {
    font-size: 1.3rem;
  }

  #packaging-comparison th,
  #packaging-comparison td {
    padding: 8px;
  }
}

/* ======================================
   Plastic Decomposition Timeline Styles
   SEO-friendly, Mobile Responsive
   ====================================== */
/* 🌍 Plastic Decomposition Timeline Section */
#plastic-timeline {
  padding: 3rem 1rem;
  color: white;
  background: url("/assets/images/plastic-bg.png") no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}

#plastic-timeline::before {
  /* Dark overlay for better text readability */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

#plastic-timeline h2 {
  text-align: center;
  font-size: 2rem;
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
  color: #2e7d32;
}

#plastic-timeline .timeline-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* =======================
   Timeline Container
   ======================= */
#plastic-timeline .timeline {
  position: relative;
  max-width: 800px;
  margin: auto;
  padding-left: 20px;
  border-left: 3px solid #00ff99;
  z-index: 2;
}

/* =======================
   Timeline Items
   ======================= */
#plastic-timeline .timeline-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
  margin-bottom: 2rem;
  position: relative;
}

#plastic-timeline .timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Year/Stage Circle */
#plastic-timeline .timeline-item::before {
  content: attr(data-year);
  position: absolute;
  left: -90px;
  background: #00ff99;
  color: #000;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  top: 0;
  white-space: nowrap;
}

/* =======================
   Timeline Content Box
   ======================= */
#plastic-timeline .timeline-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

#plastic-timeline .timeline-content h3 {
  margin-bottom: 0.5rem;
  color: #00ff99;
}

#plastic-timeline .timeline-content p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* =======================
   Mobile Responsiveness
   ======================= */
@media (max-width: 768px) {
  #plastic-timeline h2 {
    font-size: 3rem;
  }

  #plastic-timeline .timeline-intro {
    font-size: 1rem;
  }

  #plastic-timeline .timeline {
    padding-left: 10px;
    border-left: none;
  }

  #plastic-timeline .timeline-item {
    margin-bottom: 2rem;
    padding-left: 0;
  }

  /* Move year label above content for visibility */
  #plastic-timeline .timeline-item::before {
    position: relative;
    left: 0;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    background: #00ff99;
    color: #000;
  }

  #plastic-timeline .timeline-content {
    margin-left: 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  #plastic-timeline h2 {
    font-size: 1.4rem;
  }

  #plastic-timeline .timeline-item::before {
    font-size: 0.8rem;
    padding: 4px 8px;
  }

  #plastic-timeline .timeline-content {
    font-size: 0.85rem;
    padding: 0.8rem;
  }
}
/* =======================
   Sustainable Packaging Section Styles
   ======================= */
.sustainable-packaging {
  padding: 50px 20px;
  background-color: #e6f9e6;
}

.sustainable-packaging .container {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap; /* Ensures mobile responsiveness */
}

.image-container {
  flex: 1 1 45%;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.content {
  flex: 1 1 50%;
}

.content h2 {
  font-size: 2.5rem;
  color: #2b6b2b;
  margin-bottom: 15px;
}

.content p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #033;
}

.content ul {
  list-style: none;
  padding: 0;
}

.content ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: black;
}

.content ul li::before {
  content: "✔";
  color: green;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .sustainable-packaging .container {
    flex-direction: column;
    text-align: justify;
  }

  .content h2 {
    font-size: 2rem;
    text-align: center;
  }

  .content p {
    font-size: 1rem;
  }
}

/* ===============================
   Sustainability Quotes Section STYLES
================================= */

.sustainability-quotes-section {
  padding: 3rem 1rem;
  text-align: center;
}

/* SEO-friendly heading styling */
.sustainability-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #065f46; /* Deep green for eco feel */
  margin-bottom: 2rem;
}

/* Container for quotes */
.sustainability-quotes-container {
  display: flex;
  flex-direction: column; /* Mobile first: stack vertically */
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Individual quote cards */
.sustainability-quote-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 1.1rem;
  font-style: italic;
  color: #033; /* Dark green text */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for desktop */
.sustainability-quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* Cite styling */
.sustainability-quote-author {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.95rem;
  font-style: normal;
  color: #2e7d32; /* Emerald green */
  font-weight: 500;
}

/* Responsive: show in a row for bigger screens */
@media (min-width: 768px) {
  .sustainability-quotes-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .sustainability-quote-card {
    flex: 1;
    max-width: 30%;
  }
}

/* ===============================
   MOBILE RESPONSIVE STYLES
================================= */
@media (max-width: 768px) {
  /* Floating navbar layout on mobile */

  .floating-navbar {
    flex-direction: row;
    padding: 10px 20px;
    gap: 10px;
    justify-content: space-between;
    width: 90%;
  }

  .hero-text img {
    scale: 0.8;
  }

  .hero-text .brand-subtitle {
    margin-bottom: 3rem;
    font-size: 1rem;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    align-items: center;
    top: 59.5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(3, 78, 41, 0.95);
    padding: 15px 20px;
    border-radius: 5px;
    gap: 15px;
    width: 80%;
    z-index: 9;
  }

  .nav-links.open {
    display: flex;
  }

  .floating-navbar .logo img {
    height: 2rem;
    scale: 2;
  }

  .hero-text img {
    height: 25rem;
  }

  .faq-container h2 {
    font-size: 2rem;
  }
}

.contact-details {
  margin-left: 30px;
  line-height: 1.3;
}

.contact-person {
  font-size: 0.85em;
  font-weight: 500;
  color: #333;
}

.designation {
  font-size: 0.8em;
  font-weight: 400;
  color: #666;
}

/* ****** CPCB Section ******* */
/* CPCB Section */
.cpcb-section {
  background: #f0fff4; /* light green background */
  padding: 40px;
  border-radius: 12px;
  margin: 40px 0;
  text-align: center;
}

.cpcb-title {
  font-size: 28px;
  font-weight: bold;
  color: #1b5e20; /* dark green */
  margin-bottom: 30px;
}

/* Single Card (block) */
.cpcb-card.full-width {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  margin: auto;
}

.cpcb-card h3 {
  color: #2e7d32;
  font-size: 20px;
  margin-bottom: 15px;
}

/* Guidelines List */
.cpcb-card ul {
  list-style: none;
  padding: 0;
}

.cpcb-card ul li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  color: #333;
  font-size: 16px;
}

.cpcb-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2e7d32; /* green check */
  font-weight: bold;
}

/* Quick Tests Table */
.cpcb-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.cpcb-table th,
.cpcb-table td {
  border: 1px solid #c8e6c9;
  padding: 10px;
  text-align: left;
  font-size: 15px;
  color: #333;
}

.cpcb-table th {
  background: #e8f5e9;
  color: #1b5e20;
  font-weight: bold;
}

/* Source */
.cpcb-source {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
  text-align: center;
}

.cpcb-source a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: bold;
}

/* Make table responsive */
.cpcb-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  display: block; /* allow scroll */
  overflow-x: auto; /* scroll horizontally */
  white-space: nowrap; /* prevent text wrapping */
}

/* Adjust on smaller devices */
@media (max-width: 768px) {
  .cpcb-table th,
  .cpcb-table td {
    font-size: 14px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .cpcb-table th,
  .cpcb-table td {
    font-size: 13px;
    padding: 6px;
  }
}
