/* BASE */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat',sans-serif !important;
}

/* HEADER */
.site-header {
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  padding: 22px 0;
}

.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* LOGO SWITCH */
.logo {
  width: 50%;
}

.logo-green {
  display: none;
}

.site-header.scrolled .logo-white {
  display: none;
}

.site-header.scrolled .logo-green {
  display: inline-block;
}

/* CENTER NAV */
.nav-center {
  position: absolute;
  right: 0;
  transform: translateX(-20%);
  gap: 36px;
}

.nav-center .nav-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

/* ===== PRODUCTS DROPDOWN (DESKTOP) ===== */
.nav-center .dropdown {
  position: relative;
}

.nav-center .dropdown-toggle::after {
  margin-left: 6px;
  font-size: 12px;
}

/* Dropdown Menu */
.premium-dropdown {
  border: none;
  padding: 14px 0;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  margin-top: 18px;
  min-width: 240px;
}

/* Dropdown Items */
.premium-dropdown .dropdown-item {
  font-size: 14px;
  padding: 12px 22px;
  color: #0D7636;
  font-weight: 500;
}

/* Hover effect */
.premium-dropdown .dropdown-item:hover {
  background: #f2f7f4;
  color: #0D7636;
}

/* Fix link color on transparent header */
/* .site-header .nav-center .dropdown-toggle {
  color: #ffffff;
} */

/* Fix link color when scrolled */
.site-header.scrolled .nav-center .dropdown-toggle {
  color: #0D7636;
}


.site-header.scrolled .nav-center .nav-link {
  color: #0D7636; /* GREEN */
}

/* MOBILE TOGGLER FIX */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.site-header.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%230D7636' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* MOBILE MENU */
.mobile-nav {
  background: #ffffff;
}

.mobile-nav nav a {
  display: block;
  padding: 14px 0;
  color: #0D7636;
  text-decoration: none;
  font-size: 16px;
  margin-left: 10%;
}

/* MOBILE PRODUCTS DROPDOWN */
.mobile-dropdown-toggle {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  color: #0D7636;
  background: none;
  border: none;
  text-align: left;
  margin-left: 10%;
}

#mobileProducts a {
  display: block;
  padding: 10px 0;
  margin-left: 14%;
  font-size: 15px;
  color: #0D7636;
  text-decoration: none;
}
/* MOBILE DROPDOWN ARROW */
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Arrow Icon */
.dropdown-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #0D7636;
  border-bottom: 2px solid #0D7636;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 15%;
}

/* DESKTOP HOVER DROPDOWN */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
    top: 0;
    left: 100%;
    margin-left: 4px;
  }
}
/* Rotate arrow when open */
.mobile-dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(-135deg);
}
/* SUB DROPDOWN */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 4px;
  border-radius: 6px;
  min-width: 220px;
}

/* Arrow indicator */
.dropdown-submenu > a::after {
  content: "›";
  float: right;
  font-size: 18px;
  margin-top: -2px;
}

/* Hover open (desktop) */
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}
/* MOBILE SUB DROPDOWN */
.mobile-sub-dropdown {
  margin-left: 12px;
}

.mobile-sub-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  text-align: left;
  font-size: 15px;
  color: #0D7636;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-sub-dropdown a {
  display: block;
  padding: 8px 0 8px 15px;
  font-size: 14px;
  color: #0D7636;
}
/* MOBILE NAV BASE */
.mobile-nav {
  background: #ffffff;
  padding: 20px 0;
}

.mobile-nav-inner {
  padding: 0 10%;
}

/* ROW */
.mobile-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LINKS */
.mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: #0D7636;
  text-decoration: none;
  padding: 12px 0;
  display: block;
}

.mobile-sublink {
  font-size: 15px;
  color: #0D7636;
  text-decoration: none;
  padding: 10px 0 10px 15px;
  display: block;
}

/* ARROW BUTTON */
.mobile-arrow-btn {
  background: none;
  border: none;
  padding: 6px;
}

/* ARROW ICON */
.mobile-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #0D7636;
  border-bottom: 2px solid #0D7636;
  transform: rotate(45deg);
  display: inline-block;
  transition: transform 0.3s ease;
}

