/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;

}

/* Basic body styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #121212;
    scroll-behavior: smooth;
}

/* Navbar styling */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(18, 18, 18, 0.9);
    padding: 1rem 2rem;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ffff;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00ffff;
}

/* Shrink navbar on scroll */
.navbar.shrink {
    padding: 0.5rem 2rem;
}

.navbar.shrink .logo {
    font-size: 1.2rem;
}

/* Hero section styling */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1e1e1e, #0f0f0f);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #bbbbbb;
}

.cta-button {
    background-color: #00ffff;
    color: #121212;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #00e6e6;
}

/* Section styling */
.section-content {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* About section */
.about {
    background-color: #1e1e1e;
    padding: 4rem 0;
}

.about h2 {
    color: #00ffff;
    margin-bottom: 2rem;
}

.about p {
    margin-bottom: 1rem;
}

/* Services section */
.services {
    background-color: #1e1e1e;
    padding: 2rem 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

/* Contact section */
.contact {
    background-color: #1e1e1e;
    padding: 2rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #2a2a2a;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1rem;
}

.contact-form button {
    background-color: #00ffff;
    color: #121212;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #00e6e6;
}

.contact-form button:disabled {
    background-color: #666666;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Form message styling */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-message.success {
    background-color: rgba(0, 255, 100, 0.1);
    border: 2px solid #00ff64;
    color: #00ff64;
}

.form-message.error {
    background-color: rgba(255, 60, 60, 0.1);
    border: 2px solid #ff3c3c;
    color: #ff3c3c;
}

/* Footer styling */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #0f0f0f;
    color: #666666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}
