/* index.css */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(6, 40, 34, 0.85), rgba(6, 40, 34, 0.6)),
        url('../images/img-home-hero-sec.webp') no-repeat center center;
    background-size: cover;
    margin-top: -90px;
    /* Offset for sticky navbar */
    padding-top: 150px;
}

.hero-section h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

/* About Section Improvements */
.about-section {
    background-color: var(--white);
}

.section-tag {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.about-accent-border {
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
    font-size: 1.1rem;
    color: var(--primary-green);
}

/* Custom List */
.custom-list {
    margin-top: 2rem;
}

.custom-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.custom-list li i {
    color: var(--accent-gold);
}

/* Image Grid/Collage */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-item {
    border-radius: 15px;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.grid-item:hover img {
    transform: scale(1.05);
}

.item-tall {
    grid-row: span 2;
}

/* Need Section (Dark) */
.need-section {
    background-color: var(--dark-bg);
}

.need-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: var(--transition);
}

.need-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

.need-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.need-card h5 {
    color: var(--white);
    margin-bottom: 1rem;
}

.need-card p {
    color: var(--text-muted);
}

.quote-box {
    background: linear-gradient(rgba(234, 179, 8, 0.1), transparent);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 60px;
}

/* Vision & Mission Cards */
.vision-mission-card {
    padding: 60px;
    border-radius: 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.vision-card {
    background: var(--white);
}

.mission-card {
    background: var(--light-bg);
}

.mission-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.mission-step {
    width: 35px;
    height: 35px;
    background: var(--accent-gold);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

/* Unique Features */
.feature-card {
    background: var(--white);
    border: 1px solid #EEE;
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #e9fbf6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #0b9d74;
    font-size: 2rem;
}

/* CTA Banner */
.cta-section {
    background: linear-gradient(rgba(6, 40, 34, 0.9), rgba(6, 40, 34, 0.9)),
        url('../images/img-bg-home.png') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
}