

/* Navbar Base */
#logo {
  width: 10rem;
}

p {
  font-size: 16px;
  color: #4a4d50;
}
.btn-outlinecustom{
  background-color: #C42852 !important;
  color: #ffff;
}
.btn-outlinecustom:active{
  background-color: #4D5154 !important;
  color: #ffff !important;
}
.btn-outlinecustom:hover{
  color: #ffff !important;
}

.navbar {
  transition: all 0.3s ease-in-out;
  background-color: #fff !important;
}

.nav-link {
  font-weight: 500;
  color: #212529 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #C42852 !important;
}

/* Dropdown Styling */
.dropdown-menu {
  background-color: #2b2b2b !important;
  border: none;
  border-radius: 0.5rem;
  min-width: 200px;
}

.dropdown-item {
  color: #fff !important;
  font-weight: 400;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa !important;
  color: #000000 !important;
}

/* Submenu alignment */
.dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.2rem;
}





/* Voice Solution Page */

.hero-voice-header {
  min-height: 100vh;
  background-color: #000000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  


}

.voip-heading {
  font-family: "Smooch Sans", sans-serif !important;
  font-weight: 700;
  font-size: 4.3rem;
  line-height: 3.5rem;
  color: #fff;
}
.voip-discription {
 color: #a7a5a5;
}



/* Section Styles */
.service-card-voice {

  padding: 20px;
  min-height: 250px;
  user-select: none;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient( #71717100, #53535395);
}
.service-card-voice:hover{
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  background: linear-gradient( #71717180, #535353d4);

}

.service-card-voice h5 {
  color: #ffffff;

}
.service-card-voice p {
  color: #a7a5a5;
}


.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #C42852; /* Africala light pink */
  color: #ffffff; /* Africala main pink */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}
.fade-in.delay-1 {
  animation-delay: 0.2s;
}
.fade-in.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* Swiper container and wrapper */
.voiceSwiper {
  width: 100%;
  height: 250px; /* adjust based on your design */
  position: relative;
  background: linear-gradient( #71717100, #53535395);
  border-radius: 12px;
  
}
.voice-swiper-section{
  height: 200px !important;
  width: 50% ;
}

/* Optional: dark background for slides */


/* Pagination styling */

.voice-pagination .swiper-pagination-bullet {
background-color: #000;
  opacity: 1;
  transition: background 0.3s ease-in-out;
}

.voice-pagination .swiper-pagination-bullet-active {
  background: #ffffff; /* your brand red */
}
/* Slide text styling */
.swiper-slide h5 {
  font-size: 1.1rem;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #fff; /* white text for dark background */
}

.voice-swiper-discription {
  color: #a7a5a5;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.offer-card {
  background: #2b2b2b;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.offer-card h5 {
  margin-bottom: 10px;
  color: #ffffff;
}

.offer-card p {
  color: #ffffff;
}


.callcenter-bg{
  background-image: url(/images/voip-callcenter.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  border-radius: 30px !important;
   
}
.feature-VoIP{
  padding-top: 20px;
  background-color: #000000;
}
.feature-VoIP p{
color: #a7a5a5 !important;
}

.ivr-section{
  padding-top: 100px !important;
}

/* pricing */
/* Pricing Card Styling */
.pricing-card {
  background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.pricing-card h5,
.pricing-card h2,
.pricing-card ul li {
  color: #ffffff;
}

.pricing-card ul li {
  margin-bottom: 8px;
}

.product-card {
  background: linear-gradient(to top, #71717100, #5353534b);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}
.product-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 1.5rem;
}
.product-card ul li::before {
  content: "\f26e"; /* bootstrap check2-circle icon */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: #C42852 ;
  font-size: 1rem;
  top: 0;
}
.product-card ul li{
 color: #ffffff;
}
/* Contact Section */
.contact-section {
  color: #fff;
}
.form-card {
  background: #2b2b2b;
  border-radius: 15px;
}
.form-card input,
.form-card textarea,
.form-card select {
  background: #1e1e1e;
  border: 1px solid #444;
  color: #fff;
}
.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #aaa;
}
.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: #C42852;
  box-shadow: 0 0 0 0.2rem rgba(239, 84, 85, 0.25);
}

/* Steps styling */
.step-number {
  width: 35px;
  height: 35px;
  background: #C42852;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.overlay-content {
  z-index: 2;
}

/* Hero text default for desktop */
.hero-title {
  font-size: 3rem;
}
.hero-subtitle {
  font-size: 1.25rem;
}




/* Customers Logo Section brands*/
.our-customers {

  padding: 30px 0px;
}

.slide-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  will-change: transform;
}

.carousel-slide {
  min-width: 150px;
  margin: 0 5px;
}

.carousel-slide img {
  width: 100px;
  height: 40px;
}


/* Tablet devices (768px - 991px) */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Mobile devices (max-width: 767.98px) */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .overlay-content {
    padding: 0 1rem;
  }
  .btn-lg {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* Small devices (max-width: 575.98px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 0.85rem;
  }
  .btn-lg {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
  }
}


.pricing-card {
  background: #1f1f1f;
  color: white;
  border-radius: 2rem;
  transition: transform 0.3s;
}
.pricing-card:hover {
  transform: translateY(-10px);
}
.popular-plan {
  border: 2px solid #C42852;
}
.modal-content {
  border-radius: 2rem;
}
#modalPlanBenefits li {
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

.video-section{
  max-height: 70vh;
}

