
.hero-image{
    clip-path: circle(81.8% at 68% 88%);
    width: 100%;
}
.circle-inside-right {
    position: absolute;
    width: 187px;
    height: 187px;
    top: 38%;
    right: -16px;
    transform: translateY(-72%);
    clip-path: circle(50% at 100% 50%);
    z-index: 1;
    background-color: rgba(20, 20, 20, 0.1);
  }
  
  .circle-inside-bottom-left {
    position: absolute;
    width: 187px;
    height: 187px;
    bottom: -28px;
    left: -20px;
    clip-path: circle(50% at 50% 100%);
    z-index: 1;
  }

  .scroll-down-btn {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background-color: #000;
    color: #fff;
    border-radius: 50px 50px 0% 0;
    width: 65px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
    z-index: 10;
  }
  
  .scroll-down-btn:hover {
    background-color: #333;
  }
  
  @media (max-width: 768px) {
    .section-wrapper {
      flex-direction: column;
    }
  
    .content {
      width: 100% !important;
      padding: 50px 20px !important;
      text-align: center;
    }
  
    .curved-image {
      position: static;
      clip-path: none;
      width: 100%;
      height: 300px;
    }
  }
  
  #next-section {
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
  }
  
  @media (max-width: 770px) {
    .section-wrapper {
      min-height: 95vh;
    }
  }
  
  /* image landing css here */
  
  /* latest greatest section css */
  .curved-left {
    background: #c8ff00;
    border-bottom-right-radius: 120px 80px;
    padding: 3rem;
    min-height: 400px;
  }
  
  .scroll-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .course-card {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-in-out forwards;
    border-bottom: 1px solid #C1C1C14D;

  }

  .badge-green-text {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid #C8F1D7;
    color: #1A9A49;
    border-radius: 6px;
    background-color: transparent;
  }

  .skills-filter{
    border: 1px solid #E2E5F1;
    padding: 2% 4%;
    border-radius: 4px;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .sticky-filter {
    position: sticky;
    top: 24px;
  }
  
  .mobile-filter {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100%;
    background: #fff;
    padding: 1rem;
    transition: all 0.3s;
    z-index: 1001;
    overflow-y: auto;
  }
  
  .mobile-filter.active {
    left: 0;
  }
  
  .filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
  }
  
  .filter-overlay.active {
    display: block;
  }
  
  .top-sticky-filter,
  .bottom-sticky-filter {
    background: #fff;
    box-shadow: 0 0px 2px rgb(0 0 0 / 22%);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 3px;
  }
  
  /* latest greatest section css */
  
  /* bootstrap css overwrite */
  /* @media (min-width: 768px) {
    .col-md-4 {
      width: 39.333333% !important;
    }
  }
  @media (min-width: 768px) {
    .col-md-8 {
      flex: 0 0 auto;
      width: 56.666667%;
    }
  } */
  
  .form-check-input:focus,
  .form-control:focus {
    box-shadow: none;
    outline: none;
  }
  
  @media (min-width: 576px) {
    .w-sm-50 {
      width: 50% !important;
    }
  }
  /* bootstrap css overwrite */