/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
    background-color: #121212;
    transition: background-color 0.3s, color 0.3s;
}

/* Header Section */
header {
    background: #1e1e1e;
    color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav h1 {
    margin: 0;
    font-size: 24px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #bb86fc;
}

.hero {
    background: #1b1b1b;
    color: #e0e0e0;
    padding: 60px 20px;
    text-align: center;
}

.hero h2 {
    margin: 0;
    font-size: 36px;
}

.hero p {
    font-size: 18px;
    margin: 10px 0;
}

.btn-primary {
    background: #6200ea;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #3700b3;
}

/* Services Section */
#services {
    padding: 40px 20px;
    background: #1e1e1e;
}

.service-card {
    text-align: center;
    padding: 20px;
    background: #2c2c2c;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    transition: background 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    background: #333333;
    box-shadow: 0 6px 12px rgba(0,0,0,0.7);
}

.service-card i {
    font-size: 50px;
    color: #bb86fc;
}

.service-card h3 {
    margin: 10px 0;
    font-size: 22px;
}

/* About Us Section */
#about {
    padding: 40px 20px;
    background: #1e1e1e;
}

#about p {
    font-size: 18px;
    line-height: 1.6;
}

/* Contact Section */
#contact {
    padding: 40px 20px;
    background: #1e1e1e;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 10px;
    font-size: 16px;
}

form input, form textarea {
    padding: 12px;
    margin: 5px 0;
    border: 1px solid #333;
    border-radius: 5px;
    background: #2c2c2c;
    color: #e0e0e0;
    font-size: 16px;
    transition: border 0.3s;
}

form input:focus, form textarea:focus {
    border: 1px solid #bb86fc;
}

form button {
    padding: 12px;
    background: #6200ea;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

form button:hover {
    background: #3700b3;
}

/* Footer Section */
footer {
    background: #1e1e1e;
    color: #e0e0e0;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}

footer p {
    margin: 0;
    font-size: 16px;
}

.social-media {
    margin-top: 10px;
}

.social-icon {
    color: #e0e0e0;
    margin: 0 10px;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}

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

/* Dark Mode Toggle Button */
#theme-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

#theme-toggle:hover {
    color: #bb86fc;
}
