/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fa;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Navigation Bar */
nav {
    background-color: #2c3e50;
    border-bottom: 2px solid #1abc9c;
}

.navbar-brand {
    color: #ecf0f1 !important;
    font-size: 1.8em;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #ecf0f1 !important;
    font-size: 1.1em;
    padding: 10px 20px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    background-color: #1abc9c;
    color: #fff !important;
    border-radius: 5px;
}

.navbar-toggler-icon {
    background-color: #1f8ca8;
}
.container-fluid{
    background-color:#1abc9c;
}

/* Hero Section */
#home {
    background: linear-gradient(to right, #1abc9c, #16a085);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

#home h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

#home p {
    font-size: 1.5em;
    margin-top: 10px;
    font-style: italic;
}

/* Section Styling */
section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

section p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 10px 20px;
    }

    #home h2 {
        font-size: 2.5em;
    }

    #home p {
        font-size: 1.2em;
    }
}
