Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --primary-dark: #1d4ed8;
+ --secondary: #f59e0b;
+ --dark: #1e293b;
+ --light: #f8fafc;
+ --gray: #94a3b8;
+ --success: #10b981;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background-color: var(--light);
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--primary-dark));
+ color: white;
+ padding: 2rem 1rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ header.hero::before {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.2s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background-color: var(--secondary);
+ color: var(--dark);
+ padding: 0.5rem 1rem;
+ border-radius: 0.25rem;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ max-width: 1200px;
+ margin: 4rem auto 0;
+ padding: 0 1rem;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ line-height: 1.2;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ max-width: 700px;
+ margin: 0 auto 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button {
+ display: inline-block;
+ background-color: white;
+ color: var(--primary);
+ padding: 0.75rem 1.5rem;
+ border-radius: 0.375rem;
+ text-decoration: none;
+ font-weight: 600;
+ transition: transform 0.2s, box-shadow 0.2s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 4rem 1rem;
+ }
+
+ section {
+ margin-bottom: 4rem;
+ }
+
+ h2 {
+ font-size: 2rem;
+ margin-bottom: 2rem;
+ text-align: center;
+ }
+
+ .society-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .society-card {
+ background: white;
+ border-radius: 0.5rem;
+ overflow: hidden;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ transition: transform 0.2s, box-shadow 0.2s;
+ }
+
+ .society-card:hover {
+ transform: translateY(-4px);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .society-image {
+ height: 180px;
+ background-size: cover;
+ background-position: center;
+ }
+
+ .society-card h3 {
+ padding: 1rem 1rem 0;
+ font-size: 1.25rem;
+ }
+
+ .society-card p {
+ padding: 0.5rem 1rem;
+ color: var(--gray);
+ }
+
+ .metrics {
+ display: flex;
+ justify-content: space-between;
+ padding: 1rem;
+ border-top: 1px solid rgba(0, 0, 0, 0.05);
+ font-size: 0.875rem;
+ }
+
+ .metrics-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1.5rem;
+ margin-top: 2rem;
+ }
+
+ .metric-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 0.5rem;
+ text-align: center;
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .metric-card h3 {
+ font-size: 2.5rem;
+ color: var(--primary);
+ margin-bottom: 0.5rem;
+ }
+
+ .about {
+ text-align: center;
+ max-width: 700px;
+ margin: 0 auto;
+ }
+
+ .about p {
+ margin-bottom: 2rem;
+ }
+
+ .secondary-button {
+ display: inline-block;
+ background-color: var(--primary);
+ color: white;
+ padding: 0.75rem 1.5rem;
+ border-radius: 0.375rem;
+ text-decoration: none;
+ font-weight: 600;
+ transition: background-color 0.2s;
+ }
+
+ .secondary-button:hover {
+ background-color: var(--primary-dark);
+ }
+
+ footer {
+ background-color: var(--dark);
+ color: white;
+ padding: 3rem 1rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 2rem;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ opacity: 0.8;
+ transition: opacity 0.2s;
+ }
+
+ .footer-links a:hover {
+ opacity: 1;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2.25rem;
+ }
+
+ .hero-content p {
+ font-size: 1.125rem;
+ }
+
+ .society-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .footer-links {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+ }