.services-section-wrapper {
    --nav-green: #008040;
    --nav-green-hover: #006633;
    --main-purple: #5F25D9;
    --light-purple: #F3F0FF;
    --text-dark: #1E1E2D;
    --text-muted: #6B7280;
    --bg-page: #F8F9FB;
    --white: #FFFFFF;

    background-color: var(--bg-page);
    color: var(--text-dark);
    padding: 60px 0;
    font-family: 'Anek Bangla', sans-serif;
}

/* --- Main Services Section --- */
.services-section-wrapper .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section Header */
.services-section-wrapper .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-section-wrapper .section-title {
    color: var(--main-purple);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Decorative Diamond Line */
.services-section-wrapper .title-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--main-purple);
}

.services-section-wrapper .title-decor::before,
.services-section-wrapper .title-decor::after {
    content: "";
    height: 1px;
    width: 40px;
    background-color: var(--main-purple);
    opacity: 0.5;
}

.services-section-wrapper .title-decor .diamond {
    width: 8px;
    height: 8px;
    border: 2px solid var(--main-purple);
    transform: rotate(45deg);
}

.services-section-wrapper .section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

/* --- Service Cards Grid --- */
.services-section-wrapper .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.services-section-wrapper .service-card {
    background-color: var(--white);
    border: 1px solid #DDC8FF;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: 0.3s ease;
}

.services-section-wrapper .service-card:hover {
    box-shadow: 0 10px 30px rgba(95, 37, 217, 0.1);
    transform: translateY(-5px);
}

/* Card Image */
.services-section-wrapper .card-img-wrapper {
    width: 100%;
    height: 300px;
    padding: 10px;
    border-radius: 11px 11px 0 0;
    position: relative;
}

.services-section-wrapper .card-img-wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 11px;
    border: solid 1px rgba(0, 0, 0, 0.05);
}

/* Floating Icon */
.services-section-wrapper .floating-icon {
    width: 50px;
    height: 50px;
    background-color: var(--main-purple);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    border-radius: 12px;
    border: 4px solid var(--white);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Card Content */
.services-section-wrapper .card-content {
    padding: 30px 25px 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-height: 248px;
}

.services-section-wrapper .card-title {
    color: var(--main-purple);
    font-size: 22px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 15px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services-section-wrapper .card-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services-section-wrapper .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--main-purple);
    color: var(--main-purple);
    padding: 8px 24px 5px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    transition: 0.3s;
    justify-content: center;
    max-width: 260px;
    margin: 0 auto;
    line-height: 25px;
}

.services-section-wrapper .btn-outline:hover {
    background-color: var(--main-purple);
    color: var(--white);
}

/* --- Bottom Contact Banner --- */
.services-section-wrapper .contact-banner {
    background-color: var(--white);
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: solid 1px #eee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    max-width: 900px;
    margin: 0 auto;
}

.services-section-wrapper .banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.services-section-wrapper .banner-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-purple);
    color: var(--main-purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.services-section-wrapper .banner-text h4 {
    color: var(--main-purple);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.services-section-wrapper .banner-text p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.services-section-wrapper .btn-solid {
    background-color: var(--main-purple);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    cursor: pointer;
}

.services-section-wrapper .btn-solid:hover {
    background-color: #4A1DAB;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .services-section-wrapper .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-section-wrapper .contact-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        border-radius: 20px;
        padding: 25px;
    }

    .services-section-wrapper .banner-left {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .services-section-wrapper .services-grid {
        grid-template-columns: 1fr;
    }
}