/* Logo Text */
.brand-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: #A21A53;
}

.text-justify {
  text-align: justify;
}

/* Nav Items */
.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 30px;
  transition: background-color 0.3s, color 0.3s;
}

/* Different Colors for Each Menu Item */
.navbar-nav .nav-link:nth-child(1) {
  color: #0076BC;
}
.navbar-nav .nav-link:nth-child(2) {
  color: #76B640;
}
.navbar-nav .nav-link:nth-child(3) {
  color: #F58220;
}
.navbar-nav .nav-link:nth-child(4) {
  color: #A21A53;
}

/* Hover Effect */
.navbar-nav .nav-link:hover {
  background-color: #f0f0f0;
  text-decoration: none;
}

.subscribe-section input::placeholder {
  color: #f0f0f0;
  opacity: 0.8;
}
.subscribe-section input:focus {
  outline: none;
  box-shadow: none;
  border-color: #fff;
}


/* Mobile menu spacing */
@media (max-width: 991px) {
  .navbar-nav {
    gap: 0.5rem;
    text-align: center;
  }
}




.service-card img {
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.service-card a:hover {
  text-decoration: underline;
}

.footer-link a {
  transition: color 0.3s ease;
  color:  #A21A53; /* Bootstrap primary blue */
  text-decoration: underline;
}

.footer-link a:hover {
  text-decoration: underline;
  color: #007bff;; /* logo color */
}

.separator {
  color: #999;
  margin: 0 0.5rem;
}

footer {
  font-size: 0.9rem;
  background-color: #fde9ee; /* soft pink logo tone */
}

/* Make carousel image responsive */
#serviceSlider img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  #serviceSlider img {
    height: 250px; /* Reduced height for smaller devices */
  }

  .carousel-caption {
    bottom: 10px !important;
    left: 10px !important;
    right: 10px !important;
    padding: 0.75rem 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 0.5rem;
    font-size: 0.875rem;
  }

  .carousel-caption h3 {
    font-size: 1rem;
  }

  .carousel-caption p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .carousel-caption .btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}


  #scopeCarousel .carousel-inner {
    direction: rtl;
  }
  #scopeCarousel .carousel-item > .row {
    direction: ltr;
  }

