/* Resetting default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #1f1f1f;
}

.navbar .logo a {
    color: #ff9800;
    font-size: 1.8em;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar .logo a:hover {
    color: #ff5722;
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #f0f0f0;
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    background-color: #333;
    color: white;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

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

.cta-button {
    padding: 15px 30px;
    background-color: #ff9800;
    color: white;
    border-radius: 5px;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

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

/* Features Section */
.features-section {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #2d2d2d;
    animation: fadeIn 1.5s ease-out;
}

.feature {
    background-color: #3a3a3a;
    padding: 20px;
    width: 30%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.feature h2 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.feature p {
    color: #bbb;
}

/* Installation Section */
.installation-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #121212;
    animation: fadeIn 2s ease-out;
}

.installation-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.step {
    background-color: #3a3a3a;
    padding: 20px;
    width: 45%;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.step h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.step pre code {
    font-size: 1.2em;
    background-color: #212121;
    padding: 12px;
    border-radius: 5px;
    display: block;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #333;
    color: white;
}

.contact-section a {
    color: #ff9800;
    font-weight: bold;
}

footer {
    padding: 15px;
    background-color: #1f1f1f;
    color: #bbb;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
