/* मुख्य CSS फ़ाइल */
:root {
    /* नया रंग पैलेट - पहले वेबसाइट से अलग */
    --primary: #ff5e3a;       /* नारंगी-लाल मुख्य रंग */
    --secondary: #4c42e6;     /* नीला द्वितीयक रंग */
    --accent: #9932cc;        /* बैंगनी एक्सेंट रंग */
    --dark: #111111;          /* काला टेक्स्ट */
    --light: #f7f8fb;         /* हल्का बैकग्राउंड */
    --gradient-start: #ff5e3a;
    --gradient-end: #ff2a73;
}

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

body {
    font-family: 'Arial', 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fcfcfc;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* हेडर स्टाइल */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

nav ul li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* हीरो सेक्शन */
.hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 100px 0 120px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-button {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.primary-button.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.highlight {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.highlight-text {
    color: var(--primary);
}

/* विशेषताएँ सेक्शन */
.features-section {
    padding: 80px 0 60px;
    background-color: white;
}

.features-section h2, 
.process-section h2, 
.benefits-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 700;
}

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

.feature-box {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-box p {
    color: #555;
    line-height: 1.6;
}

/* बैनर सेक्शन */
.banner-section {
    padding: 60px 0;
    background-color: var(--light);
    text-align: center;
    position: relative;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.banner-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #555;
}

.secondary-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 94, 58, 0.3);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 94, 58, 0.4);
}

/* प्रोसेस सेक्शन */
.process-section {
    padding: 80px 0;
    background-color: white;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 60px;
    left: 35px;
    height: calc(100% - 30px);
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
    position: relative;
    z-index: 2;
}

.step-content {
    padding-top: 10px;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-content p {
    color: #555;
}

/* लाभ सेक्शन */
.benefits-section {
    padding: 80px 0;
    background-color: var(--light);
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 94, 58, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit p {
    margin: 0;
    color: #333;
}

/* CTA सेक्शन */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    text-align: center;
    color: white;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    margin-top: -60px;
    padding-top: 120px;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .highlight-text {
    color: white;
    font-weight: 700;
}

/* फुटर */
footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-size: 1.1rem;
}

.footer-links h4:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    bottom: -8px;
    left: 0;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 0.9rem;
}

/* रेस्पोंसिव डिजाइन */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        gap: 15px;
        display: none;
    }
    
    nav ul.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin: 0 0 20px 0;
    }
    
    .step:not(:last-child):after {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-nav {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-section h2,
    .process-section h2,
    .benefits-section h2,
    .cta-section h2,
    .banner-content h2 {
        font-size: 1.8rem;
    }
}
