#loginbtn {
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}
#loginbtn:hover, #loginbtn:focus {
    color: #fff;
    text-decoration: none;
}
nav {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #2b3d4f;
}

.card-img-top {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
}
.navbar-brand img {
    object-fit: contain;
    border-radius: 200px; /* soft corners */
    height: auto;
    width: 10%;
}
.card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}
.hero-section {
    height: 100vh;
    position: relative; 
    overflow: hidden;
    
    /* Multiple backgrounds separated by commas */
    background-image: 
        url("imeges/imageshero.jpeg"),
        url("imeges/bathroom.jpg"),
        url("imeges/cunter-basin.jpg");
    
    background-size: 300% 100%; /* 3 images = 300% width */
    background-position: 0% 0%;
    
    animation: slide 50s infinite linear;
}

@keyframes slide {
    0% {
        background-position: 0% 0%;
    }
    33% {
        background-position: -100% 0%;
    }
    66% {
        background-position: -200% 0%;
    }
    100% {
        background-position: -300% 0%;
    }
}



/* .hero-img{
height:600px;
object-fit:cover;
}

.carousel-caption{
background:rgba(0,0,0,0.5);
padding:20px;
border-radius:10px;
}

.carousel-caption h1{
font-size:40px;
font-weight:bold;
}

@media(max-width:768px){

.hero-img{
height:350px;
}

.carousel-caption h1{
font-size:24px;
}

} */

/* Reduce hero height on small screens so it doesn't fill the whole page */
@media (max-width: 768px) {
    .hero-section {  
        height: 50vh;
        background-position: center top; 
    }
    .hero-section .text-center h1 {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    .footer-width {
        margin-bottom: 20px;

    }
    #footer {
        text-align: center;
    }
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-section .text-center {
    position: relative;
    z-index: 2;
}
.testimonial-section {
    background: #f8f9fa;
}

.testimonial-section .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-section .card-text {
    font-size: 0.95rem;
    color: #555;
}
#footer {
    color: #fff;
    background-color: #2b3d4f;
    padding: 10px 0;
}
#social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #fff;
}
#social-icons li {
    display: inline-block;
    padding-left: 5px;
}
#social-icons li a {
    color: #fff;
    font-size: 23px;
}