.hero {
  background: linear-gradient(45deg, #04078b, #2f0289) !important;
  padding: 50px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-btn button {
  font-weight: 800;
  letter-spacing: 2px;
}

.btn-custom:hover {
  background-color: #e0e0e0;
}

.google-play {
  margin-top: 15px;
}

.card1,
.card2 {
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  transition: box-shadow 0.3s ease-in-out;
}

.card1:hover,
.card2:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* General Styles for All Cards */
.data-card {
  color: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); */
}

.data-card:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.data-logo {
  width: 80px;
  margin-bottom: 10px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  border: 1px solid white;
  padding: 10px;
  text-align: center;
}

.data-table th {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Network-Specific Colors */
.airtel-card {
  background-color: #ff0000;
}

.mtn-card {
  background-color: #ffcc00;
  color: black;
}

.glo-card {
  background-color: #008000;
}

.mobile9-card {
  background-color: #009688;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .data-card {
    padding: 18px;
  }

  .data-logo {
    width: 70px;
  }

  .data-table {
    font-size: 13px;
  }

  .data-table th,
  .data-table td {
    padding: 8px;
  }
}

.card2 {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.badge {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.card-header {
  background-color: var(--orange-600);
  border-radius: 20px;

  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.small-cards {
  margin: 0 auto;

  justify-content: center;
}

.small-cards div {
  width: 160px;
  min-height: 160px;
  /* aspect-ratio: 3/2; */
}

.small-cards div>img {
  width: 140px;
  height: 130px;
  border-radius: 20px !important;
  -webkit-border-radius: 20px !important;
  -moz-border-radius: 20px !important;
  -ms-border-radius: 20px !important;
  -o-border-radius: 20px !important;
  box-shadow: 0px 4px 15px 5px rgba(0, 0, 0, 0.2) !important;
}

.faq {
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  transition: box-shadow 0.3s ease-in-out;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.faq:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.service-box {
  padding: 15px;
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.bg-light-pink {
  background-color: #f8d7da;
  color: #721c24;
}

.bg-light-blue {
  background-color: #d1ecf1;
  color: #0c5460;
}

.icon.mx-auto {
  width: 60px;
  height: 60px;
  font-size: 24px;
}

.recharge {
  padding: 70px;
  background: linear-gradient(45deg, #04078b, #2f0289) !important;
}

.contact-banner {
  background: url("../images/lady-with-glitter.jpg") center/cover no-repeat;
  position: relative;
  color: white;
  padding: 100px 0px !important;
}

.contact-banner .overlay {
  padding: 100px 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.contact-banner .container {
  position: relative;
}

/************* annimation styling ************/
@keyframes scroll {
  from {
    opacity: 0;
    transform: scale(0.6) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.ani-1 {
  animation: scroll 1.2s ease-out 0.2s forwards;

  animation-timeline: view();
  animation-range: entry 0% cover 50%;
}

/* Testimonials start here */
.testimonials {
  padding: 2rem 0;
  background: rgba(154, 177, 177, 0.2);
}

.carousel-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
}

.carousel-card-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sect10-card-text {
  flex: 1;
  padding: 15px;
  font-size: 14px;
}

.text-orange {
  color: var(--orange-600);
}

.flex2 img {
  width: 15px;
  height: 15px;
}

.sect10-card-text-p1 {
  line-height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-card {
    margin: 0 auto;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }

  .img-fluid {
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .carousel-card {
    margin: 0 auto;
    padding: 0;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }

  .img-fluid {
    width: 100%;
    object-fit: cover;
  }

  .sect10-card-text {
    font-size: 10px;
  }

  .sect10-card-text-p1 {
    line-height: 10px;
  }
}