/* Container */
.about-area-modern {
    background: #f8f9fc;
    font-family: 'Poppins', sans-serif;
}

/* Tagline */
.about-tagline {
    display: block;
    font-weight: 500;
    color: #26508f;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Title */
.about-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #222;
}

/* Paragraph */
.about-content-modern p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Button */
.btn-about {
    display: inline-block;
    background: #26508f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-about:hover {
    background: #26508f;
    transform: translateY(-3px);
}

/* Image Section */
.about-img-modern {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.about-img-wrapper:hover {
    transform: scale(1.05);
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #26508f;
    color: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.experience-badge h5 {
    font-size: 24px;
    color: white;
    margin: 0;
}

.experience-badge p {
    margin: 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-title {
        font-size: 28px;
    }

    .experience-badge {
        bottom: 15px;
        left: 15px;
        padding: 15px 20px;
    }
}


.auto-slider {
    width: 100%;
    padding: 40px 0;
    background: #f8f9fa;
}

.slider-container {
    max-width: 1100px;
    height: 450px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}


.buy-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.buy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.buy-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}

.buy-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover zoom effect */
.buy-card:hover img {
    transform: scale(1.08);
}

/* Overlay */
.buy-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.buy-card:hover .buy-overlay {
    opacity: 1;
}

.buy-btn {
    background: #ff6b00;
    color: #fff;
    padding: 14px 34px;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: #000;
}

.services-showcase {
    padding: 80px 0;
    background: #fff;
}

.small-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #000;
    display: block;
    margin-bottom: 10px;
}

.home-cleaning-service-section {
  padding: 60px 0;
  background: #f9fbfd;
}

.service-image img {
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.service-content h4 {
  color: #234283;
  margin-bottom: 20px;
}

.career-btn {
  position: fixed;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);

  background-color: #1f2937;
  color: #ffffff;
  padding: 6px 20px;

  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 6px 6px 6px 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;

  transition: all 0.3s ease;

  /* 🔴 Blink animation */
  animation: blinkText 1.5s infinite;
}


.language-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #111970;
  color: #fff;
  padding: 10px 1px;
  font-weight: bold;
  border-radius: 8px 0 0 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  cursor: pointer;
  z-index: 999;
}

.language-panel {
  display: none;
  position: fixed;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  z-index: 999;
  border-radius: 8px;
}

.language-option {
  padding: 8px;
  cursor: pointer;
}

.language-option:hover {
  background: #f0f0f0;
}


.language-panel {
  display: none;
  position: fixed;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  z-index: 999;
  border-radius: 8px;
}

.career-btn:hover {
  background-color: #2563eb;
  padding-right: 28px;
  color: white;
  animation: none; /* hover par blink band */
}

/* 🔁 Blink keyframes */
@keyframes blinkText {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blinkText {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.8);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
  }
}

.service-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.service-points {
  padding-left: 0;
  list-style: none;
}

.service-points li {
  margin-bottom: 10px;
  font-size: 16px;
}



/* Responsive */
@media (max-width: 768px) {
    .buy-grid {
        grid-template-columns: 1fr;
    }

    .buy-card img {
        height: 260px;
    }
}

.unique-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    padding-bottom: 15px;
    height: 580px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
    position: relative;
    transform-style: preserve-3d;
}

.unique-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.card-top {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.card-top img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    transform: rotate(-3deg) scale(1.08);
    transition: 0.4s ease;
}

.unique-card:hover .card-top img {
    transform: rotate(0deg) scale(1.15);
}

.badge-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #26508f;
    color: #fff;
    width: 38px;
    height: 38px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 62, 133, 0.4);
}

.card-content {
    padding: 18px;
    text-align: left;
}

.card-content h3 {
    color: #28397b;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.btn-card {
    margin-top: 12px;
    display: inline-block;
    padding: 6px 14px;
    font-size: 14px;
    background: #26508f;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-card:hover {
    background: #26508f;
    transform: translateX(5px);
}

.counter-area-modern {
    background: #f9fbff;
}

.counter-box-modern {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.counter-box-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.counter-icon {
    width: 70px;
    height: 70px;
    background: #ffdc9f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.counter-icon i {
    font-size: 30px;
    color: #273778;
}

.how-it-works {
    padding: 80px 0;
    background: #fff;
}

.section-tag {
    color: #254e8a;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #111;
}

.process-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.process-item {
    text-align: center;
    max-width: 220px;
}

.diamond {
    width: 120px;
    height: 120px;
    border: 2px dashed #ddd;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.diamond i {
    font-size: 34px;
    color: #273879;
    transform: rotate(-45deg);
}

.process-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.process-arrow {
    font-size: 30px;
    color: #b5702c;
}

/* 🔹 Mobile Responsive */
@media (max-width: 768px) {
    .process-wrapper {
        flex-direction: column;
          gap: 30px !important;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .section-title {
        font-size: 32px;
    }
   
}
.pricing-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f5f9ff, #ffffff);
}

.pricing-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 70px;
    color: #111;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
}

