:root {
  --primary: #7cc347;
  --primary-dark: #167a1f;
  --primary-light: rgba(37, 197, 54, 0.1);
  --secondary: #58595b;
  --black: #000000;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
  --accent: #2c88d9;
  --transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: var(--white);
  color: var(--secondary);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
}
.logo-image {
  width: 64px;
}
.logo span {
  color: var(--primary);
  margin-left: 5px;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 10px;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  position: relative;
  color: var(--secondary);
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}
.nav-links a:hover::after {
  width: 100%;
}
.cta-button {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  border: none;
}
.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(37, 197, 54, 0.3);
}
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}
/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(37, 197, 54, 0.05);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(44, 136, 217, 0.05);
  z-index: 1;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.hero-tagline::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  margin-right: 15px;
}
.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 22px;
  color: var(--secondary);
  font-weight: 400;
  margin-bottom: 10px;
}
.hero-description {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 300;
}
.benefits-list {
  list-style: none;
  margin-top: 20px;
}
.benefits-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-weight: 300;
}
.benefits-list li strong {
  color: var(--black);
  font-weight: 600;
}
.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.hero-metrics {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.metric-item {
  text-align: center;
  padding: 15px 25px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.metric-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.metric-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1.2;
}
.metric-label {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 400;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}
.secondary-cta {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}
.secondary-cta:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}
.testimonial {
  background-color: var(--white);
  border-radius: 8px;
  padding: 25px;
  margin-top: 30px;
  position: relative;
  font-style: italic;
  font-weight: 300;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 15px;
  font-size: 70px;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-content {
  padding-left: 15px;
  margin-bottom: 15px;
}
.testimonial-author {
  font-weight: 500;
  color: var(--black);
  font-style: normal;
  text-align: right;
  font-size: 15px;
}
.testimonial-company {
  font-weight: 400;
  color: var(--secondary);
  font-style: normal;
  font-size: 13px;
}
.hero-image {
  position: relative;
  z-index: 2;
}
.hero-image-container {
  position: relative;
  height: 500px;
  width: 100%;
  background-color: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  color: var(--secondary);
  font-style: italic;
}
/* Methodology Section */
.methodology {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}
.methodology::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(37, 197, 54, 0.05);
  z-index: 1;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.section-title h2 {
  font-size: 36px;
  color: var(--black);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}
.section-title p {
  color: var(--secondary);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}
.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.step-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.step-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary);
}
.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.step-title {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 15px;
  font-weight: 600;
}
.step-description {
  color: var(--secondary);
  font-weight: 300;
  flex-grow: 1;
}
.methodology-testimonial {
  max-width: 800px;
  margin: 40px auto;
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  position: relative;
  font-style: italic;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 2;
}
.methodology-testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}
.methodology-testimonial-content {
  font-weight: 300;
  margin-bottom: 15px;
  padding-left: 15px;
}
.methodology-testimonial-author {
  font-weight: 500;
  color: var(--black);
  font-style: normal;
  text-align: right;
}
.methodology-cta {
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.methodology-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  position: relative;
}
.methodology-link:hover {
  gap: 10px;
}
.methodology-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: var(--transition);
}
.methodology-link:hover::after {
  width: 100%;
}
/* Solutions Section */
.solutions {
  padding: 100px 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}
.solutions::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(44, 136, 217, 0.05);
  z-index: 1;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}
