/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f8;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
#navbar {
    background-color: #333;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.navbar-logo {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar-links li a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.navbar-links li a:hover {
    color: #ff6600;
}

/* Hero Section */
#hero {
    background: #0073e6;
    color: white;
    padding: 100px 0;
    text-align: center;
}

#hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

#hero .cta-button {
    background-color: #ff6600;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

#hero .cta-button:hover {
    background-color: #ff4500;
}

/* About Section */
#about {
    padding: 50px 0;
    text-align: center;
    background-color: #ffffff;
}

#about h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
#services {
    background-color: #f8f8f8;
    padding: 50px 0;
}

#services h2 {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
}

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

.service-card {
    background-color: #ffffff;
    padding: 25px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
}

/* Screenshot Section */
#screenshots {
    background-color: #f4f6f8;
    padding: 50px 0;
}

#screenshots h2 {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.screenshot-gallery img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact {
    padding: 50px 0;
    text-align: center;
    background-color: #ffffff;
}

#contact h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.contact-details {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-details a {
    color: #0073e6;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer a {
    color: #ff6600;
    font-weight: 500;
}
