.card-img-top {
    object-fit: cover;
    height: 250px; /* Set a fixed height for all images */
  }
/* Global Styles */

  
  /* Container Styles */
 
  
  /* Banner Image */
  .mb-5 img {
    border-radius: 10px;  /* Rounded corners for the banner */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  /* Subtle shadow for the banner */
    max-height: 300px;  /* Set a maximum height for the banner */
    object-fit: cover;  /* Make the image cover the area */
  }
  
  /* Section Titles */
 
  
  /* Card Styles */
  .card {
    border: 1px solid #007bff;  /* Border color for each card */
    border-radius: 10px;  /* Rounded corners for the card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Soft shadow around cards */
    background-color: #343a40;  /* Dark background for the card */
    overflow: hidden;  /* Ensures images are clipped if necessary */
    transition: all 0.3s ease;  /* Smooth transition for hover effect */
  }
  
  /* Card Image */
  .card-img-top {
    height: 250px;  /* Fixed height for all images */
    object-fit: cover;  /* Ensure images maintain their aspect ratio */
    border-bottom: 1px solid #007bff;  /* Blue border separating image and content */
  }
  
  /* Card Hover Effects */
  .card:hover {
    transform: translateY(-10px);  /* Lift the card slightly on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  /* Deeper shadow on hover */
  }
  
  /* Card Body */
  .card-body {
    padding: 1.25rem;  /* More padding inside the card */
    text-align: center;  /* Center align text inside card */
  }
  
  /* Card Text */
  .card-text {
    font-size: 1rem;
    color: #fff;  /* White text for better contrast */
    margin-bottom: 0;
  }
  
  /* Info Text Styling */
  .card-text.text-info {
    font-weight: 600;  /* Slightly bolder for emphasis */
    color: #17a2b8;  /* Bootstrap info color for the text */
  }
  
  /* Text Light for Dark Text */
  .card-text.text-light {
    font-weight: 400;  /* Lighter weight for non-emphasized text */
  }
  
  /* Section Layout for Cards */
  /* .row {
    margin-top: 2rem;
  } */
  
  .col-md-6 {
    margin-bottom: 2rem;  /* Space between cards in small devices */
  }
  
  /* Responsive Design */
  @media (max-width: 767px) {
    .card-img-top {
      height: 200px;  /* Slightly smaller image height for mobile */
    }
  
    h3 {
      font-size: 1.5rem;  /* Smaller title font size on mobile */
    }
  }
  
  /* Utility Classes for Spacing */
  .mb-5 {
    margin-bottom: 3rem;
  }
  
  .g-4 {
    gap: 1.5rem;  /* Add some gap between the grid items */
  }
  
  .text-center {
    text-align: center;
  }
  
  .w-100 {
    width: 100%;
  }
  .gallery-image {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
}