﻿.features-section {
    background-color: #f5f5f2;
    padding: 90px 20px;
}

.features-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

    .features-heading h2 {
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #212529;
    }

    .features-heading p {
        font-size: 1.15rem;
        color: #666;
        line-height: 1.7;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.13);
    }

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212529;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-card a {
    color: #212529;
    font-weight: 600;
    text-decoration: none;
}

    .feature-card a:hover {
        text-decoration: underline;
    }

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .features-section {
        padding: 60px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-heading h2 {
        font-size: 2rem;
    }
}

.hero {
    min-height: 1000px;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.9) 100% ), url('/Images/Home_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 250px 20px 220px;
}

.hero-content {
    max-width: 750px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: .95rem;
    margin-bottom: 35px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,.85);
    max-width: 650px;
    margin: auto auto 45px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}
