@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #f8f9fa;
    color: #333333;
    line-height: 1.6;
}


header.modern-header {
    background-color: white;
    color: #333333;
    padding: 1rem 1rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e9ecef;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar .logo img {
    width: 120px;
}

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

.nav-links li a {
    color: #1e3a5f; /* Dark Blue */
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, color 0.3s ease;
}
.nav-links li a:hover {
    color: #152a47; /* Darker Blue */
    transform: scale(1.1);
}

.hero-section {
    margin-top: 2rem;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: #1e3a5f; /* Dark Blue */
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(30, 58, 95, 0.2);
}
.cta-button:hover {
    background-color: #152a47; /* Darker Blue */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(30, 58, 95, 0.3);
}

.features-section {
    padding: 2rem 1rem;
    text-align: center;
}

.features-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333;
    border: 1px solid #e9ecef;
}
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: #1e3a5f;
}

.feature i {
    font-size: 2rem;
    color: #1e3a5f; /* Dark Blue */
    margin-bottom: 1rem;
}

.plans-section {
    padding: 2rem 1rem;
    text-align: center;
}

.plans-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.plan-card.basic-plan {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.plan-card.premium-plan {
    background: #e9ecef;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.plan-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: #1e3a5f;
}

.plan-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1e3a5f; /* Dark Blue */
}

.plan-card p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.registration-section {
    padding: 2rem 1rem;
    text-align: center;
}

.registration-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

form label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

form input, form select, form button {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background-color: #1e3a5f; /* Dark Blue */
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #152a47; /* Darker Blue */
}

footer.modern-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

footer .social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

footer .social-links li a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .social-links li a:hover {
    color: #5a8fd8;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .features-grid, .plans-grid {
        grid-template-columns: 1fr;
    }
}

.screenshots-section {
    padding: 2rem 1rem;
    text-align: center;
}

.screenshots-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .mobile-grid {
        grid-template-columns: 1fr;
    }
}

.screenshot-image {
    width: 100%;
    height: 400px; /* Set a fixed height */
    object-fit: scale-down;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem; /* Add margin to the bottom */
}

.blur {
    filter: blur(0.8px);
}

.comparison-section {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .screenshot-image {
        object-fit: scale-down;
    }
}

.pricing-box {
    font-size: 1rem;
    border: 2px solid #1e3a5f; /* Dark Blue */
    padding: 0.5rem;
    border-radius: 10px;
    margin: 0.5rem auto;
    display: inline-block;
}

.plan-title {
    background-color: #1e3a5f;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
}