/* ROTATE WHEN OPEN */
.mobile-arrow-btn[aria-expanded="true"] .mobile-arrow {
  transform: rotate(-135deg);
}

/* SUBMENU */
.mobile-submenu {
  padding-left: 10px;
}


/* HERO */
.hero-section {
  height: 100vh;
  background: url("../images/hero-bg.jpg") no-repeat center center / cover;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}
.hero-section-filter {
  height: 100vh;
  background: url("../images/product-2.png") no-repeat center center / cover;
  position: relative;
}

.hero-section-filter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}
.hero-section-blogs {
  height: 100vh;
  background: url("../images/news-update-bnr.webp") no-repeat center center / cover;
  position: relative;
}

.hero-section-blogs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* HERO TEXT */
.hero-content {
  position: absolute;
  left: 50%;
  bottom: 32%;
  transform: translateX(-50%);
  text-align: center;
  color: #ffffff;
}
.hero-content-pd {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  text-align: center;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 80px;
  font-weight: 400;
  line-height: 1.35;
}
.hero-content-pd h1 {
  font-size: 80px;
  font-weight: 400;
  line-height: 1.35;
}

.hero-content p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
}
.hero-content-pd p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
}

.hero-content strong {
  font-weight: 600;
}
.hero-content-pd strong {
  font-weight: 600;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
  }
  .hero-content-pd h1 {
    font-size: 30px;
  }
}
/* ABOUT INTRO SECTION */
.about-intro-section {
  padding: 100px 0 110px;
  background: #ffffff;
}
.about-intro-section h1{
  color: #0D7636;
  font-weight: 700;
  text-transform: uppercase;
}
.about-intro-section h3{
  font-weight: 700;
}

/* TEXT */
.about-text {
  font-size: 22px;
  line-height: 1.7;
  color: #2c2c2c;
  max-width: 1000px;
  margin: 0 auto 70px;
}

/* STATS */
.stats-row {
  margin-bottom: 60px;
}

.stat-box h3 {
  font-size: 48px;
  font-weight: 700;
  color: #0D7636; /* GREEN */
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 16px;
  font-weight: 500;
  color: #1f1f1f;
}

/* BUTTON */
.about-btn {
  background: #0D7636;
  color: #ffffff;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #0D7636;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-text {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .stat-box h3 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .about-intro-section {
    padding: 70px 0 80px;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .stat-box {
    margin-bottom: 25px;
  }
}
/* SUSTAINABILITY SECTION */
.sustainability-section {
  position: relative;
  padding: 120px 0 130px;
  background: url("../images/sustai-bg.webp") no-repeat center center / cover;
  color: #ffffff;
}

/* DARK OVERLAY */
.sustainability-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* CONTENT LAYER */
.sustainability-section .container {
  z-index: 2;
}

/* TITLE */
.sustain-title {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 25px;
}

.sustain-title strong {
  font-weight: 700;
}

/* DESCRIPTION */
.sustain-desc {
  font-size: 18px;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 70px;
  opacity: 0.95;
}

/* STATS */
.sustain-stats {
  margin-bottom: 60px;
}

.stat-item h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* BUTTON */
.sustain-btn {
  background: #0D7636;
  color: #ffffff;
  padding: 14px 38px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.3s ease;
}

.sustain-btn:hover {
  background: #0D7636;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .sustain-title {
    font-size: 34px;
  }

  .stat-item h3 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .sustainability-section {
    padding: 90px 0 100px;
  }

  .sustain-title {
    font-size: 26px;
  }

  .sustain-desc {
    font-size: 15px;
    margin-bottom: 45px;
  }

  .stat-item {
    margin-bottom: 30px;
  }
}

/* SECTION */
.regen-section {
  padding: 120px 0;
  background: #ffffff;
}

/* LEFT */
.regen-title {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 20px;
}

.regen-title span {
  color: #0D7636;
  font-weight: 700;
}

.regen-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.regen-btn {
  background: #0D7636;
  color: #fff;
  padding: 14px 36px;
  border-radius: 0;
}

/* RIGHT CIRCLE */
.cycle-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
  margin: auto;
}

.cycle-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 6px solid #eee;
}

/* ICONS */
.cycle-icons {
  position: absolute;
  inset: 0;
}

.cycle-icon {
  position: absolute;
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  transition: all .35s ease;
  text-transform: uppercase;
}

