﻿.center{
    text-align:center;
}



/* Floating Button */
.vendor-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: #0d6efd;
    color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .vendor-float:hover {
        transform: scale(1.05);
        background-color: #0b5ed7;
    }

    .vendor-float img {
        width: 24px;
        margin-right: 10px;
    }

/* Animate Modal Form */
.modal-content {
    border-radius: 15px;
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.center-page{
        width: 300px;
        height: 300px;
        position: absolute;
        top: -40px;
        bottom: 0px;
        left: 0;
        right: 0px;
        margin:auto;
}
.footer-pos{
    width: auto;
    height: auto;
    position: absolute;
    top: 600px;
    bottom:0;
    left: 0;
    right: 0;
    margin: auto;
}
/* Reduce top margin for navbar */
.navbar-default {
    margin-top: 0px !important; /* Remove any top margin */
}

/* Style for Call and Chat buttons */
.navbar .btn {
    font-size: 14px; /* Slightly smaller font size */
    padding: 8px 15px; /* Increase padding for better click area */
}

/* Optional: Custom button colors */
.navbar .btn-success {
    background-color: #28a745; /* Green for call button */
    border-color: #28a745;
}

.navbar .btn-info {
    background-color: #17a2b8; /* Blue for chat button */
    border-color: #17a2b8;
}

/* Optional: Navbar alignment */
.navbar-nav.navbar-right {
    display: flex;
    align-items: center;
}
/*-- Service Product css--*/

.srvc {
    font-size: 15px;
    font-weight: 600;
    line-height: 15px;
    text-transform: uppercase;
    font-family: sans-serif;
    color: blue;
}

h2 {
    font-size: 25px;
    font-weight: 600;
    line-height: 15px;
    text-transform: uppercase;
    font-family: sans-serif;
    line-height: 30px;
    color: green;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 15px;
    text-transform: uppercase;
    font-family: sans-serif;
    color: green;
}

.thumbnail img {
    display: block;
    max-width: 100%;
    height: 200px;
}

.call-button {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
}

    .call-button:hover {
        background-color: #45a049;
    }

.btcall {
    align-self: center;
}

.call-button {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
}

.proNameView {
    font-size: 13px;
    line-height: 17px;
    font-family: sans-serif;
}

li, p {
    line-height: 30px;
}

.container {
    margin-top: 5px;
}

.content-container {
    display: flex;
    min-height: 400px;
    margin: 20px 0;
}

.image-section img {
    width: 500px;
    height: 300px;
    object-fit: cover;
    padding: 50px;
}

.text-section {
    padding: 20px;
    background-color: #f8f9fa;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        min-height: auto;
    }
}


/*For Location*/
.location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-item {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .location-item:hover {
        background-color: #e9ecef;
        transform: translateY(-2px);
    }

.search-box {
    margin-bottom: 20px;
    padding: 8px;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

@media (max-width: 768px) {
    .location-item {
        flex: 1 0 45%;
    }
}

@media (max-width: 480px) {
    .location-item {
        flex: 1 0 100%;
    }
}
/*Card Border*/
.service-box {
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.2s ease;
    padding: 15px;
}

    .service-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

.img-circle {
    border-radius: 50%;
}

.text-description {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

    .text-description.expanded {
        -webkit-line-clamp: unset;
        max-height: none;
    }

.hero {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
}

    .hero img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

.btn-call {
    font-size: 18px;
    padding: 10px 20px;
}

.section-title {
    font-weight: bold;
    margin-top: 30px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .contact-info div {
        flex: 1;
        margin-right: 20px;
    }

        .contact-info div:last-child {
            margin-right: 0;
        }

.map {
    height: 400px;
    border: 1px solid #ddd;
    margin-bottom: 30px;
}

.contact-form {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    box-sizing: border-box;
}

    .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
        box-sizing: border-box;
    }

    .contact-form button {
        background-color: #4CAF50;
        color: white;
        font-size: 18px;
        padding: 12px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .contact-form button:hover {
            background-color: #45a049;
        }

.address {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Custom styles for multi-level dropdown */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: 0.1rem;
        margin-right: 0.1rem;
        display: none;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

.dropdown-toggle::after {
    margin-left: .255em;
}

