/* style.css */
:root {
    --primary-color: #6a0572; /* बैंगनी जैसा रंग */
    --secondary-color: #e593ee; /* हल्का बैंगनी */
    --accent-color: #00bcd4; /* नीला-हरा */
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.1em;
}

.btn-primary:hover {
    background-color: #520459;
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-secondary:hover {
    background-color: #0097a7;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.how-it-works-section h2 {
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.step-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-card i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item i {
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Template Gallery Section */
.template-gallery-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.template-previews {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* मोबाइल पर इमेज को नीचे लाने के लिए */
    gap: 20px;
    margin-bottom: 40px;
}

.template-previews img {
    width: 280px; /* फिक्स्ड विड्थ */
    height: 400px; /* फिक्स्ड हाइट */
    object-fit: cover; /* इमेज को फिट करने के लिए */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
}

.testimonial-card h4 {
    margin-top: 15px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-card span {
    font-size: 0.9em;
    color: #666;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.final-cta-section h2 {
    color: var(--white);
    font-size: 2.5em;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 1.1em;
    margin-bottom: 40px;
}

/* Footer */
.main-footer {
    background-color: #333;
    color: var(--white);
    padding: 40px 0;
    font-size: 0.9em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.social-links a {
    color: var(--white);
    margin-right: 15px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2.2em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .steps-grid, .features-grid, .testimonial-cards, .footer-grid {
        grid-template-columns: 1fr;
    }
    .template-previews {
        flex-direction: column;
        align-items: center;
    }
}