/* Base Styles and Variables */
:root {
    /* Primary color palette - Indian-inspired color theme */
    --primary-color: #6b0f1a; /* Deep red */
    --secondary-color: #f76707; /* Orange */
    --background-color: #fff9f5; /* Off-white with warm tone */
    --text-color: #333333;
    --light-accent: #f8e9e9; /* Light pink */
    --dark-accent: #2d0a0e; /* Very dark red */
    --card-bg: #ffffff;
    
    /* Typography */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Hind', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

section {
    padding: 4.5rem 0;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Top Banner */
.top-banner {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
}

/* Header */
header {
    background-color: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 40px;
    width: auto;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 2rem;
}

.menu li a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.menu li a:hover::after {
    width: 100%;
}

#menu-toggle, .menu-icon {
    display: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-right: 15px;
}

.primary-btn {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(247, 103, 7, 0.3);
}

.primary-btn:hover {
    background-color: #e55e00;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(247, 103, 7, 0.4);
    color: white;
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.large {
    padding: 15px 40px;
    font-size: 16px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Section */
.hero {
    background-image: linear-gradient(135deg, rgba(107, 15, 26, 0.05) 0%, rgba(247, 103, 7, 0.1) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-decoration {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 500px;
}

.hero-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Section Heading */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Benefits Section */
.benefits {
    background-color: var(--card-bg);
}

.benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    background-color: var(--background-color);
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

/* Features Section */
.features {
    background-color: var(--background-color);
}

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

.feature {
    padding: 30px;
    border-radius: 15px;
    background-color: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.1;
    transition: all 0.3s ease;
}

.feature:hover .feature-number {
    opacity: 0.2;
    transform: scale(1.2);
}

.feature h3 {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--card-bg);
    position: relative;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.step:hover .step-icon {
    transform: translateY(-10px);
}

.action-center {
    text-align: center;
    margin-top: 60px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--primary-color);
    color: white;
}

.testimonials .section-heading h2 {
    color: white;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    backdrop-filter: blur(10px);
}

.stars {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author {
    text-align: right;
    font-weight: 600;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 18px;
}

.toggle {
    font-size: 24px;
    color: var(--secondary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
}

/* CTA Section */
.cta {
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
}

.cta .btn:hover {
    background-color: var(--light-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark-accent);
    color: white;
    padding: 70px 0 30px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
    flex: 1;
    min-width: 200px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--card-bg);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .menu-icon {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }
    
    #menu-toggle:checked ~ .menu {
        display: flex;
    }
    
    .benefit-card {
        min-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        min-width: 100%;
    }
    
    .testimonial {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        margin: 10px 0;
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}
