/*about page*/
.about-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.about-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0d6efd;
    font-weight: 600;
}

.about-heading {
    font-size: 38px;
    font-weight: 700;
    margin-top: 10px;
}

/* ===== CARDS ===== */
.about-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-card-icon img {
    width: 65px;
    margin-bottom: 20px;
}

.about-card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* ===== IMAGE & CONTENT ===== */
.about-image img {
    border-radius: 20px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-heading {
        font-size: 28px;
    }
}