/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color:#3E61DC ;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .logo img {
    height: 40px;
}
.navbar .logo {
    background-color: white;
    height: 100%;
    padding: 5px 10px 0 10px;
    border-radius: 3rem;
}
.navbar .menu-icon {
    display: none; /* Hidden by default */
    flex-direction: column;
    cursor: pointer;
}

.navbar .menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #ecf0f1;
    margin: 4px 0;
    transition: 0.4s;
}

.navbar .nav-links {
    list-style: none;
    margin: 0px;
    padding: 0;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 20px;
    margin-right: 40px;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: #ecf0f1;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
    color: #3498db;
}
/* Section Styles */
section {
    padding: 20px;
}

.about {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.Head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.Head .content h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin: 0;
}

.Head .content h2 {
    font-size: 1.5em;
    color: #3498db;
    margin: 10px 0 0;
}

.Head img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.Body {
    font-size: 1.1em;
    color: #555;
}

.Body .section {
    margin-bottom: 30px;
}

.Body .section h3 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

.Body .section p {
    margin: 0 0 15px;
}

.Body .feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.Body .feature img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.Body .feature h4 {
    font-size: 1.3em;
    color: #2c3e50;
    margin: 0 0 5px;
}

.Body .feature p {
    margin: 0;
}

.Body ul {
    list-style: none;
    padding: 0;
}

.Body ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.Body ul li::before {
    content: "•";
    color: #3498db;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

.Body .creators p {
    margin: 10px 0;
}

.Body .creators a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.Body .creators a:hover {
    text-decoration: underline;
}

.Body .feedback-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    margin-bottom: 10px;
}

.Body .feedback-form button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.Body .feedback-form button:hover {
    background-color: #2980b9;
}
.Head
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.Head .top-buttons {
    display: flex;
    justify-content: center; /* Center the buttons horizontally */
    align-items: center; /* Align buttons vertically */
    margin-bottom: 20px; /* Add spacing below the buttons */
    margin-top: 10px; /* Add spacing above the buttons */
}

.Head .btn {
    background-color: #007BFF; /* Primary button color */
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 10px; /* Add spacing between buttons */
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.Head .btn:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .menu-icon {
        display: flex; /* Show hamburger menu */
    }

    .navbar .nav-links {
        display: none; /* Hide nav links by default */
        flex-direction: column;
        width: 100%;
        background-color: #3E61DC;
        position: absolute;
        top: 90px; /* Adjust based on navbar height */
        padding: 10px 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar .nav-links.active {
        display: flex; /* Show nav links when active */
    }

    .navbar .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    .Head {
        flex-direction: column;
        text-align: center;
    }

    .Head img {
        margin-top: 20px;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar ul li {
        margin: 10px 0;
    }

    .Body .feature {
        flex-direction: column;
        text-align: center;
    }

    .Body .feature img {
        margin-bottom: 10px;
    }
}
@media (max-width: 380px) {
    .Head .content h1 {
        font-size: 2em;
    }

    .Head .content h2 {
        font-size: 1.2em;
    }

    .Body .section h3 {
        font-size: 1.5em;
    }

    .Body .feature h4 {
        font-size: 1.2em;
    }
}