/* ====================================================
   Electric Future India - Main Stylesheet (deduplicated)
   ====================================================
   Color palette: 
   #2E8B57 (primary green), #ffffff (white), #222 (dark), 
   #f4f4f4 (light bg), #FFD700 (accent yellow), #333 (text)
   Font: 'Poppins', sans-serif
   ==================================================== */

:root {
  --primary: #2E8B57;
  --primary-dark: #256944;
  --accent: #FFD700;
  --white: #fff;
  --black: #222;
  --gray: #f4f4f4;
  --text: #333;
  --shadow: 0 4px 24px rgba(46, 139, 87, 0.08);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--gray);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= HEADER ================= */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.logo img {
  height: 66px;
  width: auto;
  transition: transform var(--transition);
}

.logo img:hover {
  transform: scale(1.08) rotate(-3deg);
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: color var(--transition);
}

.nav a.active,
.nav a:hover {
  color: var(--accent);
}

.nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
  position: absolute;
  left: 0;
  bottom: -4px;
}

.nav a.active::after,
.nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: background var(--transition);
}

/* ================= HERO SECTION ================= */
.hero {
  min-height: 80vh;
  background: url('background.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Add a dark overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1); /* Adjust 0.4 for more/less darkness */
  z-index: 1;
}

/* Make sure your text is above the overlay */
.hero > * {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 600px;
  color: var(--white);
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.cta-button {
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(46, 139, 87, 0.12);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  animation: bounceIn 1.2s;
}

.cta-button:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px) scale(1.04);
}

.hero-image img {
  width: 650px;
  max-width: 120vw;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(46, 139, 87, 0.18);
  animation: fadeInRight 1.2s;
}

/* ================= SECTION PREVIEWS ================= */
.section {
  padding: 4rem 0 3rem 0;
  background: var(--white);
  margin-bottom: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: fadeInUp 1s;
}

.section-header h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.explore-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  margin-top: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px rgba(46, 139, 87, 0.10);
  display: inline-block;
  animation: bounceIn 1.2s;
}

.explore-btn:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
}

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

/* ================= ABOUT US ================= */
.about-hero {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 2rem 0;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: fadeInDown 1s;
}

.about-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.about-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-top: 1rem;
  line-height: 1.6;
}

/* Vision Mission Section */
.vision-mission {
  background: var(--white);
  padding: 4rem 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vm-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid #e9ecef;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(46, 139, 87, 0.15);
}

.vm-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.vm-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.vm-card p {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0;
}

.vm-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.vm-card ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.vm-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
  background: var(--gray);
  padding: 4rem 0;
}

/* ================= CONTACT PAGE ================= */
.contact-hero {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 2rem 0;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: fadeInDown 1s;
  margin-bottom: 2rem;
}

.contact-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-hero-content p {
  font-size: 1.2rem;
  margin-top: 1rem;
  opacity: 0.9;
}

.vision-mission {
  background: var(--gray);
  border-radius: var(--radius);
  margin: 2rem 0;
  padding: 2rem 0;
  animation: fadeInUp 1s;
}

.vm-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.vm-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  text-align: center;
  margin-bottom: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.vm-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(46, 139, 87, 0.18);
}

.vm-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.7rem;
}

.why-choose-us .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.why-choose-us .feature-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1rem;
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 260px;
  text-align: center;
  margin-bottom: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-choose-us .feature-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px rgba(46, 139, 87, 0.18);
}

/* ================= CONTACT PAGE ================= */
.contact-hero {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 2rem 0;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: fadeInDown 1s;
  margin-bottom: 2rem;
}

.contact-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-hero-content p {
  font-size: 1.2rem;
  margin-top: 1rem;
  opacity: 0.9;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ================= FEATURES HERO SECTION ================= */
.features-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 5rem 0 3rem 0;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.features-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.features-hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.features-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, #fff, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-hero p {
  font-size: 1.3rem;
  font-weight: 400;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* ================= ENHANCED FEATURES GRID ================= */
.features-section {
  padding: 4rem 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  justify-content: center;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(46, 139, 87, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 139, 87, 0.1);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 250px;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(46, 139, 87, 0.15);
  border-color: var(--accent);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 0;
}

/* ================= PRODUCTS GRID (SEPARATE) ================= */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 280px;
  max-width: 320px;
  min-width: 260px;
  margin-bottom: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 36px rgba(46, 139, 87, 0.18);
}

