:root {
  --primary-color: #6c63ff;
  --secondary-color: #4d44db;
  --accent-color: #ff6584;
  --dark-color: #2d2d2d;
  --light-color: #f8f9fa;
  --text-color: #333;
  --text-light: #777;
  --white: #fff;
  --black: #000;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}


.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-small {
  padding: 8px 20px;
  font-size: 14px;
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

#testimonialCarousel .card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  padding: 24px 30px;
}

#testimonialCarousel .card-body p {
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

#testimonialCarousel .card-body h5 {
  font-weight: 700;
  margin-bottom: 0.2rem;
}

#testimonialCarousel .card-body>p:last-child {
  color: #e0e0e0;
  font-size: 1rem;
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
}

 .call-now-banner {
            background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
            color: white;
            padding: 20px;
            text-align: center;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .call-now-number {
            display: inline-block;
            background: white;
            color: #6e48aa;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.3rem;
            text-decoration: none;
            margin: 10px 0;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .call-now-number:hover {
            background: #f8f9fa;
            color: #9d50bb;
        }

        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #2b874a;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            text-decoration: none;
            transition: all 0.3s ease;
            z-index: 1000;
            font-size: 1.8rem;
        }

        .whatsapp-btn:hover {
            background: #2b874a;
            transform: scale(1.1);
        }


.footer {
            background: #6e48aa;
            color: white;
            padding: 40px 0 10px 0;
        }

        .footer a {
            color: #fff;
            text-decoration: none;
        }

@media (max-width: 768px) {
  #testimonialCarousel .card-body p {
    font-size: 1rem;
  }

  #testimonialCarousel .card {
    padding: 16px 8px;
  }
}