/* SWPPP Page Specific Styles */

/* Hero Section */
.hero-swppp {
  background-image: url('https://c.animaapp.com/mkzluyi7JZaEsw/img/generated-image-1e8e64f6-5157-42c9-a738-2c60a2ad17bd-1-6.png');
  background-size: cover;
  background-position: center;
  height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 116px;
  overflow: hidden;
}

.hero-swppp .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.text-green {
  color: #00D87B;
}

.text-white {
  color: #FFFFFF;
}

.hero-description {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Section */
.swppp-services-section {
  padding: 100px 0;
  background-color: #f2f2f7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 20px;
  color: rgba(27, 31, 38, 0.72);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
}

.card-accent {
  height: 4px;
  background: linear-gradient(90deg, #0052E2 0%, #00D87B 100%);
  width: 100%;
}

.card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 82, 226, 0.05);
  border-radius: 16px;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #1B1F26;
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(27, 31, 38, 0.72);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(27, 31, 38, 0.72);
}

.feature-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Process Section (Vertical Timeline) */
.process-section {
  padding: 100px 0;
  background-color: #FFFFFF;
  overflow: hidden; /* For timeline line overflow */
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 64px auto 0;
  padding: 20px 0;
}

/* Vertical Line */
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #00d87b; /* Green line */
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}

/* Left side */
.timeline-item.left {
  left: 0;
  text-align: right;
}

/* Right side */
.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* Content Box */
.timeline-content {
  padding: 32px;
  background-color: #0052E2; /* Blue background */
  color: white;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item.right .timeline-content {
  background-color: #0052E2;
}

/* Variation for alternate colors if needed, but image shows blue/teal */
.timeline-item:nth-child(even) .timeline-content {
  background-color: #0052E2; /* Keep consistent blue based on image 1? Wait, image shows Blue, Blue, Teal, Teal */
}

.timeline-item:nth-child(3) .timeline-content,
.timeline-item:nth-child(4) .timeline-content {
  background-color: #00A896; /* Teal/Greenish */
}

/* Icons and Numbers */
.timeline-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.timeline-item.left .timeline-header {
  flex-direction: row-reverse;
}

.timeline-icon-badge {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-number {
  font-size: 18px;
  font-weight: 700;
  opacity: 0.8;
}

.timeline-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.timeline-description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  color: white;
}

/* Dots on the line */
.timeline-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  right: -12px;
  background-color: #FFFFFF;
  border: 4px solid #0052E2;
  top: 32px; /* Align with top of content */
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.right .timeline-dot {
  left: -12px;
  border-color: #0052E2;
}

.timeline-item:nth-child(3) .timeline-dot,
.timeline-item:nth-child(4) .timeline-dot {
  border-color: #00A896;
}


/* Why Choose Section */
.why-choose-section {
  padding: 100px 0;
  background-color: #f2f2f7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.benefit-card {
  background: #0052E2;
  border-radius: 16px;
  padding: 32px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.benefit-title {
  font-size: 20px;
  font-weight: 700;
}

.benefit-description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Clients Section (Reusing Home Page Styles mostly, but ensuring specific overrides if needed) */
.swppp-clients-section {
  padding: 100px 0;
  background-color: #FFFFFF;
}

/* Responsive Adjustments */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-swppp {
    height: 600px;
  }

  .hero-title {
    font-size: 56px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Timeline becomes single column on smaller screens */
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item.left {
    text-align: left;
  }
  
  .timeline-item.left .timeline-header {
    flex-direction: row;
  }
  
  .timeline-item.left, .timeline-item.right {
    left: 0;
  }
  
  .timeline-dot {
    left: 19px; /* Adjust to sit on line */
    right: auto;
  }
  
  .timeline-item.right .timeline-dot {
    left: 19px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .hero-swppp {
    height: 500px;
    margin-top: 102px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 18px;
  }

  .swppp-services-section,
  .process-section,
  .why-choose-section,
  .swppp-clients-section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .card-content {
    padding: 24px;
  }
}

.footer-nav {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
