.about-hero {
    background: #ffffff;
}

/* Image wrapper */
.about-img-wrapper {
    position: relative;
    display: inline-block;
}

.img-bg-box {
    width: 400px;
    height: 200px;
    background-color: var(--e-global-color-primary);
    position: absolute;
    top: 70%;
    left: -10%
}

/* Image */
.main-img {
    position: relative;
    z-index: 2;
    border-radius: 12px;
}


/* Buttons */
.btn-primary {
    background: #6f42c1;
    border: none;
}

.btn-primary:hover {
    background: #5a32a3;
}

.btn-outline-primary {
    border-color: #6f42c1;
    color: #6f42c1;
}

.btn-outline-primary:hover {
    background: #6f42c1;
    color: #fff;
}

/* Section */
.learning-section {
    width: 100%;
}

/* Image */
.learning-image img {
    height: 100%;
    object-fit: cover;
}

/* Content */
.learning-content {
    padding: 80px 60px;
    background: transparent;
}

/* Heading */
.learning-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Subtitle */
.learning-content .subtitle {
    font-size: 15px;
    margin-bottom: 20px;
    color: #666;
}

/* List */
.learning-content ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.learning-content ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Description */
.learning-content .desc {
    font-size: 14px;
    margin-bottom: 25px;
    color: #666;
}

/* Buttons */
.btn-group-custom {
    display: flex;
    gap: 10px;
}

/* Primary Button */
.btn-primary-custom {
    background: #b71c1c;
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 0;
}

.btn-primary-custom:hover {
    background: #8e0000;
    color: #fff;
}

/* Outline Button */
.btn-outline-custom {
    background: #b71c1c;
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 0;
}

.btn-outline-custom:hover {
    background: #8e0000;
    color: #fff;
}

/* 🔥 Full height alignment */
@media (min-width: 992px) {

    .learning-image,
    .learning-content {
        height: 100%;
    }
}

/* 📱 Responsive */
@media (max-width: 768px) {

    .learning-content {
        padding: 40px 20px;
    }

    .learning-content h2 {
        font-size: 26px;
    }

    .btn-group-custom {
        flex-direction: column;
    }
}