/* ================= PRODUCT CAROUSEL ================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  justify-content: center;
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.product-card-carousel {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(46, 139, 87, 0.1);
  overflow: hidden;
  animation: fadeInUp 1s;
  transition: transform var(--transition), box-shadow var(--transition);
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 600px;
}

.product-card-carousel:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(46, 139, 87, 0.15);
}

.product-carousel {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  image-rendering: high-quality;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.carousel-slide img:hover {
  transform: scale(1.05);
}

.slide-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(46, 139, 87, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active,
.dot:hover {
  background: var(--accent);
}

.product-info-detailed {
  padding: 1rem;
}

.product-info-detailed h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.product-tagline {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.product-description {
  margin-bottom: 1.2rem;
}

.product-description h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-description p {
  color: var(--text);
  line-height: 1.5;
  font-size: 0.9rem;
}

.product-features {
  margin-bottom: 1.2rem;
}

.product-features h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.product-features ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

.product-features li {
  display: flex;
  align-items: center;
  color: var(--text);
  font-size: 0.85rem;
  padding: 0.3rem 0;
}

.product-features li i {
  color: var(--accent);
  margin-right: 0.6rem;
  font-size: 0.9rem;
  width: 16px;
}

.product-specs-detailed {
  margin-bottom: 1.2rem;
}

.product-specs-detailed h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.spec-item {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 0.7rem;
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.spec-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-right: 0.7rem;
}

.spec-item div strong {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.1rem;
  font-size: 0.85rem;
}

.spec-item div span {
  color: var(--text);
  font-size: 0.8rem;
}

.product-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.contact-btn.primary {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.contact-btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.view-details-btn.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.view-details-btn.secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ================= ENHANCED FEATURE IMAGES ================= */
.feature-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 16px 16px 0 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.feature-image.contain img {
  object-fit: contain;
  padding: 1rem;
  background: #fff;
  image-rendering: auto;
  image-rendering: high-quality;
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
}

/* Product images use a fixed container with contain-fit */
.product-image {
  width: 100%;
  height: 250px;
  /* same height for all cards */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  /* or #f8f8f8 for light grey */
  border-radius: 8px;
  overflow: hidden;
}

.product-image img,
.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* image fits inside the box */
  display: block;
}

.product-card:hover img,
.feature-card:hover img {
  /* Removed blur filters for clearer images */
  transform: scale(1.04);
}

/* ================= ENHANCED OVERLAYS ================= */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 139, 87, 0.18);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.85) 0%, rgba(255, 215, 0, 0.85) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-overlay,
.feature-card:hover .feature-overlay {
  opacity: 1;
}

.feature-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.1) 100%);
}

/* ================= ENHANCED VIEW DETAILS BUTTON ================= */
.view-details-btn {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.view-details-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent), var(--primary));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.view-details-btn:hover {
  transform: scale(1.15) rotate(5deg);
  color: var(--white);
  border-color: transparent;
}

.view-details-btn:hover::before {
  opacity: 1;
}

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

.view-details-btn:hover i {
  transform: translateX(2px);
}

/* ================= ENHANCED FEATURE INFO ================= */
.product-info {
  padding: 1.2rem 1rem 1.5rem 1rem;
  text-align: left;
}

.feature-info {
  padding: 1.5rem 1.2rem 2rem 1.2rem;
  text-align: left;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-info h3 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-info h3 {
  color: var(--accent);
}

.feature-info p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.product-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-top: 0.7rem;
}

.feature-specs {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1rem;
}

.feature-specs span {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  color: var(--primary-dark);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(46, 139, 87, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.feature-specs span i {
  font-size: 0.8rem;
  opacity: 0.8;
}

.feature-card:hover .feature-specs span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* ========== PRODUCT & FEATURE MODALS ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 34, 34, 0.45);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(46, 139, 87, 0.18);
  padding: 2rem 2.5rem;
  max-width: 600px;
  width: 95vw;
  position: relative;
  animation: fadeInUp 0.6s;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  transition: color var(--transition);
}

