
/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-color) 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.hero-text { flex: 1; }
.hero-text h1 { margin-bottom: 1rem; }
.hero-text p { font-size: 1.1rem; max-width: 500px; margin-bottom: 2rem; }
.hero-image { flex: 1; text-align: center; }
.hero-image img { max-width: 100%; border-radius: var(--border-radius); }

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

.text-color2{
    color:var(--teal);
}


/* --- How It Works Section --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.step-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.step-card h3 { margin-bottom: 0.5rem; color: var(--primary-color); }

/* --- Trust Section --- */
.trust-section { background-color: #fff; }
.trust-badge { text-align: center; margin-bottom: 2rem; }
.trust-badge p {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #e9ecef;
    border-radius: 50px;
    font-weight: 600;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.feature-item {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}
.feature-item h4 { color: var(--accent-color); margin-bottom: 0.5rem; }

/* --- Testimonial Section --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-left: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
.testimonial-card p { font-style: italic; margin-bottom: 1.5rem; }
.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-card footer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-card cite {
    font-weight: 600;
    color: var(--heading-color);
    font-style: normal;
}

/* --- Upload Section --- */
.upload-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, #ffffff 100%);
    text-align: center;
}
.upload-subtitle { color: #6c757d; }
.upload-area {
    margin: 2rem auto;
    max-width: 600px;
    padding: 3rem;
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    background-color: #fff;
    transition: border-color 0.3s ease;
}
.upload-area:hover { border-color: var(--primary-color); }
.upload-icon { font-size: 3rem; margin-bottom: 1rem; }

