/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    line-height: 1.6;
}

html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}




.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 50px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db, #8e44ad);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.features {
    padding: 0rem 0;
    background-color: #f9f9f9;
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.features-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.features-content2 {
    display: flex;
    align-items: center;

}

.features-image img {
    max-width: 50%;
    height: auto;
}

.features-image-max img {
    max-width: 100%;
    height: auto;
}

.features-image-max2 img {
    max-width: 70%;
    height: auto;
}

.features-text {
    flex: 1;
}

.features-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.features-text ul {
    list-style: none;
    padding: 0;
}

.features-text li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.features-text strong {
    font-weight: bold;
}


/* Welcome Section */
.welcome {
    background-color: #f4f4f4;
    padding: 40px 20px;
    margin: 20px 0;
    border-radius: 10px;
    text-align: center;
}

/* Footer Styles */
/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
    /* Push the footer to the bottom */
}

footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        display: none;
        gap: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active+.nav-links {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .features,
    .welcome {
        padding: 20px;
    }
}

.logo img {

    margin-left: 50px;
    height: 40px;
    /* Adjust to your preferred size */
    width: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Prevent inline spacing issues */
}




/* Pricing Plan Styles */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.price {
    font-size: 2rem;
    color: #4CAF50;
    margin: 15px 0;
}

.features {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.features li {
    margin: 10px 0;
    font-size: 1rem;
    color: #555;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #45a049;
}