37733-vm/static/css/custom.css
Flatlogic Bot de92a4ccc0 dem1
2026-01-23 09:32:37 +00:00

131 lines
2.5 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Outfit:wght@400;600;700&display=swap');
:root {
--primary-color: #0A1D37;
--secondary-color: #2196F3;
--accent-color: #00BCD4;
--bg-light: #F4F7F6;
--white: #FFFFFF;
--text-dark: #333333;
--text-muted: #666666;
}
body {
font-family: 'Outfit', 'Cairo', sans-serif;
background-color: var(--bg-light);
color: var(--text-dark);
margin: 0;
overflow-x: hidden;
}
[lang="ar"] body {
direction: rtl;
text-align: right;
}
.navbar {
background-color: var(--white);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 1rem 2rem;
}
.navbar-brand {
font-weight: 700;
font-size: 1.5rem;
color: var(--primary-color) !important;
}
.nav-link {
color: var(--primary-color) !important;
font-weight: 600;
margin: 0 10px;
}
.btn-primary {
background-color: var(--secondary-color);
border: none;
padding: 10px 25px;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
}
.btn-primary:hover {
background-color: var(--primary-color);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}
.btn-outline-primary {
border: 2px solid var(--secondary-color);
color: var(--secondary-color);
padding: 10px 25px;
border-radius: 50px;
font-weight: 600;
}
.hero-section {
padding: 100px 0;
background: linear-gradient(135deg, var(--white) 0%, #E3F2FD 100%);
position: relative;
overflow: hidden;
}
.hero-title {
font-size: 3.5rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 20px;
line-height: 1.2;
}
.hero-subtitle {
font-size: 1.25rem;
color: var(--text-muted);
margin-bottom: 40px;
}
.role-card {
background: var(--white);
padding: 40px;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
transition: all 0.3s ease;
border: 1px solid transparent;
height: 100%;
cursor: pointer;
}
.role-card:hover {
border-color: var(--secondary-color);
transform: translateY(-10px);
}
.role-icon {
font-size: 3rem;
color: var(--secondary-color);
margin-bottom: 20px;
}
.role-title {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}
.role-desc {
color: var(--text-muted);
margin-bottom: 25px;
}
footer {
background-color: var(--primary-color);
color: var(--white);
padding: 50px 0;
}
/* RTL Adjustments */
[lang="ar"] .ms-auto {
margin-right: auto !important;
margin-left: 0 !important;
}