@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.es-5ed3c998-container {
    font-family: 'Poppins', sans-serif;
    margin: 0 auto;
    padding: 60px 20px;
    background: transparent;
}

/* Header Grid */
.es-5ed3c998-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: end;
}

.es-5ed3c998-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.es-5ed3c998-badge {
    background: linear-gradient(135deg, #7F00FF 0%, #0010FF 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(127, 0, 255, 0.2);
}

.es-5ed3c998-main-heading {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    color: #1a1e26;
    margin: 0;
}

.es-5ed3c998-highlight {
    background: linear-gradient(135deg, #7F00FF 0%, #FF007F 50%, #FF7F00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.es-5ed3c998-header-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.es-5ed3c998-right-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1e26;
    margin: 0;
}

.es-5ed3c998-right-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

/* Services Grid */
.es-5ed3c998-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Service Card */
.es-5ed3c998-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #F1F3F8;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
}

.es-5ed3c998-card.es-5ed3c998-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient Overlay Background on Hover */
.es-5ed3c998-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(127, 0, 255, 0.04), transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.es-5ed3c998-card:hover .es-5ed3c998-card-glow {
    opacity: 1;
}

.es-5ed3c998-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(127, 0, 255, 0.08);
    border-color: rgba(127, 0, 255, 0.15);
}

/* Icon Area */
.es-5ed3c998-icon-box {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.es-5ed3c998-icon-box svg {
    width: 40px;
    height: 40px;
    stroke: #ffffff;
}

.es-5ed3c998-card:hover .es-5ed3c998-icon-box {
    transform: rotate(8deg);
}

/* Icon Theme Gradients */
.theme-purple-blue { background: linear-gradient(135deg, #7F00FF 0%, #0010FF 100%); }
.theme-pink-orange { background: linear-gradient(135deg, #FF007F 0%, #FF7F00 100%); }
.theme-cyan-teal { background: linear-gradient(135deg, #00F2FE 0%, #4FACFE 100%); }
.theme-indigo-purple { background: linear-gradient(135deg, #3F51B5 0%, #9C27B0 100%); }
.theme-orange-yellow { background: linear-gradient(135deg, #FF9800 0%, #FFEB3B 100%); }
.theme-violet-magenta { background: linear-gradient(135deg, #7B1FA2 0%, #E91E63 100%); }

/* Card Typography */
.es-5ed3c998-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1e26;
    margin: 0 0 15px 0;
}

.es-5ed3c998-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #64748B;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

/* Card Button */
.es-5ed3c998-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #7F00FF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.es-5ed3c998-btn-arrow {
    transition: transform 0.3s ease;
}

.es-5ed3c998-card:hover .es-5ed3c998-btn-arrow {
    transform: translateX(5px);
}

/* Bottom CTA Button */
.es-5ed3c998-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.es-5ed3c998-cta-btn {
    background: linear-gradient(135deg, #7F00FF 0%, #0010FF 50%, #FF007F 100%);
    background-size: 200% auto;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(127, 0, 255, 0.3);
}

.es-5ed3c998-cta-btn:hover {
    transform: scale(1.05);
    background-position: right center;
    box-shadow: 0 15px 40px rgba(127, 0, 255, 0.45);
}

.es-5ed3c998-cta-arrow {
    transition: transform 0.3s ease;
}

.es-5ed3c998-cta-btn:hover .es-5ed3c998-cta-arrow {
    transform: translateX(5px);
}

/* Responsive Scaling */
@media screen and (max-width: 1024px) {
    .es-5ed3c998-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .es-5ed3c998-main-heading {
        font-size: 44px;
    }
    .es-5ed3c998-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .es-5ed3c998-grid {
        grid-template-columns: 1fr;
    }
    .es-5ed3c998-main-heading {
        font-size: 34px;
    }
    .es-5ed3c998-container {
        padding: 40px 15px;
    }
    .es-5ed3c998-card {
        padding: 25px;
    }
}
