/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    color: #333;
    scroll-behavior: smooth;
}

/* HEADER */
header {
    background: #2f2f2f;
    color: #fff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}
header h1 {
    font-size: 28px;
}
nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
}
@media (max-width: 780px) {
    nav {
        display: flex;
        flex-direction: column;
        background: #2f2f2f;
        padding: 0;
        position: absolute;
        top: 70px;
        right: 0;
        width: 160px;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    nav.active {
        max-height: 500px;
    }
    nav a {
        padding: 14px 10px;
        text-align: center;
        margin: 0;
    }
    nav a:hover {
        text-decoration: underline;
        text-decoration-thickness: 2px;
    }
    .menu-toggle {
        display: block;
    }
}

/* HERO SECTION */
.hero-img-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: white;
    background: url('../images/Heroimg5.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0.2,0.2,0.2,0.2);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}
.hero-content h2 {
    font-size: 52px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    margin-left: 10px;
}
.hero-content p {
    font-size: 20px;
    margin-top: 10px;
    margin-left: 10px;
}


/* MOBILE-FRIENDLY FIX */
@media (max-width: 780px) {
    .hero-img-container {
        background-attachment: scroll;
    }
    .hero-content h2 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .cta-btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* CTA BUTTON */
.cta-btn {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 28px;
    background: #da710f;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    margin-left: 10px;
}
.cta-btn:hover {
    background: #c75e0d;
    transform: scale(1.05);
}

/* SECTIONS */
.section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}
.section-title {
    margin-bottom: 35px;
    font-size: 32px;
}

/* about section */
#about {
    max-width: 800px;
    margin: 60px auto;
}
#about p {
    margin-bottom: 22px;
    line-height: 1.7;
}

/* SERVICES */
.services {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.service-card {
    background: white;
    padding: 0px;
    flex: 1 1 375px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}
.serviceP {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
    font-style: bold;
    font-size: 24px;
}
.service-card h3,
.service-card p {
    padding: 0 25px;
    color: #000;
    transition: color 0.3s ease;
}

/* CONTACT*/
.service-btn {
    margin: 0 auto 25px;
    background: none;
    padding: 0;
    border-radius: 0;
    color: #d66d0a;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.1s ease;
}
.image-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    flex-shrink: 0;
}
.image-container img {
    width: 100%;
    object-fit: contain;
    display: block;
}

/* FOOTER */
footer {
    background: #2f2f2f;
    color: #fff;
    padding: 40px 20px 20px;
    margin-top: 60px;
}
.footer-container {
    max-width: 1100px;
    margin:auto;
    display:flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}
.footer-col h3, .footer-col h4 {
    margin-bottom: 12px;
}
.footer-col p, .footer-col a {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}
.footer-col p {
    margin-bottom: 10px;
}
.footer-col a {
    display:block;
    text-decoration:none;
    margin-bottom:8px;
}
.footer-col a:hover {
    color: #da710f;
}
.footer-bottom {
    text-align:center;
    margin-top:30px;
    padding-top:15px;
    border-top:1px solid #444;
    font-size:14px;
    color:#aaa;
}

/* RESPONSIVE HERO */
@media (max-width: 1024px) {
    .hero-img-container { height: 400px; }
    .hero-content h2 { font-size: 42px; }
}
@media (max-width: 780px) {
    .hero-img-container { height: 400px; }
    .hero-content h2 { font-size: 28px; }
    .hero-content p { font-size:16px; }
    .cta-btn { padding:10px 20px; font-size:16px; }
    .footer-container { flex-direction: column; text-align: center; }
}




