.custom-navbar {
  background-color: #ece9c7;
  color: #6c757d;
}

.navbar-nav .nav-link {
  color: rgb(58, 58, 58);
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link.active {
  color: #004fc3 !important;
  font-weight: bold;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #004fc3;
  border-radius: 2px;
}
  .navbar-toggler-icon {
      display: inline-block;
      width: 1.5em;
      height: 1.5em;
      vertical-align: middle;
      background-image: var(--bs-navbar-toggler-icon-bg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: 100%;
      filter: brightness(0) invert(1); /* Custom color via white filter */
    }

/* Slide and Animation */
.slide {
  height: 720px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  text-shadow: 1px 1px 5px #000;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .slide {
    height: 400px;
  }
}

.fade-in-bg {
  animation: zoomOutOnly 8s ease-in-out infinite;
  transform: scale(1.1); /* Start zoomed in */
}

@keyframes zoomOutOnly {
  from {
    transform: scale(1.1); /* Start zoomed in */
  }
  to {
    transform: scale(1);   /* Zoom out to normal */
  }
}


.animated-content {
  opacity: 0;
  transform: translateY(60px);
  animation: slideUpContent 1s ease-out 2s forwards;
}

@keyframes slideUpContent {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Partner Logo */
.partner-logo {
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Contact Headings */
.contact-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-highlight {
  color: #004fc3;
}

.contact-normal {
  color: #6c757d;
}

/* Product Cards */
.service-card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.service-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.7); */
  z-index: 1;
}

.service-card .content {
  position: relative;
  z-index: 2;
  color: white;
}

.service-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  margin: 0;
}

.service-card .btn-outline-light {
  background-color: #004fc3;
  color: #fff;
  border: none;
}

.service-card .btn-outline-light:hover {
  background-color: #004fc3;
}

.custom-pink-btn {
  background-color: #004fc3;
  color: #fff;
  border: none;
  transition: background-color 0.1s ease;
}

.custom-pink-btn:hover {
  background-color: #e60066;
}

.address-block p {
  margin-bottom: 0.3rem;
}
 .service-card .content p {
      font-size: 1rem; 
    }

.client-logo {
  background-color: #e60066;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
  margin: 10px;
  height: 150px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.client-logo:hover {
  transform: scale(1.05);
}


.carousel-item h2 {
  font-size: 4rem; /* adjust up to 5rem if needed */
  font-weight: 800;
  line-height: 1.2;
}

.carousel-item p {
  font-size: 1.75rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-item .btn {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

/* Add this inside <style> tag or your CSS file */
#organization .bg-light,
#organization .bg-dark {
  transition: transform 0.3s ease;
}

#organization .bg-light:hover,
#organization .bg-dark:hover {
  transform: translateY(-5px);
}

.btn-custom {
  background: linear-gradient(to right, #053efa, #ec0383);
  color: #fff;
  border: none;
}
.btn-custom:hover {
  background: linear-gradient(to right, #ec0383, #053efa);
  color: #fff;
}

/* Default (large desktops and up) */
.slide-content h2 {
  font-size: 4rem;
}

.slide-content p {
  font-size: 2.00rem !important;
}

.btn-custom {
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
}

/* Extra Large Desktops (≥1400px) */
@media (max-width: 1400px) {
  .slide-content h2 {
    font-size: 3.5rem;
  }

  .slide-content p {
    font-size: 1.75rem;
  }

  .btn-custom {
    font-size: 1.1rem;
    padding: 0.7rem 1.8rem;
  }
}

/* Laptops (≥1200px) */
@media (max-width: 1200px) {
  .slide-content h2 {
    font-size: 2.2rem;
  }

  .slide-content p {
    font-size: 1.05rem;
  }

  .btn-custom {
    font-size: 1rem;
    padding: 0.65rem 1.6rem;
  }
}

/* Tablets (≥768px) */
@media (max-width: 992px) {
  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .btn-custom {
    font-size: 0.95rem;
    padding: 0.6rem 1.4rem;
  }
}

/* Small Tablets / Large Mobiles (≥576px) */
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 1.75rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }

  .btn-custom {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }
}

/* Small Mobile Devices (≤576px) */
@media (max-width: 576px) {
  .slide-content h2 {
    font-size: 1.5rem!important;
  }

  .slide-content p {
    font-size: 1.1rem!important;
  }

  .btn-custom {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
}

/* Extra Small Mobile Devices (≤400px, like 340px) */
@media (max-width: 400px) {
  .slide-content h2 {
    font-size: 1.3rem !important;
  }

  .slide-content p {
    font-size: 0.95rem !important;
  }

  .btn-custom {
    font-size: 0.8rem;
    padding: 0.35rem 0.8rem;
  }
}
