/* Application Scope Section Styles */

.application-scope-section {
    padding: 40px 20px;
    animation: fadeIn 0.8s ease;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Pill */
.scope-header-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.scope-header {
    background: linear-gradient(0deg, #1B8B61 0%, #2EF1A8 100%);
    /* Greenish gradient */
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-align: center;
    min-width: 200px;
}

/* Grid Layout */
.scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styles */
.scope-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    min-height: 250px;
}

.scope-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Icon Styles */
.scope-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scope-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    /* You might want to filter this to brand color if icons are black */
    filter: none;
}

/* Typography */
.scope-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.scope-card-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .scope-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .application-scope-section {
        left: 80px;
        right: 80px;
    }
}

@media (max-width: 768px) {
    .scope-grid {
        grid-template-columns: 1fr;
    }

    .application-scope-section {
        left: 20px;
        right: 20px;
        top: 80px;
    }

    .scope-header {
        font-size: 1.2rem;
        padding: 10px 30px;
    }

    .scope-card {
        padding: 20px;
        min-height: auto;
    }
}