 /* General Reset */
 body, h1, h2, p {
    margin: 0;
    padding: 0;
  }

  body {
font-family: Arial, sans-serif;
background-color: #000000;
background-image: url('bg.jpg'); /* Replace with the actual path to your image */
background-size: cover;
background-position: center;
background-attachment: fixed;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
position: relative;
}




  
/* Buttons for theme and share */
.theme-btn, .share-btn {
position: absolute;
top: 15px;
background-color: rgba(85, 85, 85, 0.242);
border: none;
color: #fff;
padding: 10px;
cursor: pointer;
transition: background-color 0.3s;
border-radius: 50%;
z-index: 10;
width: 30px; /* Make the button width fixed */
height: 30px; /* Make the button height fixed */
display: flex;
justify-content: center; /* Center the icon */
align-items: center; /* Center the icon */
font-size: 17px;
}

.theme-btn {
left: 15px;
}

.share-btn {
right: 15px;
}

.theme-btn:hover, .share-btn:hover {
  background-color: rgba(85, 85, 85, 0.242);
}


   /* Light and Dark Theme */
   .light-mode {
    background-color: #000000;
    color: #000000;
  }

  .dark-mode {
    background-color: #000000;
    color: #fff;
  }

  .dark-mode .container {
      background: linear-gradient(to bottom, #1f0033, #0f0f0f); /* Dark to more subtle lighter gray */
  }

  .dark-mode .card h3 {
    color: #ffffff;
  }

  .dark-mode .card {
   background-color: #573685e7;
  }

  .dark-mode .appears-item {
    background-color: #573685e7;
   }

  .dark-mode  .social-links a {
    color: #ffffff;
  }

/* Hide the background image when dark mode is enabled */
body.dark-mode {
background-image: none; /* Remove background image in dark mode */
}

body.dark-mode::before {
background-image: none; /* Remove the blurred image in dark mode */
}
  /* Container */
  .container {
    max-width: 500px;
    width: 100%;
    background: black; /* Dark to more subtle lighter gray */
    border-radius: 0px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
  }


  /* Profile Section */
  .profile-section {
    text-align: center;
    position: relative;
  }

  .background {
width: 100%;
height: 150px;
background: url('bg.jpg') center/cover no-repeat;
background-position: center -210px; /* Moves the image 20px upward */
}


/* Mobile styling */
@media (max-width: 768px) {
  .background {
width: 100%;
height: 130px;
background: url('bg.jpg') center/cover no-repeat;
background-position: center -210px; /* Moves the image 20px upward */
}
}
  .profile-pic {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: .5px solid #ffffff00;
    position: relative;
    margin-top: -50px;
    z-index: 1;
  }


  
  h1 {
    font-size: 15px;
    margin: 10px 0;
    color: #ffffff;
    margin-bottom: 20px;
  }

  p {
    color: #eeeeee;
    font-size: 14px;
    margin-bottom: 25px;

  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
  }

  .social-links a {
    color: #ffffff;
    font-size: 27px;
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 25px;

  }



/* Latest Release Title */
.latest-releases h2 {
font-size: 22px;
font-weight: bold;
color: #ffffff;
text-align: center;
margin-bottom: 15px; /* Space below the title */

}

/* Styling for the LATEST RELEASE text */
.latest-release-text {
  color: #ffffff; /* White text */
   margin-top: 5px;
}

/* Latest Releases Section */
.latest-releases {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 10px; /* Adjusted horizontal padding */
background-color: #61346fdd;
border-top: 2px solid #e1e1e100;
border-radius: 10px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 30px;
position: relative; /* Make sure the button is positioned relative to this section */

}

.latest-releases img {
width: 80px;
height: 80px;
border-radius: 5px;
object-fit: cover;
border: solid rgba(255, 255, 255, 0.064) .5px;
box-shadow: 0 4px 10px rgba(50, 49, 49, 0.3); /* Outline shadow */
margin-left: 5px; /* Move the image slightly to the right */

}


.latest-releases .info {
flex-grow: 1;
margin-left: 15px;

}

.latest-releases .info h3 {
font-size: 16px;
margin-top: 5px;
margin-bottom: 5px;
font-weight: bold;
color: #ffffff;

}

.latest-releases .info p {
font-size: 12px;
color: #ffffff;
margin-bottom: 11px;
}

/* Play/Pause Button */
.play-pause-btn {
background-color: rgba(171, 171, 171, 0.5); /* Semi-transparent dark background */
border: none;
color: #ffffff;
font-size: 24px;
cursor: pointer;
transition: color 0.3s, background-color 0.3s;
position: absolute;
right: 20px; /* Position it on the right side */
top: 50%; /* Position it vertically in the middle */
transform: translateY(-50%); /* Adjust for perfect centering */
border-radius: 50%; /* Make it circular */
width: 40px; /* Set the size of the button */
height: 40px; /* Set the size of the button */
display: flex;
justify-content: center; /* Center the icon horizontally */
align-items: center; /* Center the icon vertically */
padding: 5px; /* Add a little padding for better spacing */
}

.play-pause-btn:hover {
color: #ffffff;
background-color: rgba(171, 171, 171, 0.5); /* Semi-transparent dark background */
}



/* Latest Releases Section */
.latest-releases {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 10px;
background-color: #573685e7;
border-top: 2px solid #e1e1e100;
border-radius: 10px;
margin-left: 17px;
margin-right: 17px;
margin-bottom: 40px;
position: relative; /* Keep the container relative */
overflow: hidden; /* Ensure the progress bar stays inside */
box-shadow: 0 4px 10px rgba(255, 255, 255, 0.119); /* Add shadow here */

}

/* Progress Bar Container */
.progress-bar-container {
position: absolute; /* Position it inside the container */
bottom: 0; /* Stick it to the bottom */
left: 0; /* Align with the left side of the container */
width: 100%; /* Make it span the entire width of the container */
height: 5px; /* Height of the progress bar */
background-color: rgba(255, 255, 255, 0); /* Light transparent background */
border-radius: 3px;
}

/* Progress Bar */
.progress-bar {
width: 0; /* Start with a width of 0 */
height: 100%;
background-color: #ff2600; /* Red color for the progress */
border-radius: 3px;
transition: width 0.1s ease;
}





  
  /* Content Section */
  .content-section {
    padding: 20px;
    flex-grow: 1; /* Pushes content to take remaining space */
    margin-bottom: 30px;
  }


  h2 {
    font-size: 18px;
    margin-bottom: 20px;
    margin-left: 20px;
    color: #f0f0f0;
    text-align: center;

  }

  .card img {
    width: 100%;
    object-fit: cover;
  }

  .card h3 {
    font-size: 16px;
    margin: 10px;
    color: #ffffff;
  }

  .content-section h2 {
text-align: left; /* Centers the text horizontally */
margin-bottom: 20px;
text-align: center;
}


  .card p {
    font-size: 14px;
    margin: 0 10px 10px;
    color: #666;
  }

.carousel {
display: flex;
gap: 10px; /* Space between cards */
overflow-x: auto;
padding-bottom: 10px; /* For some breathing space */
padding-right: 20px; /* Add padding at the right end */
}

.carousel .card:last-child {
margin-right: 20px; /* Add margin to the last card */
}
/* Add margin to the left side of the first video card */
.carousel .card:first-child {
margin-left: 20px; /* Adjust the value to control the space */
}


.card {
flex: 0 0 auto; /* Ensures cards don't shrink or stretch */
width: 300px; /* Set a fixed width */
background-color: #272629e2;
/* Add background blur effect */
backdrop-filter: blur(8px); /* Adjust the blur intensity as needed */
-webkit-backdrop-filter: blur(8px); /* For Safari support */
border-radius: 8px;
box-shadow: 0 2px 5px rgba(255, 255, 255, 0.172);
overflow: hidden;
scroll-snap-align: start; /* Snapping alignment */
}

.carousel::-webkit-scrollbar {
height: 8px; /* Adjust scrollbar height */
}

.carousel::-webkit-scrollbar-thumb {
background: #ccc; /* Scrollbar color */
border-radius: 4px;
}

.carousel::-webkit-scrollbar-track {
background: #f9f9f9; /* Track color */
}

/* Content Section - Full Width with Padding */
.content-section {
flex-grow: 1;
width: 100%;
padding: 0; /* No additional padding inside the content section */
}




.dots-navigation {
display: flex;
justify-content: center;
gap: 6px;  /* Space between dots */
margin-top: 10px;
}

.dots-navigation button {
width: 6px;  /* Smaller width */
height: 6px;  /* Smaller height */
border-radius: 50%;  /* Ensures the dot is perfectly rounded */
border: none;
background-color: #696969;
cursor: pointer;
transition: background-color 0.3s;
padding: 0;  /* Reset any padding */
margin: 0;   /* Reset any margin */
box-sizing: content-box; /* Use content-box to avoid padding affecting size */
}

.dots-navigation button.active {
background-color: #ffffff; /* Highlight active dot */
}


.carousel {
display: flex;
gap: 10px; /* Space between cards */
overflow-x: auto;  /* Enable horizontal scrolling */
padding-bottom: 10px; /* For some breathing space */
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.carousel::-webkit-scrollbar {
display: none;  /* Hides scrollbar in Webkit browsers (Chrome, Safari) */
}


#player-container {
  position: absolute;
  left: -9999px; /* Move off-screen */
}



.appears-on {
margin-top: 50px;
padding: 0 10px;
}

.appears-on h2 {
font-size: 22px;
margin-bottom: 10px;
margin-left: 10px;

}

.appears-on-container {
display: flex;
gap: 15px;
overflow-x: auto;
padding-bottom: 10px;
margin-bottom: 30px;
}

.appears-item {
position: relative;
flex-shrink: 0;
width: 150px;
text-align: center;
background-color: #272629e2;
border-radius: 8px; /* Optional: to match the image border radius */
padding: 0px; /* Optional: add padding inside the item */
padding-bottom: 10px;
left: 10px;
box-shadow: 0 0 5px rgba(255, 255, 255, 0.323); /* Shadow outline with dark color */

/* Add background blur effect */
backdrop-filter: blur(8px); /* Adjust the blur intensity as needed */
-webkit-backdrop-filter: blur(8px); /* For Safari support */
}



.appears-item img {
width: 100%;
border-radius: 8px 8px 0 0;
}



.play-pause {
position: absolute;
bottom: 80px; /* Distance from the bottom */
right: 5px; /* Distance from the right */
display: flex;
justify-content: center;
align-items: center;
}

.play-button {
width: 40px;
height: 40px;
background-color: rgba(0, 0, 0, 0.5);
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}

.play-button i {
color: white;
font-size: 18px; /* Adjust size of the icon */
}

.play-button:active i {
content: '\f04c'; /* Change to pause icon on click (Font Awesome) */
}


.appears-item p {
font-size: 0.9rem;
margin: 5px 0 2px;
color: #fff;
font-weight: bold; /* Makes the text bold */
}

.appears-on h2 {
  text-align: center;
margin-bottom: 20px;
font-size: 20px;


}


.appears-item span {
font-size: 0.8rem;
color: rgb(227, 227, 227);
}

/* Mobile styling */
@media (max-width: 768px) {
.appears-on-container {
  gap: 10px;
}

.appears-item {
  width: 140px;
}

.play-pause {
 display: none;
}
}

/* Remove the underline from links */
.appears-item a {
  text-decoration: none;
  color: inherit; /* Keeps the text color same as surrounding text */
}

.collaboration-section {
position: relative; /* Ensure the overlay is positioned relative to this element */
background-image: url('bg.jpg'); /* Replace with your background image URL */
background-size: cover; /* Ensure the image covers the section */
background-position: center; /* Center the background image */
padding: 25px;
padding-bottom: 40px;
border-radius: 10px; /* Rounded corners for the section */
margin-top: 20px;
text-align: left;
margin-bottom: 20px;
justify-content: space-between;
align-items: center;
padding: 15px 10px; /* Adjusted horizontal padding */
background-color: rgba(63, 59, 64, 0.87); /* Semi-transparent background to allow overlay */
margin-left: 20px;
margin-right: 20px;
margin-bottom: 10px;

/* Add backdrop blur effect */
backdrop-filter: blur(10px); /* Adjust the blur intensity as needed */
}

/* Add the black overlay using a pseudo-element */
.collaboration-section::before {
content: ''; /* Required for pseudo-elements */
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 1px solid #ffffff0a;
box-shadow: 0 4px 8px rgba(255, 255, 255, 0.078); /* Subtle shadow for depth */
background: rgba(0, 0, 0, 0.219); /* Black overlay with 50% opacity */
border-radius: 10px; /* Ensure overlay matches the rounded corners */
z-index: -1; /* Make sure the overlay is behind the content */
}


.collaboration-section h2 {
font-size: 20px;
font-weight: bold;
color: #ffffff; /* White text for dark background */
margin-bottom: 15px;
text-align: center;
margin-left: 0px; /* Slightly shifts the text to the right */

}

.collaboration-description {
font-size: 1rem;
color: #ffffff; /* Light gray for balanced contrast */
line-height: 1.8; /* Enhanced readability */
margin-bottom: 20px;
max-width: 700px;
margin-left: 10px; /* Slightly shifts the text to the right */
margin-right: auto;
}


.email-link {
text-decoration: none; /* Remove underline */
color: #ffffff; /* White text for consistency */
font-weight: bold; /* Emphasized text */
}

.button-container {
text-align: left; /* Aligns the button to the right */
}


.email-button {
display: inline-block;
color: #fff; /* White text */
background-color: #000000; /* Soft purple for the button */
padding: 8px 16px; /* Comfortable padding */
border-radius: 5px; /* Rounded corners */
text-decoration: none; /* Remove underline */
font-weight: bold;
font-size: 14px;
margin-left: 10px; /* Slightly shifts the text to the right */

transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effect */
}






.collaborators span {
  display: block;
  margin-bottom: 2px; /* Optional: adjust the spacing between names */
}



.spotify-footer {
  text-align: left;
  padding: 0px;
  margin-top: 50px;
  }
  
  .footer-header {
  font-size: 1.8rem;
  margin-bottom: 20px;
  
  }
  
  .spotify-footer .footer-header {
  text-align: left; /* Centers the text horizontally */
  font-size: 20px;
  }
  
  
  .image-overlay-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  border-radius: 0px;
  
  }
  
  
  
  .text-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(transparent, rgb(0, 0, 0));
  padding: 20px;
  color: white;
  text-align: left;
  box-sizing: border-box;
  }
  
  .image-overlay-container {
  position: relative;
  }
  
  .background-img {
      width: 100%;
      height: 500px; /* Increase this value to make the image taller */
      display: block;
      object-fit: cover;
      border-radius: 0px;
    }
    
    /* Mobile styling */
  @media (max-width: 768px) {
      .background-img {
          width: 100%;
          height: 430px; /* Increase this value to make the image taller */
          display: block;
          object-fit: cover;
          border-radius: 0px;
        }
      }
  
  .image-overlay-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Adjust height to control gradient size */
  background: linear-gradient(to bottom, #000000, transparent); /* Gradient from black to transparent */
  
  z-index: 1; /* Ensure it overlays the image */
  }
  
  #dynamic-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: -1px;
  color: rgb(255, 255, 255);
  
  }
  
  #dots {
  font-weight: bold;
  }
  
  #more-text {
  display: none;
  }
  
  #toggle-btn {
  background-color: #00000037;
  border: solid rgba(255, 255, 255, 0.608) .5px;
  color: #fff;
  padding: 4px 8px;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  }
  
  #toggle-btn:hover {
    background-color: #00000037;
  }
  
  .text-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgb(0, 0, 0));
    padding: 20px;
    color: white;
    text-align: left;
    box-sizing: border-box;
    z-index: 10; /* Higher z-index to be above other elements */
}

