/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

h1,
h2,
h3 {
    margin: 0 0 15px;
}

p {
    margin: 0 0 20px;
}

/* Navigation Bar */
.navbar {
    background: #2563eb;
    color: #fff;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ffeb3b;
}

/* Hero Section */
.hero {
    background: #2563eb;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.btn {
    background: #fff;
    color: #2563eb;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background: #1e40af;
    color: #fff;
}

/* About Section */
.about {
    text-align: center;
    padding: 60px 20px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Services Section */
.services {
    background: #f0f4f8;
    padding: 60px 20px;
    text-align: center;
}

.services .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    text-align: center;
}

.contact .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.label {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #2563eb;
    color: #fff;
    text-align: center;
    padding: 20px;
}