.title-color{
    color:  #16A349;
}

.social-icons {
    color:  #22c55e;
}

.social-icons a:hover {
    color: #16a34a; /* slightly darker on hover */
}

.light-green {
    background-color: #e3f6e3;
    border-radius: 15px;
    padding: 2rem;
    width: 90vw;
}
.green-button {
    background-color: #22c55e;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.green-button:hover {
    background-color: #16a34a; /* slightly darker on hover */
}

.bg-gray-100 {
    background-color: #f3f4f6;
}
.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

.green-section {
    padding: 10px 10px;
  background-color: #e3f6e3;
      border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;     
}

.white-section {
    padding: 10px 10px;
      border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;     
}


/* Base Section Styles */
.white-section,
.green-section {
  padding: 6rem 2rem;
  position: relative;
}

.white-section {
  background-color: #ffffff;
}





.section-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  position: relative;
  text-align: center;
  color: #0f172a;
  line-height: 1.2;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.section-description {
  font-size: 1.15rem;
  color: #0E172A;
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-weight: 400;
}

.section-subheading {
  font-size: 0.95rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Subtle entrance animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Trusted By Section */
.trusted-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.logos-marquee {
  overflow: hidden;
  padding: 2.5rem 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #192031 10%, #192031 90%, transparent);
}

.logo-track {
  display: flex;
  gap: 4rem;
  animation: scroll 35s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.client-logo {
  flex-shrink: 0;
  padding: 1.5rem 3rem;
  background: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: #475569;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

.client-logo:hover {
  color: #16a34a;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(34, 197, 94, 0.12);
  border-color: #bbf7d0;
}

/* Services Section */
.services-section {
  padding: 7rem 2rem;
  background: white;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1400px;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px 12px 0 0;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: #bbf7d0;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.12);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
  background: #22c55e;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(34, 197, 94, 0.25);
}

.service-card h3 {
  color: #0f172a;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.service-card > p {
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.5rem;
}

.service-features li {
  padding: 0.6rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 1rem;
}

/* Diagonal Split Section - Why Choose Us */
.diagonal-section {
  position: relative;
  padding: 7rem 2rem;
  overflow: hidden;
  background: #0f172a;
}

.diagonal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E3F6E3 0%, #22c55e 100%);
  z-index: 0;
}

.diagonal-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(227, 246, 227, 0.08) 0%, transparent 50%);
}

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

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
  transition: left 0.7s ease;
}

.why-card:hover::before {
  left: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(34, 197, 94, 0.25);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(34, 197, 94, 0.4);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  background: #22c55e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .icon-wrapper {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
}

.icon-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.why-card h3 {
  color: #192031;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.why-card p {
  line-height: 1.7;
  color: #192031;
  font-size: 0.95rem;
}

/* Statistics Section */
.stats-section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #bbf7d0, transparent);
}

.stats-container {
 display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
   flex: 1 1 240px;
  min-width: 240px;
  max-width: 280px;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(34, 197, 94, 0.15);
  border-color: #bbf7d0;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: #22c55e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #475569;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Process Timeline Section */
.process-section {
padding: 7rem 2rem;
  background: white;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-section .section-heading {
  text-align: center;
    width: 100%;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #22c55e, #16a34a, #22c55e);
}

.timeline-item {
  position: relative;
  padding-left: 90px;
  margin-bottom: 4rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 19px;
  top: 8px;
  width: 22px;
  height: 22px;
  background: #22c55e;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.2);
}

.timeline-content {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 3px solid #22c55e;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  border-left: 3px solid #22c55e;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -90px;
  top: 15px;
  width: 75px;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, transparent);
}

.timeline-content:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.12);
  background: white;
  border-color: #bbf7d0;
  border-left-color: #22c55e;
}

.timeline-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #22c55e;
  color: white;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.timeline-content h3 {
  font-size: 1.4rem;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.3;
}

.timeline-content p {
  line-height: 1.7;
  color: #64748b;
  font-size: 0.95rem;
}

/* Case Studies Section */
.case-studies-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.case-study-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.case-study-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.case-study-card:hover::before {
  transform: scaleX(1);
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.15);
  border-color: #bbf7d0;
}

