/* ===============================
   GLOBAL BIO POLYMERS – ENHANCED STYLE
   =============================== */

/* ---------- COLOR SYSTEM ---------- */
:root {
  --primary: #1c499a;
  --secondary: #005f2e;
  --accent: #8dbe23;
  --light-green: #e8f5e9;
  --light-blue: #e8f0fe;
  --text-dark: #1c1c1c;
  --text-gray: #444;
  --text-light: #666;
  --bg-light: #f9f9f9;
  --border-color: #e0e0e0;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* ---------- GLOBAL RESET & TYPOGRAPHY ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0d3a8a);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0d3a8a, var(--primary));
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
}

/* ---------- HEADER / NAVBAR ---------- */
.header {
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 65px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--secondary);
  display: none;
}

@media (min-width: 992px) {
  .logo-text {
    display: block;
  }
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-button {
  padding: 12px 24px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- HERO SECTION ---------- */
/* .hero {
  padding: 80px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-green);
  color: var(--secondary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.highlight {
  color: var(--primary);
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(141, 190, 35, 0.3);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light-blue);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.feature i {
  color: var(--accent);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item i {
  font-size: 1.8rem;
  color: var(--primary);
}

.trust-item h4 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.floating-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  background: white;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  animation: float 3s ease-in-out infinite;
}

.floating-badge i {
  color: var(--accent);
  font-size: 1.2rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
} */

/* Add to css/style.css - Hero Banner with Background Image Enhancement */

/* ================= BANNER HERO SECTION - MATCHING IMAGE DESIGN ================= */
/* ================= SIMPLE CLEAN BANNER - MATCHING IMAGE DESIGN ================= */
/* ================= TRANSPARENT HERO - WITH BULLET POINTS ================= */

.transparent-hero {
  position: relative;
  padding: 80px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Your background image */
.transparent-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url('../images/hero_multiple_2.png');
  background-size: cover;
  background-position: center;
}

/* Container - Proper Width */
.transparent-layout {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Text Container */
.transparent-text {
  max-width: 700px;
  margin: 0;
  text-align: left;
}

/* Main Heading - 2 Lines Only */
.transparent-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Poppins', sans-serif;
}

/* Certified Badge */
.transparent-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.transparent-badge i {
  font-size: 1.1rem;
  color: #8dbe23;
}

.transparent-badge span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

/* Bullet Points Features - Grid Layout for Better Look */
.transparent-features-bullet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 25px;
  margin-top: 10px;
}

/* Individual Bullet Feature */
.bullet-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.bullet-feature:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(5px);
  border-color: #8dbe23;
}

.bullet-feature i {
  font-size: 1.1rem;
  color: #8dbe23;
  width: 22px;
}

.bullet-feature span {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .transparent-heading {
    font-size: 2.8rem;
  }
  
  .transparent-features-bullet {
    gap: 10px 20px;
  }
  
  .bullet-feature {
    padding: 8px 15px;
  }
}
.line-2 {
  display: block;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .transparent-layout {
    padding: 0 20px;
  }
  
  .transparent-text {
    max-width: 100%;
    text-align: center;
  }
  
  .transparent-heading {
    font-size: 2.2rem;
  }
  
  .transparent-badge {
    margin: 0 auto 25px;
  }
  
  /* Stack bullet points in 1 column on mobile */
  .transparent-features-bullet {
  grid-template-columns: 1fr;
  max-width: 900px;   /* increase this */
  margin: 0 auto;     /* center it */
}
  
  .bullet-feature {
    width: 100%;
    justify-content: center;
    font-size: large;
  }
  
  .bullet-feature:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 576px) {
  .transparent-heading {
    font-size: 1.8rem;
  }
  
  .transparent-hero {
    padding: 60px 0;
    min-height: auto;
  }
  
  .bullet-feature {
    padding: 8px 12px;
  }
  
  .bullet-feature i {
    font-size: 1rem;
    width: 20px;
  }
  
  .bullet-feature span {
    font-size: 1.05rem;
  }
}
.simple-hero {
  background: linear-gradient(135deg, #f5f9f0 0%, #e8f0e0 100%);
  padding: 80px 0;
  min-height: 550px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Optional: Add a subtle pattern */
.simple-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%238dbe23" fill-opacity="0.03" d="M20,20 L30,15 L40,20 L35,30 L40,40 L30,35 L20,40 L25,30 Z"/></svg>');
  background-size: 50px 50px;
  pointer-events: none;
}

.simple-layout {
  max-width: 900px;
  margin: 0 auto;
}

.simple-text {
  text-align: left;
  max-width: 700px;
}

/* Main Heading - Exactly like the image */
.simple-heading {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a3a1f;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  font-family: 'Poppins', sans-serif;
}

/* Certified Badge - Clean and simple */
.certified-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  margin-bottom: 35px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e8d8;
}

