﻿
.pcolor {
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #fff;
}
.h2pcolor {
    color: #363ea9 !important
}
.carousel-indicators [data-bs-target] {
    color: #fa6c05 !important;
}
.custom-heading {
    font-weight: 600;
}
span h2::after {
    content: '';
    position: absolute;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #fa6c05;
   
    margin-top: 47px;
}
.category-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
}
    .category-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }


/* Products Slider */
.products-slider {
    padding: 2rem 0;
}

.product-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

    .product-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 1rem;
    }

    .product-card h3 {
        color: var(--secondary-color);
        margin-bottom: 0.5rem;
    }

    .product-card p {
        color: #666;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

/* Services */
.service-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s;
}

    .service-card:hover {
        transform: translateY(-5px);
    }

    .service-card img {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
        border-radius: 50%;
        object-fit: cover;
    }

    .service-card h3 {
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }

    .service-card p {
        color: #666;
        margin-bottom: 1.5rem;
    }

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 30px;
    margin-bottom: 30px;
     
    
}

    .gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.3s;

        border: 2px solid #25d366;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        background: #fff;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

/* Videos */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* Contact Form */
.contact-info {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
}

    .contact-info h3 {
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }

    .contact-info p {
        margin-bottom: 1rem;
    }

    .contact-info i {
        font-size: 18px;
    }

.social-links a {
    transition: opacity 0.3s;
}

    .social-links a:hover {
        opacity: 0.8;
    }

#contactForm .form-control {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 5px;
}

#contactForm textarea {
    min-height: 120px;
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: var(--primary-hover-color);
        border-color: var(--primary-hover-color);
        transform: translateY(-2px);
    }

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

/* Section Headings */
section h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

    section h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background-color: var(--primary-color);
    }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .category-card img {
        height: 160px;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1rem;
    }

    .service-card {
        margin-bottom: 30px;
    }

    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .category-card,
    .product-card,
    .service-card {
        margin-bottom: 20px;
    }
}

/* Testimonials Section */
.testimonials-slider {
    padding: 20px 0 40px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px 10px;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
}

    .testimonial-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-content {
    color: var(--secondary-color);
}

.rating {
    color: #ffd700;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
}

.testimonial-content h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-content span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Enhanced Contact Section */
.contact-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1920&q=80') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info {
    height: 100%;
    color: white;
}

    .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
        color: var(--primary-color);
    }

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

    .info-item i {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-right: 1rem;
        margin-top: 5px;
    }

    .info-item h4 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .info-item p {
        margin: 0;
        color: rgba(255, 255, 255, 0.8);
    }

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

    .social-icon:hover {
        background: white;
        color: var(--primary-color);
        transform: translateY(-3px);
    }

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px;
}

    .contact-form .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .contact-form .form-control:focus {
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--primary-color);
        box-shadow: none;
    }

/* Map Section */

.map-section {
    height: 353px;
    position: relative;
}

#locationMap {
    height: 100%;
    width: 100%;
}

.custom-heading {
    font-weight: 600;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color); /* Change to a visible color */
    font-size: 30px;
    display: block !important;
    z-index: 10; /* Ensure they are above slides */
}




/*15-01-26*/
.my-float {
    margin-top: 12px;
    color: white;
}

.float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 15%;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 1;
    right: 36px;
}

.popbutton {
    position: fixed;
    bottom: 25%;
    right: 36px;
    width: 55px;
    height: 55px;
    border-radius: 50px !important;
    border: hidden;
    outline: none;
    background-color: #363ea9;
    z-index: 1;
}


/*mukesh 20-01-26*/

.py-51 {
    padding-top: 7rem !important;
    padding-bottom: 3rem !important;
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: #4f46e5;
    color: #fff;
    border-radius: 25px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.g-recaptcha {
    margin: 15px 0;
}

.titlen {
    font-family: "Montserrat", Sans-serif;
    font-size: 20px;
    padding: 10px;
}


p {
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #000000;
}
/*

                                            .bg-light {
                                                margin-left: -15px;
                                                margin-right: -15px;
                                                padding: 2%;
                                            }
                                         */
/*  category-box */
.category-box {
    border: none;
    border-radius: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .category-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #0d6efd, #6610f2);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .category-box:hover::before {
        opacity: 1;
    }

    .category-box:hover {
        transform: translateY(-12px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    }

    .category-box .card-body {
        position: relative;
        z-index: 1;
    }

    .category-box .icon {
        font-size: 42px;
        transition: transform 0.4s ease, color 0.4s ease;
    }

    .category-box h5,
    .category-box p {
        transition: color 0.4s ease;
    }

    .category-box:hover .icon {
        transform: scale(1.2);
        color: #fff;
    }

    .category-box:hover h5,
    .category-box:hover p {
        color: #fff;
    }

    .category-box img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #363ea9;
}

.featured-slider {
    background: #fff;
    border: 1px solid #eee;
}

    .featured-slider .card {
        border: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .featured-slider .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

img.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    padding: 40px;
    background: #fff;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f1f1f1;
}

.carousel-indicators [data-bs-target] {
    background-color: #000;
}