149 lines
2.3 KiB
CSS
149 lines
2.3 KiB
CSS
|
|
|
|||
|
|
/* General Styles */
|
|||
|
|
* {
|
|||
|
|
margin: 0;
|
|||
|
|
padding: 0;
|
|||
|
|
box-sizing: border-box;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.container {
|
|||
|
|
max-width: 1100px;
|
|||
|
|
margin: 0 auto;
|
|||
|
|
padding: 0 20px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* Navbar */
|
|||
|
|
.navbar {
|
|||
|
|
background: #fff;
|
|||
|
|
padding: 1rem 0;
|
|||
|
|
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
|||
|
|
position: sticky;
|
|||
|
|
top: 0;
|
|||
|
|
z-index: 1000;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.navbar .container {
|
|||
|
|
display: flex;
|
|||
|
|
justify-content: space-between;
|
|||
|
|
align-items: center;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.logo {
|
|||
|
|
font-size: 1.5rem;
|
|||
|
|
font-weight: bold;
|
|||
|
|
color: #0056b3;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.logo span {
|
|||
|
|
color: #e63946;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.nav-phone {
|
|||
|
|
text-decoration: none;
|
|||
|
|
color: #0056b3;
|
|||
|
|
font-weight: bold;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* Hero Section */
|
|||
|
|
.hero {
|
|||
|
|
background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1200&q=80');
|
|||
|
|
background-size: cover;
|
|||
|
|
background-position: center;
|
|||
|
|
color: #fff;
|
|||
|
|
padding: 100px 0;
|
|||
|
|
text-align: center;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.hero h1 {
|
|||
|
|
font-size: 3rem;
|
|||
|
|
margin-bottom: 1rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.hero h1 span {
|
|||
|
|
color: #4cc9f0;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* Buttons */
|
|||
|
|
.btn {
|
|||
|
|
display: inline-block;
|
|||
|
|
padding: 12px 25px;
|
|||
|
|
text-decoration: none;
|
|||
|
|
border-radius: 5px;
|
|||
|
|
font-weight: bold;
|
|||
|
|
margin: 10px;
|
|||
|
|
transition: 0.3s;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.btn-primary {
|
|||
|
|
background: #e63946;
|
|||
|
|
color: #fff;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.btn-secondary {
|
|||
|
|
background: #fff;
|
|||
|
|
color: #333;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.btn:hover {
|
|||
|
|
opacity: 0.9;
|
|||
|
|
transform: translateY(-2px);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* Services */
|
|||
|
|
.services {
|
|||
|
|
padding: 60px 0;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.section-title {
|
|||
|
|
text-align: center;
|
|||
|
|
margin-bottom: 40px;
|
|||
|
|
font-size: 2rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.service-grid {
|
|||
|
|
display: grid;
|
|||
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|||
|
|
gap: 20px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.service-card {
|
|||
|
|
background: #fff;
|
|||
|
|
padding: 30px;
|
|||
|
|
border-radius: 8px;
|
|||
|
|
text-align: center;
|
|||
|
|
border-bottom: 4px solid #0056b3;
|
|||
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* Trust Section */
|
|||
|
|
.trust {
|
|||
|
|
background: #0056b3;
|
|||
|
|
color: #fff;
|
|||
|
|
padding: 40px 0;
|
|||
|
|
text-align: center;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.trust .container {
|
|||
|
|
display: flex;
|
|||
|
|
justify-content: space-around;
|
|||
|
|
flex-wrap: wrap;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.trust-item {
|
|||
|
|
margin: 20px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
footer {
|
|||
|
|
text-align: center;
|
|||
|
|
padding: 20px;
|
|||
|
|
font-size: 0.9rem;
|
|||
|
|
color: #777;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* Mobile Responsive */
|
|||
|
|
@media (max-width: 768px) {
|
|||
|
|
.hero h1 {
|
|||
|
|
font-size: 2rem;
|
|||
|
|
}
|
|||
|
|
}
|