.certified-badge i {
  font-size: 1.2rem;
  color: #ffb347;
}

.certified-badge span {
  font-size: 1rem;
  font-weight: 600;
  color: #2e7d32;
  letter-spacing: 0.5px;
}

/* Features List - Clean checkmarks */
.simple-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.simple-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

.simple-feature i {
  font-size: 1.3rem;
  color: #2e7d32;
  width: 28px;
}

.simple-feature span {
  color: #2c4b32;
  font-weight: 500;
  font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .simple-heading {
    font-size: 3rem;
  }
  
  .simple-hero {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .simple-heading {
    font-size: 2.2rem;
  }
  
  .certified-badge {
    padding: 10px 20px;
  }
  
  .certified-badge span {
    font-size: 0.9rem;
  }
  
  .simple-feature {
    font-size: 1rem;
  }
  
  .simple-feature i {
    font-size: 1.1rem;
    width: 24px;
  }
  
  .simple-feature span {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .simple-heading {
    font-size: 1.8rem;
  }
  
  .simple-hero {
    padding: 50px 0;
    min-height: auto;
  }
  
  .simple-features {
    gap: 12px;
  }
}
/* Banner Hero with Background Image */
.banner-hero {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.6)), url('../images/hero_multiple.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  min-height: 650px;
  display: flex;
  align-items: center;
}

/* Override text colors for dark background */
.banner-hero .hero-text h1 {
  color: white;
}

.banner-hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  border-left-color: #8dbe23;
}

.highlight-green {
  color: #8dbe23;
}

.eco-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.eco-badge i {
  color: #8dbe23;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-tag i {
  color: #8dbe23;
}

.stat-item i {
  background: rgba(255, 255, 255, 0.15);
  color: #8dbe23;
}

.stat-item h4 {
  color: white;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
}

