:root {
  --primary: #008000;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --gray: #666;
  --gold: #FFD700;
  --section-padding: 100px 0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
/* === Buttons === */
.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn:hover {
  background: #006400;
  transform: translateY(-2px);
}
/* === Header === */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(183, 199, 183, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.logo img {
  height: 40px;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover {
  color: var(--primary);
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav ul {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    transition: all 0.4s ease;
    z-index: 999;
  }
  nav ul.active {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
  nav a {
    display: block;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
  nav a:hover {
    color: var(--primary);
    background: #f1f8f1;
    border-radius: 6px;
  }
}
/* ✅ Hero Carousel + Right Icons */
.hero-carousel {
  position: relative;
  height: 100vh;
  margin-top: 70px;
  overflow: hidden;
}
.carousel-item img {
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.85);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.8) 100%),
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  pointer-events: none;
  z-index: 1;
}
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.hero-text-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
  color: white;
  text-align: center;
}
.hero-text-content h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-text-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}
.hero-buttons .btn {
  margin: 0 10px;
}
/* ✅ FIXED: Hero Side Icons — Perfect Vertical Alignment */
.hero-side-icons {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
  width: 200px; /* ✅ Fixed width for consistent alignment */
}
.hero-side-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* ✅ Changed from 'flex-end' to 'flex-start' */
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border-radius: 30px 0 0 30px;
  padding: 10px 16px 10px 12px;
  transition: all 0.3s;
  height: 60px;
  width: 100%; /* ✅ Full width within container */
  border-left: 2px solid rgba(255,255,255,0.2);
  box-sizing: border-box; /* ✅ Ensures padding doesn't break width */
}
.hero-side-icon:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.hero-side-icon img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 12px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.hero-side-icon span {
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px; /* ✅ Prevents long text from breaking layout */
}
.hero-side-icon:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.hero-side-icon img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.hero-side-icon span {
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* ✅ Unified Heading Style (All h2/h3 like "52 Years") */
.section-title h2,
.about-text h3,
.products .section-title h2,
.services .section-title h2,
.projects .section-title h2,
.clients .section-title h2,
.features .section-title h2,
.contact .section-title h2 {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.section-title h2::after,
.about-text h3::after,
.products .section-title h2::after,
.services .section-title h2::after,
.projects .section-title h2::after,
.clients .section-title h2::after,
.features .section-title h2::after,
.contact .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
}
/* ✅ Badges (Yellow/Black) */
.badge {
  background: var(--gold);
  color: black;
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-right: 8px;
  margin-bottom: 10px;
  display: inline-block;
}
/* ✅ Fixed: About — Text Left, Image Right */
.about {
  background: white;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}
.about-text {
  flex: 1;
  order: 1;
}
.about-image {
  flex: 1;
  order: 2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-image img:hover {
  transform: scale(1.05);
}
/* ✅ Section Spacing */
section {
  padding: 80px 0;
}
.hero-carousel,
.about,
.products,
.services,
.projects,
.clients,
.features,
.contact {
  padding-top: 60px;
}
/* Products */
.products { background: #f1f8f1; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.product-card .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 20px;
}
.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.product-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}
.product-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}
/* Services */
.services { background: white; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-item {
  padding: 30px;
  background: #f9f9f9;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
}
.service-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}
/* Projects */
.projects { background: #f1f8f1; }
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1025px) {
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: translateX(-50%);
  }
}
.timeline-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  height: 200px;
}
.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clients { background: white; text-align: center; }
.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}
.client-logos.visible {
  opacity: 1;
  transform: translateY(0);
}
.client-logo {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
  max-width: 120px;
  height: auto;
}
.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}
/* Features */
.features { background: #f1f8f1; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.feature-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}
/* Contact */
.contact {
  background: var(--dark);
  color: white;
}
.contact .section-title h2 {
  color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}
.contact-info i {
  width: 40px;
  font-size: 1.3rem;
  color: var(--primary);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  background: white;
  color: var(--dark);
}
.contact-form button {
  width: 100%;
}
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}
.social-icons {
  margin: 20px 0;
}
.social-icons a {
  color: white;
  font-size: 1.3rem;
  margin: 0 10px;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: var(--primary);
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 2.2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}
/* ✅ Responsive */
@media (max-width: 768px) {
  .hero-carousel {
    margin-top: 60px;
    height: auto;
    min-height: 100vh;
  }
  .carousel-indicators,
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  .hero-text-content h1 { font-size: 2rem; }
  .hero-text-content p { font-size: 1rem; }
  .hero-buttons .btn {
    display: block;
    margin: 8px auto !important;
    width: 90%;
    max-width: 280px;
  }
  .hero-side-icons {
    position: static;
    top: auto;
    right: auto;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    width: 100%;
    padding: 0 10px;
  }
  .hero-side-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 90px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .hero-side-icon img {
    width: 40px;
    height: 40px;
    margin-right: 0;
    margin-bottom: 6px;
  }
  .hero-side-icon span {
    font-size: 0.75rem;
    text-align: center;
  }
  .about-content { flex-direction: column; }
  .about-text, .about-image { width: 100%; order: initial; }
  .about-image { min-height: 250px; }
}