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

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #1e1e1e;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

header .logo {
  font-size: 1.5rem;
  color: #ff8c00;
  font-weight: bold;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff8c00;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/industry-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 2rem;
  max-width: 800px;
  margin: auto;
}

.hero p {
  margin: 20px auto;
  max-width: 700px;
}

.hero-buttons {
  margin-top: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 5px;
}

.btn.primary {
  background: #ff8c00;
  color: #fff;
}

.btn.secondary {
  border: 2px solid #ff8c00;
  color: #ff8c00;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #1e1e1e;
}

.service-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card,
.why-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.service-card:hover,
.why-card:hover {
  transform: translateY(-5px);
  border-color: #ff8c00;
}

/* Industries */
.industry-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  list-style: none;
  font-weight: 500;
  color: #333;
}

.industry-list li {
  background: #ff8c00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
}

/* Contact */
.contact {
  background: #1e1e1e;
  color: #fff;
  text-align: center;
}

.contact a {
  color: #ff8c00;
  text-decoration: none;
}

.contact .socials {
  margin-top: 15px;
}

.contact .socials a {
  margin: 0 10px;
  color: #ff8c00;
  text-decoration: none;
}

.contact .socials a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #111;
  color: #bbb;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}
/* About Page Enhancements */
.about-page p {
  max-width: 900px;
  margin: 10px auto;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.mv-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  transition: 0.3s ease;
}

.mv-box:hover {
  border-color: #ff8c00;
  transform: translateY(-5px);
}

.mv-box h3 {
  color: #ff8c00;
  margin-bottom: 10px;
}

.mv-box ul {
  list-style: disc;
  padding-left: 20px;
  color: #333;
}
/* Industries Page */
.intro-text {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
  color: #444;
  font-size: 1rem;
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.industry-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: #ff8c00;
}

.industry-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.industry-card .info {
  padding: 20px;
}

.industry-card h3 {
  color: #ff8c00;
  margin-bottom: 10px;
}
/* ==== SERVICES PAGE STYLING ==== */

.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #f4f4f4; /* Adjust for your dark theme */
  letter-spacing: 1px;
}

.facility-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.facility-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
}

.facility-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.facility-item img {
  width: 40%;
  height: auto;
  border-radius: 10px;
  margin-right: 20px;
  object-fit: cover;
}

.facility-item h3 {
  font-size: 1.3rem;
  color: #ffb703; /* highlight color (gold/yellow tone) */
  margin-bottom: 10px;
}

.facility-item p {
  color: #ccc;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .facility-item {
    flex-direction: column;
    text-align: center;
  }

  .facility-item img {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
/* ==== MOBILE OPTIMIZATION ==== */
@media (max-width: 1024px) {
  .container {
    width: 95%;
  }

  nav ul {
    gap: 15px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .hero {
    padding: 70px 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .eco-section h2,
  .team-section h2 {
    font-size: 1.8rem;
  }

  .eco-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 10px;
  }

  .ceo-quote {
    margin: 25px 10px;
    padding: 20px;
    font-size: 0.95rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }

  .team-card img {
    height: 180px;
  }

  .team-info h3 {
    font-size: 1rem;
  }

  .team-info p {
    font-size: 0.85rem;
  }

  footer {
    font-size: 0.8rem;
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    width: 90%;
    margin: auto;
  }
}