.case-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #22c55e;
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-study-card h3 {
  color: #0f172a;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.case-study-card > p {
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  background: #22c55e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.metric-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

.case-link {
  color: #22c55e;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
}

.case-link:hover {
  color: #16a34a;
  transform: translateX(4px);
}

/* Testimonials Section */
.testimonials-section {
  padding: 7rem 2rem;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 25%, rgba(227, 246, 227, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 75%, rgba(227, 246, 227, 0.08) 0%, transparent 50%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #22c55e;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.quote-icon {
  font-size: 3.5rem;
  color: #22c55e;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.875rem;
  color: #64748b;
}

/* Technologies Section */
.tech-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.tech-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #22c55e;
  transition: height 0.4s ease;
}

.tech-card:hover::before {
  height: 3px;
}

.tech-card:hover {
  border-color: #bbf7d0;
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.15);
}

.tech-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.tech-card:hover .tech-icon {
  transform: scale(1.15) rotate(5deg);
}

.tech-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.tech-card:hover h4 {
  color: #16a34a;
}

/* Resources Section */
.resources-section {
  padding: 7rem 2rem;
  background: white;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.resource-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.resource-card:hover::before {
  transform: scaleX(1);
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.12);
  border-color: #bbf7d0;
  background: white;
}

.resource-type {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #22c55e;
  color: white;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.resource-card h3 {
  color: #0f172a;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.resource-card > p {
  line-height: 1.7;
  color: #64748b;
  font-size: 0.95rem;
}

.resource-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  background: white;
  color: #22c55e;
  border: 2px solid #22c55e;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-button:hover {
  background: #22c55e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* FAQ Section */
.faq-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  border-color: #bbf7d0;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.faq-question {
  padding: 1.75rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  gap: 1.5rem;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

.faq-icon {
  font-size: 1.5rem;
  color: #22c55e;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item:hover .faq-icon {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 2rem 1.75rem;
  color: #64748b;
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-answer p {
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #15803d 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(227, 246, 227, 0.1) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(34, 197, 94, 0.03) 30%, rgba(34, 197, 94, 0.03) 70%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(34, 197, 94, 0.03) 30%, rgba(34, 197, 94, 0.03) 70%, transparent 70%);
  background-size: 60px 60px;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #192031;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  color: #192031;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1.25rem 2.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}



.cta-button.primary {
  background: #22c55e;
  color: white;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
  position: relative;
  z-index: 1;
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
}

.cta-button.secondary {
  background: white;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
    color: #16a34a;
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: white;
  color: #16a34a;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-heading {
    font-size: 2.5rem;
  }

  .services-grid,
  .case-studies-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .why-choose-grid,
  .testimonials-grid,
  .tech-grid,
  .services-grid,
  .resources-grid,
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline-container::before {
    left: 15px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-dot {
    left: 4px;
  }

  .timeline-content::before {
    width: 40px;
    left: -50px;
  }

  .stat-number {
    font-size: 2.75rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.05rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    width: 100%;
  }

  .diagonal-section,
  .process-section,
  .testimonials-section,
  .tech-section,
  .cta-section,
  .services-section,
  .resources-section,
  .faq-section,
  .case-studies-section {
    padding: 4rem 1.5rem;
  }

  .stats-section,
  .trusted-section {
    padding: 4rem 1.5rem;
  }

  .case-metrics {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .logo-track {
    gap: 2.5rem;
  }

  .client-logo {
    padding: 1.25rem 2.5rem;
    font-size: 0.95rem;
  }

  .service-card,
  .why-card,
  .resource-card,
  .case-study-card {
    padding: 2rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .timeline-content {
    padding: 2rem;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 1.75rem;
  }

  .section-heading::after {
    width: 50px;
    height: 3px;
  }

  .service-icon {
    font-size: 2.25rem;
    width: 60px;
    height: 60px;
  }

  .service-card h3,
  .case-study-card h3 {
    font-size: 1.2rem;
  }

  .icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .icon-number {
    font-size: 1.35rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .timeline-number {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .cta-button {
    padding: 1.1rem 2rem;
    font-size: 0.95rem;
  }

  .tech-icon {
    font-size: 2.25rem;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background: #22c55e;
  color: white;
}

::-moz-selection {
  background: #22c55e;
  color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f8fafc;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #22c55e, #16a34a);
  border-radius: 6px;
  border: 2px solid #f8fafc;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #16a34a, #15803d);
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.cta-button:focus,
.resource-button:focus {
  outline: none;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print styles */
@media print {
  .cta-section,
  .trusted-section {
    display: none;
  }
  
  .section-heading::after {
    background: #22c55e !important;
  }

  * {
    box-shadow: none !important;
  }
}