/* Educational Licenses specific styles */
.edu-cards-section {
    padding: 80px 20px;
    background: #fff;
}

.edu-cards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.edu-cards-head {
    margin-bottom: 50px;
    max-width: 1000px;
}

.edu-cards-head h2 {
    font-size: 2.5rem;
    color: #2b4f82;
    margin-bottom: 20px;
    font-weight: 600;
}

.edu-cards-head p {
    font-size: 1.125rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.edu-cards-head a {
    color: #2b4f82;
    text-decoration: underline;
}

.edu-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .edu-cards-grid {
        grid-template-columns: 1fr;
    }
}

.edu-card {
    background: #f4f6f8;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.edu-card-img {
    width: 100%;
    padding: 20px 20px 0 20px;
}

.edu-card-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.edu-card-content {
    padding: 30px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.edu-card-title {
    font-size: 1.5rem;
    color: #2b4f82;
    margin-bottom: 20px;
    font-weight: 600;
}

.edu-card-desc {
    flex: 1;
    margin-bottom: 30px;
}

.edu-card-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edu-card-desc li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.edu-card-desc li::before {
    content: '•';
    color: #2b4f82;
    position: absolute;
    left: 0;
    top: 0;
}

.edu-card-desc a {
    color: #2b4f82;
    text-decoration: underline;
    font-weight: 600;
}

.edu-card-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.edu-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.edu-btn-primary {
    background: #2b4f82;
    color: #fff;
    border: 1px solid #2b4f82;
}

.edu-btn-primary:hover {
    background: #1e3a63;
    border-color: #1e3a63;
}

.edu-btn-outline {
    background: transparent;
    color: #2b4f82;
    border: 1px solid #2b4f82;
}

.edu-btn-outline:hover {
    background: #f4f6f8;
}

/* Customized Testimonial Section for Educational */
.edu-testi-section {
    background: #2b4f82;
    padding: 80px 0;
}

.edu-testi-section .testi-title {
    display: none;
    /* Hidden for this design as per screenshot */
}

.edu-testi-section .testi-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    width: 300px;
    flex-shrink: 0;
}

.edu-testi-section .testi-slide {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

@media (max-width: 768px) {
    .edu-testi-section .testi-slide {
        flex-direction: column;
    }

    .edu-testi-section .testi-author {
        width: auto;
    }
}

.edu-testi-section .testi-photo {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}

.edu-testi-section .testi-name {
    color: #fff;
    font-size: 1.2rem;
}

.edu-testi-section .testi-role {
    color: #a0bedc;
    font-size: 0.9rem;
    margin-top: 5px;
}

.edu-testi-section .testi-body {
    max-width: 600px;
}

.edu-testi-section .testi-quote {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.6;
}

.edu-testi-section .testi-prev,
.edu-testi-section .testi-next {
    color: #fff;
    border-color: transparent;
    background: transparent;
}

.edu-testi-section .testi-dots button {
    background: rgba(255, 255, 255, 0.4);
}

.edu-testi-section .testi-dots button.active {
    background: #fff;
}
