.page-learn .about-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

 :root {
     --learn-primary: #73aefa;
     --learn-secondary: #7c3aed;
     --learn-bg-light: #f9fafb; /* Slightly adjusted for a softer look */
     --learn-text-dark: #111827;
     --learn-text-light: #4b5563;
     --learn-border: #e5e7eb;
 }
 
/* About Section Paragraph Styling */
.page-learn .section.container .lead {
    font-size: 1rem;
    line-height: 1.7;
}

.page-learn .section.container .lead + p {
    margin-top: 1rem;
}

 /* General Section Styling */
 .page-learn .bg-light-alt {
     background-color: var(--learn-bg-light);
 }
 
 /* Unified Card Styling */
 .page-learn .highlight-card,
 .page-learn .feature-card,
 .page-learn .course-card,
 .page-learn .functionality-card,
 .page-learn .insight-card {
     background-color: #fff;
     border-radius: 15px;
     padding: 30px;
     border: 1px solid var(--learn-border);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Softer, more modern shadow */
     transition: all 0.3s ease;
 }
 
 .page-learn .highlight-card:hover,
 .page-learn .feature-card:hover,
 .page-learn .course-card:hover,
 .page-learn .functionality-card:hover,
 .page-learn .insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    background-color: #f7faff;
 }
 
 .page-learn .highlight-card h4,
 .page-learn .feature-card h4 {
     font-size: 1.25rem;
     font-weight: 600;
     color: var(--learn-text-dark);
     margin-bottom: 0.5rem;
 }

 .page-learn .highlight-card p,
 .page-learn .feature-card p,
 .page-learn .course-card p,
 .page-learn .functionality-card p,
 .page-learn .insight-card p {
     color: var(--learn-text-light);
     font-size: 1rem;
     line-height: 1.6;
}

/* Specific Card Type Adjustments */
.page-learn .highlight-card,
.page-learn .feature-card {
    text-align: center;
}

.page-learn .course-card,
.page-learn .functionality-card,
.page-learn .insight-card {
    text-align: left;
}

.page-learn .functionality-card {
    padding: 1.5rem;
    text-align: center;
}

.page-learn .insight-card {
    padding: 1.5rem;
}

.page-learn .highlight-card .feature-icon {
    font-size: 2.5rem;
    color: var(--eduskill-primary);
    margin: 0 auto 15px auto;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--eduskill-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-learn .insight-card .insight-header {
    margin-bottom: 1rem;
}

.page-learn .insight-card .insight-header {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background-color: #dbeafe; /* Default: light blue */
    color: #1e40af; /* Default: dark blue */
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Custom color for "Training and Upskilling Companies" card header */
.page-learn .insight-card-training .insight-header {
    background-color: #fef3c7; /* Gold/Yellow background */
    color: #92400e; /* Dark gold/brown text */
}

.page-learn .insight-card .card-bullets {
    padding-left: 1.2rem; /* Add some padding to the list */
    margin-top: 1rem;
}

.page-learn .insight-card .card-bullets li {
    color: var(--learn-text-light); /* Set text color to dark grey */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
 
.course-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--learn-text-dark) !important; /* Ensure dark text */
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-align: left;
 }

/* Swiper Carousel for "Design, Personalize, and Deliver" */
.design-courses-swiper {
    width: 100%;
    height: auto;
    padding-bottom: 40px; /* Space for scrollbar */
}

.design-courses-swiper .swiper-slide {
    width: 48%; /* Adjust to show 2 slides, considering spaceBetween */
    min-width: 280px;
    height: auto;
}

.design-courses-swiper .swiper-scrollbar {
    background: #e0e0e0;
    position: absolute;
    height: 4px;
    bottom: 0;
    left: 0;
}

.design-courses-swiper .swiper-scrollbar-drag {
    background: var(--learn-primary, #007bff);
}

/* Why Our LMS Delivers Exceptional Results - Circular Layout */
.lms-results-container {
    position: relative;
    width: 700px;
    height: 700px;
    margin: 4rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lms-center-circle {
    width: 200px;
    height: 200px;
    background-color: var(--learn-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 20px rgba(115, 174, 250, 0.7);
    z-index: 2;
}

.lms-center-circle i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lms-center-circle span {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.3;
}

.lms-result-card {
    position: absolute;
    width: 250px;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--learn-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}

.lms-result-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    z-index: 3;
}

.lms-result-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--learn-text-dark);
    margin-bottom: 0.75rem;
}

.lms-result-card p {
    font-size: 0.95rem;
    color: var(--learn-text-light);
    line-height: 1.5;
}

/* Positioning the cards in a circle */
.lms-result-card.card-1 {
    transform: rotate(0deg) translate(280px) rotate(0deg);
}
.lms-result-card.card-2 {
    transform: rotate(72deg) translate(280px) rotate(-72deg);
}
.lms-result-card.card-3 {
    transform: rotate(144deg) translate(280px) rotate(-144deg);
}
.lms-result-card.card-4 {
    transform: rotate(216deg) translate(280px) rotate(-216deg);
}
.lms-result-card.card-5 {
    transform: rotate(288deg) translate(280px) rotate(-288deg);
}

/* Testimonials Section Background */
.page-learn .testimonials-scroller-section {
    background-color: var(--learn-bg-light);
}

.page-learn .testimonials-scroller-section h2 {
    color: var(--learn-text-dark) !important;
}



/* Responsive adjustments for the circular layout */
@media (max-width: 991px) {
    .lms-results-container {
        width: 100%;
        height: auto;
        display: block;
        position: static;
        margin: 0;
    }

    .lms-center-circle {
        display: none; /* Hide the center circle on smaller screens */
    }

    .lms-result-card {
        position: static;
        transform: none !important; /* Reset transform */
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .lms-result-card:hover {
        transform: translateY(-5px) !important; /* Keep a simple hover effect */
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .lms-results-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}