.logo { font-family: 'Cinzel', serif; font-weight: 900; font-size: 20px; letter-spacing: 2px; background: linear-gradient(90deg, var(--accent-saffron), var(--white), var(--accent-green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; user-select: none; } .topbar-icons { display: flex; align-items: center; gap: 14px; } .topbar-icons .icon { cursor: pointer; font-size: 17px; color: #52b7ff; transition: transform 0.2s, color 0.2s; user-select: none; } .topbar-icons .icon:hover { transform: scale(1.2); color: #90d1ff; } /* ── HERO ── */ .hero { min-height: 100vh; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 110px 24px 90px; overflow: hidden; background: linear-gradient(180deg, #0b2a3e 0%, #071b29 55%, #071b29 100%); } .tricolor-bar { position: absolute; top: 64px; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent-saffron) 33.33%, var(--white) 33.33% 66.66%, var(--accent-green) 66.66%); opacity: 0.85; z-index: 1; } .hero-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(77,166,255,0.12) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -60%); animation: pulse-glow 6s ease-in-out infinite; pointer-events: none; z-index: 0; } @keyframes pulse-glow { 0%, 100% { opacity: 0.6; transform: translate(-50%, -60%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -60%) scale(1.1); } } .dots-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; } .dot { position: absolute; border-radius: 50%; opacity: 0.18; animation: float-dot linear infinite; } @keyframes float-dot { 0% { transform: translateY(110vh) scale(0.5); opacity: 0; } 10% { opacity: 0.18; } 90% { opacity: 0.18; } 100% { transform: translateY(-10vh) scale(1); opacity: 0; } } .hero-content { position: relative; z-index: 2; max-width: 860px; width: 100%; } .hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-saffron); margin-bottom: 18px; opacity: 0; animation: fade-up 0.7s 0.2s forwards; } .hero-title { font-family: 'Cinzel', serif; font-size: clamp(30px, 6vw, 68px); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 12px; opacity: 0; animation: fade-up 0.7s 0.35s forwards; } .hero-title .saffron { color: var(--accent-saffron); } .hero-title .accent { color: var(--accent); } .hero-subtitle { font-family: 'Cinzel', serif; font-size: clamp(13px, 2.2vw, 20px); color: var(--text-muted); margin-bottom: 32px; letter-spacing: 1px; opacity: 0; animation: fade-up 0.7s 0.5s forwards; } /* Poem box */ .poem-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(77,166,255,0.2); border-left: 4px solid var(--accent); border-radius: 10px; padding: 20px 28px; margin: 0 auto 32px; max-width: 600px; font-size: clamp(15px, 2vw, 20px); font-weight: 500; color: #f2f4f7; line-height: 1.7; text-align: left; opacity: 0; animation: fade-up 0.7s 0.65s forwards; } .poem-box pre { white-space: pre-wrap; word-wrap: break-word; font-family: inherit; } /* Stats */ .stats-strip { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; opacity: 0; animation: fade-up 0.7s 0.8s forwards; } .stat-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(77,166,255,0.15); border-radius: 12px; padding: 14px 24px; text-align: center; min-width: 110px; } .stat-num { font-family: 'Cinzel', serif; font-size: 26px; font-weight: 700; color: var(--accent); display: block; } .stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; } /* Mission cards */ .mission-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; opacity: 0; animation: fade-up 0.7s 0.95s forwards; } .mission-card { background: linear-gradient(135deg, rgba(255,153,51,0.08), rgba(77,166,255,0.06)); border: 1px solid rgba(240,180,41,0.2); border-radius: 14px; padding: 18px 20px; max-width: 180px; text-align: center; transition: transform 0.3s, border-color 0.3s; } .mission-card:hover { transform: translateY(-5px); border-color: rgba(240,180,41,0.5); } .mission-card .m-icon { font-size: 26px; margin-bottom: 8px; } .mission-card h4 { font-size: 14px; font-weight: 700; color: var(--accent-gold); letter-spacing: 1px; margin-bottom: 5px; } .mission-card p { font-size: 11px; color: var(--text-muted); line-height: 1.5; } /* Countdown banner */ .countdown-banner { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, rgba(19,136,8,0.15), rgba(255,153,51,0.1)); border: 1px solid rgba(240,180,41,0.3); border-radius: 50px; padding: 11px 26px; margin-bottom: 32px; opacity: 0; animation: fade-up 0.7s 1.1s forwards; } .countdown-banner .flag { font-size: 18px; } .countdown-banner .count-text { font-family: 'Cinzel', serif; font-size: 13px; color: var(--accent-gold); letter-spacing: 1px; } .countdown-banner .days { font-weight: 700; color: var(--accent-saffron); font-size: 17px; } /* CTA buttons */ .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fade-up 0.7s 1.25s forwards; margin-bottom: 60px; } .btn-primary { background: linear-gradient(135deg, var(--accent-saffron), #e07b00); color: #fff; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; padding: 13px 30px; border: none; border-radius: 8px; cursor: pointer; text-decoration: none; display: inline-block; transition: transform 0.2s, box-shadow 0.2s; } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,153,51,0.4); } .btn-secondary { background: transparent; color: var(--accent); font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; padding: 13px 30px; border: 2px solid var(--accent); border-radius: 8px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, color 0.2s; } .btn-secondary:hover { background: var(--accent); color: var(--navy); } /* Ticker */ .aspiration-section { position: relative; z-index: 2; width: 100%; opacity: 0; animation: fade-up 0.7s 1.4s forwards; } .aspiration-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-saffron); text-align: center; margin-bottom: 12px; } .ticker-wrap { overflow: hidden; border-top: 1px solid rgba(77,166,255,0.15); border-bottom: 1px solid rgba(77,166,255,0.15); padding: 12px 0; background: rgba(255,255,255,0.02); } .ticker-track { display: flex; gap: 60px; width: max-content; animation: ticker 35s linear infinite; } .ticker-item { white-space: nowrap; font-size: 13px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; } .ticker-item span { color: var(--accent); margin-right: 6px; } @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } /* ── DIVIDER ── */ .section-divider { display: flex; align-items: center; gap: 20px; max-width: 700px; margin: 50px auto 40px; padding: 0 24px; } .section-divider .line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(77,166,255,0.3), transparent); } .section-divider .label { font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; white-space: nowrap; } /* ── QUOTE ── */ .quote-section { max-width: 680px; margin: 0 auto 60px; padding: 0 24px; text-align: center; } .big-quote { font-family: 'Cinzel', serif; font-size: clamp(15px, 2.5vw, 24px); font-weight: 700; color: var(--white); line-height: 1.55; margin-bottom: 12px; } .big-quote em { color: var(--accent-saffron); font-style: normal; } .quote-attr { font-size: 12px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; } /* ── PORTAL GRID ── */ .portal-section { max-width: 960px; margin: 0 auto 100px; padding: 0 24px; } .portal-section-title { font-family: 'Cinzel', serif; font-size: clamp(20px, 3vw, 30px); font-weight: 700; color: var(--white); text-align: center; margin-bottom: 36px; letter-spacing: 1px; } .portal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 20px; } .portal-card { text-decoration: none; color: var(--white); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 22px 14px; text-align: center; transition: transform 0.3s, background 0.3s, box-shadow 0.3s, border-color 0.3s; position: relative; overflow: hidden; } .portal-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.03), transparent); transform: rotate(25deg); pointer-events: none; } .portal-card:hover { transform: translateY(-7px) scale(1.03); background: rgba(255,255,255,0.07); box-shadow: 0 12px 28px rgba(0,0,0,0.5); border-color: rgba(77,166,255,0.3); } .icon-circle { width: 66px; height: 66px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 30px; font-weight: 700; color: #fff; transition: transform 0.3s; } .portal-card:hover .icon-circle { transform: rotate(-5deg) scale(1.1); } .portal-name { font-size: 16px; font-weight: 600; letter-spacing: 0.3px; } .portal-sub { font-size: 11px; opacity: 0.6; margin-top: 5px; } .c1{background:#5C6BC0;} .c2{background:#E53935;} .c3{background:#00897B;} .c4{background:#FB8C00;} .c5{background:#43A047;} .c6{background:#8E24AA;} .c7{background:#1E88E5;} .c8{background:#F4511E;} .c9{background:#3949AB;} .c10{background:#00ACC1;} .c11{background:#6D4C41;} .c12{background:#7CB342;} /* ── FOOTER ── */ .passion-footer { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy-light); padding: 12px 20px; text-align: center; font-size: 13px; color: #d3deea; border-top: 1px solid rgba(255,255,255,0.1); box-shadow: 0 -2px 10px rgba(0,0,0,0.4); z-index: 9999; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 10px; } .passion-footer a { color: #6dc5ff; text-decoration: none; } .passion-footer a:hover { text-decoration: underline; } .passion-footer .sep { color: rgba(255,255,255,0.25); } /* ── MODALS ── */ .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); justify-content: center; align-items: center; z-index: 99999; } .modal-overlay.active { display: flex; } .modal-box { background: var(--navy-light); color: var(--text); padding: 28px 24px; width: 90%; max-width: 420px; border-radius: 14px; box-shadow: 0 6px 24px rgba(0,0,0,0.5); border: 1px solid rgba(77,166,255,0.2); text-align: center; } .modal-box h3 { font-family: 'Cinzel', serif; font-size: 18px; margin-bottom: 14px; color: var(--accent); } .modal-box p, .modal-box li { font-size: 14px; line-height: 1.7; color: var(--text-muted); } .modal-box ol { text-align: left; padding-left: 18px; margin-top: 10px; } .modal-close { margin-top: 20px; padding: 9px 22px; background: var(--accent); color: var(--navy); border: none; border-radius: 8px; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 1px; cursor: pointer; transition: background 0.2s; } .modal-close:hover { background: #7dc5ff; } .modal-box img { width: 100%; border-radius: 10px; } /* ── COOKIE BANNER ── */ #cookie-banner { position: fixed; bottom: 60px; left: 16px; right: 16px; background: #0e2b4a; color: #dcecff; padding: 16px 18px; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.5); z-index: 9998; display: flex; flex-direction: column; gap: 12px; border: 1px solid rgba(77,166,255,0.15); } #cookie-banner p { font-size: 13px; line-height: 1.55; } .cookie-btns { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; } .cookie-btns button { padding: 8px 16px; border: none; border-radius: 7px; cursor: pointer; font-weight: 700; font-family: 'Rajdhani', sans-serif; font-size: 13px; transition: opacity 0.2s; } .cookie-btns button:hover { opacity: 0.85; } .btn-accept { background: #29b6f6; color: #012; } .btn-save { background: #19a76f; color: #012; } .btn-policy { background: #ffffff; color: #012; } /* ── ANIMATIONS ── */ @keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } } /* ── RESPONSIVE ── */ @media (max-width: 600px) { .topbar { padding: 10px 14px; } .stats-strip { gap: 12px; } .portal-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } .icon-circle { width: 56px; height: 56px; font-size: 26px; } .portal-name { font-size: 14px; } .mission-card { max-width: 150px; } } @media (max-width: 380px) { .portal-grid { grid-template-columns: repeat(2, 1fr); } }
🇮🇳 Viksit Bharat 2047 · Data Compiled By Ministries
Passion2047 — Educating a Billion, One Flowchart at a Time
Navigate knowledge across every ministry of India
Visual flowcharts for rapid understanding
Aligned with Viksit Bharat 2047 vision
World's problems are India's problems
National Aspirations
"An educated nation is an unstoppable nation. Every mind that learns, builds India."
— Passion2047 Mission
Passion2047 Network