body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

/* Container */
.webinar-section2 {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  text-align: center;
}

/* Pink Diagonal Background */
.webinar-bg2 {
  position: absolute;
  top: 100px;
  left: -200px;
  width: 200%;
  height: 80%;
  background: #fde8f0; /* soft pink */
  transform: skewY(0deg);
  transform-origin: top left;
  z-index: 0;
}


.webinar-content2 {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0px 0px 0px;
  min-width: 100%;
}

/* Title */
.section-title2 {
  font-size: 26px;
  font-weight: 700;
  color: #1d2a4d;
  margin-bottom: 40px;
}

/* Cards */
.webinar-container2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.webinar-card2 {
  background: #ffff;
  border-radius: 14px 14px 0px 0px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  width:420px;
  text-align: left;
  transition: 0.3s;
}

.webinar-card2:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.webinar-date2 {
  background: #e6f8ec;
  color: #009a3e;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px;
}

.webinar-title2 {
  font-size: 17px;
  font-weight: 700;
  color: #162a49;
  margin: 8px 0;
}

.webinar-time2 {
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
}

/* Points */
.webinar-points2 {
  list-style: none; /* remove default bullets */
  padding: 0;
}

.webinar-points2 li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.webinar-points2 li img.check-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}


.bg-whilte{
  background: #FFFF;
}

.border-top{
   border-radius: 14px 14px 0px 0px;
}
.border-bottom{
   border-radius: 0px 0px 14px 14px;
}
.border-whole{
border-radius: 14px ;
}
.padding-vertical{
    
  padding-top: 10px;
  padding-bottom: 10px;
}
/* Footer */
.webinar-footer2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F9FAFB;
  padding:20px 20px 0px 20px;
}

.trainer2 strong {
  color: #162a49;
  font-size: 17px;
}

.trainer2 span {
  color: #777;
  font-size: 12px;
}

.reserve-btn2 {
  background: #1d2a4d;
  color: #fff;
  font-weight: 400;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.reserve-btn2:hover {
  background: #2c3c6c;
}

.webinar-note2 {
  text-align: center;
  font-size: 12px;
  color: #777;
  background: #F9FAFB;
}
.hide-text{
    visibility: hidden;
}
/* Responsive */
@media (max-width: 950px) {
  .webinar-container2 {
    flex-direction: column;
    align-items: center;
  }

  .webinar-card2 {
    width: 100%;
  }
}
@media (min-width: 300px) and (max-width: 500px) {
    .webinar-footer2 {
        display: flex;
        flex-direction: column;
    }
    .webinar-time2 {
        font-size: 12px !important;
    }
    .webinar-time2 {
        font-size: 12px !important;
    }
    .webinar-points2{
        padding-top: 20px !important;
    }
    .li-text{
        font-size: 12px !important;
    }
    .reserve-btn2 {
        font-size: 14px !important;
        width: 100%;
        margin-top: 10px;
    }
    .webinar-bg2 {
        height: 90%;
    }
}