@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

/* Remove default margin and padding */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    background: #181a1b;
    color: #e0e0e0;
}

/* Make sure the body takes full height and uses flex layout */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    background: #181a1b;
    color: #e0e0e0;
    text-align: center;
}

/* Make main content expand to fill space */
header, .image-placeholder, .services {
    flex-shrink: 0;
}

/* Footer sticks to bottom */
.footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e0e0e0;
    width: 100%;
    bottom: 0;
    background: #181a1b;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.4);
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
}

header {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    color: #fff;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 600;
    color: #fff;
}

.image-placeholder img {
    width: 100%;
    height: 900px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.329);
    margin: 1px 0px;
    background: #232526;
}

 /*video {
    width: 100%;
    height: 1000px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.329);
    margin: 1px 0px;
    background: #232526; 
 }
*/
.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 30px auto;
    width: 85%;
}

.service {
    background: #2d3031;
    padding: 30px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    color: #e0e0e0;
}

.service:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

.service-img1 img{
    width: 50%;
    height: auto;
    max-height: 400px;
    border-radius: 10px;
    background: #181a1b;
}

.service-img2 img{
    width: 50%;
    height: auto;
    max-height: 400px;
    border-radius: 10px;
    background: #181a1b;
}

.service-img3 img{
    width: 50%;
    height: auto;
    max-height: 400px;
    border-radius: 10px;
    background: #181a1b;
}


h2 {
    margin-top: 15px;
    font-size: 1.8em;
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', 'Arial', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}


 

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #232526;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.logo {
    height: 60px;
    margin-right: auto;
    filter: brightness(0.9) invert(0.1);
}
.nav-links {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 14px 16px;
    display: block;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
    background-color: #333b3e;
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', 'Arial', sans-serif;
}
.icon {
    display: none;
    color: #e0e0e0;
    font-size: 24px;
    cursor: pointer;
}
@media screen and (max-width: 600px) {
    .nav-links { display: none; flex-direction: column; width: 100%; }
    .navbar { flex-wrap: wrap; }
    .icon { display: block; }
    .navbar.responsive .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .services {
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }
    .service {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }
    .image-placeholder img {
        width: 97.5%;
        margin-top: 30px;
        border-radius: 10px;
        height: auto;
    }
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e0e0e0;
    width: 100%;
    bottom: 0;
    background: #181a1b;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.4);
    margin-top: auto;
}
.footer div {
    width: 50%;
    padding: 10px;
}
.footer .address, .footer .phone, .footer .hours {
    text-align: center;
}
.footer a {
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', 'Arial', sans-serif;
    text-decoration: none;
    transition: color 0.2s;
}
.footer a:hover {
    color: #fff;
}
@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }
    .footer div {
        width: 100%;
        text-align: center;
    }
}


.service-img3 {
    width: 100%;
    height: 280px; /* Set to your original image height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img3-carousel {
    width: 720px; /* Set to your original image width */
    height: 280px;
    position: relative;
}

.service-img3-carousel img {
    position: absolute;
    left: 0;
    top: 0;
    width: 720px;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    opacity: 0;
    transition: opacity 0.7s;
    pointer-events: none;
}

.service-img3-carousel img.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 600px) {
    .service-img3,
    .service-img3-carousel {
        height: 110px;
    }
    .service-img3-carousel,
    .service-img3-carousel img {
        width: 180px;
        height: 110px;
    }
}