@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease-out; }

#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 36px;
    font-weight: bold;
}

.logo img {
    margin-right: 10px; /* Add space between the logo and the text */
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left; /* Left-align text */
    font-size: 24px;
    line-height: 1.1;
}
.mar-23{
    margin-top:110px;
}
#content {
    display: none;
}

body {
    font-family: 'Poppins', sans-serif;
    
}

.navbar {
    padding: 15px 0;
    background-color: #f8f9fa;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-nav .btn {
    margin-left: 10px;
}

.search-form {
    position: relative;
}

.search-form .form-control {
    padding-right: 40px;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.search-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}


.search-form .btn {
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    background: none;
    color: #6c757d;
    transition: all 0.3s ease;
}

.search-form .btn:hover {
    color: #007bff;
    transform: scale(1.1);

}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    transform: scale(1.1);
}

.btn-icon i {
    font-size: 1.2rem;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 991px) {
    .navbar-nav, .desktop-only {
        display: none !important;
    }
    .mobile-search {
        margin-top: 10px;
    }
    .m-hidden{
              display: none;
            }
}
.i{
  text-align: right;
  align-items: flex-end;
}
.tl{
  font-size:15px;
  padding-left: 4px;
}
.progress-bar {
background-color: black !important; /* Set progress bar color to black */
}
.modal-dialog-full {
    max-width: 100%;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
   
}

.modal-content-full {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
}

.modal-body-full {
    overflow-y: auto;
}

.service-item {
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 20px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.service-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.service-img {
    width: 50px;
    height: 50px;
}
.rating-section {
    margin-top: 20px;
}
.rating-section span {
    font-size: 18px;
    margin-right: 20px;
}
.service-gallery img {
    width: 100%;
    border-radius: 10px;
}
.card {
    transition: transform 0.3s ease-in-out;
}
.card:hover {
    transform: translateY(-5px);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}

.img-hover-zoom {
overflow: hidden;
border-radius: 15px;
}

.img-hover-zoom img {
transition: transform .5s ease;
}

.img-hover-zoom:hover img {
transform: scale(1.1);
}


footer ul li a {
color: #6b757c; /* Light grey color */
text-decoration: none;
}

footer ul li a:hover {
text-decoration: underline;
}

footer h6 {
font-size: 16px;
font-weight: bold;
}

footer p {
font-size: 14px;
}

footer hr {
border-top: 1px solid #ccc;
}

footer img {
max-width: 100px; /* Adjust size of the logo */
}

.cart-header {
display: flex;
align-items: center;
margin-bottom: 20px;
}

.cart-header img {
margin-right: 10px;
}

.cart-item {
display: flex;
align-items: center;
border-bottom: 1px solid #ddd;
padding-bottom: 15px;
}

.cart-item img {
margin-right: 15px;
}

.cart-item h5 {
margin: 0;
font-weight: bold;
}

.empty-cart {
text-align: center;
margin-top: 20px;
display: block;
}

.empty-cart img {
margin-bottom: 20px;
}

/* Specific Modal Enhancements */
#serviceModal .service-modal-content {
border-radius: 15px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
overflow: hidden;
}

#serviceModal .service-modal-header {
background: linear-gradient(45deg, #0b0214, #031027);
color: white;
border-bottom: none;
}

#serviceModal .service-modal-header .close {
color: #fff;
opacity: 1;
}

#serviceModal .service-modal-header .close:hover {
color: #ffeb3b;
}

#serviceModal .service-modal-body {
padding: 20px;
}

#serviceModal .service-modal-body img {
width: 100%;
max-width: 200px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
margin-bottom: 15px;
}

#serviceModal .service-modal-body p {
font-size: 1.1em;
color: #333;
}

#serviceModal .service-modal-footer {
border-top: none;
justify-content: center;
}

#serviceModal .service-modal-footer button {
border-radius: 20px;
padding: 8px 20px;
}
.review{
background-color: #2da52d;
width: 25%;
border-radius: 10px;
padding: 5px;
color: white;
}
.st-star{
border-radius: 48%;
width: 100%;
padding-left: 5px;
padding-right: 5px;
background-color: white;
color: #2da52d;
}

