/* ==================== GLOBAL STYLES ==================== */

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #222;
}

/* ==================== FADE-UP ANIMATIONS ==================== */

/* Base fade-up class - applies to all animated elements */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Active state when element enters viewport */
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for multiple elements */
.fade-up:nth-child(1) { transition-delay: 0.1s; }
.fade-up:nth-child(2) { transition-delay: 0.2s; }
.fade-up:nth-child(3) { transition-delay: 0.3s; }
.fade-up:nth-child(4) { transition-delay: 0.4s; }
.fade-up:nth-child(5) { transition-delay: 0.5s; }

/* ==================== NAVIGATION BAR ==================== */

.navbar {
  font-family: 'poppins';
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* Navbar when scrolled */
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 10px 40px;
}

/* Logo Styles */
.logo img {
  width: 160px;
  height: 80px;
}

/* Navigation Links */
.nav-links a {
  margin: 0 12px;
  color: #F4F4F4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar.scrolled .nav-links a {
  color: #333;
}

.nav-links a:hover {
  color: #78c91a;
}

/* Primary Button in Nav */
.btn {
  background: #78c91a;
  color: #fff !important;
  padding: 8px 10px;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  background: #5a9e15;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.drop-btn {
  margin: 0 12px;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.navbar.scrolled .drop-btn {
  color: #333 !important;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  min-width: 180px;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333!important;
  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #78c91a !important;
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

.navbar.scrolled .mobile-toggle {
  color: #333;
}

/* ==================== MOBILE NAVIGATION ==================== */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    right: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: #333;
    margin: 10px 0;
  }

  .mobile-toggle {
    display: block;
  }
}

/* ==================== HOME PAGE - HERO SECTION ==================== */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

/* Individual Slides */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/* Dark overlay on slides */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.slide.active {
  opacity: 1;
}

/* Hero Content Container */
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 700px;
  opacity: 0;
  transition: 0.9s ease-out;
  z-index: 2;
}

.hero-content.fade-up-active {
  opacity: 1;
}

/* Hero Label Badge */
.hero-label {
  display: inline-block;
  background: rgba(120, 201, 26, 0.9);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Hero Heading */
.hero-content h1 {
  font-size: 64px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 20px;
  color: #fff;
  margin-bottom: 35px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Hero Buttons Container */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero Button Styles */
.btn-hero-primary,
.btn-hero-secondary {
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-hero-primary {
  background: #78c91a;
  color: #fff;
  box-shadow: 0 5px 20px rgba(120, 201, 26, 0.4);
}

.btn-hero-primary:hover {
  background: #5a9e15;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(120, 201, 26, 0.5);
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-hero-secondary:hover {
  background: #fff;
  color: #78c91a;
  transform: translateY(-3px);
}

/* Slider Navigation Dots */
.slider-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.4);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #78c91a;
  border-color: #78c91a;
  width: 40px;
  border-radius: 10px;
}

/* ==================== TRUST BADGES SECTION ==================== */

.trust-badges {
  padding: 60px 8%;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.badges-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Individual Badge Item */
.badge-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #f9f9f9;
  border-radius: 15px;
  transition: 0.3s;
}

.badge-item:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* Badge Icon */
.badge-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #78c91a 0%, #5a9e15 100%);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

/* Badge Text Content */
.badge-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.badge-content p {
  font-size: 14px;
  color: #666;
}

/* ==================== USE CASES SECTION ==================== */

.use-case-section-new {
  padding: 80px 8%;
  background: #f9f9f9;
}

/* Section Header */
.use-case-header {
  text-align: center;
  margin-bottom: 50px;
}

/* Section Label (appears above headings) */
.section-label {
  display: inline-block;
  color: #78c91a;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.use-case-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
}

/* Use Case Slider Container */
.use-case-slider {
  display: flex;
  gap: 25px;
  overflow: hidden;
  padding: 10px 0 30px;
}

/* Individual Use Case Card */
.use-case-card {
  min-width: 280px;
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-color: #78c91a;
}

.use-case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.use-case-card p {
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  text-align: center;
  background: #fff;
}

/* ==================== FEATURED PRODUCTS SECTION ==================== */

.featured-products {
  padding: 80px 8%;
  background: #fff;
}

/* Section Header */
.featured-header {
  text-align: center;
  margin-bottom: 60px;
}

.featured-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin: 10px 0 15px;
}

.featured-header p {
  font-size: 17px;
  color: #666;
}

/* Products Grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto 50px;
}

/* Individual Product Card */
.featured-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  position: relative;
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Product Badge (Best Seller, New, etc.) */
.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

.product-badge.bestseller {
  background: #78c91a;
  color: #fff;
}

.product-badge.new {
  background: #ff6b6b;
  color: #fff;
}

/* Product Image Container */
.product-img {
  height: 300px;
  background: url("images/texture-bg.jpg");
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.featured-card:hover .product-img img {
  transform: scale(1.1);
}

/* Product Information */
.product-details {
  padding: 30px;
}

.product-category {
  color: #78c91a;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-details h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 15px;
  color: #222;
}

/* Product Specifications */
.product-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.product-specs span {
  background: #f9f9f9;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

/* Product Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-rating .stars {
  color: #ffc107;
  font-size: 16px;
}

.rating-count {
  font-size: 14px;
  color: #999;
}

/* Product Footer (Price + Button) */
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  color: #78c91a;
}

.btn-add-cart {
  background: #78c91a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.btn-add-cart:hover {
  background: #5a9e15;
  transform: translateY(-2px);
}

/* View All Products Button */
.view-all-products {
  text-align: center;
}

.btn-view-all {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: #78c91a;
  border: 2px solid #78c91a;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-view-all:hover {
  background: #78c91a;
  color: #fff;
}
/* ==================== COPPER WINDING BADGE - NEW POSITION ==================== */

/* Copper Badge - Top Left Position (Like Image) */
.product-copper-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100px;
  height: 100px;
  z-index: 3;
  transition: 0.3s;
}

.product-card:hover .product-copper-badge,
.featured-card:hover .product-copper-badge {
  transform: scale(1.1);
}

.product-copper-badge img {
  width: 200%;
  height: 200%;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2));
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Status Badge - Top Right (Best Seller, etc.) */
.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #78c91a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(120, 201, 26, 0.4);
}

