* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: black;
  color: white;
}

.action-offer {
  position: relative;
  width: 25rem;
  top: -8px;
  z-index: -1;
}

.problem-card-title {
  position: relative;
  top: -35px;
  z-index: 1;
}

.problem-card-paragraph {
  position: relative;
  top: -65px;
}

.floating-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  position: relative;
}

.floating-card {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  animation: floatAnimation 5s ease-in-out infinite;
  position: relative;
}

.floating-card:nth-child(2) {
  animation-delay: 0.5s;
}
.floating-card:nth-child(3) {
  animation-delay: 1s;
}
.floating-card:nth-child(4) {
  animation-delay: 1.5s;
}
.floating-card:nth-child(5) {
  animation-delay: 2s;
}

@keyframes floatAnimation {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(5px, -8px);
  }
  50% {
    transform: translate(-5px, 8px);
  }
  75% {
    transform: translate(-10px, -6px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 2rem;
}

.service-card.reverse {
  flex-direction: row-reverse;
}

.service-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.service-text {
  background: #000;
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.6;
}

.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

@keyframes popUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.animated-btn {
  animation: popUp 1.5s ease-in-out infinite;
  transition: transform 0.2s ease-in-out;
}

.animated-btn:hover {
  transform: scale(1.12);
}

.footer {
  box-shadow: 0 0 20px rgba(255, 253, 253, 0.999);
}

.footer-links {
  color: white;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  line-height: 5px;
}
.footer-links:hover {
  color: #0080ff;
}

.footer-brand-img {
  width: 5px;
  height: 5px;
  /* border-radius: 50%; */
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .service-card {
    flex-direction: column !important;
    text-align: center;
  }

  .service-img {
    width: 140px;
    height: 140px;
  }

  .service-text {
    font-size: 0.95rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .service-img {
    width: 120px;
    height: 120px;
  }

  .service-text {
    font-size: 0.9rem;
    padding: 1.2rem;
  }
}

@media (max-width: 568px) {
  .action-offer {
    width: 15rem;
  }
}

@media (min-width: 768px) {
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-70 {
    width: 70% !important;
  }
  .w-md-40 {
    width: 40% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-60 {
    width: 60% !important;
  }
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-90 {
    width: 90% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
}

@media (min-width: 768px) {
  .rounded-md-pill {
    border-radius: 50rem !important;
  }
}

@media (max-width: 575.98px) {
  .fs-sm-1 {
    font-size: 2.5rem !important;
  }
  .fs-sm-2 {
    font-size: 2rem !important;
  }
  .fs-sm-3 {
    font-size: 1.75rem !important;
  }
  .fs-sm-4 {
    font-size: 1.5rem !important;
  }
  .fs-sm-5 {
    font-size: 1.25rem !important;
  }
  .fs-sm-6 {
    font-size: 1rem !important;
  }
}

@media (max-width: 767.98px) {
  .fs-md-1 {
    font-size: 2.5rem !important;
  }
  .fs-md-2 {
    font-size: 2rem !important;
  }
  .fs-md-3 {
    font-size: 1.75rem !important;
  }
  .fs-md-4 {
    font-size: 1.5rem !important;
  }
  .fs-md-5 {
    font-size: 1.25rem !important;
  }
  .fs-md-6 {
    font-size: 1rem !important;
  }
}

@media (max-width: 991.98px) {
  .fs-lg-1 {
    font-size: 2.5rem !important;
  }
  .fs-lg-2 {
    font-size: 2rem !important;
  }
  .fs-lg-3 {
    font-size: 1.75rem !important;
  }
  .fs-lg-4 {
    font-size: 1.5rem !important;
  }
  .fs-lg-5 {
    font-size: 1.25rem !important;
  }
  .fs-lg-6 {
    font-size: 1rem !important;
  }
}
