/* ==============================
   Carousel Indicators
================================ */
.carousel-indicators [data-bs-target] {
  background-color: #4d4949;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators {
  gap: 12px;
}

.carousel-indicators .active {
  background-color: #ff6600;
}


/* ==============================
   Pulse Animation
================================ */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  transition: transform 0.3s ease;
}


/* ==============================
   About Section (Large Screens)
================================ */
@media (min-width: 1400px) {
  #about .container-fluid {
    max-width: 85%;
  }

  #about p {
    font-size: 17px;
  }
}


/* ==============================
   Industry Cards
================================ */
.industry-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 2px 8px rgba(58, 56, 56, 0.04);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.industry-card .icon {
  font-size: 1.6rem;
  color: #fd8920;
  flex-shrink: 0;
}

.industry-card:hover .icon {
  color: #007bff;
}

.industry-title {
  color: #333;
  line-height: 1.4;
}

@media (max-width: 576px) {
  .industry-card {
    padding: 10px 14px;
  }

  .industry-card .icon {
    font-size: 1.4rem;
  }

  .industry-title {
    font-size: 0.95rem;
  }
}


/* ==============================
   Service Cards
================================ */
.service-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  padding: 20px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.service-item .img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item .icon i {
  font-size: 32px;
  color: #00c6ff;
  animation: bounce 2s infinite;
  transition: color 0.3s ease;
}

.service-item:hover .icon i {
  color: #ff6ec4;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}


/* ==============================
   Buttons
================================ */
.red-button {
  padding: 10px 20px;
  background-color: #dc3545;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.red-button:hover {
  background-color: #c82333;
}

.theme-submit-btn {
  background: linear-gradient(135deg, #f26b38);
  color: #fff;
  padding: 12px 50px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.theme-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #007bff);
}

.theme-submit-btn:active {
  transform: scale(0.97);
}