.cycle-icon.active {
  background: #0D7636;
  color: #ffffff;
  transform: scale(1.08);
}


/* POSITION ICONS */
.cycle-icon:nth-child(1) { top: -10px; left: 50%; transform: translateX(-50%); }
.cycle-icon:nth-child(2) { top: 25%; right: -10px; }
.cycle-icon:nth-child(3) { bottom: 25%; right: -10px; }
.cycle-icon:nth-child(4) { bottom: -10px; left: 50%; transform: translateX(-50%); }
.cycle-icon:nth-child(5) { bottom: 25%; left: -10px; }
.cycle-icon:nth-child(6) { top: 25%; left: -10px; }

/* CENTER */
.cycle-center {
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.cycle-center h3 {
  color: #0D7636;
  font-size: 22px;
  margin-bottom: 10px;
}

.cycle-center p {
  font-size: 15px;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .cycle-wrapper {
    width: 300px;
    height: 300px;
    margin-top: 50px;
  }
}
.solutions-section {
  padding: 120px 0;
  background: #ffffff;
}

/* Heading */
.section-title {
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 15px;
}

.section-title span {
  color: #0D7636;
  font-weight: 700;
}

.section-desc {
  max-width: 780px;
  margin: auto;
  font-size: 17px;
  color: #000;
  line-height: 1.6;
}

/* Card */
.solution-card {
  background: #ffffff;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.35s ease;
}

.solution-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Content */
.solution-content {
  padding: 28px;
  text-align: center;
  transition: all 0.35s ease;
}

.solution-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.35s ease;
}

.explore-link {
  font-size: 15px;
  font-weight: 600;
  color: #0D7636;
  text-decoration: none;
  transition: color 0.35s ease;
}

/* HOVER EFFECT (IMPORTANT PART) */
.solution-card:hover .solution-content {
  background: #0D7636; /* GREEN */
}

.solution-card:hover h4,
.solution-card:hover p,
.solution-card:hover .explore-link {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .solution-card img {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 28px;
  }
}
.contact-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Heading + line */
.section-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-head h3 {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

.section-head .line {
  flex: 1;
  height: 2px;
  background: #ddd;
}

/* Left content */
.office-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}

.office-address {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.info-block {
  margin-bottom: 22px;
}

.label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.info {
  font-size: 16px;
  color: #555;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.icon {
  font-size: 16px;
}

/* CONTACT FORM */
.contact-form-wrapper {
  background: #ffffff;
  padding: 30px;
  border: 1px solid #eee;
}

.contact-form-wrapper .form-control {
  height: 48px;
  border-radius: 0;
  font-size: 15px;
  border: 1px solid #ddd;
}

.contact-form-wrapper textarea.form-control {
  height: auto;
  resize: none;
}

.contact-form-wrapper .form-control:focus {
  box-shadow: none;
  border-color: #0D7636;
}

/* Submit Button */
.submit-btn {
  background: #0D7636;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 0;
  font-size: 15px;
}

.submit-btn:hover {
  background: #095c2a;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-form-wrapper {
    margin-top: 30px;
  }
}


/* Map */
.map-wrapper {
  width: 100%;
  height: 320px;
  border: 1px solid #eee;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .map-wrapper {
    margin-top: 30px;
    height: 280px;
  }
}

@media (max-width: 575px) {
  .section-head h3 {
    font-size: 22px;
  }

  .office-title {
    font-size: 22px;
  }
}
.premium-faq {
  padding: 110px 0;
  background: #ffffff;
}

/* Heading */
.faq-title {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 10px;
}

.faq-title span {
  color: #0D7636;
  font-weight: 700;
}

.faq-subtitle {
  max-width: 720px;
  margin: auto;
  font-size: 17px;
  color: #000;
  line-height: 1.6;
}

/* Accordion Wrapper */
.premium-accordion .accordion-item {
  border: none;
  background: #ffffff;
  margin-bottom: 18px;
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Accordion Button */
.premium-accordion .accordion-button {
  font-size: 18px;
  font-weight: 500;
  padding: 26px 30px;
  background: #ffffff;
  color: #222;
  box-shadow: none;
}

.premium-accordion .accordion-button::after {
  background-size: 18px;
}

.premium-accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background: #0D7636;
}

