    @keyframes blobMove {
      0%,
      100% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
        transform: translate(0, 0);
      }
      25% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
        transform: translate(3px, -3px);
      }
      50% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
        transform: translate(-3px, 3px);
      }
      75% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
        transform: translate(3px, 3px);
      }
    }

.about-section {
  background-color: hsla(170, 100%, 100%, 0.995);
  padding: 40px 80px 80px;
  margin-top: -40px;
  padding-top: 40px;
  position: relative;
  z-index: 1;
}

.about-section h1 {
  font-size: 3rem;
  font-weight: 700;
}

.about-top-image img {
  width: 900px;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
}

.about-bottom-image img {
  width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .about-image {
    padding-right: 30px;
  }
}

.vertical-line {
  width: 20px;
  height: 600px;
  background-color: #ffc107;
  margin-left: 100px;
  border-radius: 20px;
  margin-right: 0;
}

.vertical-line-text {
  width: 5px;
  height: 80px;
  background-color: #1a204a;
  border-radius: 20px;
  margin-right: 0;
}

.vertical-line-text1 {
  width: 5px;
  height: 50px;
  background-color: #1a204a;
  border-radius: 20px;
  margin-right: 0;
}

.protein1 {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  left: 50px;
  z-index: -1;
}

.protein2 {
  position: absolute;
  margin-left: 140px;
  margin-right: auto;
  top: 400px;
  left: 0;
  z-index: 1;
}

.row {
  display: flex;
}

.column {
  flex: 1;
  padding: 10px;
}

.row.g-2 {
  display: flex;
  gap: 1rem;
}

.row.g-2 > .col-md-6 {
  flex: 1;
  display: flex;
}

.p-3.border {
  background-color: #f1eee9;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 320px;
}

 .about-icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 0;
}

.about-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: #ffc107;
  border-radius: 50% 50% 40% 40% / 50% 25% 30% 45%;
  filter: drop-shadow(0 0 8px rgba(255, 235, 59, 0.6));
  animation: blobMove 5s ease-in-out infinite;
  z-index: -1;
}

.icon img {
  max-width: 50%; 
  max-height: 50%;
  object-fit: contain;
}

.about-icon span {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
}

.dark-icon {
  color: black;
}

.rectangle {
  width: 310px;
  height: 130px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.text-box h3 {
  margin: 0;
}

.big-number {
  font-size: 48px;
  font-weight: bold;
}

.small-text {
  font-size: 20px;
  font-weight: normal;
}

.tick-list {
  list-style: none;
  padding: 0;
  margin:0;
}

.tick-list li {
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;             
  align-items: flex-start;   
  gap: 10px;                  
  margin-bottom: 12px;
}

.tick-list i {
  color: #ffc107;
  margin-right: 8px;
}

.custom-btn {
  padding: 10px 15px;
  font-size: 20px;
  width: 200px;     
  height: 100px;  
  border-radius: 8px;
  background-color: #ffc107;
  border: none;
  color: white;             
  transition: all 0.3s ease;
  cursor: pointer;           
}

.custom-btn:hover {
  background-color: #1a204a;
  color: white;              
}


.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #1a204a;
  object-fit: cover;
}

.row.mt-5 {
  margin-top: 1rem !important;
}

.col-md-6.d-flex.align-items-center {
  gap: 0; 
}

.profile-img {
  margin-bottom: 0;
}

.text-block span {
  margin-bottom: 2px;
}
