* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
  }
  
  .ucs-hero-carousel-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed header */
  }
  
  .ucs-hero-carousel-slide {
    width: 100%;
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    visibility: hidden;
  }
  
  .ucs-hero-carousel-slide.ucs-hero-carousel-active {
    visibility: visible;
  }
  
  .ucs-hero-carousel-slide.ucs-hero-carousel-active {
    opacity: 1;
    z-index: 2;
  }
  
  /* Hero Slide 1 Styles */
  #hero1 {
    background-color: #46ab61;
  }
  
  #hero1 section {
    background-color: #46ab61;
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
  #hero1 .ucs-hero-carousel-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 30px;
    width: 100%;
  }
  
  #hero1 .ucs-hero-carousel-text {
    flex: 1;
    min-width: 420px;
    width: 100%;
  }
  
  #hero1 h1 {
    font-size: 50px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  #hero1 .ucs-hero-carousel-feature-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  #hero1 .ucs-hero-carousel-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
  }
  
  #hero1 .ucs-hero-carousel-email-signup {
    margin-top: 30px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    overflow: hidden;
    background-color: #fff;
  }
  
  #hero1 .ucs-hero-carousel-email-signup input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    border-radius: 30px 0 0 30px;
  }
  
  #hero1 .ucs-hero-carousel-email-signup button {
    background-color: #052c65;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }
  
  #hero1 .ucs-hero-carousel-email-signup button:hover {
    background-color: #041d4a;
  }
  
  #hero1 .ucs-hero-carousel-image {
    flex: 1;
    min-width: 420px;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
  }
  
  #hero1 .ucs-hero-carousel-image img.ucs-hero-carousel-main-image {
    width: 100%;
    max-width: 700px;
    height: 650px;
    border-radius: 10px;
    object-fit: cover;
    margin-top: 70px;
  }
  
  #hero1 .ucs-hero-carousel-image img.ucs-hero-carousel-decorative {
    position: absolute;
    object-fit: contain;
  }
  
  #hero1 .ucs-hero-carousel-image img.ucs-hero-carousel-decorative-1 {
    top: -120px;
    left: -130px;
    width: 600px;
    height: 600px;
  }
  
  #hero1 .ucs-hero-carousel-image img.ucs-hero-carousel-decorative-2 {
    top: -120px;
    right: -250px;
    width: 300px;
    height: 300px;
  }
  
  /* Hero Slide 2 Styles */
  #hero2 {
    background-color: #0d102c;
  }
  
  #hero2 section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
    background: #0d102c;
    flex-wrap: wrap;
    min-height: 100vh;
  }
  
  #hero2 .ucs-hero-carousel-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
  }
  
  #hero2 .ucs-hero-carousel-text {
    max-width: 520px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  #hero2 h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 64px;
    color: #6868f1;
    margin: 0 0 10px 0;
  }
  
  #hero2 h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 54px;
    color: #ffffff;
    margin: 0 0 20px 0;
  }
  
  #hero2 button {
    margin-top: 10px;
    background: #b4dc38;
    border: none;
    padding: 12px 40px;
    border-radius: 6px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  #hero2 button:hover {
    background: #a0c530;
    transform: translateY(-2px);
  }
  
  #hero2 p {
    margin-top: 40px;
    width: 100%;
    max-width: 499px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #ccc;
  }
  
  #hero2 .ucs-hero-carousel-phone-number {
    margin-top: 30px;
    display: inline-block;
    background: #b4dc38;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
  }
  
  #hero2 .ucs-hero-carousel-students-info {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  #hero2 .ucs-hero-carousel-student-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  #hero2 .ucs-hero-carousel-student-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
  }
  
  #hero2 .ucs-hero-carousel-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 420px;
    width: 100%;
  }
  
  #hero2 .ucs-hero-carousel-white-bg {
    width: 420px;
    height: 540px;
    background: #ffffff;
    border-radius: 250px 250px 0 0;
    position: absolute;
    bottom: 0;
  }
  
  #hero2 .ucs-hero-carousel-image img.ucs-hero-carousel-main-image {
    width: 420px;
    z-index: 2;
    position: relative;
  }
  
  #hero2 .ucs-hero-carousel-course-badge {
    position: absolute;
    top: 140px;
    left: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-image: url('./assets/image copy 28.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 4px solid #fff;
    box-shadow: 0px 0px 15px rgba(104, 104, 241, 0.5);
    z-index: 3;
  }
  
  #hero2 .ucs-hero-carousel-arrow-decoration {
    position: absolute;
    top: 100px;
    left: 120px;
    width: 80px;
    height: 80px;
    z-index: 3;
  }
  
  #hero2 .ucs-hero-carousel-triangle-decoration {
    position: absolute;
    top: 50px;
    right: 90px;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid #6868f1;
    z-index: 3;
  }
  
  /* Navigation Dots */
  .ucs-hero-carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 10;
  }
  
  .ucs-hero-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .ucs-hero-carousel-dot.ucs-hero-carousel-active {
    width: 20px;
    height: 14px;
    border-radius: 50%;
    background: #6868f1;
    border-color: #fff;
  }
  
  .ucs-hero-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
  }
  
  /* Navigation Arrows */
  .ucs-hero-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .ucs-hero-carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
  }
  
  .ucs-hero-carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
  }
  
  .ucs-hero-carousel-arrow.ucs-hero-carousel-prev {
    left: 30px;
  }
  
  .ucs-hero-carousel-arrow.ucs-hero-carousel-next {
    right: 30px;
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    .ucs-hero-carousel-wrapper {
      min-height: auto;
      padding-top: 70px; /* Account for mobile header height */
    }
    
    .ucs-hero-carousel-slide {
      min-height: auto;
      position: relative;
    }
    
    .ucs-hero-carousel-slide:not(.ucs-hero-carousel-active) {
      display: none;
    }
    
    .ucs-hero-carousel-arrow {
      opacity: 0.8;
      background: rgba(255, 255, 255, 0.3);
    }
    
    #hero1 .ucs-hero-carousel-content,
    #hero2 .ucs-hero-carousel-content {
      flex-direction: column;
      text-align: center;
      gap: 40px;
      padding: 0 20px;
    }
  
    #hero1 .ucs-hero-carousel-text,
    #hero1 .ucs-hero-carousel-image,
    #hero2 .ucs-hero-carousel-text,
    #hero2 .ucs-hero-carousel-image {
      min-width: 100%;
      width: 100%;
    }
  
    #hero1 h1,
    #hero2 h1,
    #hero2 h2 {
      text-align: center;
    }
  
    #hero1 h1 {
      font-size: 36px;
      line-height: 1.4;
    }
  
    #hero2 h1 {
      font-size: 32px;
      line-height: 1.3;
    }
  
    #hero2 h2 {
      font-size: 26px;
      line-height: 1.4;
    }
  
    #hero1 .ucs-hero-carousel-image img.ucs-hero-carousel-main-image {
      max-width: 500px;
      width: 100%;
      height: auto;
      margin-top: 20px;
    }
  
    #hero1 .ucs-hero-carousel-image img.ucs-hero-carousel-decorative {
      display: none;
    }
  
    #hero1 section,
    #hero2 section {
      padding: 60px 20px;
      min-height: auto;
    }
  
    #hero2 .ucs-hero-carousel-image {
      min-width: 100%;
    }
  
    #hero2 .ucs-hero-carousel-image img.ucs-hero-carousel-main-image {
      width: 100%;
      max-width: 350px;
    }
    
    #hero2 .ucs-hero-carousel-white-bg {
      width: 100%;
      max-width: 350px;
      height: auto;
      aspect-ratio: 420/540;
    }
    
    #hero2 .ucs-hero-carousel-course-badge {
      width: 80px;
      height: 80px;
      top: 20px;
      left: 10px;
    }
    
    #hero2 .ucs-hero-carousel-arrow-decoration,
    #hero2 .ucs-hero-carousel-triangle-decoration {
      display: none;
    }
  }
  
  @media (max-width: 767px) {
    .ucs-hero-carousel-wrapper {
      min-height: auto;
      padding-top: 70px; /* Account for mobile header */
    }
  
    .ucs-hero-carousel-slide {
      min-height: auto;
      position: relative;
    }
    
    .ucs-hero-carousel-slide:not(.ucs-hero-carousel-active) {
      display: none;
    }
    
    .ucs-hero-carousel-arrow {
      opacity: 0.9;
      background: rgba(255, 255, 255, 0.4);
      width: 44px;
      height: 44px;
      font-size: 22px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
  
    .ucs-hero-carousel-arrow.ucs-hero-carousel-prev {
      left: 10px;
    }
  
    .ucs-hero-carousel-arrow.ucs-hero-carousel-next {
      right: 10px;
    }
  
    #hero1 section,
    #hero2 section {
      padding: 50px 15px 80px;
      min-height: auto;
    }
  
    #hero1 .ucs-hero-carousel-content,
    #hero2 .ucs-hero-carousel-content {
      gap: 30px;
      padding: 0;
    }
  
    #hero1 h1 {
      font-size: 28px;
      line-height: 1.3;
      margin-bottom: 20px;
    }
  
    #hero2 h1 {
      font-size: 26px;
      line-height: 1.2;
      margin-bottom: 8px;
    }
  
    #hero2 h2 {
      font-size: 22px;
      line-height: 1.3;
      margin-bottom: 15px;
    }
    
    #hero1 .ucs-hero-carousel-feature-icons {
      gap: 12px;
      margin-bottom: 20px;
      justify-content: center;
    }
    
    #hero1 .ucs-hero-carousel-feature-item {
      font-size: 14px;
    }
  
    #hero1 .ucs-hero-carousel-email-signup {
      flex-direction: column;
      border-radius: 25px;
      overflow: visible;
      gap: 12px;
      max-width: 100%;
      margin-top: 25px;
    }
  
    #hero1 .ucs-hero-carousel-email-signup input {
      border-radius: 25px;
      width: 100%;
      padding: 14px 20px;
      font-size: 15px;
    }
  
    #hero1 .ucs-hero-carousel-email-signup button {
      border-radius: 25px;
      width: 100%;
      padding: 14px 25px;
      font-size: 15px;
    }
  
    #hero1 .ucs-hero-carousel-image img.ucs-hero-carousel-main-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      margin-top: 20px;
      border-radius: 15px;
    }
  
    #hero2 .ucs-hero-carousel-image {
      margin-top: 20px;
    }
  
    #hero2 .ucs-hero-carousel-image img.ucs-hero-carousel-main-image {
      width: 100%;
      max-width: 280px;
    }
    
    #hero2 .ucs-hero-carousel-white-bg {
      max-width: 280px;
    }
    
    #hero2 .ucs-hero-carousel-course-badge {
      width: 70px;
      height: 70px;
      top: 10px;
      left: 5px;
      font-size: 12px;
    }
    
    #hero2 .ucs-hero-carousel-course-badge img {
      width: 40px;
      height: 32px;
    }
    
    #hero2 p {
      font-size: 16px;
      margin-top: 25px;
      max-width: 100%;
    }
    
    #hero2 button {
      padding: 12px 35px;
      font-size: 16px;
      margin-top: 15px;
    }
    
    #hero2 .ucs-hero-carousel-phone-number {
      margin-top: 20px;
      padding: 10px 24px;
      font-size: 16px;
    }
    
    #hero2 .ucs-hero-carousel-students-info {
      margin-top: 30px;
    }
    
    .ucs-hero-carousel-dots {
      bottom: 20px;
      gap: 10px;
    }
    
    .ucs-hero-carousel-dot {
      width: 10px;
      height: 10px;
    }
    
    .ucs-hero-carousel-dot.ucs-hero-carousel-active {
      width: 24px;
      height: 10px;
    }
  }
  
  @media (max-width: 575px) {
    #hero1 section,
    #hero2 section {
      padding: 40px 12px 70px;
    }
    
    #hero1 h1 {
      font-size: 24px;
      line-height: 1.3;
    }
  
    #hero2 h1 {
      font-size: 22px;
      line-height: 1.2;
    }
  
    #hero2 h2 {
      font-size: 20px;
      line-height: 1.3;
    }
  
    #hero2 p {
      font-size: 15px;
      margin-top: 20px;
    }
  
    #hero2 button {
      padding: 11px 30px;
      font-size: 15px;
    }
    
    #hero1 .ucs-hero-carousel-feature-item {
      font-size: 13px;
    }
    
    #hero1 .ucs-hero-carousel-feature-item img {
      width: 18px;
      height: 18px;
    }
    
    #hero2 .ucs-hero-carousel-image img.ucs-hero-carousel-main-image {
      max-width: 250px;
    }
    
    #hero2 .ucs-hero-carousel-white-bg {
      max-width: 250px;
    }
    
    #hero2 .ucs-hero-carousel-course-badge {
      width: 60px;
      height: 60px;
      font-size: 11px;
    }
    
    #hero2 .ucs-hero-carousel-course-badge img {
      width: 35px;
      height: 28px;
    }
    
    .ucs-hero-carousel-arrow {
      width: 40px;
      height: 40px;
      font-size: 20px;
    }
    
    .ucs-hero-carousel-arrow.ucs-hero-carousel-prev {
      left: 8px;
    }
    
    .ucs-hero-carousel-arrow.ucs-hero-carousel-next {
      right: 8px;
    }
  }
  
  @media (max-width: 400px) {
    #hero1 h1 {
      font-size: 22px;
    }
    
    #hero2 h1 {
      font-size: 20px;
    }
    
    #hero2 h2 {
      font-size: 18px;
    }
    
    #hero1 .ucs-hero-carousel-email-signup input,
    #hero1 .ucs-hero-carousel-email-signup button {
      padding: 12px 18px;
      font-size: 14px;
    }
  }
  
  /* Animation for slide content */
  .ucs-hero-carousel-slide.ucs-hero-carousel-active .ucs-hero-carousel-text,
  .ucs-hero-carousel-slide.ucs-hero-carousel-active .ucs-hero-carousel-image {
    animation: ucs-hero-carousel-fadeInUp 0.8s ease-out;
  }
  
  @keyframes ucs-hero-carousel-fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Pause animation on hover */
  .ucs-hero-carousel-wrapper:hover .ucs-hero-carousel-arrow {
    opacity: 1;
  }
  
  /* Mobile touch improvements */
  @media (hover: none) and (pointer: coarse) {
    .ucs-hero-carousel-arrow {
      opacity: 0.8;
    }
    
    .ucs-hero-carousel-wrapper:active .ucs-hero-carousel-arrow {
      opacity: 1;
    }
  }
  
  /* Ensure proper stacking on mobile */
  @media (max-width: 991px) {
    .ucs-hero-carousel-slide.ucs-hero-carousel-active {
      position: relative;
      z-index: 2;
    }
  }