/* Body */
.premium-accordion .accordion-body {
  padding: 30px 30px 30px 30px;
  font-size: 16px;
  color: #000;
  line-height: 1.65;
}

/* Hover subtle lift */
.premium-accordion .accordion-item:hover {
  transform: translateY(-2px);
  transition: transform 0.25s ease;
}

/* Responsive */
@media (max-width: 575px) {
  .faq-title {
    font-size: 28px;
  }

  .premium-accordion .accordion-button {
    font-size: 16px;
    padding: 20px;
  }

  .premium-accordion .accordion-body {
    padding: 0 20px 20px;
  }
}
.site-footer {
  background: #0f2a1f; /* premium green */
  color: #ffffff;
  padding: 70px 0 25px;
}

.footer-logo {
  width: 50%;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 15px;
  color: #d6e6dc;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Social Icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  margin-right: 10px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-social a:hover {
  background: #1f7f3b;
}

/* Titles */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 15px;
  color: #d6e6dc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Bottom */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  color: #cfe2d6;
}

/* Responsive */
@media (max-width: 767px) {
  .site-footer {
    text-align: center;
  }

  .footer-social a {
    margin-right: 6px;
    margin-left: 6px;
  }
}

/* About page css */
/* ABOUT OVERVIEW SECTION */
.about-overview {
  padding: 100px 0;
  background: #ffffff;
}

/* LEFT CONTENT */
.small-title {
  font-size: 14px;
  font-weight: 600;
  color: #0D7636;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: inline-block;
}

.main-title {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.about-text {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

/* BUTTON */
.about-btn {
  background: #0D7636;
  color: #ffffff;
  padding: 14px 34px;
  font-size: 15px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-btn:hover {
  background: #0D7636;
  color: #fff;
}

/* STATS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
  padding-left: 40px;
}

.stat-box {
  text-align: center;
}

.stat-box i {
  font-size: 42px;
  color: #0D7636;
  margin-bottom: 12px;
  display: inline-block;
}

.stat-box h3 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.stat-box p {
  font-size: 16px;
  font-weight: 500;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-overview {
    padding: 70px 0;
  }

  .stats-grid {
    padding-left: 0;
    margin-top: 50px;
    gap: 40px 20px;
  }

  .main-title {
    font-size: 32px;
  }
}
/* SECTION */
.innovation-section {
  background: #fff;
}

/* FULL HEIGHT IMAGE */
.section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.content-wrap {
  padding: 90px 100px;
  max-width: 620px;
}

.content-wrap h3 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  color: #111;
  margin-bottom: 18px;
}

.content-wrap h3 span {
  color: #0D7636;
  font-weight: 700;
}

.content-wrap p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 28px;
  text-align: justify;
  hyphens: auto;
}

/* BUTTON */
.explore-btn {
  background: #0D7636;
  color: #fff;
  padding: 14px 32px;
  border-radius: 0;
  font-size: 15px;
}

.explore-btn:hover {
  background: #0D7636;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .content-wrap {
    padding: 50px 30px;
  }

  .content-wrap h3 {
    font-size: 30px;
  }
}
/* SECTION */
.benefits-section {
  padding: 90px 0;
  background: #f7f7f5;
}

/* TITLE */
.benefits-title {
  font-size: 36px;
  font-weight: 600;
  color: #0D7636;
}

/* CARD */
.benefit-card {
  background: #ffffff;
  padding: 50px 45px;
  height: 100%;
}

/* ICON */
.benefit-icon {
  font-size: 36px;
  color: #0D7636;
  margin-bottom: 20px;
}

/* HEADING */
.benefit-heading {
  font-size: 20px;
  font-weight: 600;
  color: #666;
  margin-bottom: 16px;
}

/* TEXT */
.benefit-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .benefits-section {
    padding: 60px 0;
  }

  .benefits-title {
    font-size: 30px;
  }

  .benefit-card {
    padding: 35px 30px;
  }
}
/* SECTION */
.paper-specialty-v2 {
  padding: 100px 0;
  background: #ffffff;
}

/* HEADER */
.specialty-head-v2 h2 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #222;
  margin-bottom: 10px;
}