/* Ensures the text container stays on top */
#text-container {
    max-height: 400px; /* Adjust height for collapsed state */
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    position: relative;
    background-color: #00000000;
    z-index: 20; /* Higher than other elements */
    padding: 1px;
}

/* Ensures text is always above everything */
#dynamic-text {
    font-size: 1rem;
    line-height: 1.5;
    color: rgb(255, 255, 255);
    position: relative;
    z-index: 30; /* Highest z-index to be above everything */
}

/* Button styling remains on top */
#toggle-btn {
    background-color: #00000037;
    border: solid rgba(255, 255, 255, 0.608) 0.5px;
    color: #fff;
    padding: 4px 8px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    position: relative;
    z-index: 40; /* Ensure button is above text */
}




  


/* Footer Section */
.spotify-footer2 {
background-color: #23232300;
color: #fff;
padding: 40px 20px;
text-align: center;
margin-top: 0px;
border-radius: 0px;

}

.footer-header2 h2 {
font-size: 1.8rem;
margin-bottom: 20px;
font-weight: bold;

}

.platforms {
display: flex;
justify-content: space-around;
gap: 15px;
margin-bottom: 20px;

}

.platform a {
color: #fff;
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
font-size: 1.2rem;
}

.platform a i {
font-size: 1.5rem;
}

