-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
268 lines (244 loc) · 4.98 KB
/
style.css
File metadata and controls
268 lines (244 loc) · 4.98 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
/* Reset & Font */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
background: #0e0e0e;
color: #fff;
scroll-behavior: smooth;
}
/* Navbar */
.navbar {
display: flex;
justify-content: center;
background: #111;
padding: 15px 0;
position: sticky; /* keeps navbar at top */
top: 0;
z-index: 10000; /* higher than all other elements */
}
.navbar ul {
list-style: none;
display: flex;
gap: 30px;
}
.navbar a {
color: #fff;
text-decoration: none;
font-weight: 600;
transition: color 0.3s;
}
.navbar a:hover {
color: #00d4ff;
}
/* Hero Section */
.hero {
height: 80vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
background: radial-gradient(circle at top, #111 0%, #000 100%);
flex-direction: column;
padding: 20px;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 10px;
}
.hero p {
color: #aaa;
margin-bottom: 20px;
}
.cta-btn {
padding: 12px 25px;
background: #00d4ff;
color: #000;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.cta-btn:hover {
background: #ff9500;
color: #fff;
}
/* Sections */
section {
padding: 80px 20px;
text-align: center;
}
.about h2,
.opportunities h2,
.stats h2,
.contact h2 {
color: #00d4ff;
margin-bottom: 20px;
font-size: 2rem;
}
.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
padding: 0 40px;
}
.card {
background: #1a1a1a;
padding: 25px;
border-radius: 15px;
transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 0 15px #00d4ff, 0 0 25px #ff9500;
}
.card h3 {
color: #00d4ff;
margin-bottom: 10px;
}
/* Stats Section */
.stat-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* all boxes same width */
gap: 30px;
justify-content: center;
align-items: stretch; /* makes all boxes same height */
padding: 0 20px;
}
.stat {
background: #1a1a1a;
padding: 30px 20px;
border-radius: 15px;
box-shadow: 0 0 15px #00d4ff50, 0 0 30px #ff950050;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 180px; /* same height for all */
transition: transform 0.3s, box-shadow 0.3s;
}
.stat:hover {
transform: translateY(-5px);
box-shadow: 0 0 20px #00d4ff80, 0 0 40px #ff950080;
}
.stat h3 {
font-size: 2.5rem;
color: #ff9500;
margin-bottom: 10px;
}
.stat p {
color: #ccc;
font-weight: 500;
font-size: 1rem;
text-align: center;
}
/* Contact */
.contact form {
max-width: 600px;
margin: 30px auto;
display: flex;
flex-direction: column;
gap: 15px;
}
.contact input,
.contact textarea {
padding: 12px;
border: none;
border-radius: 10px;
background: #1a1a1a;
color: #fff;
}
.contact button {
background: #00d4ff;
border: none;
color: #000;
padding: 12px;
border-radius: 25px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.contact button:hover {
background: #ff9500;
color: #fff;
}
/* Footer */
footer {
padding: 20px;
text-align: center;
background: #111;
color: #888;
font-size: 0.9rem;
}
/* Hero Section */
.hero {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
background: linear-gradient(180deg, #001f1b 0%, #000 100%);
color: #fff;
text-align: center;
padding: 80px 20px;
}
.hero .logo img {
width: 280px; /* enlarge the logo */
max-width: 90%; /* stays responsive */
height: auto;
margin-bottom: 30px;
filter: drop-shadow(0 0 25px rgba(0, 119, 255, 0.4));
transition: transform 0.4s ease, filter 0.4s ease;
}
.hero .logo img:hover {
transform: scale(1.05);
filter: drop-shadow(0 0 35px rgba(0, 140, 255, 0.6));
}
.hero h1 {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 15px;
}
.hero p {
font-size: 1.2rem;
color: #ccc;
margin-bottom: 25px;
}
.cta-btn {
display: inline-block;
background: #00d5ffd0;
color: #111;
padding: 12px 28px;
border-radius: 30px;
font-weight: 600;
text-decoration: none;
transition: background 0.3s ease;
}
.cta-btn:hover {
background: #00d5ffd0;
}
/* Animations */
.animate {
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease;
}
.animate.show {
opacity: 1;
transform: translateY(0);
}
.hero-logo {
width: 280px; /* same size as index logo */
max-width: 90%; /* stays responsive on smaller screens */
height: auto;
margin-bottom: 30px;
filter: drop-shadow(0 0 25px rgba(0, 119, 255, 0.4));
transition: transform 0.4s ease, filter 0.4s ease;
}
.hero-logo:hover {
transform: scale(1.05);
filter: drop-shadow(0 0 35px rgba(0, 140, 255, 0.6));
}