.badge.bestseller {
  background: #78c91a;
}

.badge.new {
  background: #ff6b6b;
}

.badge.eco {
  background: #28a745;
}

.badge.professional {
  background: #6f42c1;
}

.badge.engine {
  background: #fd7e14;
}

/* Copper Guarantee Badge on Product Detail Page */
.copper-guarantee-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: linear-gradient(135deg, #fff9e6 0%, #fff5cc 100%);
  border: 2px solid #d4a574;
  border-radius: 15px;
  margin: 20px 0;
  box-shadow: 0 5px 20px rgba(212, 165, 116, 0.2);
  transition: 0.3s;
}

.copper-guarantee-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.copper-guarantee-badge img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.15));
  animation: pulse 2s ease-in-out infinite;
}

.copper-guarantee-badge span {
  font-size: 16px;
  font-weight: 700;
  color: #b8860b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Featured Card Adjustments */
.featured-card .product-copper-badge {
  top: 20px;
  left: 20px;
  width: 70px;
  height: 70px;
}

.featured-card .badge {
  top: 20px;
  right: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .product-copper-badge {
    width: 50px;
    height: 50px;
    top: 12px;
    left: 12px;
  }

  .badge {
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    font-size: 11px;
  }

  .featured-card .product-copper-badge {
    width: 60px;
    height: 60px;
  }

  .copper-guarantee-badge {
    padding: 15px 20px;
    gap: 12px;
  }

  .copper-guarantee-badge img {
    width: 50px;
    height: 50px;
  }

  .copper-guarantee-badge span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .product-copper-badge {
    width: 45px;
    height: 45px;
    top: 10px;
    left: 10px;
  }

  .badge {
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    font-size: 10px;
  }

  .copper-guarantee-badge {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .copper-guarantee-badge span {
    font-size: 13px;
  }
}
/* ==================== WHY CHOOSE US SECTION ==================== */

.why-section {
  padding: 100px 8%;
  background: #f9f9f9;
}

/* Split Layout Container */
.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.why-text h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin: 10px 0 20px;
}

.why-text > p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Features List */
.why-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

/* Individual Feature Item */
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: #78c91a;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.feature-item p {
  font-size: 15px;
  color: #666;
}

.btn-learn-more {
  display: inline-block;
  padding: 15px 35px;
  background: #78c91a;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-learn-more:hover {
  background: #5a9e15;
  transform: translateY(-3px);
}

/* Why Section Image */
.why-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.why-image:hover img {
  transform: scale(1.05);
}

/* ==================== STATS COUNTER SECTION ==================== */

