
body{
  overflow-x: hidden;
}
/* Service Page Specific Styles */
.service-hero-section {
  padding: 150px 20px 100px;
  background: linear-gradient(135deg, #1976D2 0%, #667eea 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite alternate;
}

.service-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-tagline {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
  font-style: italic;
}

.service-hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.service-hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.4;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 10px;
  margin-top: 50px;
}

.service-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-feature i {
  color: #64B5F6;
  font-size: 1.5rem;
}

/* Process Section */
.process-creation-section {
  padding: 100px 20px;
  background: white;
}

.process-creation-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-creation-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-creation-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.process-creation-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-visual {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 40px;
  border-radius: 20px;
  margin-bottom: 60px;
  text-align: center;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.process-step-item {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1976D2 0%, #667eea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 15px;
}

.process-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.process-step-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
}

.process-timeline {
  background: linear-gradient(135deg, #1976D2 0%, #667eea 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.timeline-text {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Reality Check Section */
.reality-check-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  color: white;
  position: relative;
}

.reality-check-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.reality-check-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.reality-check-header {
  text-align: center;
  margin-bottom: 80px;
}

.reality-check-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.reality-check-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.failure-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.failure-reason {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
}

.failure-icon {
  width: 60px;
  height: 60px;
  background: #1976D2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.failure-icon i {
  font-size: 24px;
  color: #ffffff;
}

.failure-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.failure-description {
  opacity: 0.9;
  line-height: 1.6;
}

.testimonial-highlight {
  background: rgba(25, 118, 210, 0.2);
  padding: 40px;
  border-radius: 20px;
  border-left: 4px solid #1976D2;
  text-align: center;
 
  font-style: italic;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
   color: white;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: #64B5F6;

}

/* Why Choose Section */
.why-choose-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-choose-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.why-choose-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
}

.insider-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
  justify-content: center; /* makes last row centered */
  margin-bottom: 80px;
}

.insider-benefit {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  width: 100%;      /* same width */
  max-width: 400px; /* ✅ closed properly */
}

.insider-benefits .insider-benefit:last-child {
  grid-column: 1 / -1;   /* put it on its own row */
  justify-self: center;  /* center align */
}


.insider-benefit:hover {
  border-color: #1976D2;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(25, 118, 210, 0.15);
}

.insider-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1976D2 0%, #667eea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.insider-icon i {
  font-size: 32px;
  color: white;
}
.insider-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
  text-align: center;   /* ✅ correct way */
}

.insider-description {
  color: #6c757d;
  line-height: 1.6;
  text-align: center;   /* ✅ correct way */
}


.qualification-cta {
  background: linear-gradient(135deg, #1976D2 0%, #667eea 100%);
  padding: 60px 40px;
  border-radius: 20px;
  color: white;
  text-align: center;
}

.qualification-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.qualification-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.qualification-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.qualification-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.qualification-primary {
  background: white;
  color: #1976D2;
}

.qualification-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.qualification-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.qualification-secondary:hover {
  background: white;
  color: #1976D2;
}

/* Industry Expertise Section */
.industry-section {
  padding: 50px 20px;
  background: white;
}

.industry-container {
  max-width: 1200px;
  margin: 0 auto;
}

.industry-header {
  text-align: center;
  margin-bottom: 80px;
}

.industry-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.industry-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.industry-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: #1976D2;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(25, 118, 210, 0.15);
}

.industry-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1976D2 0%, #667eea 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.industry-card-icon i {
  font-size: 28px;
  color: white;
}

.industry-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
}

.industry-points {
  list-style: none;
  padding: 0;
}

.industry-points li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #6c757d;
  line-height: 1.6;
}

