/* ========== GENERAL STYLES ========== */
body {
  font-family: "Segoe UI", sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE10+ */
  user-select: none; /* Standard */
}
img {
  pointer-events: none;
  -webkit-user-drag: none;
}
a {
  text-decoration: none;
  color: #fa416b;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

/* ========== HERO SECTION ========== */
.carousel-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.carousel-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Background overlay for readability */
  z-index: 1;
}

.carousel-overlay .overlay-content {
  position: relative;
  z-index: 2;
}

.text-shadow {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

/* ========== SERVICES SECTION ========== */
.services .card {
  border: none;
}

.first {
  color: #f84672;
}

.best {
  color: #249eda;
}

/* ========== COUNTERS SECTION ========== */
.counter {
  font-size: 3rem;
}

/* ========== CONTACT SECTION ========== */
.contact-info {
  background: #d4aa29;
  color: #fff;
  border-radius: 8px;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.contact-info i {
  color: #fff;
  margin-right: 10px;
}

.btn-warning {
  background-color: #d4aa29;
  border: none;
  padding: 10px 20px;
}

.btn-warning:hover {
  background-color: #b8921c;
}

/* ========== SWIPER (if used) ========== */
.swiper {
  width: 100%;
  max-width: 900px;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* ========== BUTTON ANIMATIONS ========== */
@keyframes fadeSlideUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.fade-up.animate {
  animation: fadeSlideUp 1s ease-out forwards;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.animated-button.animate {
  animation: bounceIn 1s ease-out forwards;
  animation-delay: 0.5s;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .carousel-overlay {
    height: 60vh;
  }

  .carousel-overlay .overlay-content h1 {
    font-size: 2.2rem;
  }

  .counter {
    font-size: 2.5rem;
  }
}

.cta-section h2 {
  color: #2196f3; /* Bright blue for the heading */
}

.cta-section p {
  color: #444;
}

.animated-button {
  background-color: #25d366;
  border: none;
  color: #fff;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.animated-button:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

.contact_title {
  color: #007bff;
  font-weight: bold;
}

.faq-container {
  margin: 60px auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.accordion-button:not(.collapsed) {
  background-color: #f1f1f1;
}
.search-bar {
  margin-bottom: 30px;
}

.packages-header {
  position: relative;
  background-image: url("assets/images/Internet-packages.png");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.packages-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.packages-header .header-content {
  position: relative;
  z-index: 2;
}

.package-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.package-title {
  color: #007bff;
  font-weight: bold;
}

.package-speed {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.package-price {
  color: #28a745;
  font-weight: bold;
  margin-bottom: 1rem;
}

.btn-custom {
  background-color: #005aa7;
  color: #fff;
}

.btn-custom:hover {
  background-color: #00437a;
}

.pricing-card {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.pricing-card .card-header {
  background: linear-gradient(to bottom, #0d6efd, #0a58ca);
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}
.pricing-card .card-body {
  text-align: center;
}
.btn-custom {
  background-color: #fa416b;
  border: none;
  font-weight: bold;
  border-radius: 50px;
  padding: 10px 25px;
}
.btn-custom:hover {
  background-color: #fa416b;
}
.card-footer {
  background: #fff;
}
.custom-shape-divider-top {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px; /* optional to blend it tightly */
}

.accordion-button:not(.collapsed) {
  background-color: #fb406b;
  color: #fff;
}
a {
  text-decoration: none;
  color: #fa416b;
}

.contact-card {
  background: #fff;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 2rem;
}

.btn-custom {
  background-color: #005aa7;
  color: #fff;
}

.btn-custom:hover {
  background-color: #00437a;
}

.contact_title {
  color: #007bff;
  font-weight: bold;
}

.contact-header {
  position: relative;
  background-image: url("assets/images/contact-us.jpg");
  background-size: cover;
  background-position: center;
  height: 300px;
  color: #fff;
}

.contact-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Adjust darkness here */
  z-index: 0;
}
