:root {
    --primary: #011655;
    --primary-dark: #011655;
    --secondary: #011655;
    --text: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-alt: #f3f4f6;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.hero {
    background: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,224C672,213,768,171,864,149.3C960,128,1056,128,1152,149.3C1248,171,1344,213,1392,234.7L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 0.1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-content {
    padding: 4rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
}

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

.hero-text h2 {
    font-family: 'Invisible', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0;
    line-height: 1.1;
}

.hero-text h1 {
    font-family: 'Invisible', sans-serif;
    font-weight: 800;
    font-size: 4.5rem;
    color: white;
    margin: 1rem 0;
    line-height: 1;
    white-space: nowrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.stat {
    text-align: center;
}

.stat .number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.stat .label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 6rem 0;
}

section:nth-child(even) {
    background-color: var(--background-alt);
}

section h2 {
    font-family: 'Invisible', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.highlight {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Benefits */
.benefits {
    padding: 6rem 0;
    background-color: white;
}

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

.benefit {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefit h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit p {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Method Cards */
.method-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.method-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.method-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Testimonial Section */
.testimonial {
    background-color: var(--background-alt);
    padding: 6rem 0;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-image {
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: auto;
 
}

.testimonial-text {
    padding: 2rem;
}

.testimonial-text h2 {
    color: var(--primary);
    text-align: left;
    margin-bottom: 1rem;
}

.testimonial-text h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-text blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary);
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonial-text {
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    background: white;
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background: var(--text);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat .number {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .highlight {
        font-size: 1.2rem;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
