-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
156 lines (142 loc) · 6.17 KB
/
index.html
File metadata and controls
156 lines (142 loc) · 6.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rise Finance</title>
<!-- Fonts: Inter & Poppins for that modern Fintech look -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Poppins:wght@400;500;700;800&display=swap" rel="stylesheet">
<!-- CSS Stylesheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="container nav-container">
<div><img class="riselogo" src="riselogo.png" alt="Rise Finance Logo"></div>
<button class="mobile-menu-toggle" id="mobileMenuBtn">
☰
</button>
<ul class="nav-links" id="navLinks">
<li><a href="#home">Home</a></li>
<li><a href="#consulting">Consulting</a></li>
<li><a href="#value">Features</a></li>
<li><a href="#casestudy">Case Studies</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<header class="hero" id="home">
<div class="hero-bg-gradient"></div>
<div class="container hero-content">
<div class="hero-text">
<h1 class="reveal-on-scroll">Scale Fintech Safe And Secure</h1>
<p class="reveal-on-scroll delay-1">
Bring your finance ideas to life with our secure, scalable platform. We handle the heavy lifting so you can focus on growth.
</p>
<button class="cta-btn reveal-on-scroll delay-2">consultation</button>
<!-- Logo Cloud (Simple text representation for trust) -->
<div class="trust-bar reveal-on-scroll delay-3">
<span>Trusted by:</span>
<div><img class="logos" src="herologos.png" alt="4 logos"> </div>
</div>
</div>
<div class="hero-visual reveal-on-scroll delay-2">
<!-- Glassmorphism Card Mockup -->
<div class="credit-card">
<img class="pig-card" src="RightheroSection.svg" alt="credit-card">
</div>
<!-- Decorative Glow -->
<div class="card-glow"></div>
</div>
</div>
</header>
<!-- Consulting Section (Light Background) -->
<section class="consulting" id="consulting">
<div class="container">
<h2 class="section-title reveal-on-scroll">Consulting For Startups in Fintech</h2>
<p class="section-subtitle reveal-on-scroll">Our team consists of industry experts from leading financial institutions.</p>
<div class="dashboard-mockup reveal-on-scroll">
<!-- CSS Created Chart -->
<div class="chart-header">
<img class="chartdisplay" src="chartdisplay.png" alt="Chart Display">
</div>
</div>
</div>
</section>
<!-- Value/Production Section (Dark Background) -->
<section class="production dark-section" id="value">
<div class="container">
<div class="prod-header reveal-on-scroll">
<h2>Delivering Value in Every <br> Step Of Production</h2>
</div>
<div class="flex production">
<img class="Circle Chart" src="Circle Chart.png" alt="Circle Chart image">
<img class="Component 4" src="Component 4.png" alt="Component 4 image">
</div>
</div>
</section>
<!-- Case Study Section -->
<section class="casestudy" id="casestudy">
<div class="container case-container">
<div class="case-content reveal-on-scroll">
<span class="tag">Case Study</span>
<h6>Some results from our clients</h6>
</div>
<div>
<img class="phone-display" src="phonedisplay2.png" alt="Phone Display">
</div>
</div>
</section>
<!-- Finance Analytics Section (Dark) -->
<section class="analytics dark-section">
<div class="container text-center">
<h2 class="reveal-on-scroll">Consume Finance</h2>
<p class="section-subtitle reveal-on-scroll">Analyze your spending habits with our AI-driven dashboard.</p>
<div><img class="desktopdisplay" src="desktopdisplay.png" alt="Desktop Analytics Display"></div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-grid">
<div class="footer-col brand">
<div class="logo">Rise Finance<span>.</span></div>
<p>Secure, scalable fintech solutions for the modern world.</p>
</div>
<div class="footer-col">
<h4>Product</h4>
<ul>
<li><a href="#">Features</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Security</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Company</h4>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Resources</h4>
<ul>
<li><a href="#">Blog</a></li>
<li><a href="#">Help Center</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 Fintech Solutions. All rights reserved.</p>
</div>
</div>
</footer>
<!-- JavaScript File -->
<script src="script.js"></script>
</body>
</html>