.platform a:hover {
  color: #fff;
}

.button-container {
margin-top: 20px;
}

.email-button {
background-color: #18171aaa;
color: #fff;
padding: 10px 20px;
border-radius: 20px;
border: solid rgba(255, 255, 255, 0.946) .5px;
font-weight: bold;
font-size: 14px;
text-decoration: none;
transition: background-color 0.3s;
}

.email-button:hover {
  background-color: #000000aa;
}

/* Mobile styling */
@media (max-width: 768px) {
.platforms {
  flex-direction: row;
}

.platform a {
  font-size: 1rem;
}
}

.footer-bottom {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-top: 70px;
padding-left: 20px;
border-top: solid rgba(255, 255, 255, 0.223) 1px;
}

.footer-bottom p {
  margin-top: 20px;

font-size: 1rem;
margin-bottom: 10px;
}

.email-link2 {
background-color: #77369f; /* Highlight color */
color: #fff;
padding: 8px 20px; /* Reduced padding */
border-radius: 6px; /* Slightly smaller radius */
font-weight: bold;
font-size: 14px; /* Smaller font size */
text-decoration: none;
display: inline-block;
transition: background-color 0.3s, transform 0.2s ease-in-out;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.email-link2:hover {
  background-color: #77369f; /* Highlight color */
transform: scale(1.05); /* Slight zoom effect */
}

.email-link2:active {
  background-color: #77369f; /* Highlight color */
}


.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 70px;
  padding-left: 20px;
  border-top: solid rgba(255, 255, 255, 0.223) 1px;
  }
  
  .footer-bottom p {
    margin-top: 20px;
  
  font-size: 1rem;
  margin-bottom: 10px;
  }
  
  .email-link2 {
  background-color: #77369f; /* Highlight color */
  color: #fff;
  padding: 8px 20px; /* Reduced padding */
  border-radius: 6px; /* Slightly smaller radius */
  font-weight: bold;
  font-size: 14px; /* Smaller font size */
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s, transform 0.2s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .email-link2:hover {
    background-color: #77369f; /* Highlight color */
  transform: scale(1.05); /* Slight zoom effect */
  }
  
  .email-link2:active {
    background-color: #77369f; /* Highlight color */
  }
  
  
  .footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
  padding-left: 20px;
  border-top: solid rgba(255, 255, 255, 0.223) 1px;
  }
  
  .footer-bottom p {
  margin-top: 20px;
  font-size: 1rem;
  margin-bottom: 10px;
  }
  
  .footer-bottom p {
      margin-top: 20px;
      font-size: 1rem;
      margin-bottom: 10px;
      margin-left: -20px; /* Move slightly to the left */
  }
  
  
  
  .email-container {
  display: flex;
  align-items: center;
  gap: 15px; /* Adds space between the email link and Instagram icon */
  }
  
  .email-link2 {
  background-color: #33333360; /* Dark background color */
  color: #fff;
  border: solid rgba(255, 255, 255, 0.483) 1px;
  padding: 6px 15px; /* Smaller padding */
  border-radius: 20px; /* Slightly smaller radius */
  font-weight: bold;
  font-size: 14px; /* Smaller font size */
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s, transform 0.2s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-left: -20px; /* Move slightly to the left */
  
  }
  
  .email-link2:hover {
    background-color: #333; /* Dark background color */
  transform: scale(1.05); /* Slight zoom effect */
  }
  
  .email-link2:active {
    background-color: #333; /* Dark background color */
  }
  
  /* Media query for smaller screens */
  @media (max-width: 768px) {
      .email-link2 {
          padding: 6px 15px; /* Smaller padding */
          font-size: 12px; /* Smaller font size */
          border-radius: 15px; /* Adjusted radius for smaller size */
      }
  }
  
  /* Instagram Icon with Rounded Background */
  .email-container {
      display: flex;
      align-items: center;
      gap: 15px; /* Reduced gap to make icons closer */
  }
  
  .instagram-link, .twitter-link, .linkedin-link, .github-link {
      color: #fff; /* Icon color */
      font-size: 20px; /* Icon size */
      background-color: #333; /* Background color */
      width: 40px; /* Set width and height equal */
      height: 40px; /* Set width and height equal */
      border-radius: 50%; /* Makes the background circular */
      display: flex; /* Centers the icon inside the circle */
      justify-content: center;
      align-items: center;
      text-decoration: none; /* Removes the underline */
      transition: background-color 0.3s, color 0.3s;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Optional shadow */
  }
  
  /* Media query for smaller screens */
  @media (max-width: 768px) {
      .email-container {
          gap: 10px; /* Reduce gap further for smaller screens */
      }
  
      .instagram-link, .twitter-link, .linkedin-link, .github-link {
          width: 30px; /* Smaller width */
          height: 30px; /* Smaller height */
          font-size: 16px; /* Smaller icon size */
      }
  }
  



.carousel {
  display: flex;
  gap: 10px; /* Adjust gap between cards */
  overflow-x: auto;
  scroll-behavior: smooth;
  margin-bottom: 10px;

}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
}

.thumbnail-container {
  width: 300px; /* Desired thumbnail width */
  height: 169px; /* Maintain 16:9 aspect ratio */
  overflow: hidden;
  position: relative;
  
}

.thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the container */
  display: block;
}

.carousel h3 {
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
}
