
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

html {
            scroll-behavior: smooth;
        }
        .top-bar {
            background: #7bdb54;
            padding: 10px 0;
            color: #fff;
        }
        .navbar {
            background: #ffffff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            font-weight: bold;
            color: #1a1a1a;
        }
        .navbar-brand img {
            height: 65px;
            margin-right: 10px;
        }
        .nav-link {
            color: #1a1a1a;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: #007bff;
        }
        .carousel-item {
            height: 600px;
        }
        .carousel-item img {
            object-fit: cover;
            height: 100%;
        }


        /* filepath: d:\xampp\htdocs\cleaning\css\main.css */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #7bdb54;
    color: white;
}

.dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: middle;
}

.navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    display: none;
    margin-top: 0; /* Remove margin to prevent gap between nav-item and dropdown */
}

.nav-item.dropdown {
    position: relative;
}


/* Responsive Carousel Styles */
.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: relative;
    height: 100vh; /* Change to viewport height */
    max-height: 800px; /* Add maximum height */
}

.carousel-img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    bottom: 50%;
    transform: translateY(50%);
    max-width: 80%;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .carousel-item {
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 70vh;
    }

    .carousel-caption {
        padding: 20px;
        bottom: 50%;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 60vh;
    }

    .carousel-caption {
        padding: 15px;
        max-width: 90%;
    }
}


/* Footer Styles */
.footer {
    position: relative;
    background: linear-gradient(45deg, #1a1a1a, #2c2c2c);
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #7bdb54;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer ul li a:before {
    content: '→';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: #7bdb54 !important;
    padding-left: 20px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #7bdb54;
    transform: translateY(-3px);
}

section {
    padding: 90px 0;
}

.counter{
    background: #7bdb54;
    color: #fff;
    padding: 50px 0;
}

/* FAQ Section Styles */
/* #faq {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('../img/pattern-bg.png');
    background-attachment: fixed;
} */

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    border-radius: 10px !important;
    background-color: #fff;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #7bdb54;
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(123, 219, 84, 0.25);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237bdb54'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    line-height: 1.8;
    color: #666;
}

/* FAQ Image Styles */
/* FAQ Section Styles */
#faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#faq .accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    border-radius: 10px !important;
    background-color: #fff;
    transition: all 0.3s ease;
}

#faq .accordion-button:not(.collapsed) {
    color: #7bdb54;
    background-color: #fff;
    box-shadow: none;
}

#faq .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(123, 219, 84, 0.25);
}

#faq .accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

#faq .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237bdb54'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#faq .accordion-body {
    padding: 20px 25px;
    line-height: 1.8;
    color: #666;
}

#faq img {
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#faq img:hover {
    transform: translateY(-5px);
}

/* Why Choose Us Section Styles */
/* #why-choose-us {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('../img/pattern-bg.png');
    background-attachment: fixed;
} */

.why-choose-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(123, 219, 84, 0.15);
    border-color: #7bdb54;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(123, 219, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #7bdb54;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    background: #7bdb54;
    color: #fff;
    transform: rotateY(360deg);
}

.why-choose-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.why-choose-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    color: #1a1a1a;
}

/* .section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #7bdb54;
} */

@media (max-width: 768px) {
    .why-choose-card {
        padding: 20px;
    }
    
    .why-choose-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .why-choose-title {
        font-size: 1.1rem;
    }
}