/* Card */
.pricing-card {
    position: relative;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 35px 30px;
    box-shadow: 0 18px 45px rgba(13,110,253,0.12);
    transition: all 0.35s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background:linear-gradient(90deg, #ce9532, #996b1a);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 65px rgba(13,110,253,0.2);
}

.appointment-area-modern {
    padding: 80px 0;
    background: #ffffff;
}

.appointment-image-wrap {
    text-align: center;
}

.appointment-image-wrap img {
    max-width: 90%;
}

/* Content */
.appointment-content-modern {
    padding: 29px;
    background: beige;
    padding-left: 30px;
    border-radius: 10px;

}

.section-tag {
    color: #273778;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.appointment-content-modern h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Form */
.appointment-form-modern .form-group {
    position: relative;
    margin-bottom: 28px;
}

.appointment-form-modern input,
.appointment-form-modern textarea,
.appointment-form-modern select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    background: #fff;
    outline: none;
}

.appointment-form-modern label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 6px;
    font-size: 14px;
    color: #777;
    transition: 0.3s;
    pointer-events: none;
}

.appointment-form-modern textarea + label {
    top: 18px;
    transform: none;
}

.appointment-form-modern input:focus + label,
.appointment-form-modern textarea:focus + label,
.appointment-form-modern select:focus + label,
.appointment-form-modern input:not(:placeholder-shown) + label,
.appointment-form-modern textarea:not(:placeholder-shown) + label,
.appointment-form-modern select:valid + label {
    top: -8px;
    border-radius: 1px;
    font-size: 12px;
    color: #273778;
}

