    * {
        margin: 0;
        padding: 0;
        font-family: "Poppins", sans-serif;
        box-sizing: border-box;
    }



/* parent start here */
.parent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.child1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    background-color: #fbf7f4;
    padding: 26px 18px 26px;
    margin-top: 25px;

    position: relative;
}
.child1 p {
    margin-bottom: 0;
    color: black;
}

.heart {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 4%;
}
.egg {
  position: absolute;
  right: -1%;
  bottom: -10%;
  width: 4%;
}
.star {
  position: absolute;
  left: -2%;
  top: -10%;
  width: 5%;
}
.cloud {
  position: absolute;
  top: 13%;
  right: 25%;
  width: 4%;
}


.our {
    font-size: 38px;
    font-weight: 700;
}
.sub-our {
    font-size: 20px;
}

.all-btns {
    width: 100%;
    display: flex;
    justify-content: start;
    gap: 40px;
}
.all-btns button {
    width: 15%;
    padding: 10px 14px 10px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid black;
    background-color: transparent;
    margin-top: 25px;
}
#alls {
    background-color: #f39c12;
    border: none;
    color: white;
}



.child2 {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  gap: 25px;
  width: 80%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.hidden {
   display: none; 
}

.course-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        width: 300px;
    }

    .course-image {
        position: relative;
    }

    .course-image img {
        width: 100%;
        display: block;
    }

    .price-tag {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: #06c167;
        color: #fff;
        padding: 6px 12px;
        font-size: 14px;
        border-radius: 50px;
        font-weight: bold;
    }

    .course-content {
        padding: 15px;
    }

    .course-content h3 {
        margin: 0;
        font-size: 18px;
        font-weight: bold;
    }

    .course-content p {
        font-size: 14px;
        color: #666;
        margin: 5px 0 15px;
    }

    .course-info {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        margin-bottom: 15px;
    }

    .course-info div {
        text-align: start;
    }

    .purchase-btn {
        display: block;
        background: #06c167;
        color: #fff;
        text-align: center;
        padding: 10px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
    }

    .purchase-btn:hover {
        background: #05a75c;
    }
/* parent end here */





/* footer end here */
footer {
    background-color:#007ab3;
    color: white;
    padding: 40px 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-section {
    flex: 1 1 200px;
    margin: 15px;
  }
  
  .footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin: 8px 0;
    font-size: 14px;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: white;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid whitesmoke;
    padding-top: 10px;
    width: 100%;
  }
  
  .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    color: #f39c12;
  }




  @media screen and (min-width: 320px) and (max-width: 768px) 
  {

    .child1 {
      margin-top: 0;
      padding: 28ox 18px 28px;
    }
    .our {
      text-align: center;
      font-size: 24px;
    }
    .sub-our {
      font-size: 16px;
      font-weight: unset;
      text-align: center;
    }
    .all-btns {
      gap: 10px;
      overflow-x: auto;
    }
    .all-btns button {
      min-width: fit-content;
      font-size: 12 px;
    }


    .heart {
      position: absolute;
      top: 0%;
      left: unset;
      right: 0;
      width: 10%;
    }
    .star {
      position: absolute;
      left: 0%;
      top: 0%;
      width: 10%;
    }
    .egg {
      position: absolute;
      right: -2%;
      bottom: -2%;
      width: 13%;
    }
    .cloud {
      position: absolute;
      top: unset;
      bottom: -3%;
      right: unset;
      left: -2%;
      width: 16%;
    }


  
    .child2 {
      grid-template-columns: auto;
      justify-content: center;
    }
    
  }