/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
html, body {
    height: 100%; /* Make sure the body and html take full height */
}

.wrapper {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    min-height: 100vh; /* Ensure the wrapper takes at least the full height of the viewport */
}

main {
    flex: 1; /* Allow the main content to grow and fill space */
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-top: 1px solid #dddddd;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    color: black;
    line-height: 1.6;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* Header styles */
header {
    background: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    width: 100px;
}

.navbar {
    /* display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; */
}

nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 600;
}

nav ul li a:hover {
    color: #007BFF;
}

/* Hero section */
#hero {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

#hero h1 {
    font-size: 3rem;
    color: rgb(0, 0, 160);
    margin-top: 2rem;
}

/* Applications section */
#apps {
    padding: 4rem 0;
}

#apps h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.app-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.app-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 350px;
    text-align: center;
}

.app-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.app-card h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
}

.app-card p {
    padding: 0 1rem;
    font-size: 1rem;
    color: #555;
}

.app-card a {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    background-color: #007BFF;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}

.app-card a:hover {
    background-color: #0056b3;
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(1, 69, 255, 0.147);
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */
footer {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0.5rem 0;
}


/* About Section */
.about-section, .contact-section {
    max-width: 900px;
    margin: 100px auto 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.about-section h1, .contact-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-section h2 {
    font-size: 1.5rem;
    margin-top: 20px;
}

/* Contact Form */
.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.submit-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}