/* =======================
   GLOBAL STYLES
======================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b0f1a;
    color: white;
}

/* =======================
   HEADER
======================= */
header {
    background: #111827;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 45px;
    width: auto;
}

.logo h1 {
    margin: 0;
    font-size: 22px;
    color: #00d4ff;
}

/* NAVIGATION */
nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: #00d4ff;
}

/* =======================
   HERO SECTION
======================= */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(120deg, #0b0f1a, #111827);
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

.btn {
    margin-top: 25px;
    padding: 12px 25px;
    background: #00d4ff;
    color: black;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

.btn:hover {
    background: #00b2d6;
}

/* =======================
   SECTIONS
======================= */
.section {
    padding: 70px 50px;
    text-align: center;
}

.section h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.center-text {
    max-width: 700px;
    margin: auto;
    color: #b0b0b0;
    line-height: 1.6;
}

/* =======================
   SERVICE CARDS
======================= */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #111827;
    padding: 25px;
    width: 250px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    background: #1a2233;
}

.card h4 {
    margin-bottom: 10px;
    color: #00d4ff;
}

.card p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.5;
}

/* =======================
   FOOTER
======================= */
footer {
    text-align: center;
    padding: 20px;
    background: #0b0f1a;
    border-top: 1px solid #222;
    font-size: 13px;
    color: #888;
}
/* =======================
   CONTACT PAGE
======================= */
.contact-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    background: #111827;
    color: white;
}

.contact-form textarea {
    resize: none;
}