* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #111;
}

/* HEADER */
header {
    background: #0A2342;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    font-size: 20px;
}

nav a {
    color: white;
    margin: 0 12px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #F97316;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(10,35,66,0.9), rgba(10,35,66,0.9)),
    url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3') center/cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 22px;
    background: #F97316;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #d85f10;
}

/* SECTIONS */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    margin-bottom: 20px;
}

/* CARDS */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: white;
    border: 1px solid #eee;
    width: 260px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* CTA */
.cta {
    background: #0A2342;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
/* LOGO AREA */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 100px !important;
    height: auto !important;
    object-fit: contain;
}
/* INTRO SECTION */
.intro {
    padding: 60px 50px;
    text-align: center;
    background: #f1f2f3;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.intro h2 {
    color: #ff7a00;
    margin-bottom: 20px;
}

.intro p {
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* SERVICE CARD TEXT */
.card h3 {
    color: #ff7a00;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.4;
}
.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 28px;
    }
        header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    nav a {
        margin: 10px;
        display: inline-block;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    .hero h1 {
        font-size: 28px;
    }
}