:root {
            --bg-cream: #FFFBF0;
            --bg-dark-green: #3B4B3C;
            --bg-yellow: #F4F798;
            --bg-card-cream: #FDFDF6;
            --accent-orange: #F26522;
            --text-dark: #1A1A1A;
            --text-light: #FFFFFF;
			--font-heading: 'IBM Plex Sans', serif;
    --font-body: 'IBM Plex Sans', sans-serif;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--bg-cream);
            color: var(--text-dark);
            overflow-x: hidden; font-size:1.15rem;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        /* Custom Utilities */
        .text-orange { color: var(--accent-orange); }
        .bg-dark-green { background-color: var(--bg-dark-green); color: white; }
        .bg-yellow { background-color: var(--bg-yellow); }
       
	   
	   
	 
        .text-dark-green { color: #0d3b33; }
        
        .btn-custom {
            background-color: #0d3b33;
            color: #fff;
            border-radius: 50px;
            padding: 10px 25px;
            transition: 0.3s;
        }
        .btn-custom:hover { background-color: #062520; color: #fff; }
		
		/* COOKIE BANNER */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 18px 20px;
  z-index: 99999;

  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.cookie-content a {
  color: #4fc3f7;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  border: none;
  padding: 9px 18px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
}

.accept {
  background: #4CAF50;
  color: #fff;
}

.reject {
  background: #e53935;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px){

  .cookie-content{
    flex-direction: column;
    align-items: flex-start;
  }

}  
	   
        .btn-custom {
            background-color: var(--accent-orange);
            color: white;
            border-radius: 50px;
            padding: 12px 30px;
            border: none;
            font-weight: 600;
            transition: transform 0.2s;
        }
        .btn-custom:hover { transform: translateY(-2px); color: white; }
       
        .btn-outline-custom {
            border: 1px solid #333;
            border-radius: 50px;
            padding: 12px 30px;
            color: #333;
            background: transparent;
        }

        .rounded-xl { border-radius: 24px; }
        .rounded-xxl { border-radius: 40px; }

        /* Navbar */
        .navbar-brand { font-family: 'Playfair Display', serif; font-size: 1.8rem; letter-spacing: 1px; }

        /* Hero Section */
        .hero-badge {
            position: absolute;
            background: var(--bg-yellow);
            padding: 20px;
            border-radius: 50%;
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: bold;
            bottom: -20px;
            right: -20px;
            z-index: 2;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* Stats Section */
        .stat-card {
            background: var(--bg-yellow);
            color: var(--text-dark);
            border-radius: 20px;
            padding: 30px;
            height: 100%;
        }
        .stat-card.white { background: white; }
       
        /* Overlapping Images */
        .img-wrapper { position: relative; overflow: hidden; border-radius: 30px; }
        .img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

        /* Floating Play Button */
        .play-btn {
            background: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            position: absolute;
            bottom: 20px;
            right: 20px;
            cursor: pointer;
        }

        /* Footer */
        footer { background-color: #2A332A; color: #aaa; padding: 80px 0 30px 0; }
        footer h5 { color: white; margin-bottom: 20px; }
        footer ul { padding: 0; list-style: none; }
        footer ul li { margin-bottom: 10px; }
        footer ul li a { color: #aaa; text-decoration: none; }
       
        .footer-cta-box {
            background-color: var(--bg-yellow);
            padding: 60px;
            border-radius: 0 0 0 0; /* Full width look */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-badge { width: 80px; height: 80px; font-size: 0.8rem; }
            h1 { font-size: 2.5rem; }
        }

        /* Workshop Card in Catalog */
        .workshop-card {
            background-color: var(--bg-card-cream);
            border-radius: 15px;
            padding: 20px;
            height: 100%;
            box-shadow: 0 5px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .workshop-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .workshop-tag {
            background-color: var(--bg-yellow);
            color: var(--text-dark);
            font-size: 0.75rem;
            padding: 5px 10px;
            border-radius: 50px;
            font-weight: 600;
        }
        /* Member Card (Showcase) */
        .member-card {
            background-color: var(--bg-card-cream);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            height: 100%;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        .member-card img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border: 3px solid var(--accent-orange);
        }
		.navbar-brand img{max-width:220px;}
		.bottom-logo img{max-width:190px;}
		.bottom-logo{margin-bottom:20px;}
		
		.bg-dark-green { background-color: #3B4B3C; color: white; }
.btn-custom {
    background-color: #3b4b3c;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    transition: transform 0.2s;
}
.btn-custom:hover { transform: translateY(-2px); color: #3b4b3c; background-color: #f3f798; }
.btn-bright {
    background-color: #f3f798;
    color: #3b4b3c;
    border-radius: 50px;
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    transition: transform 0.2s;border:1px solid #f3f798;
}
.btn-bright:hover { transform: translateY(-2px); color: #f3f798; background-color: #3b4b3c; border:1px solid #f3f798; }
.rounded-3 { border-radius: 1rem !important; } /* To give it soft corners */
		
	/* Workshop Page ke liye Blog/Insight styles */
.article-card {
    background-color: var(--bg-card-cream);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    transition: box-shadow 0.3s;
}
.article-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.article-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}
.article-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
.post-meta { font-size: 0.8rem; color: #888; }



/* Article Specific Styles */
        .article-header { padding: 60px 0 40px; }
        .article-meta { font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }
        .article-hero-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 40px;
        }
        .article-content p { font-size: 1.15rem; line-height: 1.8; margin-bottom: 25px; color: #4a4a4a; }
        .article-content h3 { margin-top: 40px; margin-bottom: 20px; font-weight: 700; }
        
        .blockquote-custom {
            border-left: 4px solid #f7c948; /* Yellow accent */
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            font-size: 1.3rem;
            color: #0d3b33;
        }

        /* Sidebar Styles */
        .sidebar-card { background: #f8f9fa; padding: 30px; border-radius: 15px; margin-bottom: 30px; }
        .author-img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; }
        .related-link { text-decoration: none; color: #333; font-weight: 600; display: block; margin-bottom: 12px; border-bottom: 1px solid #eee; padding-bottom: 12px;}
        .related-link:hover { color: #0d3b33; }

        /* Social Share */
        .social-share a {
            width: 40px; height: 40px;
            display: inline-flex;
            align-items: center; justify-content: center;
            border-radius: 50%;
            background: #eee; color: #333;
            margin-right: 10px;
            text-decoration: none; transition: 0.3s;
        }
        .social-share a:hover { background: #0d3b33; color: white; }