
/* Hero Section Styles */
.hero-section {
  position: relative;
  margin-top: 76px; /* Adjust based on navbar height */
}

.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}

.slides-container {
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(17, 68, 106, 0.85) 0%, rgba(17, 68, 106, 0.6) 50%, rgba(17, 68, 106, 0.3) 100%);
}

.slide-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
  z-index: 3;
  padding: 0 15px;
}

.slide-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1.2rem;
}

.slide-content h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #65a953;
  border-radius: 2px;
}

.slide-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, #65a953 0%, #4d9a3d 100%);
  padding: 12px 28px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-primary i {
  margin-left: 8px;
}

.btn-outline {
  border: 2px solid white;
  padding: 12px 28px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(101, 169, 83, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-arrows {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.arrow-prev, .arrow-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-prev:hover, .arrow-next:hover {
  background: #65a953;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #65a953;
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .slide-content h1 {
    font-size: 2.5rem;
  }
  
  .slide-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 70vh;
  }
  
  .slide-content h1 {
    font-size: 2rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .btn-primary, .btn-outline {
    padding: 10px 24px;
  }
}

@media (max-width: 575px) {
  .hero-slider {
    height: 90vh;
    min-height: 450px;
  }
  
  .slide-content h1 {
    font-size: 1.8rem;
  }
}




  .about-section {
    background-color: var(--accent-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  
  .section-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    color: var(--primary-color);
    opacity: 0.8;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .accent-line {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin-bottom: 20px;
    border-radius: 2px;
  }
  
  .about-image-container {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
  }
  
  .about-shape-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-color: rgba(101, 169, 83, 0.15);
    top: -30px;
    left: -30px;
    z-index: -1;
  }
  
  .about-shape-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background-color: rgba(17, 68, 106, 0.1);
    bottom: -20px;
    right: -20px;
    z-index: -1;
  }
  
  .about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(17, 68, 106, 0.15);
    transition: all 0.5s ease;
  }
  
  .about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(17, 68, 106, 0.2);
  }
  
  .experience-badge {
    position: absolute;
    bottom: -20px;
    right: 40px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 10px;
    padding: 15px 25px;
    box-shadow: 0 10px 25px rgba(17, 68, 106, 0.2);
    text-align: center;
  }
  
  .exp-years {
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    line-height: 1.1;
  }
  
  .exp-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .content-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(17, 68, 106, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(17, 68, 106, 0.15);
  }
  
  .content-card h3 {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .value-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(17, 68, 106, 0.08);
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(17, 68, 106, 0.12);
  }
  
  .value-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(17, 68, 106, 0.15);
  }
  
  .value-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .value-card p {
    font-size: 0.9rem;
    color: var(--primary-color);
    opacity: 0.8;
  }
  
  .achievement-item {
    padding: 10px;
  }
  
  .achievement-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
  }
  
  .achievement-text {
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0.7;
  }
  
  .team-member-preview .member-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(17, 68, 106, 0.2);
    border: 3px solid white;
    transition: transform 0.3s ease;
  }
  
  .team-member-preview:hover .member-photo {
    transform: translateY(-5px);
  }
  
  .team-member-preview h6 {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .badge.bg-secondary {
    background: var(--secondary-color) !important;
    padding: 8px 16px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.8rem;
  }
  
  .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(17, 68, 106, 0.2);
  }
  
  .cta-card {
    background: linear-gradient(135deg, rgba(17, 68, 106, 0.02) 0%, rgba(17, 68, 106, 0.08) 100%);
    border-left: 4px solid var(--secondary-color);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 991.98px) {
    .about-section {
      padding: 80px 0;
    }
    
    .section-title {
      font-size: 2.2rem;
    }
    
    .content-card {
      padding: 30px;
    }
    
    .experience-badge {
      right: 30px;
    }
  }
  
  @media (max-width: 767.98px) {
    .about-section {
      padding: 60px 0;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .about-content {
      padding-left: 0 !important;
      margin-top: 2rem;
    }
    
    .content-card {
      padding: 25px;
    }
    
    .achievements-row .col-md-3 {
      margin-bottom: 1.5rem;
    }
    
    .experience-badge {
      padding: 10px 20px;
    }
    
    .exp-years {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .section-title {
      font-size: 1.8rem;
    }
    
    .value-card {
      padding: 15px;
    }
    
    .value-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .team-member-preview .member-photo {
      width: 60px;
      height: 60px;
    }
  }






    .vision-mission-section {
      background-color: var(--accent-color);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    
    .section-title {
      color: var(--primary-color);
      font-weight: 700;
      font-size: 2.5rem;
    }
    
    .section-subtitle {
      color: var(--primary-color);
      opacity: 0.8;
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .accent-line {
      width: 80px;
      height: 4px;
      background: var(--secondary-color);
      margin-bottom: 20px;
      border-radius: 2px;
    }
    
    .badge.bg-secondary {
      background: var(--secondary-color) !important;
      padding: 8px 16px;
      font-weight: 500;
      letter-spacing: 1px;
      font-size: 0.8rem;
    }
    
    /* Vision Mission Cards */
    .vision-mission-card {
      border-radius: 20px;
      background: white;
      box-shadow: 0 15px 50px rgba(17, 68, 106, 0.1);
      padding: 40px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      z-index: 1;
    }
    
    .vision-mission-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(17, 68, 106, 0.15);
    }
    
    .card-icon {
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-bottom: 25px;
      font-size: 1.8rem;
      color: white;
      position: relative;
      z-index: 2;
      box-shadow: 0 10px 30px rgba(17, 68, 106, 0.2);
    }
    
    .vision-card .card-icon {
      background: var(--primary-gradient);
    }
    
    .mission-card .card-icon {
      background: var(--secondary-gradient);
    }
    
    .card-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }
    
    .card-text {
      color: var(--primary-color);
      opacity: 0.85;
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 25px;
      position: relative;
      z-index: 2;
    }
    
    .card-shape {
      position: absolute;
      top: -80px;
      right: -80px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      z-index: 1;
      opacity: 0.1;
      transition: all 0.5s ease;
    }
    
    .vision-card .card-shape {
      background: var(--primary-color);
    }
    
    .mission-card .card-shape {
      background: var(--secondary-color);
    }
    
    .vision-mission-card:hover .card-shape {
      transform: scale(1.2);
    }
    
    /* List Styling */
    .card-list {
      list-style-type: none;
      padding: 0;
      margin: 0;
      position: relative;
      z-index: 2;
    }
    
    .card-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
      color: var(--primary-color);
      opacity: 0.9;
    }
    
    .card-list li:last-child {
      margin-bottom: 0;
    }
    
    .list-icon {
      margin-right: 12px;
      color: var(--secondary-color);
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 4px;
    }
    
    /* Values Pillars */
    .values-container {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 50px rgba(17, 68, 106, 0.1);
      margin-top: 40px;
    }
    
    .value-pillar {
      background: white;
      padding: 30px 20px;
      text-align: center;
      height: 100%;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }
    
    .value-pillar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--secondary-gradient);
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 2;
    }
    
    .value-pillar:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(17, 68, 106, 0.15);
      z-index: 3;
    }
    
    .value-pillar:hover::before {
      opacity: 1;
    }
    
    .value-pillar-icon {
      width: 60px;
      height: 60px;
      background: rgba(17, 68, 106, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: 0 auto 20px;
      font-size: 1.5rem;
      color: var(--primary-color);
      transition: all 0.3s ease;
    }
    
    .value-pillar:hover .value-pillar-icon {
      background: var(--primary-gradient);
      color: white;
      transform: scale(1.1);
      box-shadow: 0 10px 25px rgba(17, 68, 106, 0.2);
    }
    
    .value-pillar h5 {
      color: var(--primary-color);
      font-weight: 600;
      margin-bottom: 15px;
    }
    
    .value-pillar p {
      color: var(--primary-color);
      opacity: 0.7;
      font-size: 0.9rem;
      margin-bottom: 0;
    }
    
    /* Commitment Card */
    .commitment-card {
      background: linear-gradient(135deg, rgba(17, 68, 106, 0.02) 0%, rgba(17, 68, 106, 0.08) 100%);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 15px 50px rgba(17, 68, 106, 0.1);
      border-left: 4px solid var(--secondary-color);
    }
    
    .commitment-card h4 {
      color: var(--primary-color);
      font-weight: 600;
      margin-bottom: 15px;
    }
    
    .commitment-card p {
      color: var(--primary-color);
      opacity: 0.85;
      line-height: 1.7;
    }
    
    .commitment-icon {
      width: 80px;
      height: 80px;
      background: var(--primary-gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: white;
      margin: 0 auto;
      box-shadow: 0 10px 30px rgba(17, 68, 106, 0.2);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
      .vision-mission-section {
        padding: 80px 0;
      }
      
      .section-title {
        font-size: 2.2rem;
      }
      
      .commitment-card {
        padding: 30px;
      }
    }
    
    @media (max-width: 767.98px) {
      .vision-mission-section {
        padding: 60px 0;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .vision-mission-card {
        padding: 30px;
      }
      
      .card-title {
        font-size: 1.6rem;
      }
      
      .value-pillar {
        padding: 25px 15px;
        border-bottom: 1px solid rgba(17, 68, 106, 0.05);
      }
      
      .value-pillar:hover {
        transform: translateY(-5px);
      }
    }
    
    @media (max-width: 575.98px) {
      .section-title {
        font-size: 1.8rem;
      }
      
      .vision-mission-card {
        padding: 25px;
      }
      
      .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }
      
      .card-title {
        font-size: 1.5rem;
      }
      
      .commitment-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }
    }




    /* Section Styles */
    .services-section {
      background-color: var(--accent-color);
      padding: 80px 0;
    }
    
    .section-title {
      color: var(--primary-color);
      font-weight: 700;
      font-size: 2.2rem;
    }
    
    .section-subtitle {
      color: var(--primary-color);
      opacity: 0.8;
      font-size: 1.1rem;
    }
    
    .accent-line {
      width: 70px;
      height: 4px;
      background: var(--secondary-color);
      margin-bottom: 20px;
      border-radius: 2px;
    }
    
    /* Service Box Styles */
    .service-box {
      background: white;
      border-radius: 10px;
      padding: 30px;
      height: 100%;
      box-shadow: 0 10px 30px rgba(17, 68, 106, 0.08);
      transition: all 0.3s ease;
      border-top: 4px solid transparent;
    }
    
    .service-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(17, 68, 106, 0.12);
      border-top: 4px solid var(--secondary-color);
    }
    
    .service-icon {
      width: 60px;
      height: 60px;
      background: var(--primary-gradient);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: white;
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }
    
    .service-box:hover .service-icon {
      background: var(--secondary-gradient);
      border-radius: 50%;
    }
    
    .service-box h3 {
      color: var(--primary-color);
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 15px;
    }
    
    .service-box p {
      color: var(--primary-color);
      opacity: 0.8;
      font-size: 0.95rem;
      margin-bottom: 20px;
    }
    
    .service-link {
      color: var(--secondary-color);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s ease;
    }
    
    .service-link i {
      margin-left: 8px;
      font-size: 0.85rem;
      transition: transform 0.3s ease;
    }
    
    .service-link:hover {
      color: var(--primary-color);
    }
    
    .service-link:hover i {
      transform: translateX(5px);
    }
    
    /* CTA Box */
    .cta-box {
      background: var(--primary-gradient);
      border-radius: 15px;
      padding: 40px;
      color: white;
      box-shadow: 0 15px 40px rgba(17, 68, 106, 0.2);
      margin-top: 30px;
    }
    
    .cta-box h3 {
      color: white;
      font-weight: 600;
      margin-bottom: 15px;
    }
    
    .cta-box p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .btn-primary {
      background: white;
      color: var(--primary-color);
      border: none;
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: 600;
      letter-spacing: 0.5px;
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
      background: var(--secondary-color);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(101, 169, 83, 0.3);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
      .services-section {
        padding: 60px 0;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .service-box {
        padding: 25px;
      }
    }
    
    @media (max-width: 767.98px) {
      .services-section {
        padding: 50px 0;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
      }
      
      .service-box h3 {
        font-size: 1.3rem;
      }
      
      .cta-box {
        padding: 30px 20px;
      }
    }





    /* Clients Section Styling */
    .clients-section {
      background-color: var(--accent-color);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    
    .section-title {
      color: var(--primary-color);
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
    }
    
    .section-subtitle {
      color: var(--primary-color);
      opacity: 0.8;
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .accent-line {
      width: 80px;
      height: 4px;
      background: var(--secondary-color);
      margin-bottom: 20px;
      border-radius: 2px;
    }
    
    /* Client Logo Cards */
    .client-logo-card {
      background: white;
      border-radius: 12px;
      padding: 25px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(17, 68, 106, 0.08);
      transition: all 0.3s ease;
    }
    
    .client-logo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(17, 68, 106, 0.12);
    }
    
    .logo-container {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 90px;
      width: 100%;
    }
    
    .client-logo {
      max-height: 70px;
      /*filter: grayscale(100%);*/
      /*opacity: 0.7;*/
      transition: all 0.3s ease;
    }
    
    .client-logo-card:hover .client-logo {
      filter: grayscale(0%);
      opacity: 1;
    }
    
    /* Testimonial Styling */
    .testimonial-card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 15px 50px rgba(17, 68, 106, 0.1);
      position: relative;
      z-index: 1;
      overflow: hidden;
      height: 100%;
    }
    
    .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 5px;
      background: var(--secondary-gradient);
      z-index: -1;
    }
    
    .quote-icon {
      font-size: 2rem;
      color: var(--secondary-color);
      opacity: 0.2;
      margin-bottom: 15px;
    }
    
    .testimonial-text {
      color: var(--primary-color);
      font-size: 1.1rem;
      line-height: 1.8;
      font-style: italic;
      margin-bottom: 25px;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
    }
    
    .author-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--secondary-color);
      margin-right: 15px;
    }
    
    .author-name {
      margin-bottom: 0;
      color: var(--primary-color);
      font-weight: 600;
    }
    
    .author-position {
      color: var(--primary-color);
      opacity: 0.7;
      margin-bottom: 0;
      font-size: 0.9rem;
    }
    
    /* Client Feature Styling */
    .client-feature {
      padding: 40px;
      height: 100%;
    }
    
    .feature-title {
      color: var(--primary-color);
      font-weight: 700;
      margin-bottom: 20px;
    }
    
    .feature-text {
      color: var(--primary-color);
      opacity: 0.8;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 25px;
    }
    
    /* Stats Styling */
    .stat-item {
      text-align: center;
      padding: 15px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(17, 68, 106, 0.08);
      transition: all 0.3s ease;
    }
    
    .stat-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(17, 68, 106, 0.12);
    }
    
    .stat-number {
      color: var(--secondary-color);
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1.2;
    }
    
    .stat-label {
      color: var(--primary-color);
      font-size: 0.9rem;
      font-weight: 500;
    }
    
    /* Responsive adjustments */
    @media (max-width: 991.98px) {
      .client-feature {
        padding: 30px 15px;
      }
      
      .testimonial-card {
        padding: 30px;
      }
    }
    
    @media (max-width: 767.98px) {
      .clients-section {
        padding: 60px 0;
      }
      
      .stat-number {
        font-size: 1.8rem;
      }
      
      .stat-label {
        font-size: 0.8rem;
      }
    }





    /* Contact Section Styling */
    .contact-section {
      background-color: var(--accent-color);
      padding: 60px 0;
      position: relative;
    }
    
    .section-title {
      color: var(--primary-color);
      font-weight: 700;
      margin-bottom: 15px;
      position: relative;
    }
    
    .section-subtitle {
      color: var(--primary-color);
      opacity: 0.8;
      font-size: 1rem;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .accent-line {
      width: 60px;
      height: 4px;
      background: var(--secondary-color);
      margin-bottom: 15px;
      border-radius: 2px;
    }
    
    /* Map Container */
    .map-container {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(17, 68, 106, 0.1);
    }
    
    .map-container iframe {
      display: block;
      filter: grayscale(20%);
      transition: all 0.3s ease;
    }
    
    .map-container:hover iframe {
      filter: grayscale(0%);
    }
    
    /* Contact Info Cards */
    .contact-info-grid {
      margin-top: 0.5rem;
    }
    
    .contact-info-card {
      background: white;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 5px 20px rgba(17, 68, 106, 0.08);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      align-items: center;
      border-left: 3px solid var(--secondary-color);
    }
    
    .contact-info-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(17, 68, 106, 0.12);
    }
    
    .card-icon {
      color: var(--secondary-color);
      font-size: 1.5rem;
      margin-right: 15px;
      flex-shrink: 0;
    }
    
    .card-content h5 {
      color: var(--primary-color);
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 5px;
    }
    
    .card-content p {
      color: var(--primary-color);
      opacity: 0.8;
      font-size: 0.9rem;
      line-height: 1.5;
      text-align: justify;       /* Justifies text (aligns both left & right edges) */
    text-justify: inter-word;  /* Improves spacing between words when justified */
    display: flex;             /* Optional, if you want to align content vertically */
    align-items: center;       /* Vertically centers content if using flex */
    }
    
    /* Social Media Links */
    .social-media-links {
      display: flex;
      gap: 10px;
      justify-content: flex-start;
    }
    
    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--primary-gradient);
      color: white;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      box-shadow: 0 3px 10px rgba(17, 68, 106, 0.15);
    }
    
    .social-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(17, 68, 106, 0.2);
      color: white;
    }
    
    /* Contact Form */
    .contact-form-container {
      background: white;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 10px 40px rgba(17, 68, 106, 0.1);
      height: 100%;
      align-content: center;
    }
    
    .form-title {
      color: var(--primary-color);
      font-weight: 600;
      margin-bottom: 20px;
      font-size: 1.3rem;
    }
    
    .form-floating {
      margin-bottom: 0;
    }
    
    .form-control, .form-select {
      border: 1px solid rgba(17, 68, 106, 0.1);
      border-radius: 8px;
    }
    
    .form-control:focus, .form-select:focus {
      border-color: var(--secondary-color);
      box-shadow: 0 0 0 0.2rem rgba(101, 169, 83, 0.15);
    }
    
    .form-floating label {
      color: var(--primary-color);
      opacity: 0.7;
    }
    
    .form-check-input:checked {
      background-color: var(--secondary-color);
      border-color: var(--secondary-color);
    }
    
    .privacy-link {
      color: var(--secondary-color);
      text-decoration: none;
      font-weight: 500;
    }
    
    .privacy-link:hover {
      text-decoration: underline;
    }
    
    .send-message-btn {
      padding: 0.6rem 1.5rem;
      font-size: 0.95rem;
    }
    
    /* Success Message */
    .form-success-message {
      text-align: center;
      padding: 20px 10px;
    }
    
    .success-icon {
      font-size: 3rem;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }
    
    .form-success-message h5 {
      color: var(--primary-color);
      font-weight: 600;
      margin-bottom: 10px;
    }
    
    .form-success-message p {
      color: var(--primary-color);
      opacity: 0.8;
      margin-bottom: 15px;
      font-size: 0.95rem;
    }
    
    /* Responsive adjustments */
    @media (max-width: 991.98px) {
      .contact-info-card {
        margin-bottom: 15px;
      }
    }
    
    @media (max-width: 767.98px) {
      .contact-section {
        padding: 40px 0;
      }
      
      .social-media-links {
        justify-content: center;
        margin-top: 20px;
      }
      
      .contact-form-container {
        margin-top: 20px;
      }
    }
