:root {
  --primary: #009900;
  --primary-hover: #007700;
  --dark: #1A1A1A;
  --dark-light: #2A2A2A;
  --gray-bg: #F5F7FA;
  --text: #4A4A4A;
  --white: #FFFFFF;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.bg-dark {
  background-color: var(--dark);
  color: var(--white);
}

.bg-gray {
  background-color: var(--gray-bg);
}

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

.text-white {
  color: var(--white);
}

.mb-1 {
  margin-bottom: 5px;
}

.mb-2 {
  margin-bottom: 10px;
}

.mb-3 {
  margin-bottom: 20px;
}

.mb-4 {
  margin-bottom: 30px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-2 {
  margin-top: 15px;
}

.mt-3 {
  margin-top: 20px;
}

.mt-5 {
  margin-top: 80px;
}

.mr-2 {
  margin-right: 10px;
}

.max-w-700 {
  max-width: 700px;
}

.max-w-800 {
  max-width: 800px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.gap-2 {
  gap: 20px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.section-padding {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--dark);
}

.btn-block {
  width: 100%;
}

/* Page Headers */
.page-header {
  height: 250px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 10px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
}
.breadcrumbs a {
  color: var(--primary);
}
.breadcrumbs span {
  color: #888;
}

.image-block {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-block img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}
.image-block:hover img {
  transform: scale(1.05);
}

.h-250 {
  height: 250px;
}

.h-400 {
  height: 400px;
}

.span-2 {
  grid-column: span 2;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svg-icon {
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.1em;
  flex-shrink: 0;
}

.icon-lg {
  width: 1.35rem;
  height: 1.35rem;
}

.copyrightpara a {
  color: rgba(255, 255, 255, 0.8);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1000px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
/* Header */
.top-bar {
  background-color: var(--primary);
  color: var(--white);
  padding: 7px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  align-items: center;
}

.top-bar-info span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 15px 20px;
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
}
.logo span {
  color: var(--primary);
}
.logo img {
  max-height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: var(--gray-bg);
  color: #555;
  padding: 80px 0 0px;
  border-top: 1px solid #eaeaea;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--dark);
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #555;
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}
.footer-contact li .svg-icon {
  margin-top: 3px;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--primary);
}

.footer-bottom {
  background-color: var(--primary);
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--white);
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1000px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
}
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}
/* Pre-Footer CTA */
.pre-footer-cta {
  background-color: var(--white);
  padding: 40px 0;
  border-top: 1px solid #f0f0f0;
}
.pre-footer-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-buttons {
  display: flex;
  gap: 10px;
}
.cta-buttons .cta-btn {
  border-radius: 0;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 768px) {
  .pre-footer-cta .container {
    flex-direction: column;
    gap: 20px;
  }
}
.hero-home {
  height: 80vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url("../images/hero_bg.png");
}
.hero-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.7);
}
.hero-home .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-home .hero-content .hero-title {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-home .hero-content p {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.section-title.title-refined {
  font-family: "Oxygen", sans-serif;
  font-size: 2.8rem;
  color: #333;
  font-weight: 700;
  text-transform: none; /* Allow natural sentence casing */
  letter-spacing: normal;
  line-height: 1.1;
  margin-bottom: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary);
}
.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-link {
  display: inline-block;
  font-weight: bold;
}

/* Modern Service Card Styles */
.modern-service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.modern-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 153, 0, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.modern-service-card .modern-service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 153, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary);
  transition: var(--transition);
}
.modern-service-card .modern-service-card-icon img, .modern-service-card .modern-service-card-icon svg {
  width: 28px !important;
  height: 28px !important;
  transition: var(--transition);
}
.modern-service-card:hover .modern-service-card-icon {
  background: var(--primary);
  color: var(--white);
}
.modern-service-card:hover .modern-service-card-icon img, .modern-service-card:hover .modern-service-card-icon svg {
  filter: brightness(0) invert(1);
  color: var(--white) !important;
}
.modern-service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 700;
}
.modern-service-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 400px;
  overflow: hidden;
}
.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  padding-bottom: 100px; /* Compensate for the -100px overlay overlap */
}
.hero-slider .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.05);
}
.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slider .slide .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  transform: translateY(20px);
  transition: transform 0.8s ease-out;
}
.hero-slider .slide .hero-content .hero-title {
  color: var(--white);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.6);
  font-size: 3.6rem;
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-height: 800px) {
  .hero-slider .slide .hero-content .hero-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
  }
}
@media (max-height: 600px) {
  .hero-slider .slide .hero-content .hero-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
.hero-slider .slide .hero-content p {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.6), 0 0 10px rgba(0, 0, 0, 0.6);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 30px;
}
@media (max-height: 800px) {
  .hero-slider .slide .hero-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
  }
}
@media (max-height: 600px) {
  .hero-slider .slide .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
}
.hero-slider .slide.active .hero-content {
  transform: translateY(0);
}

.slider-controls {
  position: absolute;
  top: calc(50% - 50px); /* Shift up 50px to match visual center due to overlay */
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}
.slider-controls span {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  font-size: 20px;
  transition: background 0.3s;
}
.slider-controls span:hover {
  background: var(--primary);
}

.slider-dots {
  position: absolute;
  bottom: 130px; /* Shift up by 100px so they are visible above the overlay */
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}
.slider-dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.slider-dots .dot.active {
  background: var(--primary);
}

