/**
 *  * Yojana Theme - Professional Design System
 *  */

:root {
	    /* Teal-to-Green Gradient Colors */
	    --primary-color: #0d9488;
	    --primary-dark: #0f766e;
	    --secondary-color: #10b981;
	    --accent-color: #f59e0b;
	    --background-color: #f0fdfa;
	    --surface-color: #ffffff;
	    --text-main: #134e4a;
	    --text-muted: #4b5563;
	    --border-color: #ccfbf1;
	    --gradient-primary: linear-gradient(135deg, #0d9488 0%, #10b981 100%);
	    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
	    --font-heading: 'Outfit', sans-serif;
	    --container-width: 1280px;
	    --container-narrow: 800px;
}

body { font-family: var(--font-primary); background-color: var(--background-color); color: var(--text-main); line-height: 1.6; margin: 0; }
.hero-section { background: var(--gradient-primary); color: white; padding: 4rem 1rem; text-align: center; }
.hero-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.search-box { max-width: 600px; margin: 2rem auto; display: flex; gap: 0.5rem; }
.quick-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; max-width: var(--container-width); margin: -2rem auto 2rem; padding: 0 1rem; }
.quick-link-card { background: white; padding: 1.5rem; border-radius: 12px; text-align: center; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); transition: transform 0.2s; text-decoration: none; color: var(--text-main); font-weight: 600; }
.quick-link-card:hover { transform: translateY(-5px); }
.join-bars { display: flex; justify-content: center; gap: 1rem; margin: 2rem 0; }
.join-btn { padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.join-whatsapp { background: #25D366; color: white; }
.join-telegram { background: #0088cc; color: white; }
.scheme-table, .links-table { width: 100%; border-collapse: collapse; margin: 2rem 0; background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1); }
.scheme-table th, .scheme-table td, .links-table th, .links-table td { padding: 1rem; border: 1px solid var(--border-color); text-align: left; }
.scheme-table th, .links-table th { background: var(--background-color); font-weight: 700; }

}