.services_course {
    position: relative;
    padding: 98px 0;
    background-color: var(--white);
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-tagline {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Inter';
    color: #ff9500;
    margin-bottom: 16px;
}

.services-title {
    font-size: 40px;
    font-weight: 700;
    color: #013475;
    margin-bottom: 16px;
    font-family: 'Inter';
    line-height: 40px;
}

.services-title::after {
    content: '';
    display: block;
    width: 141px;
    height: 3px;
    background-color: #FF9500;
    margin: 16px auto 0;
}

.services-description {
    font-size: 16px;
    line-height: 28px;
    color: #262626;
    max-width: 750px;
    margin: 0 auto;
}

.services-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    z-index: 2;
}

.service-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 24px;
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: 0 0 24px 8px rgba(229, 241, 255, 0.42);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-icon-wrapper {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EEF6FF;
    border-radius: 50%;
}

.service-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 18px;
    font-weight: 600;
    color: #013475;
    margin-bottom: 8px;
    font-family: 'Inter';
}

.service-text {
    font-size: 16px;
    line-height: 24px;
    color: #161616;
    font-family: 'Inter';
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(#FF9500, #FFAC39);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
    color: white;
}

.services-btn img {
    width: 20px;
    height: 20px;
}

.course-header {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
}

.rectangle3 {
    position: absolute;
    top: 500px;
    left: 850px;
    width: 50%;
    height: 50%;
    z-index: 0;
}

.checkeredshape {
    position: absolute;
    top: 55px;
    right: 33px;
    width: 183px;
    height: 183px;
    z-index: 0;
}

.ellipse2 {
    position: absolute;
    top: 204px;
    right: 160px;
    width: 52px;
    height: 52px;
    z-index: 1;
}

.ellipse4 {
    border-radius: 50%;
    border: 1px solid #DBDBDB;
    position: absolute;
    top: 0px;
    left: 1420px;
    width: 348px;
    height: 348px;
    z-index: 2;
}

@media (max-width: 1439px) {
    .ellipse4, .checkeredshape, .ellipse2, .rectangle3 {
        display: none;
    }

    .services_course {
        padding-top: 40px !important;
        padding-bottom: 30px !important;
    }

    .services-cta {
        margin-top: 30px !important;
    }

    .course-header {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 991px) {
    .services-title {
        font-size: 34px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .services-title {
        font-size: 28px;
    }

    .services-tagline {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px 16px;
    }
}
