/* Standardize all icon colors to brand green */
.service-icon,
.service-icon i,
.feature-icon,
.feature-icon i,
.check-icon,
.check-icon i,
.card-icon,
.card-icon i {
  color: #4ade80 !important;
}

/* Standardize cross-sector capability headings to brand green */
.cross-sector .capabilities-grid .capability-item .capability-content h4 {
  color: #4ade80 !important;
}
/* Standardized logo styles for navigation and footer */
.nav-logo, .footer-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-radius: 8px;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif; /* Updated to Poppins font as recommended */
  line-height: 1.6;
  color: #000000 !important;
  background-color: #ffffff;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff !important;
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

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

.nav-link {
  text-decoration: none;
  color: #000000 !important;
  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;
  width: 100%;
  height: 2px;
  background: #4ade80;
}

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

.nav-cta:hover {
  background: #22c55e;
  transform: translateY(-2px);
}

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

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #000000;
  margin: 3px 0;
  transition: 0.3s;
}

/* Sticky Navigation */
.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff !important;
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #4ade80 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("RESEARCH.jpg") center / cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff !important; /* Changed to white for better contrast on gradient background */
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e2e8f0 !important; /* Changed to light gray for better contrast */
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  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);
}

.btn-secondary {
  background: transparent;
  color: #000000 !important;
  border: 2px solid #4ade80;
}

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

/* Who We Are Section */
.who-we-are {
  padding: 80px 0;
  background: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #4ade80 !important;
  border: 2px solid #4ade80;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5rem;
}

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

/* Core Services Section */
.core-services {
  padding: 80px 0;
  background: #f8fafc;
}

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

.service-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #4ade80;
  box-shadow: 0 20px 40px rgba(74, 222, 128, 0.2);
}

/* Icon sizing and spacing */
.service-icon,
.feature-icon,
.check-icon,
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
}


.service-card p {
  color: #374151 !important;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  color: #4ade80 !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #22c55e !important;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.section-header p {
  font-size: 1.125rem;
  color: #374151 !important;
  max-width: 600px;
  margin: 0 auto;
}

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

.about-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

/* Make all card icons green */
.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
}


.about-card p {
  color: #374151 !important;
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose {
  padding: 80px 0;
  background: #ffffff;
}

.features-list {
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #f0fdf4;
  transform: translateX(10px);
}

/* Make all check icons green */
.check-icon {
  background: #4ade80;
}
.check-icon i {
  color: #4ade80 !important;
}

.feature-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000 !important;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #374151 !important;
  line-height: 1.6;
}
/* Container to align both images side by side */
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;              /* Slightly increased spacing between images */
  flex-wrap: wrap;
  width: 100%;
  margin: 1.5rem 0;
  background-color: #f8f8f8;
  padding: 1.8rem;
  border-radius: 20px;
}

/* Image styling — larger but still balanced */
.impact-img {
  width: 500px;             /* Increased from 360px to 400px */
  height: 350px;            /* Increased from 220px to 250px */
  object-fit: cover;        /* Keeps the same proportions and alignment */
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(74, 222, 128, 0.12);
  transition: transform 0.3s ease;
}

/* Hover effect */
.impact-img:hover {
  transform: scale(1.03);
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
  .impact-img {
    width: 90%;
    height: auto;
  }
}


/* Contact CTA Section */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  text-align: center;
}

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

.cta-content p {
  font-size: 1.125rem;
  color: #e2e8f0 !important;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-large {
  padding: 20px 40px;
  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-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;
    display: flex;
    gap: 2rem;
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}
