body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #031B1B;
    color: #ffffff;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Container for the centerpiece images */
.about-right-features .about-right-feature-centerpiece {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0; /* Vertical spacing to separate from features */
    width: 100%; /* Ensures it takes full width of the parent */
}

/* Styling for the centerpiece images */
.about-right-features .about-right-centerpiece-image {
    width: 100%; /* Fills container width */
    max-width: 1200px; /* Caps size on large screens; adjust as needed */
    height: auto; /* Preserves aspect ratio */
    border-radius: 12px; /* Rounded corners for a modern look */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Subtle shadow for prominence */
    object-fit: cover; /* Ensures image fills space cleanly if cropped */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-right-features .about-right-centerpiece-image {
        max-width: 90%; /* Reduces size slightly on smaller screens */
        border-radius: 8px; /* Slightly smaller radius for mobile */
    }
}

@media (min-width: 1200px) {
    .about-right-features .about-right-centerpiece-image {
        max-width: 1400px; /* Allows larger images on wide screens */
    }
}

#enhanced-section {
    padding: 50px 0;
    text-align: center;
  }
  
  #enhanced-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffffff;
  }
  
  .products {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .product-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    
  }
  
  .product-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .product-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .product-card .btn {
    background: #0E9294;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s;
  }
  
  .product-card .btn:hover {
    background: #000000;
  }
  
  .assets h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }
  
  .asset-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  .asset-item img:hover {
    transform: scale(1.05);
  }
  
  .asset-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-top: 10px;
    color: #ffffff;
  }
  
  .testimonials h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .testimonial-carousel {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .testimonial-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }
  
  .testimonial-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .testimonial-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #0E9294;
  }
  
  .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .products {
      flex-direction: column;
      align-items: center;
    }
    .product-card {
      width: 80%;
    }
    .assets-grid {
      grid-template-columns: 1fr;
    }
    #enhanced-section h2 {
      font-size: 28px;
    }
    .assets h3,
    .testimonials h3 {
      font-size: 24px;
    }
  }
  
  @media (max-width: 575px) {
    .product-card {
      width: 90%;
    }
    .testimonial-carousel {
      width: 90%;
    }
    #enhanced-section h2 {
      font-size: 24px;
    }
    .assets h3,
    .testimonials h3 {
      font-size: 20px;
    }
    .carousel-control {
      font-size: 20px;
    }

  }
  #spotlight-section {
    padding: 50px 0;
    text-align: center;
    background: #031B1B; /* Dark background consistent with your design */
  }
  
  #spotlight-section .spotlight-section-products {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
  }
  
  #spotlight-section .spotlight-section-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    width: 600px; /* Increased width to give galleries more space */
    text-align: left;
  }
  
  #spotlight-section .spotlight-section-item-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #0E9294; /* Accent color */
  }
  
  #spotlight-section .spotlight-section-item-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  #spotlight-section .spotlight-section-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two-column layout */
    gap: 10px;
  }
  
  #spotlight-section .spotlight-section-image {
    width: 100%;
    height: 250px; /* Increased height for larger, less cramped images */
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  #spotlight-section .spotlight-section-image:hover {
    transform: scale(1.05); /* Hover effect for interactivity */
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    #spotlight-section .spotlight-section-item {
      width: 100%; /* Full width on smaller screens */
    }
  }
  
  @media (max-width: 576px) {
    #spotlight-section .spotlight-section-gallery {
      grid-template-columns: 1fr; /* Optional: Single column on very small screens */
    }
  }
  
  #spotlight-section .spotlight-section-action .spotlight-section-btn {
    background: #0E9294;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s ease;
  }
  
  #spotlight-section .spotlight-section-action .spotlight-section-btn:hover {
    background: #000000;
  }
  
  #spotlight-section-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
  }
  
  #spotlight-section-modal .spotlight-section-modal-image {
    max-width: 80%;
    max-height: 80%;
  }
  
  #spotlight-section-modal .spotlight-section-modal-caption {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-top: 10px;
  }
  
  #spotlight-section-modal .spotlight-section-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 35px;
    cursor: pointer;
  }


  .carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 100%;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.indicator {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.indicator.active {
    background: #333;
}

/* Optional: Ensure split-screen layout works */
.split-screen {
    display: flex;
    width: 100%;
}

.left-side, .right-side {
    width: 50%;
}