/* ===============================
   GLOBAL STYLES
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

h1, h2 {
    letter-spacing: 0.5px;
}

/* ===============================
   HEADER & NAVBAR
================================ */
header {
    background: #0a2540;
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* ===============================
   HERO SECTION
================================ */
.hero {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: white;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
}

/* ===============================
   BUTTON
================================ */
.btn {
    background: white;
    color: #007bff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
}

.btn:hover {
    background: #007bff;
    color: white;
    transition: 0.3s ease;
}

/* ===============================
   GENERAL SECTIONS
================================ */
.section {
    padding: 60px 40px;
    text-align: center;
}

.section.dark {
    background: #0a2540;
    color: white;
}

/* ===============================
   CARDS (HOME SERVICES)
================================ */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 25px;
    margin: 15px;
    width: 220px;
    border-radius: 8px;
    font-weight: bold;
}

.card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===============================
   SERVICE LIST PAGE
================================ */
.service-list {
    list-style: none;
    font-size: 18px;
}

.service-list li {
    margin: 10px 0;
}

/* ===============================
   SERVICES DETAIL SECTION
================================ */
.services-section {
    padding: 60px 40px;
    background: #f4f6f9;
}

.main-title {
    text-align: center;
    font-size: 36px;
    color: #0a2540;
    margin-bottom: 50px;
}

.service-item {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 6px solid #007bff;
    border-radius: 8px;
}

.service-item h2 {
    font-size: 26px;
    color: #007bff;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 17px;
    color: #333;
}

.service-item strong {
    color: #0a2540;
    font-weight: bold;
}

.service-item:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ===============================
   FOOTER
================================ */
footer {
    text-align: center;
    padding: 15px;
    background: #0a2540;
    color: white;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        display: inline-block;
        margin: 10px;
    }

    .hero {
        padding: 70px 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .main-title {
        font-size: 28px;
    }

    .service-item h2 {
        font-size: 22px;
    }

    .service-item p {
        font-size: 16px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    .section,
    .services-section {
        padding: 40px 20px;
    }
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 15px;
}

textarea {
    resize: none;
}

