
@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .webinar-intro, .webinar-after, .cta, .about {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
  }
  .webinar-intro {
    animation-delay: 0.2s;
    margin-bottom: 40px;
    position: relative;
  }
  .webinar-intro::before {
    content: "";
    position: fixed;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    background-image: url('images/webinar/section_2_banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: translateX(-50%); 
    z-index: -1;
  }
  .webinar-after {
    animation-delay: 0.4s;
    margin-bottom: 40px;
    position: relative;
  }
  .webinar-after::before {
    content: "";
    position: fixed;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    background-image: url('images/webinar/section_3_banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: translateX(-50%); 
    z-index: -1;
  }
  .cta-container {
    animation-delay: 0.6s;
    margin-bottom: 40px;
  }
  .about {
    animation-delay: 0.8s;
  }
  .icon {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
  }
  .webinar-after {
    padding: 40px;
    text-align: center;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
    margin: auto;
    position: relative;
  }
  .webinar-grid-image{
    display: block;
    position: absolute;
    top: 32%;
    left: 45%;
    max-width: 7em;
  }
  .webinar-grid-image > img{
    width: 100%;
  }
  .grid-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  .grid-item:hover {
    transform: scale(1.05);
  }
  .cta-container {
    display: flex;
    justify-content: center;
  }
  .cta-box {
    background: #1E1F2869;
    border: 1px solid red;
    padding: 50px 200px;
    text-align: center;
    border-radius: 15px;
  }
  .cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .cta-box p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  .cta-button {
    background: red;
    color: white;
    padding: 10px 25px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 9px;
    transition: 0.3s;
    line-height: 20px;
    animation: pulse 2s infinite;
  }
  .cta-button:hover {
    background: darkred;
    animation: none;
  }
  .cta-button > small{
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFFA3;
  }
  .cta-button:hover {
    background: darkred;
  }
  .about {
    padding: 50px;
  }
  .about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: auto;
  }
  .about-text {
    flex: 1;
    color: white;
  }
  .highlight {
    color: #E21A27;
  }
  .mt-10{
    margin-top: 10px;
  }
  .highlight-dark{
    color: #B72427;
  }
  .about-image{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .about-image img {
    width: 100%;
    border-radius: 10px;
  }
  .mobile-none{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  @media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .webinar-grid-image{
      left: 41%;
    }
  }
  .hero-content {
    max-width: 600px;
  }
  .badge {
    background: white;
    padding: 5px 25px;
    border-radius: 6px;
    font-weight: bold;
    margin: 10px 0px;
    display: block;
    max-width: fit-content;
    text-align: center;
  }
  
  .time-info {
    margin-top: 10px;
    font-size: 1rem;
  }
  .countdown {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  
  .hero-image {
    position: relative;
    overflow: hidden;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    transition: transform 0.5s ease;
  }
  
  .hero-image:hover img {
    transform: scale(1.1);
  }
  
  .about {
    padding: 20px 0px;
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 40px;
    margin: auto;
  }
  
  .about-text {
    color: white;
  }
  .grid-item:nth-child(1) {
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
  }
  
  .grid-item:nth-child(2) {
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
  }
  
  .grid-item:nth-child(3) {
    top: 0;
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
  }
  
  .grid-item:nth-child(4) {
    top: 0;
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
  }
  
  @media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .countdown {
        justify-content: center;
    }
    .about-image,
    .hero-content > p:first-of-type{
      display: none;
    }
    .about{
      display: flex;
    }
    .cta-box{
      padding: 30px 60px;
    }
  }
  
  
  .webinar-intro > h2 {
    text-align: center;
  }
  
  .webinar-cards {
    justify-content: center;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 20px;
  }
  
  .webinar-card {
    background: #1D1E277A;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D4D4D4;
  }
  
  .webinar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .icon {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
  }
  
  .webinar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .webinar-grid-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .webinar-grid-item:hover {
    transform: scale(1.05);
  }
  
  .webinar-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
  }
  
  .webinar-info-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
    z-index: -1;
  }
  
  
  .webinar-live{
  background-color: #1D1E27;
  }
  
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
  }
  @media (max-width: 1024px) {
    .webinar-info-image {
      display: none;
    }
  }
  
  @media (max-width: 425px) {
    .webinar-cards,
    .webinar-grid,
    .webinar-info,
    .grid {
      grid-template-columns: 1fr;
    }
    .webinar-grid-image {
      display: none;
    }
    .cta-box{
      padding: 20px;
    }
    .mobile-none{
      display: none;
    }
    .hero{
      display: flex;
    }
  }
  
  .hero-content {
    text-align: left;
  }
  
  .hero-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 400px;
  }
  
  .countdown {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  
  .time-box {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
  }
  
  .time-box span {
    display: block;
    font-size: 20px;
    font-weight: 700;
  }
  @media (max-width: 1024px) {
    .hero-sidebar{
      display: none;
    }
  }