.banner-sec {
    position: relative;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}

.carousel-inner img {
    height: 100%;
    object-fit: cover;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #007b33;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-size: 60%;
}  /* Background setup */
  .Body {
background-color: #69a536;
    background-image: linear-gradient(44deg, #69a536 0%, #69a536 6%, rgb(96, 150, 60) 6%, rgb(96, 150, 60) 25%, rgb(85, 130, 58) 25%, rgb(85, 130, 58) 40%, rgb(78, 121, 51) 40%, rgb(72, 112, 46) 45%, rgb(65, 102, 43) 45%, rgb(61, 94, 39) 53%, rgb(55, 87, 36) 53%, rgb(52, 81, 33) 66%, rgb(48, 75, 30) 66%, #283f82 100%);
        display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      font-family: "Poppins", sans-serif;
      margin: 0;
  }

  /* Main box */
  .login-container {
      display: flex;
      flex-wrap: wrap;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      max-width: 1100px;
      width: 95%;
  }

  /* Left section */
  .login-left {
      padding-left: 24px;border-right: 2px solid #283f82;
  }

.login-left h4 {
     margin-bottom: 20px;
     font-weight: 700;
     font-size: 30px;
     color: #283f82;
     text-align: center;
 }
.login-left h2:after {
    content: " ";
    width: 100px;
    height: 5px;
    background: #100611;
    display: block;
    margin-top: 20px;
    border-radius: 3px;
    margin-left: auto;
    margin-right: auto;
}
  .login-left .form-control {
      border-radius: 5px;
      height: 35px;
  }

  .heading {
      margin-bottom: 5px;
      /* Heading & underline ke beech space */
  }

  .underline {
      width: 70px;
      /* underline ki length aap badha/sika kar sakte ho */
      height: 5px;
      /* underline ki thickness */
      background-color:black;
      /* color */
      border-radius: 5px;
        margin: 0 auto 30px;
      }

  .login-left a {
      color: black;
      text-decoration: none;
      font-size: 14px;
  }

  .login-left a:hover {
      text-decoration: underline;
  }

  /* Right section (slider) */
  .login-right {
      position: relative;
      background: #0d47a1;
      color: white;
      padding: 0;
  }

  .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  /* Contact Info */
  .contact-info {
      text-align: center;
      font-size: 14px;
      margin-top: 15px;
  }

  /* Footer */
  footer {
      text-align: center;
      font-size: 13px;
      color: #444;
      margin-top: 20px;
      width: 100%;
      padding: 10px 0;
      background: #f9f9f9;
      position: fixed;
      bottom: 0;
      left: 0;
  }

  footer a {
      color: #007bff;
      text-decoration: none;
  }

  footer a:hover {
      text-decoration: underline;
  }

  /* Responsive */
  @media (max-width: 992px) {
      .login-container {
          flex-direction: column;
          margin-bottom: 60px;
      }

      .login-left,
      .login-right {
          width: 100%;
      }

      footer {
          position: relative;
      }
  }