.specialty-head-v2 p {
  max-width: 720px;
  font-size: 17px;
  color: #666;
  line-height: 1.7;
}

/* FEATURE CARD */
.feature-card {
  padding: 36px 38px;
  border-left: 5px solid #0D7636;
  background: #f9faf9;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #0D7636;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* HOVER */
.feature-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .paper-specialty-v2 {
    padding: 70px 0;
  }

  .specialty-head-v2 h2 {
    font-size: 30px;
  }

  .feature-card {
    padding: 28px;
  }
}
.paper-application-section {
  padding: 90px 0;
  background: #fafafa;
}

/* SECTION TITLE */
.section-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
}

.section-title.green {
  color: #0D7636;
}

/* APPLICATION LIST */
.application-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.application-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 18px;
  color: #000;
  margin-bottom: 18px;
  line-height: 1.6;
}

.app-icon {
  font-size: 18px;
  color: #0D7636;
  flex-shrink: 0;
}

/* SIZES GRID */
.sizes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}

.size-badge {
  background: #ffffff;
  border: 2px solid #e6e6e6;
  padding: 16px 22px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-align: center;
  transition: all 0.3s ease;
}

.size-badge:hover {
  border-color: #0D7636;
  color: #0D7636;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .section-title {
    font-size: 30px;
  }

  .sizes-grid {
    grid-template-columns: 1fr;
  }

  .application-list li {
    font-size: 16px;
  }
}



/* CONTENT CARD */
.eco-vision-card {
  background: rgba(1, 1, 1, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 42px;
  border-radius: 14px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* ICON */
.eco-vision-icon {
  width: 48px;
  margin-bottom: 18px;
}

/* TITLE */
.eco-vision-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 18px;
}
.eco-vision-image img {
  width: 100%;
  border-radius: 12px;
}
.eco-vision-card {
  background: #0f2a1f;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* IMAGE */
.eco-vision-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* CONTENT */
.eco-vision-title {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.eco-vision-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .eco-vision-card {
    padding: 30px;
  }

  .eco-vision-title {
    font-size: 22px;
  }
}

/* TEXT */
.eco-vision-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .eco-vision-card {
    padding: 32px;
  }

  .eco-vision-title {
    font-size: 21px;
  }

  .eco-vision-section {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .eco-vision-card {
    padding: 26px;
  }

  .eco-vision-title {
    font-size: 19px;
  }

  .eco-vision-text {
    font-size: 14.5px;
  }
}
/* SECTION */
.product-feature-section {
  background: #ffffff;
}

/* IMAGE */
.product-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT WRAPPER */
.product-feature-content {
  padding: 70px 80px;
}

/* TITLE */
.product-feature-title {
  font-size: 34px;
  font-weight: 600;
  color: #0D7636;
  margin-bottom: 22px;
}

/* PARAGRAPH */
.product-feature-text {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
}

/* LIST */
.product-feature-list {
  padding-left: 18px;
  margin-top: 10px;
}

.product-feature-list li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
  position: relative;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .product-feature-content {
    padding: 40px 30px;
  }

  .product-feature-title {
    font-size: 26px;
  }
}
/* SECTION */
.auto-scroll-gallery {
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}

/* TRACK */
.gallery-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scrollGallery 25s linear infinite;
}

/* PAUSE ON HOVER */
.auto-scroll-gallery:hover .gallery-track {
  animation-play-state: paused;
}

/* ITEM */
.gallery-item {
  flex: 0 0 auto;
}

.gallery-item img {
  max-height: 180px;
  width: auto;
  display: block;
  filter: grayscale(0%);
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.gallery-item img:hover {
  transform: scale(1.06);
}

/* ANIMATION */
@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .gallery-item img {
    max-height: 130px;
  }

  .gallery-track {
    gap: 40px;
  }
}
/* SECTION */
.insight-section {
  padding: 90px 0;
  background: #ffffff;
}

