/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: "Poppins", sans-serif; 
    /* font-weight: 500; */
}
.navbar{
    height: 60px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: black;
    color: #fff;
}
.navbar .logo {
    flex: 1;
    margin-left: 20px;
}
.navbar .logo-image {
    height: 80px;   /* Adjust height as needed */
    width: 120px;
    display: block;
}
.navbar .nav-links {
    display: flex;
    margin-right: 20px;
    gap: 20px;
}
.navbar .nav-links a{
    font-size: 1.2rem;
}
.navbar .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.navbar .nav-link:hover {
    color: #ad1010; 
    text-decoration: underline;
}


.jumbotron {
    background-color: #ede9e9;
    padding: 1rem 1rem;
    text-align: center;
    margin: 10px 10%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.jumbotron h1 {
    font-size: 2.5rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

.jumbotron p {
    font-size: 1.2rem;
    line-height: 1.5;
}

body {
    background-color: #c4caca; 
    margin: 0;
    padding: 0;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column; 
}

.services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    margin: 20px;
    margin-top: 50px;
}

.service {
    margin: 0 20px;
    text-align: center;
    max-width: 100%;
    transition: transform 0.2s;
}
.service p{
    color: #000;
    /* font-weight: bold; */
    font-size: 1.5rem;
    margin-top: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.service img {
    width: 250px;
    height: 250px;
    border-radius: 20%;
    object-fit: cover;
}
.service:hover {
    transform: scale(1.05); 
}
.service a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 5px;
    position: fixed;
    width: 100%;
    bottom: 0;
    /* text-align: center;
    padding: 10px;
    background: #f1f1f1; */
}
footer p{
    font-size: 1.1rem;
}














@media (max-width: 768px) {
    .navbar {
        flex-direction: row; 
        height: auto;
        padding: 5px;
    }
    .navbar .nav-links .nav-link{
        font-size: 18px;
    }
    .navbar .nav-links {
        flex-direction: row; 
        margin-right: 5px;
        gap: 8px; 
    }

    body{
        padding-bottom: 50px;
    }
    
    .services {
        flex-direction: column; 
    }

    .service {
        margin-bottom: 20px; 
    }
    .service img {
        width: 220px;
        height: 220px;
    }
    footer p{
        font-size: 0.8rem;
    }
    
}