
:root {
  --primary-color: #198754;
  --primary-dark: #0f5132;
  --primary-light: #d4edda;
  --accent-color: #20c997;
  --light-bg: #f8fdf9;
}

/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-bg);
  color: #333;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 18px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-color) !important;
  font-size: 1.6rem;
}

.nav-link {
  font-weight: 500;
  color: #555 !important;
  margin: 0 12px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Sections (Home, About, Services, Contact) */
.hero,
.about-hero,
.services-hero,
.contact-hero {
  background: linear-gradient(135deg, #0f5132 0%, #198754 50%, #20c997 100%);
  color: white;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.about-hero::before,
.services-hero::before,
.contact-hero::before,
.hero::after,
.about-hero::after,
.services-hero::after,
.contact-hero::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero::before,
.about-hero::before,
.services-hero::before,
.contact-hero::before {
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
}

.hero::after,
.about-hero::after,
.services-hero::after,
.contact-hero::after {
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
}

.hero-content,
.about-hero-content,
.services-hero-content,
.contact-hero-content {
  position: relative;
  z-index: 2;
}

.hero h1,
.about-hero h1,
.services-hero h1,
.contact-hero h1 {
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p,
.about-hero .lead,
.services-hero .lead,
.contact-hero .lead {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 35px;
  opacity: 0.9;
}

/* Buttons */
.btn-hero {
  background: white;
  color: var(--primary-color);
  border-radius: 50px;
  padding: 14px 35px;
  font-weight: 600;
  border: 2px solid white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-right: 15px;
  margin-bottom: 10px;
}

.btn-hero:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-hero {
  background: transparent;
  color: white;
  border-radius: 50px;
  padding: 14px 35px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border: 2px solid white;
}

/* Hero Features */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-feature i {
  font-size: 1.5rem;
  color: #a8e6cf;
}

/* Section Titles */
.section-title {
  position: relative;
  margin-bottom: 50px;
  font-weight: 700;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.text-start .section-title::after {
  display: none;
}

/* Card Components */
.feature-card,
.value-card,
.service-card,
.industry-card,
.benefit-card,
.testimonial-card,
.team-card,
.journey-content,
.integration-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
}

.feature-card:hover,
.value-card:hover,
.service-card:hover,
.industry-card:hover,
.benefit-card:hover,
.testimonial-card:hover,
.team-card:hover,
.journey-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.integration-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

/* Icons */
.feature-icon,
.value-icon,
.service-icon,
.industry-icon,
.journey-icon,
.contact-icon,
.stat-icon,
.punchline-icon {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(25, 135, 84, 0.1);
}

.service-icon {
  font-size: 4rem;
  width: 120px;
  height: 120px;
}

.journey-icon,
.contact-icon,
.stat-icon,
.punchline-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
}

.stat-icon {
  background: white!important ;
  backdrop-filter: blur(10px);
}

.benefit-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

/* Content Sections */
.about-section,
.mission-section,
.values-section,
.team-section,
.benefits-section,
.main-services-section,
.industry-solutions-section,
.contact-main-section,
.services-cta-section,
.cta-section {
  padding: 100px 0;
  background-color: white;
}

.process-section,
.additional-services-section,
.journey-section,
.vision-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}

/* About Page Specific */
.about-image,
.mission-image,
.vision-image,
.support-image {
  background: linear-gradient(135deg, #e9f8ee 0%, #d4edda 100%);
  border-radius: 15px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-image i,
.mission-image i,
.vision-image i,
.support-image i {
  font-size: 5rem;
  color: var(--primary-color);
}

.about-image {
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Journey Timeline */
.journey-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
  transform: translateY(-50%);
  z-index: 1;
}

.journey-item {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  padding: 0 20px;
}

.journey-year {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 1.1rem;
  position: relative;
  z-index: 3;
}

/* Services Page Specific */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-features li {
  padding: 8px 0;
  color: #555;
}

.service-feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.service-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 2.5rem;
  width: 80px;
  height: 80px;
}

.feature-content h4 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-content p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  border: 4px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Page Specific */
.punchlines-content h2 {
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}

.punchline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.punchline-item:hover {
  background: var(--light-bg);
  transform: translateX(5px);
}

.punchline-text h5 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.punchline-text p {
  color: #666;
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.contact-quick-info {
  margin: 40px 0;
  padding: 25px;
  background: var(--light-bg);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.quick-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.quick-info-item:last-child {
  margin-bottom: 0;
}

.quick-info-item i {
  font-size: 1.4rem;
  margin-right: 15px;
  width: 35px;
}

.quick-info-item strong {
  color: var(--primary-dark);
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.quick-info-item p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.contact-form-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-form-card h3 {
  font-weight: 700;
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

/* Stats Sections */
.stats-section,
.quick-stats-section {
  background: linear-gradient(135deg, #198754 0%, #0f5132 100%);
  color: white;
  padding: 80px 0;
}

.quick-stats-section {
  padding: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.quick-stats-section .stat-item {
  padding: 20px 15px;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.quick-stats-section .stat-number {
  font-size: 1.8rem;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
}

.quick-stats-section .stat-label {
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Integration Section */
.integration-section {
  background: linear-gradient(135deg, #198754 0%, #0f5132 100%);
  color: white;
  padding: 80px 0;
}

.integration-icon {
  font-size: 3rem;
  color: #a8e6cf;
  margin-bottom: 20px;
}

.integration-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

/* Testimonials */
.testimonial-card {
  position: relative;
  padding: 35px 30px;
}

.testimonial-card::before {
  content: """;
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 4rem;
  color: rgba(25, 135, 84, 0.1);
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-card h6 {
  color: var(--primary-dark);
}

/* Team Section */
.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e9f8ee 0%, #d4edda 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-img i {
  font-size: 4rem;
  color: var(--primary-color);
}

/* CTA Sections */
.cta-section,
.services-cta-section,
.contact-cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: white;
}

.cta-content,
.services-cta-content,
.contact-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-buttons {
  margin-top: 30px;
}

.services-cta-content h2,
.contact-cta-content h2 {
  color: var(--primary-dark);
}

.services-cta-content .lead,
.contact-cta-content .lead {
  color: #666;
}

/* Footer */
footer {
  background: var(--primary-dark);
  padding: 70px 0 30px;
  color: #fff;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 20px;
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-light);
  transform: translateY(-3px);
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: #d4edda;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #fff;
}

footer .contact-info p {
  color: #d4edda;
}

.copyright {
  color: #d4edda;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero,
  .about-hero,
  .services-hero,
  .contact-hero {
    padding: 130px 0 80px;
  }
  
  .hero h1,
  .about-hero h1,
  .services-hero h1,
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p,
  .about-hero .lead,
  .services-hero .lead,
  .contact-hero .lead {
    font-size: 1.1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .about-image,
  .mission-image,
  .vision-image,
  .support-image {
    margin-top: 40px;
    padding: 40px 30px;
  }
  
  .about-image {
    min-height: 300px;
  }
  
  .journey-timeline {
    flex-direction: column;
  }
  
  .journey-timeline::before {
    display: none;
  }
  
  .journey-item {
    margin-bottom: 40px;
  }
  
  .service-feature-card {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto 20px;
  }
  
  .punchline-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .punchline-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .contact-form-card {
    padding: 30px 25px;
    margin-top: 40px;
  }
  
  .quick-info-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .quick-info-item i {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .quick-stats-section {
    padding: 30px 0;
  }
  
  .stat-item {
    margin-bottom: 20px;
    padding: 15px 10px;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 80px 0 50px;
  }
  
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  
  .contact-hero .lead {
    font-size: 1.1rem;
  }
  
  .punchlines-content h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .feature-card,
  .value-card,
  .service-card,
  .industry-card,
  .benefit-card,
  .testimonial-card,
  .team-card {
    padding: 25px 20px;
  }
}