.stats-badges {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-process {
  border-color: #8dbe23;
  color: #8dbe23;
}

.btn-outline-process:hover {
  background: #8dbe23;
  color: white;
}
/* ---------- FEATURES SECTION ---------- */
.features-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--light-green), #d4edda);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--secondary);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- PRODUCTS SECTION ---------- */
.product-preview {
  padding: 80px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

/* .product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease; */
/* } */
.product-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card h4 {
  padding: 20px 20px 10px;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.product-desc {
  padding: 0 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.product-specs {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 20px;
  font-size: 0.85rem;
  color: var(--primary);
}

.product-specs i {
  margin-right: 5px;
}

.product-card .btn-outline {
  display: block;
  margin: 0 20px 20px;
  text-align: center;
}

.view-all {
  text-align: center;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), #0d3a8a);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-section .btn-primary {
  background: white;
  color: var(--primary);
}

.cta-section .btn-outline {
  border-color: white;
  color: white;
}

.cta-section .btn-outline:hover {
  background: white;
  color: var(--primary);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--secondary);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
}

.footer-logo {
  height: 75px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
}


.footer-about {
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col li a {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
  transition: var(--transition);
}

.footer-col li a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateX(5px);
}

.footer-col li a i {
  font-size: 0.8rem;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 5px;
}

.contact-item p {
  opacity: 0.9;
  line-height: 1.5;
}

.contact-item strong {
  color: white;
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom i {
  color: #ff6b6b;
  margin: 0 5px;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary);
  transform: translateY(-5px);
}

/* ---------- CONTACT PAGE ---------- */
.contact-hero {
  background: linear-gradient(rgba(0, 95, 46, 0.9), rgba(0, 95, 46, 0.8)), url('../images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.info-icon i {
  font-size: 1.5rem;
  color: var(--secondary);
}

.info-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.info-card p {
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 15px;
}

.call-btn, .email-btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent);
  color: white;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.call-btn:hover, .email-btn:hover {
  background: var(--primary);
}

.map-container {
  margin-top: 40px;
}

.map-container h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.map-placeholder {
  background: var(--light-blue);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  border: 2px dashed var(--border-color);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.map-placeholder p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ---------- CONTACT FORM ---------- */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.contact-form > p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(141, 190, 35, 0.2);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox input {
  width: auto;
  margin-top: 5px;
}

.form-note {
  margin-top: 20px;
  padding: 15px;
  background: var(--light-green);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--secondary);
}

.form-note i {
  margin-right: 8px;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--secondary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light-green);
}

