/* =========================
   BASE STYLES
========================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* =========================
   HEADER
========================= */
header {
    background: #007bff;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 1.5rem;
}

/* =========================
   NAVIGATION
========================= */
nav {
    display: flex;
    gap: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

nav a:hover {
    text-decoration: underline;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(to right, #007bff, #0056b3);
    color: white;
}

.hero h2 {
    font-size: 2.5rem;
}

/* =========================
   SECTIONS
========================= */
.services,
.about,
.contact {
    padding: 50px 20px;
    text-align: center;
}

.services h3,
.about h3,
.contact h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* =========================
   CARDS
========================= */
.service-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: left;
}

.card h4 {
    margin: 0 0 10px;
}

/* =========================
   FORMS
========================= */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

input,
textarea,
button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

/* =========================
   HEADER CONTAINER (CUSTOM)
========================= */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #007BFF;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-logo {
    width: auto;
    height: 8vh;
    display: block;
}

.logo-container h1 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    display: flex;
    gap: 15px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #FFD700;
}

/* =========================
   RESPONSIVE HEADER
========================= */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .navbar a {
        padding: 10px 0;
    }
}

/* =========================
   FOOTER (FINAL & CLEAN)
========================= */
.footer-main {
    background: #0b5ed7; /* IT blue */
    color: #e6eef7;
}

/* Titles */
.footer-main .footer-title,
.footer-main h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Company name */
.footer-company {
    font-size: 1.05rem;
    color: #ffffff;
}

/* Text */
.footer-main p,
.footer-main li {
    font-size: 0.95rem;
    color: #e6eef7;
}

/* Links */
.footer-main a {
    color: #b9e3ff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-main a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Icons */
.footer-main i {
    color: #ffffff;
    margin-right: 6px;
}

/* Quick links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 8px;
}

/* Map */
.footer-map iframe {
    display: block;
    width: 100%;
    border-radius: 0;
}

/* Bottom bar */
.footer-bottom {
    background: #084298;
    color: #ffffff;
    font-size: 0.85rem;
}

/* =========================
   FOOTER MOBILE
========================= */
@media (max-width: 576px) {
    .footer-main {
        text-align: center;
    }
}