.close:hover {
  color: var(--accent);
}

/* ========== CONTACT PAGE & GREEN RICKSHAW FORM ========== */
.contact-section {
  background: var(--gray);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 0;
  animation: fadeInUp 1s;
}

.contact-wrapper {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.rickshaw-container {
  flex: 1 1 420px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.green-rickshaw {
  background: linear-gradient(135deg, #2E8B57 80%, #FFD700 100%);
  border-radius: 32px 32px 24px 24px;
  box-shadow: 0 8px 32px rgba(46, 139, 87, 0.18);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  position: relative;
  min-width: 320px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: rickshawBounce 1.5s;
}

.rickshaw-body {
  width: 100%;
  height: 100%;
  position: relative;
}

.rickshaw-cabin {
  background: #fff;
  border-radius: 18px 18px 10px 10px;
  width: 90%;
  height: 60px;
  margin: 0 auto 12px auto;
  position: relative;
  box-shadow: 0 2px 8px rgba(46, 139, 87, 0.10);
}

.rickshaw-windshield {
  width: 60%;
  height: 18px;
  background: #e0f7e9;
  border-radius: 8px 8px 8px 8px;
  margin: 8px auto 0 auto;
}

.rickshaw-headlight {
  width: 18px;
  height: 18px;
  background: #FFD700;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  box-shadow: 0 0 8px #FFD70088;
}

.rickshaw-passenger-area {
  background: #e0f7e9;
  border-radius: 12px;
  padding: 1.2rem 0.8rem;
  margin: 0.5rem 0;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-container {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group label {
  font-size: 1rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border: 1.5px solid var(--accent);
  outline: none;
  box-shadow: 0 2px 8px rgba(46, 139, 87, 0.10);
}

.submit-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px rgba(46, 139, 87, 0.10);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  animation: bounceIn 1.2s;
}

.submit-btn:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
}

.rickshaw-wheel {
  width: 32px;
  height: 32px;
  background: #222;
  border-radius: 50%;
  position: absolute;
  bottom: -16px;
  box-shadow: 0 2px 8px #2224;
}

.front-wheel {
  left: 50%;
  transform: translateX(-50%);
}

.back-wheel-left {
  left: 18%;
}

.back-wheel-right {
  right: 18%;
}

/* Rickshaw animation for form submission */
.green-rickshaw.submitted {
  animation: rickshawDrive 1.2s forwards;
}

@keyframes rickshawDrive {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(120vw) rotate(6deg);
    opacity: 0;
  }
}

/* ========== SUCCESS MESSAGE ========== */
.success-message {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 34, 34, 0.45);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s;
}
/* Stats Section Styles */
.section.stats {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1 1 180px;
  min-width: 160px;
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin: 0.5rem 0;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.92;
}
@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    gap: 1.2rem;
  }
}
/* Style for social media icons in the footer */
.footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Universal style for "Follow Us" button in any footer */
.footer .follow-us-btn,
.footer-section .follow-us-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 0.6rem 1.4rem;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(46,139,87,0.10);
}

.footer .follow-us-btn:hover,
.footer-section .follow-us-btn:hover {
  background: #fff;
  color: var(--primary-dark);
}

.success-content {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(46, 139, 87, 0.18);
  padding: 2rem 2.5rem;
  max-width: 400px;
  width: 95vw;
  text-align: center;
  animation: fadeInUp 0.6s;
}

.success-content i {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.success-content button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.success-content button:hover {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.04);
}

/* ========== CONTACT INFO SIDEBAR ========== */
.contact-info-sidebar {
  flex: 1 1 260px;
  max-width: 320px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  margin-top: 1.5rem;
  animation: fadeInRight 1s;
}

.contact-info-card h3,
.social-links-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 0.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  color: var(--primary);
  font-size: 1.5rem;
  transition: color var(--transition), transform var(--transition);
}

.social-links a:hover {
  color: var(--accent);
  transform: scale(1.15);
}