.faq-question h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.faq-question i {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 20px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 1200px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .features {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .trust-badges {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-primary, .btn-outline {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .trust-badges {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .contact-form {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .floating-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 20px;
    justify-content: center;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}
/* ================= PAGE HERO (Common for all pages) ================= */
.page-hero {
  background: linear-gradient(rgba(0, 95, 46, 0.9), rgba(0, 95, 46, 0.8)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* ================= PRODUCTS PAGE SPECIFIC ================= */
.products-hero {
  background: linear-gradient(rgba(0, 95, 46, 0.9), rgba(0, 95, 46, 0.8));
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.category-tab {
  padding: 12px 24px;
  background: var(--light-blue);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.category-tab.active,
.category-tab:hover {
  background: var(--primary);
  color: white;
}

.product-card-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 30px;
}

@media (min-width: 992px) {
  .product-card-large {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
}

.product-image-large {
  width: 80%;
  height: 70%;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.product-image-large img {
  width: 10%;
  height: 10%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card-large:hover .product-image-large img {
  transform: scale(1.05);
}

.product-details-large {
  padding: 20px;
}

.product-description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

.product-specifications {
  margin-bottom: 30px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--light-blue);
  border-radius: 8px;
}

.spec-item i {
  font-size: 1.5rem;
  color: var(--primary);
}

.spec-item h5 {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.spec-item p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.product-features ul {
  list-style: none;
  margin-top: 15px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.product-features i {
  color: var(--accent);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.products-grid-small {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-price {
  margin: 15px 0;
  font-size: 0.95rem;
}

.product-price strong {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Comparison Table */
.comparison-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.comparison-table {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th {
  background: var(--primary);
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover {
  background: var(--light-blue);
}

.comparison-table .good {
  color: var(--secondary);
  font-weight: 600;
}

.comparison-table .bad {
  color: #dc3545;
  font-weight: 600;
}

/* ================= PRINTING PAGE SPECIFIC ================= */
.printing-hero {
  background: linear-gradient(rgba(0, 95, 46, 0.9), rgba(0, 95, 46, 0.8));
}

.printing-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

@media (min-width: 992px) {
  .printing-content {
    grid-template-columns: 1fr 1fr;
  }
}

.printing-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.highlight-item {
  text-align: center;
  padding: 20px;
  background: var(--light-green);
  border-radius: 10px;
}

.highlight-item i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

/* Process Steps */
.process-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon i {
  font-size: 1.8rem;
  color: var(--secondary);
}

/* Printing Options */
.printing-options {
  padding: 80px 0;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.option-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.option-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.option-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--light-blue), #d4edda);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.option-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.option-features {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}

.option-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.option-features i {
  color: var(--accent);
}

.option-price {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

/* Printing Specs */
.specs-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.specs-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.specs-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--primary);
}

/* Portfolio */
.portfolio-section {
  padding: 80px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.portfolio-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.portfolio-image {
  height: 200px;
  overflow: hidden;
}

.portfolio-image img {
  width: 45%;
  /* height: 100%; */
  object-fit: cover;
  transition: transform 0.5s ease;

}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 20px;
}

.printing-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent), #0d3a8a);
  color: white;
  text-align: center;
}

/* ================= ABOUT PAGE SPECIFIC ================= */
.about-hero {
  background: linear-gradient(rgba(0, 95, 46, 0.9), rgba(0, 95, 46, 0.8));
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  padding: 80px 0;
}

@media (min-width: 992px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.mv-card {
  background: var(--light-green);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.mv-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.mv-icon i {
  font-size: 1.5rem;
  color: var(--secondary);
}

/* Facility Section */
.facility-section {
  padding: 80px 0;
}

.facility-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .facility-content {
    grid-template-columns: 1fr 1fr;
  }
}

.facility-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.facility-image img {
  width: 100%;
  height: auto;
  display: block;
}

.facility-features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 5px;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-icon i {
  font-size: 1.8rem;
  color: var(--secondary);
}

/* Clients Section */
.clients-section {
  padding: 80px 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.client-category {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.client-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.client-category h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--primary);
}

.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.client-logo-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
}

.client-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.client-logo-img {
  max-height: 64px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}

.client-logo-fallback {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: var(--light-blue);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.client-logo-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--secondary);
}

.client-logo-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.client-link {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  padding: 10px 12px;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), #0d3a8a);
  color: white;
  text-align: center;
}
/* ================= MAIN PRODUCT DISPLAY ================= */
.main-product-section {
  padding: 60px 0;
}

.main-product-container {
  position: relative;
}

.product-display {
  display: none;
  grid-template-columns: 1fr;
  gap: 40px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 30px;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-display.active {
  display: grid;
}

@media (min-width: 992px) {
  .product-display {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
}

.product-image-large {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  min-height: 400px;
}

.product-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-display:hover .product-image-large img {
  transform: scale(1.05);
}

.product-details-large {
  padding: 20px;
}

.product-description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.product-specifications {
  margin-bottom: 30px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--light-blue);
  border-radius: 8px;
  transition: var(--transition);
}

.spec-item:hover {
  background: var(--light-green);
  transform: translateY(-3px);
}

.spec-item i {
  font-size: 1.5rem;
  color: var(--primary);
}

.spec-item h5 {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.spec-item p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.product-features ul {
  list-style: none;
  margin-top: 15px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.product-features i {
  color: var(--accent);
  font-size: 1rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

/* ================= OTHER PRODUCTS GRID ================= */
.other-products-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.other-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.other-product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.other-product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.other-product-card.active {
  border: 2px solid var(--accent);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(141, 190, 35, 0.2);
}

.other-product-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.other-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.other-product-card:hover .other-product-image img {
  transform: scale(1.05);
}

.product-status {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(141, 190, 35, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(141, 190, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(141, 190, 35, 0); }
}

.other-product-content {
  padding: 20px;
}

.other-product-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.other-product-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
  height: 60px;
  overflow: hidden;
}

.other-product-specs {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.other-product-specs i {
  margin-right: 5px;
}

.other-product-card .btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 0.9rem;
}

.other-product-card .btn-outline.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  cursor: default;
}

.other-product-card .btn-outline.active:hover {
  background: var(--accent);
  color: white;
  transform: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-display {
    padding: 20px;
  }
  
  .product-image-large {
    min-height: 300px;
  }
  
  .spec-grid {
    grid-template-columns: 1fr;
  }
  
  .other-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 576px) {
  .other-products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .product-actions .btn-primary,
  .product-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}