.stats-counter {
  padding: 80px 8%;
  background: linear-gradient(135deg, #78c91a 0%, #5a9e15 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Individual Stat Box */
.stat-box {
  text-align: center;
  color: #fff;
  padding: 40px 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.stat-box:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  font-weight: 400;
}

/* ==================== TESTIMONIALS HOME SECTION ==================== */

.testimonials-home {
  padding: 80px 8%;
  background: #fff;
}

/* Section Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin: 10px 0 15px;
}

.testimonials-header p {
  font-size: 17px;
  color: #666;
}

/* Testimonials Grid */
.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto 50px;
}

/* Individual Testimonial Card */
.testimonial-card {
  background: #f9f9f9;
  padding: 40px 35px;
  border-radius: 20px;
  transition: 0.3s;
  position: relative;
}

.testimonial-card:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

/* Quote Icon */
.quote-icon {
  font-size: 60px;
  color: #78c91a;
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 30px;
  font-weight: 700;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  position: relative;
}

/* Testimonial Footer */
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.customer-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #78c91a;
}

.customer-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.customer-info p {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.rating {
  color: #ffc107;
  font-size: 14px;
}

.view-all-reviews {
  text-align: center;
}

/* ==================== CTA BANNER SECTION ==================== */

.cta-banner {
  padding: 100px 8%;
  background: linear-gradient(135deg, #EADE00 0%, #c4b900 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 20px;
  color: #333;
  margin-bottom: 40px;
}

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  padding: 16px 45px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta-primary {
  background: #78c91a;
  color: #fff;
}

.btn-cta-primary:hover {
  background: #5a9e15;
  transform: translateY(-3px);
}

.btn-cta-secondary {
  background: transparent;
  color: #222;
  border: 2px solid #222;
}

.btn-cta-secondary:hover {
  background: #222;
  color: #fff;
}

/* ==================== FOOTER ==================== */

.footer {
  background: #111; 
  color: #fff;
  padding: 50px 10%;
  margin-top: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #78c91a;
}

.footer-col p,
.footer-col ul li a {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #78c91a;
}

/* Social Media Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;
}

.social-icon:hover {
  background: #78c91a;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #bbb;
  font-size: 14px;
}

.footer-bottom a {
  color: #78c91a;
  text-decoration: none;
}

/* ==================== RESPONSIVE - HOME PAGE ==================== */

/* Tablet Devices */
@media (max-width: 1024px) {
  .badges-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-grid,
  .testimonial-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .hero-content {
    left: 5%;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .badges-container,
  .featured-grid,
  .testimonial-wrapper,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .featured-header h2,
  .testimonials-header h2,
  .why-text h2,
  .cta-content h2 {
    font-size: 30px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Small Mobile Devices */
@media (max-width: 600px) {
  .trust-badges,
  .featured-products,
  .why-section,
  .stats-counter,
  .testimonials-home,
  .cta-banner {
    padding: 60px 20px;
  }

  .use-case-card {
    min-width: 220px;
  }

  .footer {
    padding: 40px 20px;
  }
}
/* ==================== PRODUCTS PAGE ==================== */

.products-hero {
  height: 40vh;
  background: linear-gradient(135deg, #78c91a 0%, #5a9e15 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.products-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.products-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.products-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.products-hero-content p {
  font-size: 18px;
}


/* Filter Section */
.filter-section {
  padding: 30px 20px;
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

.filter-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid #e5e5e5;
  background: #fff;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #78c91a;
  color: #fff;
  border-color: #78c91a;
}
.filter-btn {
  text-decoration: none;
  color: #222;
  display: inline-block;
}



/* Products Section */
.products-section {
  padding: 60px 8%;
  background: #f9f9f9;
}

.products-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 280px;
  background: url("images/texture-bg.jpg");
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #78c91a;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge.new {
  background: #ff6b6b;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
  line-height: 1.4;
}

.product-specs {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: #78c91a;
  margin-bottom: 15px;
}

.btn-view-details {
  width: 100%;
  padding: 12px;
  background: #78c91a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-view-details:hover {
  background: #5a9e15;
}


/* ==================== PRODUCT DETAIL PAGE STYLES ==================== */

/* Product Detail Section */
.product-detail-section {
  padding: 120px 8% 80px;
  background: #fff;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

.breadcrumb a {
  color: #78c91a;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #5a9e15;
}

/* Product Detail Container */
.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 80px;
}

/* Product Gallery */
.product-gallery {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.main-image {
  background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.main-image img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.thumbnail {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  padding: 15px;
  background: #f9f9f9;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}

.thumbnail:hover {
  border-color: #78c91a;
  background: #fff;
  transform: translateY(-3px);
}

.thumbnail.active {
  border-color: #78c91a;
  background: #fff;
}

/* Product Detail Info */
.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.product-model-badge {
  display: inline-block;
  background: linear-gradient(135deg, #78c91a 0%, #5a9e15 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
}

.product-detail-info h1 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

/* Rating Section */
.product-rating-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-rating-section .stars {
  color: #ffc107;
  font-size: 20px;
}

.rating-text {
  color: #666;
  font-size: 15px;
}

/* Price Section */
.product-price-section {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.current-price {
  font-size: 42px;
  font-weight: 700;
  color: #78c91a;
}

.moq-badge {
  background: #fff3cd;
  color: #856404;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
}

/* Key Specifications */
.key-specs h3,
.whats-included h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  transition: 0.3s;
}

.spec-item:hover {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.spec-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.spec-item > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.spec-label {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.spec-value {
  font-size: 16px;
  color: #222;
  font-weight: 600;
}

/* What's Included */
.whats-included ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.whats-included li {
  font-size: 15px;
  color: #555;
  padding: 10px 15px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: 0.3s;
}

.whats-included li:hover {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.btn-contact-dealer,
.btn-call-now {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  flex: 1;
  text-align: center;
}

.btn-contact-dealer {
  background: #78c91a;
  color: #fff;
  box-shadow: 0 5px 20px rgba(120, 201, 26, 0.4);
}

.btn-contact-dealer:hover {
  background: #5a9e15;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(120, 201, 26, 0.5);
}

.btn-call-now {
  background: transparent;
  color: #222;
  border: 2px solid #222;
}

.btn-call-now:hover {
  background: #222;
  color: #fff;
  transform: translateY(-3px);
}

/* Product Tabs */
.product-tabs {
  max-width: 1400px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  gap: 15px;
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 40px;
  overflow-x: auto;
}

.tab-btn {
  padding: 15px 30px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.tab-btn:hover {
  color: #78c91a;
}

.tab-btn.active {
  color: #78c91a;
  border-bottom-color: #78c91a;
}

.tab-content {
  position: relative;
  min-height: 300px;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel h3 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
}

.tab-panel p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Specifications Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.specs-table tr {
  border-bottom: 1px solid #e5e5e5;
}

.specs-table td {
  padding: 18px 20px;
  font-size: 15px;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #222;
  width: 40%;
}

.specs-table td:last-child {
  color: #555;
}

.specs-table tr:hover {
  background: #f9f9f9;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.feature-box {
  text-align: center;
  padding: 40px 30px;
  background: #f9f9f9;
  border-radius: 15px;
  transition: 0.3s;
}

.feature-box:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.feature-icon-large {
  font-size: 60px;
  display: block;
  margin-bottom: 20px;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Terms Content */
.terms-content {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-content ol {
  list-style: none;
  counter-reset: terms-counter;
}

.terms-content li {
  counter-increment: terms-counter;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.terms-content li::before {
  content: counter(terms-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #78c91a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.terms-content strong {
  color: #222;
  font-weight: 600;
}

/* ==================== ADDITIONAL STYLES FOR PRODUCTS PAGE ==================== */

.product-model {
  display: inline-block;
  color: #78c91a;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 15px 0;
}

.product-specs-grid span {
  background: #f9f9f9;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

.features-list {
  list-style: none;
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features-list li {
  font-size: 14px;
  color: #666;
  padding: 8px 12px;
  background: #f9f9f9;
  border-radius: 6px;
}

.badge.eco {
  background: #28a745;
}

.badge.professional {
  background: #6f42c1;
}

.badge.engine {
  background: #fd7e14;
}

/* ==================== RESPONSIVE - PRODUCT DETAIL PAGE ==================== */

/* Tablets */
@media (max-width: 1024px) {
  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .product-gallery {
    position: relative;
    top: 0;
  }

  .specs-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .product-detail-section {
    padding: 100px 5% 60px;
  }

  .product-detail-info h1 {
    font-size: 28px;
  }

  .current-price {
    font-size: 32px;
  }

  .main-image img {
    height: 350px;
  }

  .thumbnail-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .thumbnail {
    height: 80px;
    padding: 10px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .tab-buttons {
    gap: 10px;
  }

  .tab-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .whats-included ul {
    grid-template-columns: 1fr;
  }

  .product-specs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .product-detail-section {
    padding: 90px 20px 50px;
  }

  .main-image {
    padding: 25px;
  }

  .main-image img {
    height: 280px;
  }

  .specs-table td {
    padding: 12px 15px;
    font-size: 14px;
  }

  .features-grid {
    gap: 20px;
  }

  .feature-box {
    padding: 30px 20px;
  }

  .terms-content {
    padding: 25px 20px;
  }
}
/* ==================== CATEGORY PAGES STYLES ==================== */

/* Category Cards Section (on main products page) */
.category-section {
  padding: 80px 8%;
  background: #fff;
}

.section-heading {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
}

.category-card {
  background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 2px solid #e5e5e5;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #78c91a, #5a9e15);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: #78c91a;
}

.category-icon {
  font-size: 72px;
  margin-bottom: 25px;
  display: block;
}

.category-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.category-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-count {
  display: inline-block;
  background: #78c91a;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.view-category {
  display: block;
  color: #78c91a;
  font-weight: 600;
  font-size: 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.category-card:hover .view-category {
  transform: translateX(5px);
}

/* All Products Section */
.all-products-section {
  padding: 80px 8%;
  background: #f9f9f9;
}

/* Category Hero Section */
.category-hero {
  height: 400px;
  background: linear-gradient(135deg, rgba(120, 201, 26, 0.95) 0%, rgba(90, 158, 21, 0.95) 100%),
              url('images/heroimage.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  margin-top: 80px;
}

.commercial-hero {
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.95) 0%, rgba(85, 50, 150, 0.95) 100%),
              url('images/heroimage1.png');
  background-size: cover;
  background-position: center;
}

.spray-hero {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.95) 0%, rgba(30, 130, 55, 0.95) 100%),
              url('images/heroimage2.png');
  background-size: cover;
  background-position: center;
}

.category-hero-content {
  color: #fff;
}

.category-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.category-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.category-hero-content p {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.95;
}

/* Breadcrumb Wrapper */
.breadcrumb-wrapper {
  padding: 25px 8%;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

/* Category Info Section */
.category-info-section {
  padding: 60px 8%;
  background: #fff;
}

.category-info-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.category-info-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.category-info-content > p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Category Highlights */
.category-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 25px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  transition: 0.3s;
}

.highlight-item:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.highlight-icon {
  font-size: 40px;
}

.highlight-item span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  text-align: center;
}

/* Category Products Section */
.category-products-section {
  padding: 80px 8%;
  background: #f9f9f9;
}

/* Products Grid for Single Product */
.products-grid-single {
  max-width: 400px;
  margin: 0 auto;
}

.products-grid-single .product-card {
  max-width: 100%;
}

/* Category CTA Section */
.category-cta {
  padding: 80px 8%;
  background: linear-gradient(135deg, #78c91a 0%, #5a9e15 100%);
  text-align: center;
}

.category-cta .cta-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.category-cta .cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
}

/* Spray Use Cases Section */
.spray-use-cases {
  padding: 80px 8%;
  background: #fff;
  text-align: center;
}

.spray-use-cases h2 {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  margin-bottom: 50px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.use-case-box {
  padding: 40px 30px;
  background: #f9f9f9;
  border-radius: 15px;
  transition: 0.3s;
}

.use-case-box:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.use-case-icon {
  font-size: 60px;
  display: block;
  margin-bottom: 20px;
}

.use-case-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.use-case-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ==================== RESPONSIVE - CATEGORY PAGES ==================== */

/* Tablets */
@media (max-width: 1024px) {
  .category-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .category-hero {
    height: 320px;
    margin-top: 75px;
  }

  .category-hero-content h1 {
    font-size: 38px;
  }

  .category-hero-content p {
    font-size: 16px;
  }

  .category-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading {
    font-size: 30px;
  }

  .category-info-content h2 {
    font-size: 26px;
  }

  .category-highlights {
    grid-template-columns: 1fr;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-cta .cta-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .category-section,
  .all-products-section,
  .category-info-section,
  .category-products-section,
  .category-cta,
  .spray-use-cases {
    padding: 60px 20px;
  }

  .breadcrumb-wrapper {
    padding: 20px;
  }

  .category-hero {
    height: 280px;
    margin-top: 70px;
  }

  .category-hero-content h1 {
    font-size: 32px;
  }

  .category-card {
    padding: 40px 30px;
  }
}
/* ==================== ABOUT PAGE - NEW DESIGN ==================== */

/* Hero Section */
.about-hero-new {
  height: 60vh;
  background: url("images/aboutus.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(120,201,26,0.85), rgba(90,158,21,0.9));
}

.about-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.about-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
}

.about-hero-content p {
  font-size: 22px;
}


/* Company Story */
.company-story {
  padding: 100px 8%;
}

.story-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-label {
  color: #78c91a;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.story-content h2 {
  font-size: 38px;
  margin: 20px 0;
}

.story-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
}


/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #78c91a, #5a9e15);
  padding: 80px 8%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.stat-card {
  color: #fff;
  text-align: center;
}

.stat-number {
  font-size: 52px;
  font-weight: 700;
}


/* Mission & Vision */
.mission-vision {
  background: #f9f9f9;
  padding: 100px 8%;
}

.mv-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.mv-card {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mission-card {
  border-top: 5px solid #78c91a;
}

.vision-card {
  border-top: 5px solid #EADE00;
}

/* Why Choose Us */
.why-choose-us {
  padding: 100px 8%;
  background: #fff;
}

.why-container {
  max-width: 1400px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  background: #f9f9f9;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  border: 2px solid transparent;
}

.why-card:hover {
  background: #fff;
  border-color: #78c91a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.why-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* Our Values */
.our-values {
  padding: 100px 8%;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.values-container {
  max-width: 1400px;
  margin: 0 auto;
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.value-item {
  display: flex;
  gap: 30px;
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.value-item:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.value-number {
  font-size: 48px;
  font-weight: 700;
  color: #78c91a;
  opacity: 0.2;
  line-height: 1;
}

.value-item div {
  flex: 1;
}

.value-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.value-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* Team Section */
.team-section {
  padding: 100px 8%;
  background: #fff;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
  margin-bottom: 15px;
}

.team-header p {
  font-size: 17px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.founder-spotlight {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
  background: #f9f9f9;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.founder-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222;
}

.founder-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.founder-signature {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #e5e5e5;
}

.founder-signature p {
  font-size: 17px;
  color: #222;
  margin-bottom: 5px;
}

/* Certifications */
.certifications {
  padding: 100px 8%;
  background: #f9f9f9;
}

.cert-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cert-header {
  text-align: center;
  margin-bottom: 60px;
}

.cert-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.cert-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: 2px solid transparent;
}

.cert-card:hover {
  border-color: #78c91a;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cert-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.cert-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.cert-card p {
  font-size: 14px;
  color: #666;
}

/* About Contact Section */
.about-contact {
  padding: 100px 8%;
  background: #fff;
}

.about-contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info-box {
  background: #f9f9f9;
  padding: 50px 40px;
  border-radius: 20px;
  border-left: 5px solid #78c91a;
}

.contact-info-box h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 35px;
  color: #222;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 32px;
  min-width: 40px;
}

.contact-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.contact-item p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

.contact-map-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* About CTA */
.about-cta {
  padding: 100px 8%;
  background: linear-gradient(135deg, #78c91a 0%, #5a9e15 100%);
  text-align: center;
}

.about-cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.about-cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-cta-primary {
  background: #fff;
  color: #78c91a;
}

.btn-cta-primary:hover {
  background: #222;
  color: #fff;
  transform: translateY(-3px);
}

.btn-cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-cta-secondary:hover {
  background: #fff;
  color: #78c91a;
  transform: translateY(-3px);
}

/* ==================== RESPONSIVE - ABOUT PAGE ==================== */

@media (max-width: 1024px) {
  .story-container,
  .mv-container,
  .about-contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-spotlight {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .founder-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero-new h1 {
    font-size: 38px;
  }

  .about-hero-new p {
    font-size: 18px;
  }

  .story-content h2,
  .why-header h2,
  .values-header h2,
  .team-header h2,
  .cert-header h2 {
    font-size: 30px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 48px;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .company-story,
  .mission-vision,
  .why-choose-us,
  .our-values,
  .team-section,
  .certifications,
  .about-contact,
  .about-cta {
    padding: 60px 20px;
  }

  .mv-card,
  .contact-info-box {
    padding: 30px 25px;
  }

  .founder-spotlight {
    padding: 30px 20px;
  }

  .value-item {
    flex-direction: column;
    gap: 15px;
    padding: 30px 25px;
  }

  .value-number {
    font-size: 36px;
  }
}