h1,
h2,
h3 {
  color: #222;
}

.feature-list {
  padding-left: 1.2rem;
  margin-top: 1rem;
}

.feature-list li {
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 1rem;
}

/* Carousel */
.carousel {
  border-radius: 12px;
  overflow: hidden;
  max-height: 370px;
  max-width: 100%;
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #555;
  opacity: 0.5;
}

.carousel-indicators .active {
  background-color: #007bff;
  opacity: 1;
}
.carousel-indicators {
  position: static;
  bottom: 10px;        
  left: 50%;
  margin: 0;           /* remove extra margin */
  text-align: center;
}


/* carosel for app ss full */

.carousel-item img.app-screenshot {
  width: auto;
  max-height: 550px;     /* adjust this to control height */
  margin: 0 auto;        /* center horizontally */
  display: block;
  object-fit: contain;   /* keeps full screenshot visible */
  background: #000;      /* black background for tall images */
  padding: 10px;         /* optional spacing */
  border-radius: 12px;   /* smooth edges */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.carousel {
  border-radius: 12px;
  overflow: hidden;
  max-height: 100% !important;
  max-width: 100%;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100%, 100%;
  width: 2.5rem;
  height: 2.5rem;
  filter: invert(1) grayscale(100);
  /* makes them black */
}

/* Optional: Add background circle for visibility */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6);
  /* dark circle */
  border-radius: 50%;
}

/* Change hover effect */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(0, 123, 255, 0.8);
  /* bootstrap primary blue on hover */
}

/* Services */
.services-img {
  max-height: 220px;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.app-screenshot {
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  max-height: 550px; 
  margin: 0 auto;
  display: block;

}


/* Responsive Text Alignment */
@media (max-width: 768px) {
  .feature-list {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }

  .carousel-item {
    max-height: 400px;
  }

  .app-screenshot {
    max-height: 400px !important; /* smaller height for mobile */
    padding: 5px;
  }
}