.carousel-item {
  min-height: 500px;
  padding: 60px 20px;
}

.carousel-item h1 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.carousel-item h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #ff7f27;
  margin-bottom: 1.5rem;
}

.carousel-item p {
  font-size: 1.2rem;
  text-align: center;
  color: #666;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.carousel-indicators {
  bottom: 0;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 6px;
}

.carousel-indicators .active {
  background-color: #ff7f27;
}

.cta-btn {
  background-color: #ff7f27;
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 127, 39, 0.3);
}

.cta-btn:hover {
  background-color: #e06a18;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 127, 39, 0.4);
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid #ccc;
  color: #555;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-left: 15px;
  transition: all 0.3s;
}

.secondary-btn:hover {
  border-color: #999;
  color: #333;
}

.laptop-mockup {
  max-width: 80%;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn-icon {
  margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-item h1 {
    font-size: 2.2rem;
  }

  .carousel-item h2 {
    font-size: 1.6rem;
  }

  .carousel-item p {
    font-size: 1rem;
  }

  .button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .secondary-btn {
    margin-left: 0;
    margin-top: 15px;
  }
}
