* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
body {
    font-family: "Poppins", sans-serif;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    padding: 16px;
  }
  html {
  scroll-behavior: smooth;
}
.slider-container {
  background-color: #000;
  position: relative;
  width: 96%;
  max-width: 800px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}


.slider-container h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem;
  color: #f3f4f6;
}
.slider-container .slider {
  width: 100%;
}

.slider img {
  width: 100%;
  height: 70vh;
  display: none;
  border-radius: 12px;
}

.slider img.active {
  display: block;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}


button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

button.prev:hover, button.next:hover {
  background-color: rgba(0,0,0,0.8);
}

button.prev { left: 10px; }
button.next { right: 10px; }



    nav {
      width: 100%;
      background: #0d1117;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      position: fixed;
      top: 0;
      z-index: 1000;
    }

    /* Logo */
    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 1px;
      color: #00bfff;
      cursor: pointer;
    }
    .logo-1 {
      color: white;
      text-decoration: none;
    }


    .nav-links {
      display: flex;
      list-style: none;
      gap: 25px;
    }
    .nav-links li {
      margin-left: 6vh;
    }

    .nav-links li a {
      text-decoration: none;
      color: white;
      font-weight: 500;
      transition: 0.3s;
    }

    .nav-links li a:hover {
      color: #00bfff;
    }

    /* Hamburger menu */
    .menu-icon {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
    }

    /* Responsive */
    
  .business-image {
    width: 96%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 15px;
    margin: 5rem 0 2rem 0;

  }
   .business-image h2 {
    height: 30%;
    margin-top: 2rem ;
    color: #0d1117;
   }
  .business-image .image-container {
    width: 100%;
    height: 69%;
    margin: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .business-image .image-container img {
    width: 65%;
    height: 70vh;
    border-radius:10px ;

  }
.business-section {
  width: 96%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/*========================Banner===================*/


  .business-section .banner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  .business-section .banner:hover{
    border: 1px solid #000;
  }

  .banner-image {
    height: 80%;
    width: 50%;
    position: relative;
    flex: 1 1 40%;
    min-width: 280px;
    height: 350px;
    overflow: hidden;
    background-size: cover;
    background-position: center;;
  }

  .banner-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: fill;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }

  .banner-image img.active {
    opacity: 1;
  }

  .banner-content {
    flex: 1 1 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .banner-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #111827;
  }

  .banner-content p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .banner-content button {
    background: black;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .banner-content button:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
  }