/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 20px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

fieldset {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

legend {
    font-size: 1.2em;
    font-weight: bold;
    color: #555;
    padding: 0 10px;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
    width: 98%
}

.form-group label {
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 600px) {
    .form-group {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 15px;
    }

    fieldset {
        padding: 15px;
    }
}


/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}



/* Hero Section with Image Background */
/* Hero Section with Image Background */
.hero-section {
    padding: 100px 20px;
    background-image: url('../images/hero-bg.jpg'); /* Correct path */
    background-size: cover;
    background-position: center;
    color: white; /* Set default text color to white */
    border-radius: 10px;
    margin-bottom: 40px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0.0, 0, 0, 0.5); /* Dark overlay for better text visibil*/
    border-radius: 10px;
    z-index: 1;
}

.hero-section h1,
.hero-section p,
.hero-section .cta-btn {
    position: relative;
    z-index: 2;
    color: white; /* Ensure all text is white */
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
    color: white; /* Explicitly set h1 text color to white */
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
    color: white; /* Explicitly set paragraph text color to white */
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #0056b3;
}

/* Intro Section */
.intro {
    margin-bottom: 40px;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #007BFF;
}

.intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007BFF;
}

.feature p {
    font-size: 1rem;
    color: #555;
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
    padding: 40px 20px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #007BFF;
}

.testimonial {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.testimonial p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.testimonial span {
    font-size: 0.9rem;
    color: #007BFF;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    background-color: #fff;
    padding: 40px 20px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #007BFF;
}

.faq-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #333;
    color: white;
    border-radius: 10px;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .intro h2 {
        font-size: 1.8rem;
    }

    .intro p {
        font-size: 1rem;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        max-width: 100%;
    }

    .cta-btn {
        width: 80%;
        text-align: center;
    }
}
/* Payment Page Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.payment-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.preview {
    margin-bottom: 20px;
}

.preview embed {
    border: 1px solid #ddd;
    border-radius: 10px;
}

.watermark {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}


.cta-btn:hover {
    background-color: #0056b3;
}

/* Success Page Styles */
.success-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.success-container h1 {
    color: #007BFF;
    margin-bottom: 20px;
}

.success-container p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.checkout-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
    display: flex;
    gap: 30px;
}

.preview-section, .payment-section {
    flex: 1;
}

h1 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.preview {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.1);
    pointer-events: none; /* Prevent interaction with the watermark */
}

.payment-section {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.form-group input {
    width: 95%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #007BFF;
    outline: none;
}


.cta-btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-container {
        flex-direction: column;
        padding: 20px;
    }

    .preview-section, .payment-section {
        width: 100%;
    }
}
/* Success Page Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f0e3e4 0%, #fad0c4 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.success-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50; /* Green checkmark color */
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    color: #797878;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #0056b3;
}

.support-text {
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .success-container {
        padding: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    .download-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}
/* Footer Styles */
footer {
    background-color: #333; /* Dark background for contrast */
    color: white; /* Light text color */
    padding: 20px;
    text-align: center;
    margin-top: 40px; /* Add space above the footer */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
    flex-wrap: wrap; /* Allow links to wrap on smaller screens */
}

.footer-links a {
    color: #ffffff; /* White color for links */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, opacity 0.3s ease; /* Smooth transitions */
    opacity: 0.8; /* Slightly transparent for a subtle look */
}

.footer-links a:hover {
    color: #f1f1f1; /* Slightly lighter white on hover */
    opacity: 1; /* Fully opaque on hover */
    text-decoration: underline;
}

footer p {
    margin: 0; /* Remove default margin */
    font-size: 0.9rem; /* Smaller font size for copyright text */
    color: grey; /* Light gray color for copyright text */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column; /* Stack links vertically */
        gap: 10px; /* Reduce gap between stacked links */
    }
}

/* ======================
   Navigation Bar Styles
   ====================== */
nav {
    background-color: #007BFF; /* Blue background */
    padding: 15px 20px; /* Padding for spacing */
    display: flex;
    justify-content: center; /* Center the links */
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    position: sticky; /* Make the navbar sticky */
    top: 0;
    z-index: 1000; /* Ensure it stays above other content */
}

nav a {
    color: white; /* White text color */
    text-decoration: none; /* Remove underline */
    font-size: 1rem;
    font-weight: 500;
    margin: 0 15px; /* Space between links */
    padding: 8px 12px; /* Padding for clickable area */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Light background on hover */
    color: #f1f1f1; /* Slightly lighter text on hover */
}

nav a.active {
    background-color: rgba(255, 255, 255, 0.2); /* Highlight active link */
    font-weight: 600; /* Bold text for active link */
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column; /* Stack links vertically */
        padding: 10px; /* Reduce padding */
    }

    nav a {
        margin: 5px 0; /* Reduce margin between stacked links */
        width: 100%; /* Full width for stacked links */
        text-align: center; /* Center text */
    }
}