/* HEADER */
.section-header {
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-title {
  font-weight: 600;
  margin-bottom: 16px;
  color: #0D7636;
}

.section-desc {
  font-size: 16.5px;
  color: #555;
  line-height: 1.7;
}

/* TEXT CARDS */
.insight-card {
  background: #f7f8f7;
  padding: 40px 35px;
  height: 100%;
  border-radius: 6px;
}

.insight-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* CAROUSEL */
.insight-carousel {
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.insight-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DOTS ONLY */
.carousel-indicators {
  margin-bottom: 10px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #aaa;
}

.carousel-indicators .active {
  background-color: #0D7636;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .section-title {
    font-size: 28px;
  }

  .insight-section {
    padding: 60px 0;
  }
}
/* BLOG SECTION */
.blog-listing-section {
  padding: 90px 0;
  background: #fff;
}

/* HEADER */
.blog-header {
  max-width: 720px;
  margin-bottom: 60px;
}

.blog-header h2 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 10px;
}

.blog-header h2 span {
  color: #0066b3;
  font-weight: 600;
}

.blog-header p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

/* BLOG CARD */
.blog-card {
  border: 1px solid #ededed;
  padding: 40px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  background: #fff;
}

.blog-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: transparent;
  transform: translateY(-4px);
}

/* DATE */
.blog-date {
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
}

/* TITLE */
.blog-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  margin-bottom: 16px;
}

/* SOURCE / META */
.blog-source {
  font-size: 14px;
  color: #777;
}

/* CTA */
.blog-btn {
  margin-top: 40px;
  font-size: 15px;
  font-weight: 600;
  color: #0066b3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-btn:hover {
  text-decoration: underline;
}

/* GRID SPACING */
.blog-listing-section .row > div {
  margin-bottom: 32px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-header h2 {
    font-size: 32px;
  }

  .blog-card {
    padding: 30px 24px;
  }
}
.pagination-wrap {
  margin-top: 60px;
  text-align: center;
}

#pagination {
  list-style: none;
  display: inline-flex;
  gap: 10px;
  padding: 0;
}

#pagination li {
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}

#pagination li.active,
#pagination li:hover {
  background: #0066b3;
  color: #fff;
  border-color: #0066b3;
}
/* SECTION */
.news-section {
  padding: 80px 0;
  background: #ffffff;
}

/* HEADER */
.news-header {
  max-width: 700px;
  margin-bottom: 50px;
}

.news-header h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
}

.news-header h2 span {
  color: #0D7636;
}

.news-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.news-grid {
  row-gap: 40px;
}

/* CARD */
.news-card {
  height: 100%;
  border: 1px solid #eee;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
  background: #fff;
}

.news-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* CARD BODY */
.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-date {
  font-size: 14px;
  color: #999;
}

.news-title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: #111;
}

.news-source {
  font-size: 14px;
  color: #888;
}

/* LINK */
.news-link {
  margin-top: 40px;
  font-weight: 600;
  color: #0D7636;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-link span {
  transition: transform 0.3s ease;
}

.news-link:hover span {
  transform: translateX(5px);
}

/* PAGINATION */
.pagination-wrap {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

#pagination {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
}

#pagination li {
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
}

#pagination li.active {
  background: #0D7636;
  color: #fff;
  border-color: #0D7636;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .news-header h2 {
    font-size: 32px;
  }

  .news-card {
    padding: 28px 22px;
  }
}











.blog-detail-page {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.blog-detail-header h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0D7636;
}

.blog-meta {
  color: #777;
  font-size: 14px;
}

.blog-feature-image {
  margin: 40px 0;
}

.blog-feature-image img {
  width: 100%;
  border-radius: 6px;
}

.blog-content {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.blog-content h2 {
  margin-top: 30px;
   margin-bottom: 30px;
  font-size: 32px;
  font-weight: 600;
}

.blog-content h3 {
  margin-top: 30px;
   margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.blog-content h4 {
  margin-top: 30px;
   margin-bottom: 30px;
  font-size: 20px;
  font-weight: 600;
}

.blog-content h5 {
  margin-top: 30px;
   margin-bottom: 30px;
  font-size: 16px;
  font-weight: 600;
}

.blog-content ul {
  padding-left: 20px;
  margin: 20px 0;
}

.blog-content ul li {
  margin-bottom: 10px;
}

.blog-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.blog-table th,
.blog-table td {
  border: 1px solid #ddd;
  padding: 14px;
  text-align: left;
}

.blog-table th {
  background: #f7f7f7;
  font-weight: 600;
}

.faq-block p {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .blog-detail-header h1 {
    font-size: 30px;
  }
}
