/* Navbar */
.navbar {
    background-color: white;
    border-bottom: 2px solid #ddd;
    height: 110px;
    position: fixed; /* Make navbar stick at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* High z-index to stay above carousel */
}

.navbar-brand img {
    height: 90px;
    margin-top: -5px;
    width: 300px;
    margin-left: 25px;
}

.navbar-nav > li > a {
    margin-top: 30px;
    font-size: 18px;
    color: black !important;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.navbar-nav > li > a:hover {
    color: red !important;
}

.navbar-toggle {
    margin-top: 33px;
    margin-right: 25px;
}
body {
        font-family: 'Arial', sans-serif;
        background-color: #f4f4f4;
        color: #333;
        margin: 0;
        padding: 0;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
        padding: 20px 0;
        text-align: center;
    }

    /* Section Title */
    .section-title {
    font-size: 36px;
    margin-top: 140px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
/*    position: relative;*/
    display: inline-block;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #007bff;
    margin: 8px auto 0;
    border-radius: 2px;
}

    .section-subtitle {
        font-size: 14px;
        color: #555;
        margin-bottom: 40px;
    }

    /* Services Grid */
    .services-grid {
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 80px;
        justify-content: space-around;
        gap: 20px;
    }

    .service-item {
        background: #ffffff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0, 86, 179, 0.2);
        transition: transform 0.3s ease-in-out;
        width: 100%;
        max-width: 350px;
        text-align: center;
        padding-bottom: 20px;
    }

    /*.service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 16px rgba(0, 86, 179, 0.2);
    }*/

    .service-item {
        margin-bottom:25px;
/*        object-fit: cover;*/
    }
    .service-item img{
        height: 240px;
    }
    .service-title {
        font-size: 1.5rem;
        color: #0056b3;
        margin: 15px 0 10px;
    }

    .service-description {
        font-size: 1rem;
        color: #555;
        padding: 0 15px;
    }

    @media (max-width: 768px) {
        .services-grid {
            flex-direction: column;
            align-items: center;
        }
        .navbar-brand img {
            height: 50px;
            width: auto;
            margin-top: 10px;
        }
        #navbar-menu{
            background-color: white;
        }
    }


.footer {
    background-color: #1c1c1c;
    color: #e0e0e0; 
    padding: 50px 0;
    border-top: 3px solid rgba(255, 255, 255, 0.1); 
    font-family: 'Poppins', sans-serif;
}
.footer .container {
    display: flex;
    text-align: left;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.footer .col-md-3 {
    flex: 1;
    min-width: 250px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}
.footer a:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #c2c2c2;
}