/* Force industry section headings and text to black */
.industries-section h2,
.industries-section h3,
.industries-section h4,
.industries-section p,
.industries-section li {
  color: #111 !important;
}
/* Force cross-sector capability headings to black */
.cross-sector .capabilities-grid .capability-item .capability-content h4 {
  color: #111 !important;
}
/* Force all text and headings in industries page to black */
body,
.industries-section,
.industries-section h1,
.industries-section h2,
.industries-section h3,
.industries-section h4,
.industries-section h5,
.industries-section h6,
.industries-section p,
.industries-section li,
.cross-sector,
.cross-sector h1,
.cross-sector h2,
.cross-sector h3,
.cross-sector h4,
.cross-sector h5,
.cross-sector h6,
.cross-sector p,
.cross-sector li {
  color: #111 !important;
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.sticky {
  background: rgba(255, 255, 255, 1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-radius: 8px;
}

.nav-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000 !important;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #000000 !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #4ade80 !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #4ade80;
}

.nav-cta {
  background: #4ade80;
  color: #ffffff !important;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #000000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.page-hero {
  margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  text-align: center;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #000000;
  line-height: 1.6;
}

/* Industries Intro */
.industries-intro {
  padding: 60px 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.8;
}

/* Industries Grid */
.industries-section {
  padding: 60px 0;
  background: #f9fafb;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.industry-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.15);
}

/* Make all industry icons green */
.industry-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.industry-icon i {
  color: #4ade80 !important;
}

.industry-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4ade80 !important;
  margin-bottom: 1rem;
}

.industry-card > p {
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.industry-services {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.industry-services li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #000000;
}

.industry-services li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 600;
}

/* Added styling for industry images */
.industry-image {
  width: 100%;
  max-width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-top: 1.5rem;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-image:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(74, 222, 128, 0.15);
}

/* Cross-Sector Capabilities */
.cross-sector {
  padding: 80px 0;
  background: #ffffff;
}

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

.capability-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

/* Make all check icons green */
.check-icon {
  width: 32px;
  height: 32px;
  background: #e0fbe6;
  color: #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.check-icon i {
  color: #4ade80 !important;
}

.capability-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111 !important;
}

.capability-content p {
  color: #000000;
  line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #4ade80;
  color: #ffffff !important;
}

.btn-primary:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.3);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Footer */
.footer {
  background: #000000;
  color: #ffffff !important;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-radius: 8px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-text {
  color: #cccccc;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4ade80 !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: #9ca3af !important;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #4ade80 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .industry-image {
    height: 180px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .industry-image {
    height: 200px;
  }
}