.industry-points li::before {
  content: '•';
  color: #1976D2;
  margin-right: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Case Studies Section */
.case-studies-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.case-studies-container {
  max-width: 1200px;
  margin: 0 auto;
}

.case-studies-header {
  text-align: center;
  margin-bottom: 80px;
}

.case-studies-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.case-study-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.case-study-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-header {
  border-left: 4px solid #1976D2;
  padding-left: 20px;
  margin-bottom: 25px;
}

.case-study-label {
  color: #1976D2;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-study-client {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin: 5px 0;
}

.case-study-details {
  margin-bottom: 20px;
}

.case-study-item {
  display: flex;
  margin-bottom: 15px;
}

.case-study-key {
  font-weight: 600;
  color: #2d3748;
  min-width: 100px;
  margin-right: 15px;
}

.case-study-value {
  color: #6c757d;
  line-height: 1.6;
}

.case-study-result {
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
  padding: 20px;
  border-radius: 15px;
  border-left: 4px solid #1976D2;
}

.result-label {
  color: #1976D2;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.result-text {
  color: #2d3748;
  font-weight: 600;
}

/* Pathways Section */
.pathways-section {
  padding: 100px 20px;
  background: white;
}

.pathways-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pathways-header {
  text-align: center;
  margin-bottom: 80px;
}

.pathways-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.pathway-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 3px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pathway-card:hover {
  border-color: #1976D2;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(25, 118, 210, 0.15);
}

.pathway-card.featured {
  border-color: #1976D2;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, #ffffff 100%);
}

.pathway-badge {
  background: linear-gradient(135deg, #1976D2 0%, #667eea 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  display: inline-block;
}

.pathway-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.pathway-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pathway-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #6c757d;
}

.pathway-features li i {
  color: #1976D2;
  margin-right: 10px;
  width: 16px;
}

.pathway-cta {
  background: linear-gradient(135deg, #1976D2 0%, #667eea 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.pathway-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
  color: white;
}

/* FAQ Section */
.service-faq-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.service-faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.service-faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.service-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-faq-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-faq-item.active {
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, white 100%);
  box-shadow: 0 10px 30px rgba(25, 118, 210, 0.15);
}

.service-faq-question {
  padding: 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  transition: all 0.3s ease;
}

.service-faq-question:hover {
  background: rgba(25, 118, 210, 0.05);
}

.service-faq-question i {
  color: #1976D2;
  transition: transform 0.3s ease;
}

.service-faq-item.active .service-faq-question i {
  transform: rotate(180deg);
}

.service-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.service-faq-item.active .service-faq-answer {
  max-height: 500px;
}

.service-faq-answer-content {
  padding: 0 30px 30px;
  color: #6c757d;
  line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2d3748 0%, #1976D2 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite alternate;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.final-cta-disclaimer {
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
  margin-top: 40px;
}



.error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}



@media (max-width: 768px) {
 
  .service-hero-title {
    font-size: 2.5rem;
  }
  
  .service-features {
    grid-template-columns: 1fr;
  }
  
  .failure-reasons,
  .insider-benefits,
  .industry-grid,
  .case-study-cards,
  .pathways-grid {
    grid-template-columns: 1fr;
  }
  
  .qualification-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .qualification-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .modal-content {
    margin: 2% auto;
    width: 95%;
  }
}

@media (max-width: 480px) {
  .service-hero-section {
    padding: 120px 15px 80px;
  }
  
  .service-hero-title {
    font-size: 2rem;
  }
  
  .process-steps-grid {
    grid-template-columns: 1fr;
  }
  
  .process-creation-section,
  .reality-check-section,
  .why-choose-section,
  .industry-section,
  .case-studies-section,
  .pathways-section,
  .service-faq-section,
  .final-cta-section {
    padding: 60px 15px;
  }
  
  .modal-header,
  .modal-body {
    padding: 20px;
  }
  
  .popup-header {
    padding: 30px 20px 15px;
  }
  
  .popup-form-container {
    padding: 20px;
  }
}

@keyframes pulse {
  0% { opacity: 0.3; transform: scale(1) rotate(0deg); }
  100% { opacity: 0.6; transform: scale(1.1) rotate(180deg); }
}

