 /* Services Section */
        .services-section {
            padding: 20px;
            position: relative;
            overflow: hidden;
        }


 .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 20px;
            font-size: 3em;
            color: #7104ed;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .section-subtitle {
            text-align: center;
            margin-bottom: 60px;
            font-size: 1.3em;
            color: #979797;
        }

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

 .service_card_container {
     border-radius: 3rem;
     background: #f0e6db;;
     padding: 1.6rem 1.6rem 1.2rem;
     position: relative;
     margin-bottom: 4rem;
 }

        .service_card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .service_card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(20, 120, 120, 0.15);
        }

        .service-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service_card:hover .service-image {
            transform: scale(1.1);
        }

        .service-content {
            padding: 30px;
            display: flex;
            align-items: center;
            gap: 20px;

        }

        .service-icon {
            width: 38px;
            height: 38px;
            background: #7104ed;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            flex-shrink: 0;
            transition: all 0.8s ease;
        }

        .service_card:hover .service-icon {
            background: #7104ed;
        }

        .service-title {
            font-size: 1.3em;
            font-weight: 500 !important;
            color: #333;
            margin-top: 0 !important;
            margin-bottom: 0 !important;
        }

        /* About Section */
        .about-section {
            padding: 100px 20px;
            background: #e6e0e0;
            margin-top: -15px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .about-image:hover {
            transform: scale(1.05);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .about-image.large {
            grid-column: span 2;
            height: 300px;
        }

        .about-image.small {
            height: 200px;
        }

        .about-text h2 {
            font-size: 2.2em;
            color: #7104ed;
            margin-bottom: 30px;
            line-height: 1.3;
            text-transform: capitalize !important;
            font-weight: 500 !important;
        }

        .about-text p {
            font-size: 1.3em;
            color: #666;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .about-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            background: #7104ed;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.3em;
        }

        .about-btn:hover {
            background: #7104ed;
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(20, 120, 120, 0.3);
            color: white !important;
        }

        /* Partners Section */
        .partners-section {
            padding: 100px 20px;
            background: #7104ed;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .partners-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: white;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
        }

        .partners-section h2 {
            color: white;
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .partners-section p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 60px;
            font-size: 1.1em;
        }

        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 100px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .partner-logo {
            font-size: 2.5em;
            font-weight: 700;
            color: rgba(255,255,255,0.9);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .partner-logo:hover {
            color: white;
            transform: scale(1.1);
        }

        .partners-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            background: white;
            color: #7104ed;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .partners-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Blog Section */
        .blog-section {
            padding: 40px 20px;
        }

        .blog-section h2 {
            text-align: center;
            font-size: 3em;
            color: #7104ed;
            margin-bottom: 15px;
        }

        .blog-section > p {
            text-align: center;
            color: #999;
            margin-bottom: 60px;
            font-size: 1.1em;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .blog-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }

        .blog-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .blog-card:hover .blog-image {
            transform: scale(1.08);
        }

        .blog-content {
            padding: 30px;
        }

        .blog-date {
            color: #999;
            font-size: 0.9em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .blog-date::before {
            content: '';
            width: 40px;
            height: 2px;
            background: #7104ed;
        }

        .blog-title {
            font-size: 1.2em;
            color: #7104ed;
            line-height: 1.4;
            font-weight: 500 !important;
            margin-bottom: 15px;
        }

        .blog-more {
            text-align: center;
        }

        .blog-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 40px;
            background: #7104ed;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 17px;
        }

        .blog-btn:hover {
            background: #7104ed;
            color: white;
            transform: scale(1.05);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

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

            .section-title,
            .about-text h2,
            .partners-section h2,
            .blog-section h2 {
                font-size: 2em;
            }

            .partners-logos {
                gap: 50px;
            }
        }
        .service-content {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 0 0 30px 30px;
    background: #fff;
    color: #141313;
    font-size: .9em;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.35s ease;
}

/* Animated background layer */
.service-content::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #7104ed; /* darker green */
    z-index: -1;
    transition: all 0.45s ease;
}

/* Hover: slide from left → right */
.service-content:hover::before {
    left: 0;
}

/* Optional: change text color */
.service-content:hover .service-title,.service-icon {
    color: #fff;
}

 @media (max-width: 1200px) {
     .services-grid {
         grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))
     }
 }
