@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Ubuntu:wght@400;500;700&family=Rubik:wght@300;400;500;600&display=swap');


@media (max-width: 768px) {
  .hero-bg-video {
    display: none;
  }
  .hero-bg-poster {
    display: block;
  }
}

    .sitename {
      font-family: 'Arial Black', sans-serif;
      text-transform: uppercase;
      background: linear-gradient(90deg, #00a19e, #007f7d, #00c2be);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      padding: 15px 25px;
      display: inline-block;
     cursor: pointer;
    }
/* Section spacing */
#industries {
  padding: 40px 0;
}

/* Heading styles */
#industries .fancy-head h5 {
  font-size: 16px;
  font-weight: 600;
  color: #00a19e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#industries .fancy-head h1 {
  font-size: 32px;
  font-weight: 700;
  color: #0b2252;
}

/* Industries grid item */
.Industries-row {
  text-align: center;
  padding: 10px 5px;       /* Reduced padding */
  margin-bottom: 15px;     /* Less space between rows */
  transition: 0.3s ease;
}

/* ONLY Image — NO box, NO border */
.Industries-img {
  margin: 0 auto 8px auto;   /* Reduced spacing under icon */
}

.Industries-img img {
  width: 48px;               /* Slightly larger */
  height: auto;
  transition: 0.3s ease;
}

/* Title */
.industries-icon {
  font-size: 15px;
  font-weight: 600;
  color: #0b2252;
  margin-top: 5px;
}

/* Hover effect only on icon */
.Industries-row:hover img {
  transform: translateY(-4px);
}

.Industries-row:hover .industries-icon {
  color: #00a19e;
}

/* Perfect alignment with less space */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;               /* Very tight spacing like screenshot */
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .Industries-row {
    padding: 10px 0;
  }
  .Industries-img img {
    width: 42px;
  }
}

  .contact-icon {
  font-size: 1.5rem;
  color: #00a19e;
  background: rgba(0, 161, 158, 0.08);
  border-radius: 10px;
  padding: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-icon:hover {
  background: rgba(0, 161, 158, 0.15);
  transform: scale(1.1);
}

.contact-list li {
  color: #333;
  line-height: 1.6;
}

.contact-list strong {
  font-weight: 600;
  color: #111;
}

.map-btn {
  border-color: #00a19e !important;
  color: #00a19e !important;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.map-btn:hover {
  background: #00a19e !important;
  color: #fff !important;
}

.section:not(.show-now) {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
.section.show-now {
  opacity: 1;
}

.service-card ul {
  list-style: none;         /* removes bullets */
  padding-left: 0;          /* removes extra left space */
  margin: 0;
}

.service-card ul li {
  margin-bottom: 8px;       /* spacing between points */
  display: flex;
  align-items: center;
}
.service-card ul li i {
  color: #00a19e;           /* optional: set icon color */
  margin-right: 8px;        /* space between icon and text */
}