/* ========== FOOTER ========== */
/* Style for Follow Us button in footer */
.follow-us-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 0.6rem 1.4rem;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.follow-us-btn:hover {
  background: #fff;
  color: var(--primary-dark);
}
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 2.5rem 0 1rem 0;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -2px 12px rgba(46, 139, 87, 0.10);
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-section {
  flex: 1 1 180px;
  min-width: 180px;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 118px;
  width: auto;
  
}

.footer-logo2 img {
  height: 28px;
  width: auto;
  margin-bottom: 1rem;
  
}


.footer-section h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.7rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-section ul li i {
  margin-right: 0.5rem;
  color: var(--accent);
}
/* Make footer quick links white */
.footer-section ul li a {
  color: #fff !important;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-section ul li a:hover {
  color: var(--accent);
}

/* Social Links Styling */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-links a:hover {
  background: var(--accent) !important;
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

.social-links a i {
  margin: 0;
}

.footer-bottom {
  text-align: center;
  color: var(--white);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  opacity: 0.85;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rickshawBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .container {
    width: 96%;
  }

  .footer-content {
    gap: 1.2rem;
  }
}

@media (max-width: 900px) {

  .products-grid,
  .features-grid {
    gap: 1.2rem;
  }

  .product-card,
  .feature-card {
    min-width: 220px;
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav ul {
    gap: 1rem;
  }

  .hero .container {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .about-hero,
  .section,
  .contact-section {
    padding: 2rem 0 1.5rem 0;
  }

  .products-grid,
  .features-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .rickshaw-container,
  .contact-info-sidebar {
    max-width: 100%;
  }
}

@media (max-width: 480px) {

  .logo img,
  .footer-logo img {
    height: 36px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .about-hero-content h1 {
    font-size: 1.3rem;
  }

  .section-header h2 {
    font-size: 1.2rem;
  }

  .modal-content,
  .success-content {
    padding: 1rem 0.5rem;
  }

  .footer {
    padding: 1.2rem 0 0.5rem 0;
  }
}

/* Dashboard: normalize product images when used directly inside .product-card */
.products-preview .product-card img {
  width: 100%;
  height: 250px;
  /* uniform height for all product cards */
  object-fit: contain;
  /* keep full image visible */
  display: block;
  background: #fff;
  /* white backing for transparent PNGs */
  border-radius: 8px;
  padding: 8px;
  /* breathing room inside the frame */
}

/* Smooth out hover without cropping for contain-fit images */
.products-preview .product-card:hover img {
  filter: brightness(0.98) contrast(1.05);
  transform: none;
  /* avoid zoom cropping within fixed box */
}

/* Tidy spacing for titles/descriptions under the image */
.products-preview .product-card h3 {
  margin-top: 0.75rem;
}

.products-preview .product-card p {
  margin-top: 0.25rem;
}

/* Keep feature cards as banner/cover style */
.features-preview .feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* ================= PRODUCT CAROUSEL STYLES ================= */
.products-section {
  padding: 3rem 0;
  background: var(--gray);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card-carousel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  max-width: 550px;
  margin: 0 auto;
}

.product-card-carousel:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(46,139,87,0.15);
}

.product-carousel {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
}

.slide-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(46,139,87,0.9);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background var(--transition);
}

.dot.active {
  background: var(--white);
}

.product-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
}

.view-details-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  opacity: 0.8;
}

.view-details-btn:hover {
  opacity: 1;
  transform: scale(1.1);
  background: var(--primary-dark);
}

.product-info-detailed {
  padding: 1.5rem;
}

.product-info-detailed h2 {
  margin: 0 0 0.5rem 0;
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 600;
}

.product-tagline {
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
}

.product-description h3 {
  color: var(--text);
  font-size: 1rem;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.product-description p {
  color: #666;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
}

.product-features {
  margin: 1rem 0;
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #666;
}

.product-features i {
  color: var(--primary);
  width: 14px;
}

.product-specs-detailed h3 {
  color: var(--text);
  font-size: 1rem;
  margin: 1.5rem 0 0.75rem 0;
  font-weight: 600;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--gray);
  border-radius: 6px;
}

.spec-item i {
  color: var(--primary);
  width: 14px;
}

.spec-item div {
  display: flex;
  flex-direction: column;
}

.spec-item strong {
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 600;
}

