        .blog-one__single {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
}

.blog-one__single:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.blog-one__img img {
    transition: transform 0.6s ease;
}

.blog-one__single:hover .blog-one__img img {
    transform: scale(1.08);
}
.price-p {
    background: linear-gradient(135deg, #ffe082, #ffca28);
    color: #3e2723;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 30px;
    display: inline-block;
    margin: 10px auto;
    font-size: 14px;
    box-shadow: 0 6px 14px rgba(255,202,40,0.35);
}

      .blog-one__read-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, #43a047, #2e7d32);
    color: #fff !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-one__read-more a:hover {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    transform: translateX(5px);
}
.chat-popup {
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.chat-form p {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.chat-form input,
.chat-form textarea,
.chat-form select {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.chat-form input:focus,
.chat-form textarea:focus,
.chat-form select:focus {
    border-color: #66bb6a;
    box-shadow: 0 0 0 3px rgba(102,187,106,0.25);
}
.testimonial-one__single {
    border-radius: 20px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.testimonial-one__single:hover {
    transform: translateY(-6px);
}

.testimonial-one__ratting span {
    color: #ffc107;
    font-size: 16px;
}
.location-modal {
    text-align: center;
}

.location-modal h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.btn-primary {
    font-weight: 600;
    letter-spacing: 0.5px;
}


        /* Overlay */
        .overlay {
            display: none;
            /* hidden by default */
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
        }


        /* Modal box */
        .location-modal {
            background: #fff;
            width: 340px;
            padding: 26px;
            border-radius: 16px;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
            animation: pop 0.3s ease;
        }

        /* Title */
        .location-modal h3 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 22px;
            font-weight: 600;
        }

        /* Select box */
        .location-select {
            width: 100%;
            padding: 12px 14px;
            font-size: 15px;
            border-radius: 10px;
            border: 1px solid #ddd;
            outline: none;
            transition: 0.3s;
        }

        .location-select:focus {
            border-color: #c9a24d;
            box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.25);
        }

        /* Buttons */
        .btn-group {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .btn {
            flex: 1;
            padding: 12px;
            border-radius: 10px;
            font-size: 15px;
            cursor: pointer;
            transition: 0.3s;
        }

        /* Continue button */
        .btn-primary {
            background: linear-gradient(135deg, #c9a24d, #b8923c);
            border: none;
            color: #fff;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(201, 162, 77, 0.45);
        }

        /* Cancel button */
        .btn-outline {
            background: transparent;
            border: 1px solid #ccc;
        }

        .btn-outline:hover {
            background: #f2f2f2;
        }

        /* Animation */
        @keyframes pop {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }
.marquee-horizontal {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.marquee-horizontal ul {
    display: inline-block;
    padding-left: 100%; /* Start from outside the right */
    animation: marquee-left 40s linear infinite;
}

.marquee-horizontal ul li {
    display: inline-block;
    margin-right: 40px; /* space between items */
    font-size: 1rem;
    color: #555;
}

/* Animation */
@keyframes marquee-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.app-cta-white {
  padding: 90px 0;
  background: #ffffff;
}

.app-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* subtle background shape */
.app-cta-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #7CFF6B, #32d2aa);
  opacity: 0.15;
  border-radius: 50%;
}

.app-cta-content h2 {
  font-size: 40px;
  color: #222;
  margin-bottom: 20px;
}

.app-cta-content h2 span {
  color: #2cbf8b;
}

.app-cta-content p {
  font-size: 18px;
  color: #666;
  max-width: 480px;
  margin-bottom: 30px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #f8f8f8;
  border-radius: 14px;
  margin-bottom: 30px;
}

.store-badge img {
  width: 32px;
}

.store-badge small {
  font-size: 12px;
  color: #888;
}

.store-badge strong {
  font-size: 15px;
  color: #111;
}

.cta-btn-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: linear-gradient(90deg, #32d2aa, #7CFF6B);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(50, 210, 170, 0.4);
}

.app-cta-image img {
  max-width: 380px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .app-cta-card {
    flex-direction: column;
    text-align: center;
  }

  .app-cta-image img {
    max-width: 300px;
  }
}
/* =========================
   TESTIMONIAL STYLING
========================= */

.testimonial-one__single {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-one__single:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.25);
}

/* Client Image */
.testimonial-one__client-img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #6dbf4b;
    object-fit: cover;
}

/* Client Name */
.testimonial-one__client-name a {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.testimonial-one__client-sub-title {
    font-size: 13px;
    color: #cfcfcf;
    margin-top: 2px;
}

/* Rating Stars */
.testimonial-one__ratting span {
    color: #ffb400;
    font-size: 15px;
    margin-right: 2px;
}

/* Review Box */
.testimonial-one__text-box {
    margin-top: 20px;
    position: relative;
    padding: 25px;
    border-radius: 16px;
    background: #227a4073;
}

.testimonial-one__text {
    font-size: 16px;
    line-height: 1.7;
    color: #f1f1f1;
    font-style: italic;
}

/* Quote Icons */
.testimonial-one__text span.fa-quote-left,
.testimonial-one__text span.fa-quote-right {
    color: #6dbf4b;
    font-size: 18px;
    margin: 0 6px;
}

/* Swiper Arrows */
.swiper-button-next1,
.swiper-button-prev1 {
    width: 45px;
    height: 45px;
    background: #6dbf4b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.swiper-button-next1:hover,
.swiper-button-prev1:hover {
    background: #4a9c2f;
    transform: scale(1.1);
}
.verified-badge {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    padding: 4px 10px;
    background: #6dbf4b;
    color: #fff;
    border-radius: 50px;
}

.testimonial-one__nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 10px;
    box-sizing: border-box;
}

.swiper-button-next1 i,
.swiper-button-prev1 i {
    font-size: 24px; /* Default size */
    color: #333;
}

@media (max-width: 768px) {
    .swiper-button-next1 i,
    .swiper-button-prev1 i {
        font-size: 18px; /* Smaller size on mobile */
    }
}

