* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #ffffff;
    line-height: 1.6;
}


/* HEADER */

.header {
    background: #075985;
    color: white;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}


.logo-area img {
    width: 90px;
    height: auto;
}


.logo-area h1 {
    margin: 0;
    font-size: 26px;
}


.logo-area p {
    margin: 3px 0;
}


.logo-area span {
    font-size: 14px;
}



/* NAVIGATION */

nav a {
    color: white;
    text-decoration: none;
    margin-left: 18px;
    font-weight: bold;
}



/* HERO */

.hero {
    background: #f1f8fc;
    padding: 80px 20px;
    text-align: center;
}


.hero-content {
    max-width: 850px;
    margin: auto;
}


.hero h2 {
    color: #075985;
    font-size: 42px;
    margin-bottom: 20px;
}


.hero p {
    font-size: 20px;
}


/* BUTTONS */

.hero-buttons,
.contact-buttons {
    margin-top: 30px;
}


.btn {
    display: inline-block;
    background: #075985;
    color: white;
    padding: 14px 30px;
    margin: 8px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}


.btn:hover {
    opacity: 0.9;
}



/* TRUST SECTION */

.trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 5%;
    flex-wrap: wrap;
}


.trust-box {
    width: 280px;
    text-align: center;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
}


.trust-box h3 {
    color: #075985;
}
/* SERVICES */

#services,
#about,
#gallery,
#contact {
    padding: 70px 5%;
}

#services h2,
#about h2,
#gallery h2,
#contact h2 {
    text-align: center;
    color: #075985;
    font-size: 36px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transition: transform .2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #075985;
    margin-top: 0;
}


/* ABOUT */

#about {
    background: #f8fafc;
}

.about-text {
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-size: 18px;
}


/* GALLERY */

.gallery-intro {
    text-align: center;
    margin-bottom: 30px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #ddd;
}


/* CONTACT */

#contact {
    text-align: center;
}


/* FOOTER */

footer {
    background: #075985;
    color: white;
    text-align: center;
    padding: 35px 20px;
}

footer h3 {
    margin-top: 0;
}


/* MOBILE */

@media (max-width: 768px) {

    .header {
        flex-direction: column;
        text-align: center;
    }

    .logo-area {
        flex-direction: column;
    }

    .logo-area img {
        width: 120px;
    }

    nav {
        margin-top: 20px;
    }

    nav a {
        display: inline-block;
        margin: 8px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 12px auto;
    }
}