/* Button */
.theme-btn-modern {
    background: linear-gradient(135deg, #273778, #1060a0);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.theme-btn-modern:hover {
    box-shadow: 0 10px 25px rgba(13,110,253,0.35);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .appointment-content-modern {
        padding-left: 20px;
        margin-top: 20px;
    }

    .appointment-content-modern h2 {
        font-size: 28px;
    }
}


/* Header */
.pricing-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.pricing-header i {
    width: 55px;
    height: 55px;
    background:linear-gradient(135deg, #273475, #1864a5);
    color: #fff;
    font-size: 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(13,110,253,0.35);
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

/* Sub headings */
.pricing-card h4 {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #273778;
}

/* Lists */
.pricing-card ul {
    padding-left: 18px;
    margin-bottom: 12px;
}

.pricing-card li {
    margin-bottom: 6px;
    color: #555;
    font-size: 14.5px;
}

/* Prices */
.price {
    background: #f1f6ff;
    border-left: 4px solid #273778;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
}

.highlight {
    background:linear-gradient(135deg, #273475, #1864a5);
    color: #fff;
    border-left: none;
    font-size: 17px;
}

.note {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

/* Mobile */
@media (max-width: 576px) {
    .pricing-title {
        font-size: 32px;
    }

    .pricing-card {
        padding: 28px 22px;
    }
}


.counter-number {
    font-size: 36px;
    font-weight: 700;
    color: #273778;
    margin-bottom: 8px;
}

.counter-title {
    font-size: 16px;
    font-weight: 500;
    color: #555;
}


            .counter-area-modern {
                background: #26508f;
                font-family: 'Poppins', sans-serif;
            }

            .counter-box-modern {
                background: #fff;
                border-radius: 20px;
                padding: 40px 20px;
                text-align: center;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
                transition: 0.4s;
            }

            .counter-box-modern:hover {
                transform: translateY(-8px);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            }

            .counter-icon {
                font-size: 40px;
                color: #26508f;
                margin-bottom: 15px;
                transition: 0.3s;
            }

            .counter-box-modern:hover .counter-icon {
                color: #26508f;
            }

            .counter-number {
                font-size: 36px;
                font-weight: 700;
                background: linear-gradient(90deg, #26508f, #135264);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                margin-bottom: 10px;
            }

            .counter-title {
                font-size: 16px;
                font-weight: 500;
                color: #555;
            }

            /* Responsive */
            @media (max-width: 991px) {
                .counter-box-modern {
                    padding: 30px 15px;
                }

                .counter-number {
                    font-size: 30px;
                }
            }
   
    .doctors-section {
        padding: 100px 0;
        background: #ffffff;
    }
    .doctor-card {
        background: #fff;
        border-radius: 18px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transition: 0.3s;
        border: 1px solid #eef2f7;
    }
    .doctor-card:hover {
            border: 2px solid #e3872d;
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }
    .doctor-icon {
        font-size: 60px;
        color: #28387a;
        margin-bottom: 15px;
    }
    .doctor-name {
        font-size: 22px;
        font-weight: 700;
        color: #111;
        margin-bottom: 5px;
    }
    .doctor-speciality {
        font-size: 15px;
        font-weight: 600;
        color: #28387a;
        margin-bottom: 10px;
    }
    .doctor-qualification {
        font-size: 14px;
        color: #444;
        margin-bottom: 8px;
    }
    .doctor-exp {
        font-size: 14px;
        font-weight: 600;
        color: #111;
    }
    .doctors-title span {
        color: #28387a;
        font-weight: 700;
    }

            .choose-area-modern {
                background: #f8f9fc;
                font-family: 'Poppins', sans-serif;
            }

            .choose-title {
                font-size: 32px;
                font-weight: 700;
                margin-bottom: 30px;
                color: #222;
            }

            .choose-title .dancing-script {
                color: #26508f;
            }

            .choose-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .choose-list li {
                background: #fff;
                border-radius: 15px;
                padding: 15px 20px;
                margin-bottom: 15px;
                /* display: flex;
                align-items: flex-start; */
                gap: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                transition: transform 0.3s, box-shadow 0.3s;
            }

            .choose-list li i {
                font-size: 22px;
                color: #26508f;
                margin-top: 3px;
                flex-shrink: 0;
            }

            .choose-list li strong {
                color: #222;
            }

            .choose-list li:hover {
                transform: translateY(-5px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            }

            .choose-img-modern img {
                border-radius: 20px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease;
            }

            .choose-img-modern img:hover {
                transform: scale(1.05);
            }

            /* Responsive */
            @media (max-width: 991px) {
                .choose-title {
                    font-size: 28px;
                }

                .choose-list li {
                    padding: 12px 15px;
                }
            }

            .testimonial-area-modern {
                background: #f7f9fc;
                padding: 80px 0;
                margin-top: -50px;
            }

            .testimonial-heading span {
                /* font-size: 16px; */
                font-weight: 600;
                color: #28387a;

                letter-spacing: 1px;
            }

            .testimonial-heading h2 {
                font-size: 36px;
                font-weight: 700;
                color: #111;
                margin-top: 10px;
            }

            .testimonial-heading h2 span {
                color: #28387a;
            }

            .testimonial-single-modern {
                background: rgba(255, 255, 255, 0.85);
                border-radius: 20px;
                padding: 35px;
                margin: 20px;
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease-in-out;
            }

            .testimonial-single-modern:hover {
                transform: translateY(-8px);
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
            }

            .testimonial-quote-icon-modern {
                font-size: 50px;
                color: #28387a;
                opacity: 0.3;
                margin-bottom: 15px;
                display: block;
            }

            .testimonial-single-modern p {
                font-size: 16px;
                color: #444;
                line-height: 1.7;
                margin-bottom: 25px;
            }

            .testimonial-author-modern {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .testimonial-author-modern img {
                width: 42px;
                height: 42px;
                border-radius: 6px;
            }

            .testimonial-author-modern h4 {
                font-size: 18px;
                font-weight: 700;
                margin: 0;
                color: #111;
            }

            .testimonial-rate-modern i {
                color: #f7c30f;
                margin-right: 3px;
            }
     
        /* Mobile Bottom Nav */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #ddd;
            box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .mobile-bottom-nav .nav-item {
            flex: 1;
            text-align: center;
            padding: 10px 0;
            font-size: 13px;
            font-weight: 600;
            color: #333;
            text-decoration: none;
        }

        .mobile-bottom-nav .nav-item i {
            display: block;
            font-size: 18px;
            margin-bottom: 2px;
        }

        /* Icon Colors */
        .mobile-bottom-nav .fa-envelope {
            color: #d4af37;
        }

        /* Gold */
        .mobile-bottom-nav .fa-phone {
            color: #d61349;
        }

        /* Red */
        .mobile-bottom-nav .fa-whatsapp {
            color: #25D366;
        }


                .gallery-img {
                    cursor: pointer;
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                }

                .gallery-img:hover {
                    transform: scale(1.03);
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
                }

                /* Overlay styling */
                .image-overlay {
                    position: fixed;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(0, 0, 0, 0.8);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    visibility: hidden;
                    opacity: 0;
                    transition: opacity 0.3s ease;
                    z-index: 9999;
                }

                .image-overlay img {
                    max-width: 90%;
                    max-height: 90%;
                    border-radius: 10px;
                    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
                    transform: scale(0.9);
                    transition: transform 0.3s ease;
                }

                .image-overlay.active {
                    visibility: visible;
                    opacity: 1;
                }

                .image-overlay.active img {
                    transform: scale(1);
                }
         
  