/* Overlapping Features Grid */
.features-grid-overlay {
  margin-top: -100px;
  position: relative;
  z-index: 20;
}
.features-grid-overlay .container {
  background: var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 0;
  display: flex;
  gap: 0;
  overflow: hidden;
  border-radius: 4px;
  max-width: 1200px;
}

.feature-card {
  flex: 1;
  padding: 80px 30px;
  border-right: none;
  transition: background-color 0.4s ease, color 0.4s ease;
  cursor: pointer;
  text-align: center;
}
.feature-card:last-child {
  border-right: none;
}
.feature-card:hover {
  background-color: var(--primary);
}
.feature-card:hover h3, .feature-card:hover p {
  color: var(--white);
}
.feature-card:hover .feature-card-icon img.svg-icon,
.feature-card:hover .feature-card-icon svg.svg-icon {
  color: var(--white) !important;
}
.feature-card .feature-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 25px;
}
.feature-card .feature-card-icon img, .feature-card .feature-card-icon svg {
  width: 100% !important;
  height: 100% !important;
}
.feature-card .feature-card-icon img.svg-icon, .feature-card .feature-card-icon svg.svg-icon {
  color: var(--primary);
  transition: color 0.4s ease;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--dark);
  font-weight: 400;
  transition: color 0.4s ease;
}
.feature-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
  transition: color 0.4s ease;
}

@media (max-width: 992px) {
  .features-grid-overlay {
    margin-top: -50px;
  }
  .features-grid-overlay .container {
    flex-wrap: wrap;
  }
  .features-grid-overlay .feature-card {
    flex: 0 0 50%;
    border-bottom: 1px solid #f0f0f0;
  }
  .features-grid-overlay .feature-card:nth-child(2n) {
    border-right: none;
  }
}
@media (max-width: 600px) {
  .features-grid-overlay {
    margin-top: 0;
    padding: 0 15px;
  }
  .features-grid-overlay .container {
    border-radius: 0;
  }
  .features-grid-overlay .feature-card {
    flex: 0 0 100%;
    border-right: none;
    padding: 30px 20px;
  }
}
/* Capabilities Section with Mini Slider */
.capabilities-section .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 35px;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: var(--transition);
}
.capabilities-section .btn-learn-more:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.mini-slider-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mini-slider-container .mini-slider {
  width: 100%;
  height: 100%;
}
.mini-slider-container .mini-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
}
.mini-slider-container .mini-slide.active {
  opacity: 1;
  visibility: visible;
}
.mini-slider-container .mini-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mini-slider-dots {
  position: absolute;
  bottom: 25px;
  left: 30px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.mini-slider-dots .dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.mini-slider-dots .dot.active {
  background-color: var(--primary);
  border-color: var(--primary);
}
.mini-slider-dots .dot:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

/* News Section */
.news-section-wrapper {
  background-color: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.news-section {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  align-items: center;
}

.news-text {
  padding-right: 20px;
}
.news-text h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.1;
}
.news-text p {
  color: #666;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.view-all-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}
.view-all-link::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: var(--primary);
  margin-right: 15px;
  transition: var(--transition);
}
.view-all-link:hover {
  color: var(--primary-hover);
}
.view-all-link:hover::before {
  background-color: var(--primary-hover);
  width: 35px;
}

.news-cards {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.news-card {
  position: relative;
  height: 280px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.news-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover img {
  transform: scale(1.05);
}
.news-card .news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 70px 30px 30px 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}
.news-card .news-overlay h4 {
  color: var(--white);
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
}

.news-dots {
  margin-top: 40px;
}
.news-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}
.news-dots .dot.active {
  background-color: transparent;
  border: 2px solid var(--primary);
  width: 12px;
  height: 12px;
  transform: translateY(2px);
}

@media (max-width: 992px) {
  .news-section {
    grid-template-columns: 1fr;
  }
  .news-section .news-text {
    padding-right: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .news-cards {
    grid-template-columns: 1fr;
  }
  .ourserivesonindex .grid-4 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .hero-home .hero-content .hero-title,
  .hero-slider .slide .hero-content .hero-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .hero-home .hero-content .hero-title,
  .hero-slider .slide .hero-content .hero-title {
    font-size: 1.8rem;
  }
  .slider-controls {
    padding: 0 10px;
  }
}
.header-about {
  background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url("../images/hero_bg.png") center/cover;
}

.check-list {
  list-style: none;
  padding-left: 0;
}
.check-list li {
  position: relative;
  padding-left: 1.8rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  background-color: var(--primary);
  -webkit-mask: url("../images/icons/check.svg") no-repeat center/contain;
  mask: url("../images/icons/check.svg") no-repeat center/contain;
}

.header-conveyor {
  background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url("../images/conveyor_sys.png") center/cover;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  background: var(--gray-bg);
  padding: 20px;
  border-radius: 8px;
  transition: var(--transition);
}
.feature-item:hover {
  background: var(--primary);
  color: var(--white);
}
.feature-item:hover h4, .feature-item:hover p {
  color: var(--white);
}
.feature-item:hover .feature-icon i {
  color: var(--primary);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.feature-content h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}
.header-dust {
  background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url("../images/dust_sup.png") center/cover;
}

.header-services {
  background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url("../images/industrial_svc.png") center/cover;
}

.card-white {
  margin: 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.header-contact {
  background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url("../images/hero_bg.png") center/cover;
}

.icon-lg {
  font-size: 1.5rem;
}

.contact-info-row {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-form-wrapper {
  background-color: var(--gray-bg);
  padding: 40px;
  border-radius: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-control {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  width: 100%;
}

.resize-y {
  resize: vertical;
}/*# sourceMappingURL=style.css.map */