﻿.core-programs-area {
    background-color: #EAEAFB80;
    padding: 60px 0;
}

.core-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.core-subtitle-wrapper .text-subtitle {
        font-family: 'Google Sans', sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0px;
        color: #070A0E;
}

    .core-subtitle-wrapper .line {
        width: 40px;
        height: 1px;
        background-color: #070A0E;
    }

.core-main-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
    text-align: center;
    background: linear-gradient(270deg, #3431C6 0%, #000021 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.core-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .core-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.core-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.core-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .core-icon img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
.core-card-title,
.core-card-desc {
    font-family: 'Google Sans', sans-serif;
    margin: 0;
}
.core-card-title {
    font-size: 18px;
    font-weight: 700;
    color:  #070A0E;
    margin: 0;
    line-height: 1.4;
}

.core-card-desc {
    font-size: 14px;
    color: #444;
    margin: 0;
}

@media (max-width: 768px) {
    .core-main-title {
        font-size: 28px;
    }

    .core-programs-area {
        padding: 50px 0;
    }
}
