/* home.css */

/* --- Hero Section --- */
.hero-section {
    background-color: #F5F7FA;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.hero-text-content {
    animation: fadeInSlideUp 1s ease-out forwards;
}

.hero-headline {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1A2E49;
}

.hero-description {
    font-size: 20px;
    max-width: 800px;
    margin-bottom: 30px;
}

.hero-image-area {
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
    animation: fadeInScale 1s ease-out forwards;
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    width: 100%;
}

/* Responsive adjustments for desktop */
@media (min-width: 992px) {
    .hero-container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        padding: 0 40px;
    }

    .hero-text-content {
        flex: 1;
        padding-right: 40px;
    }

    .hero-headline {
        text-align: left;
    }

    .hero-description {
        text-align: left;
    }

    .hero-image-area {
        flex: 1.2;
        margin-top: 0;
        max-width: 600px;
    }
}


/* Keyframe Animations for Hero Section */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Who We Are Section (New Section) --- */
.who-we-are-section {
    padding: 60px 0;
    text-align: center;
    background-color: #FFFFFF;
}

.who-we-are-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.who-we-are-description {
    font-size: 18px;
    color: #2E2E2E;
    line-height: 1.6;
}

/* --- What We Do Section (New Section) --- */
.what-we-do-section {
    padding: 80px 0;
    background-color: #F5F7FA;
}

.what-we-do-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.what-we-do-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.what-we-do-list li {
    font-size: 18px;
    color: #2E2E2E;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.what-we-do-list li::before {
    content: '✓';
    color: #4A90E2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* --- Final CTA Section --- */
.final-cta-section {
    background-color: #1A2E49;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.final-cta-headline {
    font-size: 40px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-headline {
        font-size: 42px;
    }
    .hero-description {
        font-size: 18px;
    }
    .final-cta-headline {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    .hero-headline {
        font-size: 36px;
    }
    .hero-description {
        font-size: 16px;
    }
    .who-we-are-section,
    .what-we-do-section,
    .final-cta-section {
        padding: 50px 0;
    }
    .section-heading,
    .final-cta-headline {
        font-size: 28px;
    }
    .section-heading-small {
        font-size: 18px;
    }
    .who-we-are-description,
    .what-we-do-list li {
        font-size: 16px;
    }
    .what-we-do-list li::before {
        left: -5px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 30px;
    }
    .final-cta-headline {
        font-size: 26px;
    }
}