.default-section-padding {
    padding: 120px 0 100px;
}
.banner-bg {
    background: #47c188;
    height: auto;
    padding-top: 100px;;
}
.logo img {
    max-width: 400px;
    padding-top: 40px;
    padding-bottom: 20px;
}
.hero-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
}
.btn-major span{
    background: #fff;
    border-radius: 40px;
    margin-left: -14px;
    padding: 10px 25px;
    border: 3px solid #06b4a1;
}
.btn-major {
    background: #0f6b75;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}
.btn-major i {
    color: #fff;
}

.btn-major i {
      display: inline-block;
      animation: moveLeftRight 1.5s infinite alternate ease-in-out;
    }

    @keyframes moveLeftRight {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(5px);
      }
    }

/* about */
.about-section {
    position: relative;
    padding: 120px 0 100px;
    background: #f8f9fa;
}
.about-image{
    position: absolute;
    height: auto;
}
.about-image img {
    width: 100%;
    height: auto;
    position: relative;
    right:0;
}
.about-logo img {
    width: 100%;
    max-width: 230px;
    height: auto;
    margin-bottom: 20px;
    margin-top: -30px;
}

/* core */
.core-btn {
    background: #f05f85;
    height: 133px;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
    font-weight: 600;
    font-size: 1.1em;
}
.core-btn span {
    background: #f59aaf;
    border-radius: 40px;
    padding: 4px;
    height: 40px;
    width: 40px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-block;
    border: 3px solid #f05f85;
}
.core-components {
    padding: 120px 0 100px;
}


/* Start with core-btn hidden */
.core-btn {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

/* When visible, apply animation */
.core-btn.animate {
  opacity: 1;
  transform: translateY(0);
}

.core-btn {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
  cursor: pointer;
}

.core-btn.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Optional stagger using nth-child */
.core-btn:nth-child(1) { transition-delay: 0.1s; }
.core-btn:nth-child(2) { transition-delay: 0.2s; }
.core-btn:nth-child(3) { transition-delay: 0.3s; }
.core-btn:nth-child(4) { transition-delay: 0.4s; }
.core-btn:nth-child(5) { transition-delay: 0.5s; }
.core-btn:nth-child(6) { transition-delay: 0.6s; }
.core-btn:nth-child(7) { transition-delay: 0.7s; }
.core-btn:nth-child(8) { transition-delay: 0.8s; }
/* ...continue as needed */


/* footer */
footer {
    background: #0f6b75;
    color: #fff;
    padding: 20px 0;
}

.special-heading {
  font-size: 2.2em;
  font-weight: 700;
  color: #202020;
  text-align: start;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.special-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 6px;
  width: 170px;
  background-color: #f05f85; /* your pink theme */
  border-radius: 5px;
}

.bg-right-design {
    background: #f59aaf;
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: auto;

}

.bg-left-design {
    background: #06b4a1;
    position: absolute;
    left: 0;
    top: 200px;
    width: 30px;
    height: 60%;
}


/* modal  */

.modal-content {
  border-radius: 16px;
  overflow: hidden;
}

.modal-header {
  border-bottom: none;
}

.modal-title {
  font-size: 1.5rem;
  /* color: #333; */
  letter-spacing: 0.5px;
}

.modal-body p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.modal-header {
    background: #06b4a1;
}

/* .btn-close a{
    color: #333;
} */

.sub-head {
    font-size: 1.2rem;
    color: #06b4a8;
    margin-bottom: 15px;
}