.solution-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.solution-header {
  padding: 20px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.solution-content {
  padding: 30px;
  flex-grow: 1;
}
.solution-content p {
  font-weight: 300;
  margin-bottom: 20px;
}
.solutions-cta {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.solutions-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  position: relative;
}
.solutions-link:hover {
  gap: 10px;
}
.solutions-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: var(--transition);
}
.solutions-link:hover::after {
  width: 100%;
}
/* Case Studies Section */
.case-studies {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}
.case-studies::before {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(37, 197, 54, 0.05);
  z-index: 1;
}
.case-slider {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.case-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 20px;
}
.case-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}
.case-image {
  height: 100%;
  min-height: 250px;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  color: var(--secondary);
  font-style: italic;
}
.case-overview {
  padding: 30px 30px 30px 0;
}
.case-company {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}
.case-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 20px;
}
.case-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.case-stat {
  width: calc(50% - 10px);
  background-color: var(--light-gray);
  padding: 15px;
  border-radius: 5px;
}
.case-stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1.2;
}
.case-stat-label {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 400;
}
.case-content {
  padding: 0 30px 30px;
}
.case-quote {
  font-style: italic;
  font-weight: 300;
  color: var(--secondary);
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  border-left: 3px solid var(--primary);
}
.case-testimonial {
  font-weight: 500;
  color: var(--black);
  font-size: 14px;
  text-align: right;
}
.case-cta {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
/* Purpose Section */
.purpose {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
}
.purpose::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(37, 197, 54, 0.05);
  z-index: 1;
}
.purpose-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.purpose-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.purpose-title {
  font-size: 36px;
  color: var(--black);
  margin-bottom: 20px;
  position: relative;
  font-weight: 700;
}
.purpose-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}
.purpose-description {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 30px;
  font-weight: 300;
}
.purpose-testimonial {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  position: relative;
  font-style: italic;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.purpose-testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}
