@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Roboto:wght@400;700&display=swap');

.core-padding {
    padding: 80px 0;
}
.core-white {
    background:#D9F2FE;
}

.core-white .text-content.about-text-white,
.core-white .about-subtitle {
    color: #ffffff;
}

.core {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.core-center {
    text-align: center;
}

.core-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.core-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background:  #0d66c5;
    border-radius: 3px;
}

.core-gradient-blue {
    background:  #0e62b0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.core-grid,
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 80px;
    justify-content: center; 
}

@media (max-width: 768px) {
    .core-grid,
    .core-values-grid {
        grid-template-columns: 1fr; 
    }
}

.core-value-item {
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    padding-top: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333;
    position: relative;
    text-align: center;
}

.core-value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.core-card-title {
    font-size: 1.7em;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #0d4782;
    font-family: monospace; 
}

.core-card-description {
    font-size: 1em;
    line-height: 1.7;
    color: #000000;
    font-family: 'Open Sans'; 
}

.core-value-icon-circle {
    background: #cfe5fa;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);

    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
    border: 5px solid #ffffff;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.core-value-item:hover .core-value-icon-circle {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.6);
    border-color: #e0e0e0;
}


.core-value-icon-circle img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    fill: #ffffff;
}

.core-values-section {
    background: linear-gradient(180deg, #EBF5F8, #D8EEF6);
}

body {
    font-family: 'Open Sans', sans-serif;
}