/* Banner Carousel Styles */

.banner-carousel-section {
  position: relative;
  width: 100%;
}

.banner-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  height: 428px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.slide-content {
  color: #FFFFFF;
  max-width: 600px;
  padding: 2rem 0;
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #333333;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Carousel Indicators with exact specifications */
.carousel-indicators {
  position: absolute;
  bottom: 29px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
  align-items: center;
}

.indicator {
  width: 6px;
  height: 6px;
  background: #D1D2D4;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.indicator.active {
  width: 14px;
  height: 8px;
  border-radius: 22px;
  padding-top: 4px;
  padding-right: 8px;
  padding-bottom: 4px;
  padding-left: 8px;
  background: var(--Elevation-L2, #FFFFFF);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.header-con {
    position: absolute;
    width: 100%;
    max-width: 1000px;
    background-color: #FFFFFFF2;
    padding: 0px 36px 1px 36px;
    border-radius: 108px;
    z-index: 2;
    top: 32px;
    left: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateX(-50%);
    margin: 0 auto;
}
/* Submit button styles */
.submit-btn {
  background-color: #FF6200;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #E55800;
}

.submit-btn:active {
  background-color: #D95000;
}

.image-con {
  width: 100%;
  position: absolute;
  max-height: 480px;
  object-fit: cover;
}

.download-cta {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.cta-header {
  display: flex;
  gap: 16px;
}
.cta-divider {
  width: 1px;
  height: 24px;
  background-color: #D1D2D4;
}


@keyframes indicatorActivate {
  0% {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background:#D1D2D4;
    padding: 0;
    box-shadow: none;
  }
  100% {
    width: 14px;
    height: 8px;
    border-radius: 22px;
    padding-top: 4px;
    padding-right: 8px;
    padding-bottom: 4px;
    padding-left: 8px;
    background: var(--Elevation-L2, #FFFFFF);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
}

.indicator.active {
  animation: indicatorActivate 0.3s ease-in-out forwards;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-con {
        width: 100%;
        max-width: 100%;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 0;
        padding: 8px 10px 8px 10px;
        box-sizing: border-box;
        gap: 25px;
    }
  
  .header-con img {
    height: 40px;
    width: auto;
  }
  .banner-carousel-section {
    display: flex;
    flex-direction: column-reverse;
  }
  .carousel-container {
    height: 128px;
  }
  
  .slide {
    height: 128px;
  }
  
  .slide img {
    height: 128px;
    object-fit: cover;
    width: 100%;
  }
  
  .slide-content h2 {
    font-size: 2rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
    .cta-header {
        display: flex;
        gap: 2px;
    }

    .download-cta {
        display: flex;
        align-items: center;
        gap: 0px;
        cursor: pointer;
    }

        .download-cta img {
            height: 25px;
            width: 25px;
        }

    .cta-divider {
        width: 1px;
        height: 40px;
        background-color: #D1D2D4;
    }

    .font-header {
        font-size: 11px;
    }
}
