Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2499,4 +2499,63 @@ body {

background-color: #0056b3; /* Darker shade for hover */

}

#why-join-us {
padding: 60px 20px;
background-color: #f9f9f9;
text-align: center;
}

.section-title {
font-size: 32px;
font-weight: 700;
margin-bottom: 40px;
color: #333;
}

.cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}

.card {
background-color: #fff;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 20px;
width: 100%;
max-width: 300px;
transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
transform: translateY(-10px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.icon {
font-size: 40px;
margin-bottom: 15px;
color: #007BFF;
}

.card h3 {
font-size: 24px;
margin-bottom: 10px;
color: #333;
}

.card p {
font-size: 16px;
color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
.cards {
flex-direction: column;
}
}
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link rel="stylesheet" type="text/css" href="css/faq_style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>

<link rel="apple-touch-icon" sizes="180x180" href="images/Research_Nexas_favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/Research_Nexas_favicon_io/favicon-32x32.png">
<link rel="manifest" href="images/Research_Nexas_favicon_io/site.webmanifest">
Expand Down