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

:root {
    --primary-green: #2ecc71;
    --primary-purple: #9b59b6;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

/* Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-green);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

.btn-secondary {
    background-color: var(--primary-purple);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(155, 89, 182, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 8rem 0 5rem 0;
    background-color: #ffffff;
}

.hero-blob {
    position: absolute;
    right: -10%;
    top: -20%;
    width: 60%;
    height: 140%;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.8) 0%, rgba(46, 204, 113, 0.8) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

/* Cards */
.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
}

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

.service-card {
    border: 2px dashed #e2e8f0;
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.service-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.1);
    transform: translateY(-5px);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background: var(--primary-green);
    color: white;
}

/* Dark Section */
.dark-section {
    background-color: var(--dark-bg);
    color: white;
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
    z-index: 1;
}

.dark-section > * {
    position: relative;
    z-index: 2;
}

/* Badges */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-green {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--primary-green);
}

/* Section Header styling */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header .divider {
    height: 4px;
    width: 60px;
    background: var(--primary-green);
    margin: 0 auto;
    border-radius: 2px;
}