body {
  background-color: #000000;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}
.hero-slide {
  height: 80vh;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-weight: bolder;
  padding: 0 20px;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  z-index: 1;
  transition: background-image 1s ease-in-out;
  background-color: rgba(30, 34, 58, 0.7);
}

.typewriter {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
}

.typewriter h1 {
  overflow: hidden;
  border-right: 0.15em solid white;
  white-space: nowrap;
  font-weight: bolder;
  margin: 0 auto;
  font-size: 2.5rem;
  animation: typing 9s steps(40, end) alternate infinite,
             blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  0% { width: 0 }
  50% { width: 100% }
  100% { width: 0 }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}

/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
  .typewriter h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .typewriter h1 {
    font-size: 1.4rem;
  }

  .hero-slide {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}


  .fade-in-up,
  .fade-in-left,
  .fade-in-right,
  .fade-in-zoom {
    opacity: 0;
  }
  .animated.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
  }
  .animated.fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
  }
  .animated.fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
  }
  .animated.fade-in-zoom {
    animation: fadeInZoom 1s ease-out forwards;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes fadeInZoom {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #475068;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    display: none;
  }
  .brand{
    color: #3054b8b0;
  }
  .nav-item{
    font-weight: bolder;
  }
  .form-control, .btn-subscribe {
    border-radius: 0;
  }
  .card img {
    transition: transform 0.5s ease;
  }
  .card:hover img {
    transform: scale(1.05);
  }
  .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
  }
  
  .card:hover .card-img-top {
    transform: scale(1.03);
  }
  
  .card-title {
    margin-top: 10px;
    font-size: 1.1rem;
  }
  .service-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .card-body {
    padding: 2rem;
  }
  
  
  .card-text {
    font-size: 0.95rem;
    color: #555;
  }
  
  .card-body p {
    color: #777;
  }    

  .partner-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partner-slider {
    display: flex;
    animation: scrollLeft 20s linear infinite;
    width: max-content;
}

.partner-logo img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
.accordion-button {
  font-weight: 500;
  transition: all 0.3s ease;
}
.accordion-button:not(.collapsed) {
  background-color: #198754; /* Bootstrap success color */
  color: #fff;
}
.accordion-button:focus {
  box-shadow: none;
}
