body {
      font-family: 'Segoe UI', sans-serif;
      background: #f5f5f5;
    }

   

@keyframes bannerFade {
  0% { background-position: center top; }
  50% { background-position: center center; }
  100% { background-position: center bottom; }
}

.welcome-banner h1 {
  font-size: 1.6rem;
  color: #03001d;
}

.welcome-banner p {
  font-size: 0.9rem;
  color: #081d08;
}



.info-box:hover {
  background-color: rgba(31, 56, 35, 0.486);
  transform: scale(1.03);
}

.info-box small {
  font-size: 0.75rem;
  color: #ddd;
  display: block;
}

.info-box div {
  font-size: 0.95rem;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 576px) {
  .welcome-banner {
    min-height: 250px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .welcome-banner h1 {
    font-size: 1.3rem;
  }

  .welcome-banner p {
    font-size: 0.8rem;
  }

  .info-box {
    padding: 10px;
  }

  .info-box div {
    font-size: 0.9rem;
  }
}


    .accordion-container {
      max-width: 800px;
      margin: auto;
      padding: 10px;
    }

    .accordion {
      border: 1px solid #ccc;
      border-radius: 8px;
      background-color: #fff;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .accordion-header {
      background-color: #3dba57;
      cursor: pointer;
      padding: 18px 24px;
      font-size: 18px;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }

    .accordion-header:hover {
      background-color: #dcdcdc;
    }

    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      background-color: #fff;
      padding: 0 24px;
    }

    .accordion-body ul {
      padding: 20px 0 20px 20px;
      margin: 0;
      list-style: disc;
    }

    .accordion-body li {
      margin-bottom: 12px;
      line-height: 1.6;
    }

    .accordion.open .accordion-body {
      max-height: 2000px;
      padding: 0 24px 20px;
    }

    @media (max-width: 600px) {
      .accordion-header {
        font-size: 16px;
        padding: 14px 18px;
      }

      .accordion-body {
        padding: 0 18px;
      }

      .accordion.open .accordion-body {
        padding: 0 18px 18px;
      }
    }

    
/* Back button fixed to middle left */
.fixed-back-btn {
  position: relative;
  left: -11%;
  transform: translateY(-50%);
  background-color: white;
  padding: 12px 16px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

@media only screen and (max-width:600px) {
  .fixed-back-btn {
    left: 0%;
  }
}
@media only screen and (min-width:1200px) and (max-width:1500px) {
  .fixed-back-btn {
    left: 0%;
  }
}

.fixed-back-btn:hover {
  /* background-color: #3dba87; */
  color: #3dba57;
  transform: translateY(-50%) translateX(-5px);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 576px) {
  .fixed-back-btn {
    padding: 10px 14px;
    font-size: 16px;
  }
}

.call-widget-wrapper2 .call-widget-btn2 {
  left: -42% !important;
}

/* Initial wrapper transform */
.call-widget-wrapper2 {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(300px);
  transition: transform 0.4s ease;
  z-index: 9999;
}

/* When checkbox is checked, slide in */
#toggleForm:checked ~ .call-widget-wrapper2 {
  transform: translateY(-50%) translateX(0px);
}

#toggleForm:checked ~ .call-widget-wrapper .call-widget-btn .arrow {
    transform: rotate(180deg);
}

/* Show when checkbox is checked */
#toggleForm:checked ~ .call-widget-form-area {
  display: block;
}