/* General Body and Container Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a2e; /* Dark background */
    color: #e0e0e0; /* Light grey text */
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header Styles */
header {
    background: #16213e; /* Slightly different dark shade */
    color: #e0e0e0;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #0f3460 3px solid;
}

header .logo {
    float: left;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: bold;
}

header nav {
    float: right;
    margin-top: 10px;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #e0e0e0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header a:hover {
    color: #e94560; /* Bright accent color */
    font-weight: bold;
}

/* Hero Section */
.hero {
    min-height: 500px;
    background: #0f3460; /* Another dark shade, or image */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    color: #e0e0e0;
    background: #e94560; /* Bright accent color */
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e0e0e0;
    color: #e94560;
}

/* About Section */
.about,
.services,
.contact {
    padding: 40px 0;
    text-align: center;
    background-color: #1a1a2e;
}

.about h2,
.services h2,
.contact h2 {
    font-size: 36px;
    color: #e94560; /* Bright accent for titles */
    margin-bottom: 20px;
}

.about p,
.contact p {
    max-width: 800px;
    margin: 0 auto 20px auto;
}

/* Services Section */
.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-cards .card {
    background: #16213e;
    color: #e0e0e0;
    padding: 20px;
    margin: 15px;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.service-cards .card:hover {
    transform: translateY(-10px);
}

.service-cards .card h3 {
    color: #e94560;
    margin-bottom: 10px;
}

/* Contact Section */
.contact form {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: #16213e;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.contact .form-group {
    margin-bottom: 15px;
}

.contact label {
    display: block;
    margin-bottom: 5px;
    color: #e0e0e0;
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #0f3460;
    background-color: #1a1a2e;
    color: #e0e0e0;
    border-radius: 4px;
}

.contact input[type="text"]:focus,
.contact input[type="email"]:focus,
.contact textarea:focus {
    outline: none;
    border-color: #e94560;
}

.contact .btn {
    width: auto;
    cursor: pointer;
    margin-top: 10px;
}

/* Footer Styles */
footer {
    background: #0f3460;
    color: #e0e0e0;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

footer .social-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 10px;
    font-size: 18px;
}

footer .social-links a:hover {
    color: #e94560;
}
