

:root {
    
    --primary-color: #008B45;
    
    --primary-hover: #006432;
    
    --secondary-color: #1b5e20;
    
    --accent-color: #2e7d32;
    

    
    --bg-dark: #0f172a;
    
    --bg-darker: #020617;
    
    --bg-card: rgba(30, 41, 59, 0.7);
    

    
    --text-white: #f8fafc;
    --text-light: #cbd5e1;
    --text-muted: #94a3b8;

    
    --gradient-primary: linear-gradient(135deg, #008B45 0%, #1b5e20 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(0, 139, 69, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
}


body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    overflow-y: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}


.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-light-50 {
    color: var(--text-muted);
}

.hover-white:hover {
    color: var(--text-white) !important;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}


.bg-darker {
    background-color: var(--bg-darker);
}

.bg-soft-primary {
    background-color: rgba(0, 139, 69, 0.1);
}

.bg-soft-success {
    background-color: rgba(16, 185, 129, 0.1);
}

.bg-soft-warning {
    background-color: rgba(245, 158, 11, 0.1);
}

.bg-dark-light {
    background-color: rgba(255, 255, 255, 0.05);
}


.glass-effect {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}


.btn-primary {
    background: var(--primary-color);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0, 139, 69, 0.5);
}


.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.btn-glow:hover::after {
    transform: scale(1);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
    color: var(--text-white);
}


.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    
    position: relative;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
    animation: float 10s infinite ease-in-out;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -50px;
    left: -100px;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 50px);
    }

    100% {
        transform: translate(0, 0);
    }
}


.floating-card {
    animation: float-card 6s infinite ease-in-out;
}

@keyframes float-card {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}


.feature-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(0, 139, 69, 0.5);
    transform: translateY(-1px);
}


@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .d-flex.gap-3 {
        justify-content: center;
    }

    .mt-5.d-flex {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1.display-4 {
        font-size: 2.5rem;
    }

    .btn-lg {
        width: 100%;
    }
}


.btn-light.text-primary:hover {
    background-color: #e2e8f0;
    color: var(--primary-hover) !important;
}