/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #000000;
}

/* Containers */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background-color: #f9f9f9;
    padding: 100px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #111111;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333333;
}

.hero p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555555;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #004080; /* muted deep blue */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #00264d;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.card {
    flex: 1 1 300px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card h3 {
    margin-bottom: 15px;
    color: #111111;
}

.card p {
    color: #555555;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Social Strip */
.socials {
    padding: 40px 0;
    background-color: #ffffff;
    text-align: center;
}

.social-icon {
    display: inline-block;
    margin: 0 15px;
    color: #333333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #004080;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact a {
    color: #004080;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: #111111;
    color: #f1f1f1;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #f1f1f1;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
}
