@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --primary-green: #2ecc71;
    --dark-green: #1b4d3e;
    --lime-green: #a8e063;
    --vibrant-green: #00b09b;
    --soft-green: #e9f7ef;
    --accent-yellow: #f1c40f;
    --bg-light: #f4f7f6;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-btn: 0 10px 20px rgba(46, 204, 113, 0.3);
    --border-radius-lg: 30px;
    --border-radius-md: 15px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- Gradient Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    color: var(--dark-green);
    letter-spacing: -0.5px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--vibrant-green), var(--lime-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Premium Buttons --- */
.btn-premium {
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-green {
    background: linear-gradient(135deg, var(--vibrant-green), var(--lime-green));
    color: var(--white) !important;
    box-shadow: var(--shadow-btn);
}

.btn-primary-green:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 176, 155, 0.4);
}

.btn-outline-green {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green) !important;
}

.btn-outline-green:hover {
    background: var(--primary-green);
    color: var(--white) !important;
    transform: translateY(-5px);
}

/* --- Glassmorphism & Layout --- */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-10px);
}

.hero-section {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, #e9f7ef 0%, #f4f7f6 100%);
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--primary-green);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
}

/* --- Navigation --- */
.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 600;
    color: var(--text-main) !important;
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary-green);
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* --- Animations --- */
[data-aos] {
    transition-duration: 1000ms !important;
}

.hover-rotate {
    transition: transform 0.5s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg) scale(1.05);
}

/* --- Utility Classes --- */
.bg-success-subtle {
    background-color: rgba(46, 204, 113, 0.1) !important;
}

.blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--lime-green) 100%);
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blobify 10s infinite alternate;
}

@keyframes blobify {
    from {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    to {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.category-icon-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 0;
}

.ls-2 {
    letter-spacing: 2px !important;
}

.transition-all {
    transition: all 0.3s ease;
}

.glass-card:hover .rounded-circle {
    transform: scale(1.1) rotate(5deg);
}

/* --- Responsive fixes --- */
@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
}