.logo-image {
  max-height: 140px !important; /* Much larger than before */
  margin-top: -20px; /* Pull the logo up significantly */
  margin-bottom: -20px; /* Pull the logo down significantly */
  position: relative;
  z-index: 1000; /* Ensure the logo stays above other elements */
}
/* Testing Page CSS */

:root {
  --primary-color: #5a8d55;
  --secondary-color: #84b97f;
  --light-color: #e8f5e4;
  --dark-color: #3a5c38;
  --white-color: #ffffff;
  /* Other variables */
}

/* Page Title - Make sure this matches exactly */
.page-title {
  background-color: var(--primary-color);
  background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  padding: 100px 0 60px; /* Increased padding from 120px to 150px */
  color: var(--white-color);
  position: relative;
  text-align: center;
}

.page-title h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.custom-tabs {
    border: none;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }

  .custom-tabs .nav-item {
    margin: 5px 5px;
  }

  .custom-tabs .nav-link {
    border: none;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
  }

  .custom-tabs .nav-link:hover {
    color: #32de84;
    background: rgba(71, 178, 228, 0.1);
  }

  .custom-tabs .nav-link.active {
    color: #fff;
    background: #32de84;
    box-shadow: 0 2px 10px rgba(71, 178, 228, 0.3);
  }

  .custom-tabs .nav-link i {
    font-size: 1.1em;
  }

  .tab-content {
    background-color: transparent;
    border: none;
    box-shadow: none;
  }

  .tab-content .content-section {
    background: #f8f9fa; 
    padding: 50px;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }


  .tab-content .content-section h3{
    text-align: center;
  }

  .case-study {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.case-study h4 {
    color: #2c4964;
    margin-bottom: 20px;
    font-weight: 600;
}

.component-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.component-list li {
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #32de84;
}

.component-list strong {
    color: #2c4964;
}
/* Testing Photos Carousel Styles */
.testing-photos {
  padding: var(--section-padding);
  position: relative;
}

.testing-photos .section-title h2 {
  padding: 50px;
  color: var(--heading-color);
  text-transform: uppercase;
}

.testing-photos .section-title p {
  color: #6c757d;
}

.testing-photos .section-title::after {
  background-color: var(--primary-color);
}

#testingPhotosCarousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  background-color: var(--white-color);
  transition: transform 0.3s ease;
}

#testingPhotosCarousel:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
  overflow: hidden;
  background-color: var(--white-color);
}

.carousel-image {
  max-width: 100%;
  max-height: 450px;
  object-fit: contain;
}

/* Carousel controls styling to match site theme */
.carousel-control-prev, 
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover, 
.carousel-control-next:hover {
  opacity: 1;
  background-color: var(--dark-color);
  transform: translateY(-50%) scale(1.1);
}

/* Indicators styling to match site theme */
.carousel-indicators {
  bottom: 15px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--light-color);
  border: 1px solid var(--primary-color);
  margin: 0 4px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--primary-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

/* Fallback for missing images */
.carousel-item {
  background: var(--light-color);
  min-height: 450px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .carousel-image-container {
    height: 400px;
  }
  
  .carousel-image {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .carousel-image-container {
    height: 350px;
  }
  
  .carousel-image {
    max-height: 350px;
  }
  
  .carousel-control-prev, 
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .carousel-image-container {
    height: 280px;
  }
  
  .carousel-image {
    max-height: 280px;
  }
  
  .carousel-control-prev, 
  .carousel-control-next {
    width: 30px;
    height: 30px;
  }
}

.testing-list li {
  list-style-type: none;
}