* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;  
    padding: 5px 25px;
}

.logo img {
    height: 90px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;   
}

.nav-menu a {
    text-decoration: none;
    color: #0B1F45;
    font-weight: 600;
    position: relative;
}

.nav-menu a:hover {
    color: #FD5708;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #FD5708;
    transition: .3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    max-width: 700px;
    margin: auto;
}

.service-area {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tagline {
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.primary {
    background: #FD5708;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.primary:hover {
    background: #e24c05;
}

.secondary {
    background: white;
    color: #333;
}

.section {
    padding: 40px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #0B1F45;
}

.section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #FD5708;
    margin: 12px auto 0;
    border-radius: 10px;
}

.why-us {
    background: #f7f9fc;
}

.contact {
    background: #f7f9fc;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform 0.25s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}

.reviews {
    display: grid;
    gap: 20px;
}

.review {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
}

.contact-info {
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 25px;
}

@media (max-width: 768px) {

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    nav {
        display: none;
    }
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.lightbox.show {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}