 * { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --primary: #667eea;
            --secondary: #764ba2;
            --accent: #f093fb;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --success: #4ecdc4;
            --warning: #ffd93d;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--light);
        }
        
        /* Navigation */
        nav {
            background: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        
        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--dark);
            font-size: 1.8em;
            font-weight: 700;
        }
        
        .logo img {
            height: 50px;
            width: auto;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        
           .hero {
    max-width: 1600px; /* or your preferred width */
      align-items: center; /* Optional: center vertically */
    position: center; /* To contain the absolutely positioned overlay */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    overflow: hidden; /* To prevent overflow of overlay image */
      position: relative;
  height: 70vh; /* full viewport height */
  flex-direction: column; /* stack content vertically if multiple items */


}

/* Overlay background image */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://www.kaleido.us/coloring/uploads/design_1758033851.png');
    background-size: cover; /* Resize to cover the entire section */
    background-position: center;
    opacity: 0.2; /* Adjust transparency of the overlay image */
    pointer-events: none; /* So it doesn't interfere with interactions */
    z-index: 0; /* Behind text content */
}

/* Make sure content stays above overlay */
.hero > * {
    position: relative;
    z-index: 1;
}
        
        
        
        
        .hero h1 {
            font-size: 3em;
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hero p {
            font-size: 1.3em;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto 2rem;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5em;
            font-weight: 700;
        }
        
        .stat-label {
            opacity: 0.9;
            font-size: 0.9em;
        }
        
        /* Featured Article */
        .featured {
            max-width: 1400px;
            margin: 50px auto 4rem;
            padding: 0 2rem;
        }
        
        .featured-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            transition: transform 0.3s;
        }
        
        .featured-card:hover {
            transform: translateY(15px);
        }
        
        .featured-image {
            background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5em;
            color: white;
        }
        
    
    .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
        
        .featured-content {
            padding: 3rem;
        }
        
        .featured-tag {
            background: var(--success);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8em;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .featured-content h2 {
            font-size: 2em;
            margin-bottom: 1rem;
             margin-top: 2rem;
            color: var(--dark);
        }
        
        .featured-excerpt {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .read-more {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 0.4rem 1rem;
             margin-top: 2rem;
            border-radius: 45px;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
            transition: transform 0.3s;
        }
        
        .read-more:hover {
            transform: translateX(5px);
        }
        
        /* Section Headers */
        .section {
            max-width: 1400px;
            margin: 0 auto 2rem;
            padding: 0 2rem;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
        }
        
        .section-header h2 {
            font-size: 2em;
            color: var(--dark);
        }
        
        .section-filter {
            display: flex;
            gap: 1rem;
        }
        
        .filter-btn {
            padding: 0.5rem 1.5rem;
            border: 2px solid var(--primary);
            background: white;
            color: var(--primary);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }
        
        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary);
            color: white;
        }
        
        /* Article Grid */
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        
   

 
 .article-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            cursor: pointer;
            
        }
        
        .article-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        
     
        .article-image {
            height: 200px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
            color: white;
            object-fit: cover;
        } 
        
        
        
       
       
       
       
       
       
       
       
        
        
        
        
        
        
        
        
        .article-content {
            padding: 1.5rem;
        }
        
        .article-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .category-tag {
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.75em;
            font-weight: 600;
            color: white;
        }
        
        .tag-environment { background: var(--success); }
        .tag-psychology { background: var(--accent); }
        .tag-tech { background: var(--primary); }
        .tag-creative { background: var(--warning); color: var(--dark); }
        
        .article-card h3 {
            font-size: 1.3em;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }
        
        .article-card p {
            color: #666;
            font-size: 0.95em;
            margin-bottom: 1rem;
        }
        
        .article-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85em;
            color: #999;
            padding-top: 1rem;
            border-top: 1px solid #e9ecef;
        }
        
        .read-article-btn {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9em;
            transition: transform 0.3s;
            display: inline-block;
        }
        
        .read-article-btn:hover {
            transform: translateX(5px);
        }
        
        /* Hub Sections Preview */
        .hub-sections {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 4rem 2rem;
            margin-top: 4rem;
        }
        
        .hub-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .hub-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        
        .hub-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .hub-icon {
            font-size: 3em;
            margin-bottom: 1rem;
        }
        
        .hub-card h3 {
            font-size: 1.5em;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .hub-card p {
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        .hub-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .hub-link:hover {
            color: var(--secondary);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem 2rem;
            margin-top: 4rem;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        
        .footer-section h4 {
            margin-bottom: 1rem;
            color: var(--accent);
        }
        
        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2em; }
            .hero p { font-size: 1.1em; }

            .nav-links { display: none; }
            .hero-stats { flex-direction: column; gap: 1rem; }
        }
        
        
        
.divider-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto; /* even top & bottom spacing */
  padding: 0;
  max-width: 1200px;
}

.divider-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hub-sections {
  margin-top: 0;
  padding-top: 0;
}
