*{
    margin: 0px;
    padding: 0px;
}
body {

  }

.btn-success {
  background: #1ed760 !important;
}


.about-ac {
  text-align: right;
  background-color: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.about-ac h2 {
  font-weight: bold;
}

.about-ac p {
  font-size: 1.1rem;
  color: #333;
}


/* Floating Action Button Shared Styles */
.floating-action-btn {
  position: fixed;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 40px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
  z-index: 9999;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Icon Wrapper */
.floating-action-btn i {
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.25);
  transition: all 0.3s ease-in-out;
}

/* Call Button */
.call-btn {
  bottom: 100px;
  background: linear-gradient(135deg, #006eff, #0051c9);
}

.call-btn i {
  color: #006eff;
}

/* WhatsApp Button */
.whatsapp-btn {
  bottom: 40px;
  background: linear-gradient(135deg, #1ed760, #0bbf4d);
}

.whatsapp-btn i {
  color: #1ed760;
}

/* Hover Effects */
.floating-action-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  color: #ededed !important;
}
.whatsapp-btn:hover {
    color: #ededed !important;
}

/* Icon Hover Effect */
.floating-action-btn:hover i {
  transform: scale(1.1);
}

/* Floating Animation */
@keyframes floatPulse {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.floating-action-btn {
  animation: floatPulse 3s infinite ease-in-out;
}

/* why choose us */
.why_choose-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: right;
}


.why_choose-subtitle {
    font-size: 16px;
    color: #555;
    margin-top: 8px;
}

.why_choose-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.why_choose-row a{
    text-decoration: none;
}

.why_choose-box {
    flex: 1 1 calc(20% - 20px); /* 5-column layout */
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    min-width: 200px;
    max-width: 240px;
    color: inherit; /* Use text color from bg classes */
}

.why_choose-box:hover {
    transform: translateY(-5px);
}

.why_choose-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why_choose-desc {
    font-size: 14px;
    color: inherit;
    line-height: 1.6;
    color: #fff !important;
}

.bg-1 {
    background-color: #4a90e2;
    color: #fff;
}

.bg-2 {
    background-color: #50e3c2;
    color: #fff;
}

.bg-3 {
    background-color: #f5a623;
    color: #fff;
}

.bg-4 {
    background-color: #d0021b; /* Red */
    color: #fff;
}

.bg-5 {
    background-color: #7ed321; /* Green */
    color: #fff;
}

@media (max-width: 992px) {
    .why_choose-box {
        flex: 1 1 calc(45% - 20px);
    }
}

@media (max-width: 576px) {
    .why_choose-box {
        flex: 1 1 100%;
    }
}

/* testimonial */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 25px;
    max-width: 600px;
    margin: auto;
    text-align: right;
}

.profile-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4285F4;
}

.profile-img-container {
    position: relative;
}

.google-icon {
    position: absolute;
    bottom: -5px;
    left: -5px;
    background: #fff;
    color: #4285F4;
    border: 1px solid #ddd;
    font-size: 10px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.review-date {
    font-size: 0.85rem;
    color: #777;
}

.rating .fa-star, .rating .fa-star-half-alt {
    color: #FFBF00;
}

.verified-badge {
    color: #4285F4;
    font-size: 0.9rem;
}

.testimonial-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-top: 10px;
}

.read-more {
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #4285F4;
    border-radius: 50%;
}

.carousel-indicators [data-bs-target] {
    background-color: #4285F4;
}


/* faq */
.FAQ-title {
    font-size: 16px;
    color: #000;
    cursor: pointer;
}
.expandToggle {
    font-size: 20px;
    font-weight: bold;
}
.FAQ-content {
    font-size: 15px;
    color: #333;
}
