
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    /* font-family: Arial, sans-serif;
     */
     font-family: "Nunito Sans", serif;
  }

  .section {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
    color: white;
  }

  /* Slideshow Background */
  .slideshow {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    transition: transform 1s ease-in-out;
  }

  .slideshow img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Dark Overlay */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    z-index: 1;
  }

  /* Content Styling */
  .content {
    position: absolute;
    top: 50%;
    left: 5%; /* Changed from 50% to 5% for left alignment */
    transform: translateY(-50%); /* Remove horizontal transform */
    z-index: 2;
    text-align: left;
    max-width: 80%;
  }

  .content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .content ul {
    padding-left: 1.2rem;
    list-style-type: disc;
  }

  .content ul li {
    margin: 0.8rem 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }