* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
:root {
--primary: #1a73e8;
--secondary: #0d47a1;
--accent: #ff6d00;
--light: #f5f9ff;
--dark: #333;
--gray: #777;
--success: #4caf50;
}
body {
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/static/upload/box/banner.jpg');
background-size: cover;
background-position: center;
height: 500px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
margin-bottom: 60px;
}
.hero-content {
max-width: 800px;
padding: 0 20px;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero p {
font-size: 1.5rem;
margin-bottom: 30px;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.btn {
display: inline-block;
background: var(--accent);
color: white;
padding: 15px 35px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
border: none;
cursor: pointer;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn:hover {
background: #e65100;
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
/* Section Styles */
section {
padding: 80px 0;
}
.section-header {
text-align: center;
margin-bottom: 60px;
}
.section-header h2 {
font-size: 2.5rem;
color: var(--secondary);
margin-bottom: 20px;
position: relative;
display: inline-block;
}
.section-header h2:after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--accent);
border-radius: 2px;
}
.section-header p {
font-size: 1.2rem;
color: var(--gray);
max-width: 700px;
margin: 0 auto;
}
/* Who We Are */
.about-content {
display: flex;
gap: 50px;
align-items: center;
}
.about-image {
flex: 1;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.about-image img {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s ease;
}
.about-image:hover img {
transform: scale(1.05);
}
.about-text {
flex: 1;
}
.about-text h3 {
font-size: 2rem;
margin-bottom: 20px;
color: var(--secondary);
}
.about-text p {
margin-bottom: 20px;
font-size: 1.1rem;
}
.stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 30px;
}
.stat-box {
background: var(--light);
padding: 25px;
border-radius: 10px;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease;
}
.stat-box:hover {
transform: translateY(-10px);
}
.stat-box .number {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 10px;
}
.stat-box .label {
font-size: 1rem;
color: var(--gray);
}
/* Why Choose Us */
.features {
background: var(--light);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.feature-card {
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.feature-icon {
background: var(--primary);
color: white;
font-size: 2.5rem;
height: 120px;
display: flex;
align-items: center;
justify-content: center;
}
.feature-content {
padding: 30px;
}
.feature-content h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--secondary);
}
.feature-content ul {
list-style: none;
padding-left: 0;
}
.feature-content li {
padding: 8px 0;
padding-left: 30px;
position: relative;
}
.feature-content li:before {
content: "✓";
color: var(--success);
font-weight: bold;
position: absolute;
left: 0;
}
/* Our Commitment */
.commitment-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.commitment-card {
background: white;
border-radius: 10px;
padding: 40px 30px;
text-align: center;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}
.commitment-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.commitment-card i {
font-size: 3.5rem;
color: var(--primary);
margin-bottom: 20px;
}
.commitment-card h3 {
font-size: 1.8rem;
margin-bottom: 15px;
color: var(--secondary);
}
.commitment-card p {
color: var(--gray);
}
/* Clients */
.clients {
background: linear-gradient(135deg, var(--secondary), #0a2a5c);
color: white;
}
.clients .section-header h2 {
color: white;
}
.clients .section-header p {
color: rgba(255, 255, 255, 0.8);
}
.client-logos {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 40px;
margin-top: 40px;
}
.client-logo {
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
width: 150px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: 700;
color: rgba(255, 255, 255, 0.8);
}
.testimonial {
max-width: 800px;
margin: 60px auto 0;
text-align: center;
font-style: italic;
font-size: 1.2rem;
padding: 30px;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
position: relative;
}
.testimonial:before {
content: """;
position: absolute;
top: -30px;
left: 20px;
font-size: 5rem;
color: rgba(255, 255, 255, 0.2);
font-family: serif;
}
.testimonial-author {
margin-top: 20px;
font-weight: 600;
font-style: normal;
}
/* Contact */
.contact-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 50px;
}
.contact-info h3 {
font-size: 1.8rem;
margin-bottom: 25px;
color: var(--secondary);
}
.contact-details {
margin-bottom: 30px;
}
.contact-item {
display: flex;
gap: 15px;
margin-bottom: 15px;
}
.contact-item i {
color: var(--primary);
font-size: 1.5rem;
min-width: 30px;
}
.contact-form .form-group {
margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1rem;
}
.contact-form textarea {
height: 150px;
}
/* Responsive Design */
@media (max-width: 992px) {
.hero h1 {
font-size: 3rem;
}
.about-content {
flex-direction: column;
}
}
@media (max-width: 767px) {
.nav-links {
display: none;
}
.hero {
height: 400px;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.2rem;
}
.section-header h2 {
font-size: 2rem;
}
.stats {
grid-template-columns: 1fr;
}
}
@media (max-width: 480px) {
.hero {
height: 350px;
}
.hero h1 {
font-size: 2rem;
}
.btn {
padding: 12px 25px;
}
}