/* Career Catalyst Specific Styles */
.oval-bg{
    display: none;
}
.event-hero {
    min-height: 100vh;
    padding: 60px 5% 60px;
    position: relative;
    /* background-color: yellowgreen; */
}

.event-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.event-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.event-details {
    flex: 1;
}

.event-details h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Roboto Slab', serif;
}

.event-details h2 {
    font-size: 1.8rem;
    color: #4a90e2;
    margin-bottom: 30px;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    margin-bottom: 30px;
}

.event-highlights {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: rgba(74, 144, 226, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
}

.register-btn {
    display: inline-block;
    background: #4a90e2;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.event-image {
    flex: 1;
}

.event-image img {
    width: 400px;
    margin-left:  120px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

  /* About Event Section */
  .about-event {
    min-height: 100vh;
    padding: 80px 5%;
    /* background: rgba(0, 0, 0, 0.2); */
    backdrop-filter: blur(10px);
    /* background-color:red; */
  }
  
  .about-container {
    
    /* background-color: yellow; */
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
  }
  
  .about-event h2 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .about-event p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .event-features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
  }
  
  .feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .feature:hover {
    transform: translateY(-5px);
  }
  
  .feature i {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 20px;
  }
  
  .feature h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
  }
  
  

/* Schedule Section */
.schedule-section {
    /* background-color: red; */
    padding: 80px 5%;
    text-align: center;
    z-index: 1;
}

.schedule-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.schedule-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    

}

.day-column {
    flex: 1;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.322);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
}

.day-column h3 {
    color: #4a90e2;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.schedule-item {
    text-align: left;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-item:last-child {
    border-bottom: none;
}

.time {
    color: #4a90e2;
    font-weight: bold;
}

.schedule-item h4 {
    color: #fff;
    margin: 10px 0;
}

.schedule-item p {
    color: rgba(255, 255, 255, 0.7);
}

/* ... (keep all the existing styles up to the Registration Form section) ... */

/* Registration Form */
.register-section {
    padding: 80px 5%;
    /* background-color: green; */
    font-family: "Arial", sans-serif;
  }
  
  .register-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(20, 9, 9, 0.416);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  .register-container h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
  }
  
  .register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: bold;
  }
  
  .form-group input,
  .form-group select {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #2b2727;
    transition: border-color 0.3s ease, background-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: #4a90e2;
    background: rgba(255, 255, 255, 0.2);
  }
  
  .form-group input::placeholder,
  .form-group select::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .submit-btn {
    background-color: #4a90e2;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #357abd;
    transform: translateY(-2px);
  }
  
  @media (max-width: 600px) {
    .register-container {
      padding: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .oval-bg{
        display: block;
        position: absolute;
        background-color: rgb(38, 51, 146);
        /* background-color: red; */
        margin: 0;
        padding: 0;
        width:100vw;
        height: 100vw;
        top: 250vh;
        left: 0px;
        border-radius: 10%;
        filter: blur(20px);
        transform: rotate(0deg);
        z-index: 0;
        
        /* display:none; */
    }
    .event-content {
      flex-direction: column;
    }
  
    .event-details,
    .event-image {
      flex: none;
      width: 100%;
    }
  
    .event-image img {
      width: 100%;
      margin-left: 0;
      max-height: 300px;
      object-fit: cover;
    }
  
    .event-highlights {
      flex-wrap: wrap;
    }
  
    .highlight-item {
      width: calc(50% - 10px);
    }
    .about-event {
        /* background-color: #2b2727; */
        padding: 0;
        /* min-height: 150vh; */
        margin-bottom: 40vh;
        
      }
      .about-container {
        margin-top: 0px;
      }
    .schedule-container {
      flex-direction: column;
    }
  
    .day-column {
      width: 100%;
    }
  
    .event-features {
      flex-direction: column;
    }
  
    .feature {
      width: 100%;
    }
  
    .event-hero {
      padding: 80px 5% 40px;
    }
  
    .event-glass {
      padding: 20px;
      background-color: #2b27277c;

    }
  
    .event-details h1 {
      font-size: 2.5rem;
    }
  
    .event-details h2 {
      font-size: 1.5rem;
    }
  
    .register-btn {
      display: block;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    
    .highlight-item {
      width: 100%;
    }
  
    .event-details h1 {
      font-size: 2rem;
    }
  
    .event-details h2 {
      font-size: 1.2rem;
    }
  
    .schedule-section h2,
    .about-event h2 {
      font-size: 2rem;
    }
  
    .day-column {
      padding: 20px;
    }
  
    .register-container {
      padding: 20px;
    }
  }
  