/* Services Section Styles */
.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-img {
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(123, 219, 84, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-icon {
    font-size: 2.5rem;
    color: #7bdb54;
    margin-bottom: 15px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.7;
}

.service-overlay .btn {
    padding: 10px 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-overlay .btn:hover {
    background: #7bdb54;
    color: #fff;
}

@media (max-width: 768px) {
    .service-img img {
        height: 200px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.25rem;
    }
}

/* Testimonials Section Styles */
/* #testimonials {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('../img/pattern-bg.png');
    background-attachment: fixed;
} */

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(123, 219, 84, 0.15);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-content i {
    color: #7bdb54;
    font-size: 2rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #7bdb54;
}

.author-info h5 {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.author-info small {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-content i {
        font-size: 1.5rem;
    }

    .author-img {
        width: 50px;
        height: 50px;
    }
}

/* Testimonial Animation */
.testimonial-card {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Style for circular buttons */
.whatsapp-btn, .call-btn, .back-to-top-btn {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Specific positions for buttons */
.whatsapp-btn {
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
}

.call-btn {
    bottom: 20px;
    left: 20px;
    background-color: #007bff;
}

.back-to-top-btn {
    bottom: 90px;
    right: 20px;
    background-color: #343a40;
}

/* Hover effects for each button */
.whatsapp-btn:hover {
    background-color: #128c7e;
}

.call-btn:hover {
    background-color: #0056b3;
}

.back-to-top-btn:hover {
    background-color: #495057;
}
/* About Section Styles */
.about-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('../img/pattern-bg.png');
    background-attachment: fixed;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    color: #1a1a1a;
}

/* .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #7bdb54;
} */

.about-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.mission-icon, .vision-icon, .value-icon {
    width: 70px;
    height: 70px;
    background: rgba(123, 219, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #7bdb54;
    margin-bottom: 20px;
}

.value-card {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(123, 219, 84, 0.15);
}

.value-icon {
    margin: 0 auto 20px;
}

.value-card h4 {
    color: #1a1a1a;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section-title {
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-list {
        margin-bottom: 30px;
    }
}


/* filepath: d:\xampp\htdocs\cleaning\css\main.css */
/* Breadcrumb Styles */
.breadcrumb-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../img/breadcrumb-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    text-align: center;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    display: inline-flex;
}

.breadcrumb-item {
    font-size: 1.1rem;
    display: inline-block;
}

.breadcrumb-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    /* margin: 15px 0 0; */
}

/* Ensure breadcrumb items are centered on mobile */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 60px 0;
    }
    
    .breadcrumb-title {
        font-size: 2rem;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
    }
}

docs\cleaning\css\main.css */
/* Contact Section Styles */
.contact-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('../img/pattern-bg.png');
    background-attachment: fixed;
}

.contact-info-card, 
.contact-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #7bdb54;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(123, 219, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h5 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #7bdb54;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(123, 219, 84, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #7bdb54;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #7bdb54;
    color: #fff;
    transform: translateY(-3px);
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus, 
.form-select:focus {
    border-color: #7bdb54;
    box-shadow: 0 0 0 0.2rem rgba(123, 219, 84, 0.25);
}

.btn-primary {
    background: #7bdb54;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #69c746;
    transform: translateY(-2px);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Service Detail Page Styles */
.service-detail-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('../img/pattern-bg.png');
    background-attachment: fixed;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.check-list li i {
    color: #7bdb54;
    margin-right: 10px;
    font-size: 1.2rem;
}

.process-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(123, 219, 84, 0.15);
}

.process-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(123, 219, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #7bdb54;
    margin: 0 auto 20px;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #7bdb54;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(123, 219, 84, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: #7bdb54;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #7bdb54;
}

.cta-card {
    background: linear-gradient(45deg, #7bdb54, #69c746);
    padding: 50px;
    border-radius: 15px;
    color: #fff;
    margin-top: 50px;
}

.cta-buttons {
    margin-top: 30px;
}

.btn-outline-primary {
    color: #fff;
    border-color: #fff;
}

.btn-outline-primary:hover {
    background: #fff;
    color: #7bdb54;
}

@media (max-width: 768px) {
    .process-card, .feature-card {
        padding: 20px;
    }
    
    .cta-card {
        padding: 30px;
    }
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(123, 219, 84, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #7bdb54;
    margin-bottom: 20px;
}

.benefit-card h4 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.benefit-card p {
    color: #666;
    margin-bottom: 0;
}