.spec-item span {
  font-size: 0.7rem;
  color: #666;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-btn, .view-details-btn.secondary {
  padding: 0.6rem 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  text-decoration: none;
}

.contact-btn.primary {
  background: var(--primary);
  color: var(--white);
}

.contact-btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.view-details-btn.secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.view-details-btn.secondary:hover {
  background: var(--primary);
  color: var(--white);
}

/* Product Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 2rem;
  border-radius: var(--radius);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: #666;
  transition: color var(--transition);
}

.close:hover {
  color: var(--primary);
}

.modal-product-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.modal h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.modal p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal h3 {
  color: var(--text);
  margin: 1.5rem 0 0.75rem 0;
  font-size: 1.1rem;
}

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

.modal li {
  padding: 0.25rem 0;
  color: #666;
  border-bottom: 1px solid #eee;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive adjustments for product carousel */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-card-carousel {
    max-width: 100%;
  }
  
  .product-carousel {
    height: 250px;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= COMPREHENSIVE RESPONSIVE DESIGN ================= */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .product-carousel {
    height: 320px;
  }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .product-card-carousel {
    max-width: 500px;
  }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .container {
    width: 95%;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .product-card-carousel {
    max-width: 100%;
  }
  
  .product-carousel {
    height: 280px;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile Large (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .container {
    width: 95%;
    padding: 0 1rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-carousel {
    height: 260px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav ul {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
  .container {
    width: 95%;
    padding: 0 0.5rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .product-card-carousel {
    max-width: 100%;
    margin: 0;
  }
  
  .product-carousel {
    height: 220px;
  }
  
  .product-info-detailed {
    padding: 1rem;
  }
  
  .product-info-detailed h2 {
    font-size: 1.2rem;
  }
  
  .product-specs {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .header {
    padding: 0.5rem 0;
  }
  
  .nav ul {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .nav a {
    font-size: 0.9rem;
  }
  
  .logo img {
    height: 40px;
  }
  
  .explore-btn, .contact-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 1rem;
  }
  
  .carousel-dots {
    bottom: 8px;
    right: 8px;
  }
  
  .dot {
    width: 6px;
    height: 6px;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .product-carousel {
    height: 200px;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .product-info-detailed h2 {
    font-size: 1.1rem;
  }
  
  .product-specs span {
    font-size: 0.8rem;
  }
  
  .section-header h2 {
    font-size: 1.3rem;
  }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .product-carousel {
    height: 180px;
  }
  
  .section {
    padding: 1.5rem 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .carousel-slide img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .header, .footer, .modal, .carousel-dots, .product-overlay {
    display: none !important;
  }
  
  .product-carousel {
    height: auto !important;
  }
  
  .carousel-slide {
    position: static !important;
    opacity: 1 !important;
  }
  
  .carousel-slide:not(:first-child) {
    display: none !important;
  }
}

/* ================= CLEANED UP CSS - DUPLICATES REMOVED ================= */

/* Fixed Responsive Navbar - Keep Horizontal */
@media (max-width: 575px) {
  .header .container {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
  }
  
  .nav ul {
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    width: 100%;
  }
  
  .nav a {
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Fixed Footer Responsive */
@media (max-width: 767px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-section h3 {
    margin-bottom: 0.75rem;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section li {
    margin-bottom: 0.5rem;
  }
  
  .social-links {
    justify-content: center;
    gap: 1rem;
  }
}

/* ================= END OF CLEANED CSS FILE ================= */

/* View Details Button Styles - Fixed Overflow Issues */
.view-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.view-details-btn.secondary {
  background: #fff;
  border-color: var(--primary);
  color: var(--primary);
}

.view-details-btn.secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Product Overlay View Details Button (Circular) */
.product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0.5rem;
  pointer-events: none;
  z-index: 10;
}

.product-overlay .view-details-btn {
  pointer-events: auto;
  background: rgba(46, 139, 87, 0.9);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  padding: 0;
  min-width: 40px;
  flex-shrink: 0;
}

.product-overlay .view-details-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* Contact Button Styles */
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-btn.primary {
  background: var(--primary);
  color: #fff;
}

.contact-btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Product Actions Container - Fixed Overflow */
.product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Product Info Styles for Home Page */
.product-info .product-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.product-info .product-description {
  margin: 1rem 0;
}

.product-info .product-description p {
  color: #555;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.product-info .product-specs {
  margin: 1rem 0;
}

.product-info .product-actions {
  margin-top: 1.5rem;
}

/* Responsive Button Adjustments */
@media (max-width: 576px) {
  .product-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .contact-btn,
  .view-details-btn {
    width: 100%;
    justify-content: center;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .product-overlay .view-details-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .product-info .product-description p {
    font-size: 0.8rem;
  }
}

/* ================= PRODUCTS PAGE RESPONSIVE DESIGN ================= */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
  }
  
  .product-card-carousel {
    max-width: 420px;
  }
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .product-card-carousel {
    max-width: 400px;
    min-height: 580px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .product-card-carousel {
    max-width: 100%;
    min-height: 550px;
  }
  
  .product-carousel {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .products-grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .product-card-carousel {
    min-height: 520px;
  }
  
  .product-carousel {
    height: 180px;
  }
}

@media (max-width: 375px) {
  .products-grid {
    padding: 0 0.25rem;
  }
  
  .product-card-carousel {
    min-height: 500px;
  }
  
  .product-carousel {
    height: 160px;
  }
}

/* ================= FEATURES PAGE RESPONSIVE DESIGN ================= */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    max-width: 1200px;
    padding: 1.5rem 1rem;
  }
  
  .feature-card {
    min-height: 360px;
  }
  
  .features-hero h1 {
    font-size: 2.8rem;
  }
  
  .features-hero p {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 0.8rem;
  }
  
  .feature-card {
    min-height: 340px;
  }
  
  .feature-image {
    height: 200px;
  }
  
  .features-hero {
    padding: 4rem 0 2.5rem 0;
  }
  
  .features-hero h1 {
    font-size: 2.4rem;
  }
  
  .features-hero p {
    font-size: 1.1rem;
  }
  
  .feature-info {
    padding: 1.2rem 1rem 1.5rem 1rem;
  }
  
  .feature-info h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0.5rem;
  }
  
  .feature-card {
    min-height: 320px;
  }
  
  .feature-image {
    height: 180px;
  }
  
  .features-hero {
    padding: 3rem 0 2rem 0;
    margin-bottom: 2rem;
  }
  
  .features-hero h1 {
    font-size: 2rem;
  }
  
  .features-hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .feature-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .feature-specs span {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
  
  .feature-overlay {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1rem 0.5rem;
  }
  
  .feature-card {
    min-height: 300px;
    max-width: 100%;
  }
  
  .feature-image {
    height: 160px;
  }
  
  .features-hero {
    padding: 2.5rem 0 1.5rem 0;
    margin-bottom: 1.5rem;
  }
  
  .features-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .features-hero p {
    font-size: 0.95rem;
    padding: 0 1.5rem;
  }
  
  .feature-info {
    padding: 1rem 0.8rem 1.2rem 0.8rem;
  }
  
  .feature-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-specs {
    gap: 0.5rem;
    padding-top: 0.8rem;
  }
  
  .feature-specs span {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
  
  .feature-overlay {
    height: 160px;
  }
  
  .view-details-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}

@media (max-width: 375px) {
  .features-grid {
    padding: 0.8rem 0.3rem;
    gap: 1rem;
  }
  
  .feature-card {
    min-height: 280px;
  }
  
  .feature-image {
    height: 140px;
  }
  
  .features-hero h1 {
    font-size: 1.6rem;
  }
  
  .features-hero p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  
  .feature-info {
    padding: 0.8rem 0.6rem 1rem 0.6rem;
  }
  
  .feature-info h3 {
    font-size: 0.95rem;
  }
  
  .feature-specs span {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
  
  .feature-overlay {
    height: 140px;
  }
  
  .view-details-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Landscape Mobile Orientation for Features */
@media (max-height: 500px) and (orientation: landscape) {
  .features-hero {
    padding: 1.5rem 0 1rem 0;
  }
  
  .features-hero h1 {
    font-size: 1.6rem;
  }
  
  .feature-image {
    height: 120px;
  }
  
  .feature-card {
    min-height: 240px;
  }
  
  .features-section {
    padding: 2rem 0;
  }
}

/* ================= PRODUCTS SECTION SPACING ================= */
.products-section {
  padding: 3rem 0;
}

.products-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.products-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.products-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .products-hero-content h1 {
    font-size: 2rem;
  }
  
  .products-hero-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .products-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .products-hero-content p {
    font-size: 1rem;
  }
  
  /* Responsive carousel images */
  .carousel-slide img {
    width: 240px;
    height: 150px;
  }
}

/* Additional responsive breakpoints for carousel images */
@media (max-width: 768px) {
  .carousel-slide img {
    width: 260px;
    height: 165px;
  }
}

@media (max-width: 375px) {
  .carousel-slide img {
    width: 220px;
    height: 140px;
  }
  .products-hero-content p {
    font-size: 1rem;
  }
}

/* ================= ACHIEVEMENTS SECTION ================= */
.achievements-section {
  background: var(--white);
  padding: 4rem 0;
  margin: 2rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.achievements-header {
  text-align: center;
  margin-bottom: 3rem;
}

.achievements-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.achievements-header p {
  font-size: 1.2rem;
  color: var(--text);
  opacity: 0.8;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.achievement-card {
  background: var(--gray);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}

.achievement-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 36px rgba(46, 139, 87, 0.18);
  border-color: var(--primary);
}

.achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.achievement-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.achievement-description {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
}
/* ================= RESPONSIVE-ONLY OVERRIDES (append via separate file) ================= */
/* Include this file AFTER your existing style.css to only affect responsive behavior */

/* Wider tablets: stack hero earlier, widen container a bit */
@media (max-width: 1200px) {
  .container {
    width: 96%;
  }
}

/* Tablets: stack hero and about blocks, ensure product grid fits */
@media (max-width: 992px) {
  /* Hero stacks vertically and centers content */
  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  .hero-image img {
    width: min(480px, 100%);
    max-width: 100%;
  }

  /* About preview stacks */
  .about-preview .about-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  /* Products grid goes to one column on tablet (prevents squished cards) */
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* Features grid uses 2 columns on tablet for balance */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  /* Footer uses two columns on tablet */
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

/* Mobile: tighter spacing, full-width buttons, centered footer */
@media (max-width: 768px) {
  /* Header nav wraps cleanly */
  .header .container {
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.6rem 0;
  }

  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .section {
    padding: 1.6rem 0 1.2rem;
  }

  /* Features grid 1 column on mobile */
  .features-grid {
    grid-template-columns: 1fr !important;
  }

  /* Product actions become vertical, full-width */
  .product-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-btn,
  .view-details-btn {
    width: 100%;
    justify-content: center;
  }

  /* Carousel images scale down to prevent overflow */
  .carousel-slide img {
    width: 80%;
    height: auto;
    max-height: 170px;
  }

  /* Footer single column + centered social */
  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 0.75rem;
  }

  .social-links {
    justify-content: center;
  }
}

/* Small mobile tweaks */
@media (max-width: 576px) {
  .container {
    width: 95%;
  }

  .logo img,
  .footer-logo img {
    height: 40px;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  /* Ensure product cards don't feel too tall but keep content readable */
  .product-card-carousel {
    min-height: 500px;
  }

  .product-carousel {
    height: 180px;
  }

  .carousel-dots {
    bottom: 8px;
    right: 8px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }
}

/* Very small phones: micro adjustments */
@media (max-width: 400px) {
  .nav a {
    font-size: 0.9rem;
  }

  .social-links a {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  .carousel-slide img {
    max-height: 140px;
  }
}

/* Landscape small-height: reduce vertical space usage */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 0.75rem 0;
    min-height: 50vh;
  }

  .product-carousel {
    height: 180px;
  }

  .section {
    padding: 1.25rem 0;
  }
}

/* --- Responsive fix for features images/cards on mobile --- */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem;
  }
  .feature-card {
    max-width: 95vw;
    margin: 0 auto;
  }
  .feature-image {
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    height: 180px;
  }
  .feature-image img {
    display: block;
    margin: 0 auto;
    max-width: 90vw;
    max-height: 160px;
    object-fit: contain;
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .feature-image {
    height: 120px;
  }
  .feature-image img {
    max-height: 100px;
    padding: 0.2rem;
  }
}

/* ================= CONTACT PAGE ENHANCED STYLES ================= */
.contact-info-section {
  background: #f4f4f4;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(46, 139, 87, 0.08);
  margin-bottom: 2.5rem;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 1.5rem 0;
}
.contact-info-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(46, 139, 87, 0.10);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1.5px solid #e0e0e0;
  position: relative;
}
.contact-info-card:hover {
  box-shadow: 0 8px 32px rgba(46, 139, 87, 0.18);
  transform: translateY(-6px) scale(1.03);
  border-color: #2E8B57;
}
.contact-icon {
  font-size: 2.2rem;
  color: #2E8B57;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e0f7e9 60%, #FFD700 100%);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(46, 139, 87, 0.10);
}
.contact-info-card h3 {
  color: #2E8B57;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-info-card p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.contact-link {
  display: inline-block;
  background: #2E8B57;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(46, 139, 87, 0.10);
}
.contact-link:hover {
  background: #FFD700;
  color: #2E8B57;
  transform: translateY(-2px) scale(1.04);
}
.closed-text {
  color: #d32f2f;
  font-weight: 500;
  font-size: 0.95rem;
}
/* Social Media Section */
.social-media-section {
  margin-top: 2.5rem;
  text-align: center;
}
.social-media-section h3 {
  color: #2E8B57;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.social-links-large {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: #2E8B57;
  border-radius: 30px;
  padding: 0.6rem 1.3rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(46, 139, 87, 0.10);
  border: 1.5px solid #e0e0e0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.social-link i {
  font-size: 1.3rem;
  color: #FFD700;
}
.social-link:hover {
  background: #2E8B57;
  color: #fff;
  box-shadow: 0 8px 24px rgba(46, 139, 87, 0.18);
  transform: translateY(-2px) scale(1.04);
}
.social-link:hover i {
  color: #fff;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .social-links-large {
    flex-direction: column;
    gap: 1rem;
  }
}

/* === Responsive fixes: homepage product/feature images === */
/* Ensure feature images are perfectly centered and never cropped */
.features-preview .feature-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-preview .feature-image img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  margin: 0 auto;
}

/* Normalize product carousel images on home to prevent awkward crop/stretch */
.products-preview .product-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  background: #fff;
  padding: 8px;
  box-sizing: border-box;
}

/* Hide overlay/button on small screens to avoid stray dot over images */
@media (max-width: 768px) {
  .features-preview .feature-overlay { display: none !important; }
  .features-preview .feature-image { height: 180px; }
}
@media (max-width: 480px) {
  .features-preview .feature-image { height: 140px; }
}






/* About Us Section Styling */
.about-preview {
    border: 3px solid #43a047; /* green border */
    border-radius: 15px; /* rounded corners */
    padding: 30px;
    background-color: #ffffff; /* white background for readability */
    max-width: 900px;
    margin: 40px auto; /* center the section */
    box-shadow: 0 4px 20px rgba(0, 128, 0, 0.1);
}

.section-header {
    text-align: center; /* center headings */
    margin-bottom: 20px;
}

.section-header h2 {
    color: #2e7d32; /* dark green */
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-header p {
    color: #555;
    font-size: 1.1rem;
}

/* About Us text */
.about-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

/* Centered Button */
.explore-btn {
    display: block;
    margin: 0 auto; /* center the button */
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    background: transparent; /* keep it clean */
    color: #2e7d32;
    border: 2px solid #43a047;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.explore-btn:hover {
    background: #43a047;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(67, 160, 71, 0.3);
}



/* Logo Animation - From Right to Left */
.logo img {
    position: relative;
    transform: translateX(150%); /* start far right */
    animation: driveIn 1.5s ease-out forwards;
}

@keyframes driveIn {
    0% {
        transform: translateX(150%) rotate(10deg); /* tilt opposite direction */
        opacity: 0;
    }
    70% {
        transform: translateX(-20px) rotate(-2deg); /* slight overshoot */
        opacity: 1;
    }
    100% {
        transform: translateX(0) rotate(0deg);
    }
}

