:root { 
    --primary-green: #16a083; 
    --light-green: #e6f7f4; 
    --accent-teal: #117964; 
    --text-dark: #2d3748; 
    --text-light: #718096; 
    --bg-light: #f7fafc; 
    --white: #ffffff; 
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 1rem;
    --border-radius-lg: 1.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Bootstrap overrides */
    --bs-primary: var(--primary-green);
    --bs-primary-rgb: 22, 160, 131; 
    --bs-success: var(--soft-mint); 
    --bs-success-rgb: 16, 185, 129; 
    --bs-warning: var(--warm-orange); 
    --bs-warning-rgb: 255, 149, 41; 
    --bs-danger: var(--emergency-red); 
    --bs-danger-rgb: 220, 38, 38; 
}

body {
    font-family: 'Poppins', sans-serif; /* Updated to Poppins as per your HTML link */
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--light-green) 100%);
    min-height: 100vh;
}

/* =================================
  Card & Button Enhancements
  =================================
*/
.card {
    border: none;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-title {
    color: var(--primary-green);
    position: relative;
    padding-bottom: 0.5rem;
}

/* =================================
  Resources Section (Articles & Videos)
  =================================
*/
.filter-btn {
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
    border: none !important;
    color: var(--text-light);
}

.filter-btn.active {
    background-color: var(--white) !important;
    box-shadow: var(--shadow);
    color: var(--primary-green);
    font-weight: 600;
}

.resource-card {
    overflow: hidden;
}

.img-wrapper {
    height: 180px;
    overflow: hidden;
    background: #e2e8f0;
}

.resource-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.resource-card:hover img {
    transform: scale(1.1);
}

.badge-video { background-color: #fee2e2; color: #ef4444; }
.badge-article { background-color: #e0f2fe; color: #0ea5e9; }

/* =================================
  Wellness Tips (Slider)
  =================================
*/
#wellness-tips {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    margin: 2rem 0;
}

.tip-card {
    background: var(--white);
    border-radius: 20px;
}

.tip-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: var(--primary-green);
    opacity: 0.3;
}

.carousel-indicators .active {
    opacity: 1;
    width: 25px;
    border-radius: 10px;
}

/* =================================
  Navbar & Hero Section
  =================================
*/
.navbar {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8) !important;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

.hero-content-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-green);
}

/* =================================
  Footer & Utility
  =================================
*/
.bg-dark {
    background: linear-gradient(135deg, #2d3436 0%, #000000 100%) !important;
}

.animate-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ensure Videos and Maps are responsive */
.ratio-16x9 iframe {
    border-radius: 12px;
}