.purpose-testimonial-content {
  font-weight: 300;
  margin-bottom: 15px;
  padding-left: 15px;
}
.purpose-testimonial-author {
  font-weight: 500;
  color: var(--black);
  font-style: normal;
  text-align: right;
}
.purpose-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  position: relative;
}
.purpose-link:hover {
  gap: 10px;
}
.purpose-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: var(--transition);
}
.purpose-link:hover::after {
  width: 100%;
}
.purpose-image {
  position: relative;
}
.purpose-image-container {
  position: relative;
  height: 500px;
  width: 100%;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  color: var(--secondary);
  font-style: italic;
}
/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}
.cta-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  font-weight: 300;
}
.white-cta {
  background-color: var(--white);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  font-size: 17px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.white-cta:hover {
  background-color: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.secondary-white-cta {
  color: var(--white);
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: var(--transition);
}
.secondary-white-cta:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.footer-logo span {
  color: var(--primary);
  margin-left: 5px;
}
.footer-logo-icon {
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 10px;
}
.footer-description {
  color: #aaa;
  margin-bottom: 20px;
  font-weight: 300;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-links a:hover {
  background-color: var(--primary);
}
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}
.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #aaa;
  transition: var(--transition);
  font-weight: 300;
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.contact-info {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #aaa;
}
.contact-info-icon {
  width: 16px;
  display: flex;
  justify-content: center;
  color: var(--primary);
}
.contact-info p {
  font-weight: 300;
}
.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 14px;
  font-weight: 300;
}
/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}
/* Services Hero */
.services-hero {
  background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(37, 197, 54, 0.05);
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title h1 {
  font-size: 42px;
  color: var(--black);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.section-title h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

.section-title p {
  color: var(--secondary);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

/* Service Detail */
.service-detail {
  padding: 100px 0;
  position: relative;
}

.service-detail:nth-child(odd) {
  background-color: var(--white);
}

.service-detail:nth-child(even) {
  background-color: var(--light-gray);
}

.service-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-detail:nth-child(even) .service-container {
  direction: rtl;
}

.service-detail:nth-child(even) .service-content {
  direction: ltr;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-image {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
}

.service-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  position: relative;
}

.service-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.service-description {
  font-weight: 300;
  margin-top: 20px;
}

.service-features {
  margin-top: 20px;
}

.benefits-list {
  list-style: none;
  margin-top: 20px;
}

.benefits-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-weight: 300;
}

.benefits-list li strong {
  color: var(--black);
  font-weight: 600;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Partnerships */
.partnerships {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
}

.partnerships::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(37, 197, 54, 0.05);
  z-index: 1;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.partner-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 30px;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partner-logo {
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo i {
  font-size: 48px;
  color: var(--primary);
}

.partner-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 15px;
}

.partner-description {
  font-weight: 300;
  margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  font-weight: 300;
}

.white-cta {
  background-color: var(--white);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  font-size: 17px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.white-cta:hover {
  background-color: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.secondary-white-cta {
  color: var(--white);
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: var(--transition);
}

.secondary-white-cta:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Contact Hero */
.contact-hero {
  background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(37, 197, 54, 0.05);
  z-index: 1;
}
.contact-hero .section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.contact-hero .section-title h1 {
  font-size: 42px;
  color: var(--black);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.contact-hero .section-title h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}
.contact-hero .section-title p {
  color: var(--secondary);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}
.contact-img {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.contact-img img {
  max-height: 400px;
  object-position: 0 20%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

/* Contact Info & Form */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}
.contact-main .contact-info {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.contact-person-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--primary);
}
.contact-person-details {
  display: flex;
  flex-direction: column;
}
.contact-person-details strong {
  font-size: 18px;
  color: var(--black);
}
.contact-person-details span {
  font-size: 15px;
  color: var(--secondary);
}
.contact-details-list {
  list-style: none;
}
.contact-details-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.contact-details-list i {
  color: var(--primary);
  font-size: 18px;
}
.contact-details-list a {
  color: var(--accent);
  font-weight: 500;
}
/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form label {
  font-weight: 500;
  color: var(--black);
  margin-bottom: 5px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  font-size: 16px;
  font-family: inherit;
  margin-bottom: 10px;
  background: var(--light-gray);
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--primary);
  outline: none;
}
.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}
.contact-form .required {
  color: #e74c3c;
  margin-left: 3px;
}
.contact-form .cta-button {
  width: 100%;
  margin-top: 10px;
}

/* Hero Section */
.case-hero {
  background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.case-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(37, 197, 54, 0.05);
  z-index: 1;
}
.case-hero .section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.case-hero .section-title h1 {
  font-size: 42px;
  color: var(--black);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.case-hero .section-title h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}
.case-hero .section-title p {
  color: var(--secondary);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}
.hero-img {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.hero-img img {
  max-height: 400px;
  object-position: 0 16%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

/* Case Study Section */
.case-study-section {
  padding: 100px 0;
  position: relative;
}
.case-study-section:nth-child(even) {
  background-color: var(--light-gray);
}
.case-study-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.case-study-image {
  display: flex;
  justify-content: center;
  width: 100%;
}
.case-study-image img {
  max-height: 400px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}
.case-study-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case-study-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.case-study-label::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  margin-right: 15px;
}
.case-study-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.case-study-module {
  margin-top: 20px;
}
.module-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.barrier-list,
.solution-list,
.results-list {
  list-style: none;
  margin-bottom: 20px;
}
.barrier-list li,
.solution-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-weight: 300;
}
.barrier-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: 700;
}
.solution-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.results-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.result-category-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.results-list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}
.results-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.testimonial {
  background-color: var(--white);
  border-radius: 8px;
  padding: 25px;
  margin-top: 30px;
  position: relative;
  font-style: italic;
  font-weight: 300;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 15px;
  font-size: 70px;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-content {
  padding-left: 15px;
  margin-bottom: 15px;
}
.testimonial-author {
  font-weight: 500;
  color: var(--black);
  font-style: normal;
  text-align: right;
  font-size: 15px;
}
.case-link {
  margin-top: 20px;
}
.case-link a {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  position: relative;
}
.case-link a:hover {
  gap: 10px;
}
.case-link a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: var(--transition);
}
.case-link a:hover::after {
  width: 100%;
}
/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}
.cta-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  font-weight: 300;
}
.white-cta {
  background-color: var(--white);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  font-size: 17px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.white-cta:hover {
  background-color: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.secondary-white-cta {
  color: var(--white);
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: var(--transition);
}
.secondary-white-cta:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container,
  .purpose-container {
    grid-template-columns: 1fr;
  }
  .hero-image {
    order: -1;
  }
  .hero-image-container,
  .purpose-image-container {
    height: 400px;
  }
  .service-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-detail:nth-child(even) .service-container {
    direction: ltr;
  }
  .contact-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .case-study-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .case-study-image {
    order: -1;
  }
  .results-group {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    gap: 15px;
  }
  .nav-links.active {
    display: flex;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .section-title h2,
  .purpose-title,
  .cta-section h2 {
    font-size: 28px;
  }
  .methodology-steps {
    grid-template-columns: 1fr;
  }
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .section-title h1 {
    font-size: 32px;
  }
  .service-title {
    font-size: 28px;
  }
  .contact-form,
  .contact-main .contact-info {
    padding: 25px 10px;
  }
  .case-study-title {
    font-size: 24px;
  }
  .module-title {
    font-size: 18px;
  }
  .cta-button {
    display: none;
  }
}
