799 lines
13 KiB
CSS
799 lines
13 KiB
CSS
/* Reset and Base Styles */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
/* Header and Navigation */
|
|
.header {
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
backdrop-filter: blur(10px);
|
|
z-index: 1000;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.nav-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1rem 2rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.nav-logo {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.nav-logo .logo-icon {
|
|
width: 32px;
|
|
height: 32px;
|
|
margin-right: 0.5rem;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.nav-logo span {
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.nav-menu {
|
|
display: flex;
|
|
list-style: none;
|
|
gap: 2rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.nav-link {
|
|
text-decoration: none;
|
|
color: #333;
|
|
font-weight: 500;
|
|
transition: color 0.3s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: #0066cc;
|
|
}
|
|
|
|
.nav-link:after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -5px;
|
|
left: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
background: #0066cc;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.nav-link:hover:after {
|
|
width: 100%;
|
|
}
|
|
|
|
.nav-cta {
|
|
background: #0066cc;
|
|
color: white !important;
|
|
padding: 0.5rem 1.5rem;
|
|
border-radius: 25px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.nav-cta:hover {
|
|
background: #0052a3;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.nav-cta:after {
|
|
display: none;
|
|
}
|
|
|
|
.hamburger {
|
|
display: none;
|
|
flex-direction: column;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.hamburger span {
|
|
width: 25px;
|
|
height: 3px;
|
|
background: #333;
|
|
margin: 3px 0;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
background: linear-gradient(135deg, #1b6799 0%, #15065a 70%);
|
|
color: white;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero-content {
|
|
z-index: 2;
|
|
max-width: 800px;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1.5rem;
|
|
animation: fadeInUp 1s ease;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 2.5rem;
|
|
opacity: 0.9;
|
|
animation: fadeInUp 1s ease 0.2s both;
|
|
}
|
|
|
|
.hero-buttons {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
animation: fadeInUp 1s ease 0.4s both;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 1rem 2rem;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: all 0.3s ease;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: #ff6b6b;
|
|
color: white;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: #ff5252;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: transparent;
|
|
color: white;
|
|
border: 2px solid white;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: white;
|
|
color: #667eea;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.btn-large {
|
|
padding: 1.25rem 2.5rem;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.hero-video {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 1;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.hero-video video {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
/* Sections */
|
|
.section-title {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
text-align: center;
|
|
margin-bottom: 1rem;
|
|
color: #333;
|
|
}
|
|
|
|
.section-subtitle {
|
|
font-size: 1.2rem;
|
|
text-align: center;
|
|
margin-bottom: 3rem;
|
|
color: #666;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
/* Services Section */
|
|
.services {
|
|
padding: 5rem 0;
|
|
background: #f8f9fa;
|
|
}
|
|
|
|
.services-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.service-card {
|
|
background: white;
|
|
padding: 2.5rem;
|
|
border-radius: 10px;
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
|
transition: all 0.3s ease;
|
|
text-align: center;
|
|
}
|
|
|
|
.service-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.service-icon {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: linear-gradient(135deg, #667eea, #764ba2);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto 1.5rem;
|
|
color: white;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.service-card h3 {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
color: #333;
|
|
}
|
|
|
|
.service-card p {
|
|
color: #666;
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.service-features {
|
|
list-style: none;
|
|
text-align: left;
|
|
}
|
|
|
|
.service-features li {
|
|
padding: 0.5rem 0;
|
|
color: #555;
|
|
position: relative;
|
|
padding-left: 1.5rem;
|
|
}
|
|
|
|
.service-features li:before {
|
|
content: '✓';
|
|
position: absolute;
|
|
left: 0;
|
|
color: #0066cc;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Portfolio Section */
|
|
.portfolio {
|
|
padding: 5rem 0;
|
|
background: white;
|
|
}
|
|
|
|
.portfolio-filter {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
margin-bottom: 3rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.filter-btn {
|
|
padding: 0.75rem 1.5rem;
|
|
border: 2px solid #0066cc;
|
|
background: transparent;
|
|
color: #0066cc;
|
|
border-radius: 25px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.filter-btn.active,
|
|
.filter-btn:hover {
|
|
background: #0066cc;
|
|
color: white;
|
|
}
|
|
|
|
.portfolio-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.portfolio-item {
|
|
position: relative;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.portfolio-item:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.portfolio-item img {
|
|
width: 100%;
|
|
height: 250px;
|
|
object-fit: cover;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.portfolio-overlay {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
|
|
color: white;
|
|
padding: 2rem;
|
|
transform: translateY(100%);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.portfolio-item:hover .portfolio-overlay {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.portfolio-overlay h4 {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
/* About Section */
|
|
.about {
|
|
padding: 5rem 0;
|
|
background: #f8f9fa;
|
|
}
|
|
|
|
.about-content {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 4rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.about-text h2 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1.5rem;
|
|
color: #333;
|
|
}
|
|
|
|
.about-text p {
|
|
font-size: 1.1rem;
|
|
color: #666;
|
|
margin-bottom: 2rem;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.about-stats {
|
|
display: flex;
|
|
gap: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.stat {
|
|
text-align: center;
|
|
}
|
|
|
|
.stat h3 {
|
|
font-size: 2rem;
|
|
color: #0066cc;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.stat p {
|
|
color: #666;
|
|
margin: 0;
|
|
}
|
|
|
|
.certifications h4 {
|
|
margin-bottom: 1rem;
|
|
color: #333;
|
|
}
|
|
|
|
.certifications ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.certifications li {
|
|
padding: 0.5rem 0;
|
|
color: #666;
|
|
}
|
|
|
|
.certifications i {
|
|
color: #28a745;
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
.about-image img {
|
|
width: 100%;
|
|
border-radius: 10px;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* Quote Section */
|
|
.quote-section {
|
|
padding: 5rem 0;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
}
|
|
|
|
.quote-section .section-title,
|
|
.quote-section .section-subtitle {
|
|
color: white;
|
|
}
|
|
|
|
.quote-form {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
padding: 3rem;
|
|
border-radius: 15px;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.form-row {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.form-group input,
|
|
.form-group select,
|
|
.form-group textarea {
|
|
width: 100%;
|
|
padding: 1rem;
|
|
border: none;
|
|
border-radius: 5px;
|
|
background: rgba(255, 255, 255, 0.9);
|
|
font-size: 1rem;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.form-group input:focus,
|
|
.form-group select:focus,
|
|
.form-group textarea:focus {
|
|
outline: none;
|
|
background: white;
|
|
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.form-group textarea {
|
|
resize: vertical;
|
|
min-height: 120px;
|
|
}
|
|
|
|
/* Contact Section */
|
|
.contact {
|
|
padding: 5rem 0;
|
|
background: white;
|
|
}
|
|
|
|
.contact-content {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 4rem;
|
|
}
|
|
|
|
.contact-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.contact-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.contact-item i {
|
|
font-size: 1.5rem;
|
|
color: #0066cc;
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
.contact-item h4 {
|
|
margin-bottom: 0.5rem;
|
|
color: #333;
|
|
}
|
|
|
|
.contact-item p {
|
|
color: #666;
|
|
margin: 0;
|
|
}
|
|
|
|
.contact-form {
|
|
background: #f8f9fa;
|
|
padding: 2rem;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.contact-form h3 {
|
|
margin-bottom: 1.5rem;
|
|
color: #333;
|
|
}
|
|
|
|
.contact-form .form-group input,
|
|
.contact-form .form-group textarea {
|
|
background: white;
|
|
border: 1px solid #ddd;
|
|
color: #333;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background: #2c3e50;
|
|
color: white;
|
|
padding: 3rem 0 1rem;
|
|
}
|
|
|
|
.footer-content {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.footer-logo {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.footer-logo .logo-icon {
|
|
width: 32px;
|
|
height: 32px;
|
|
margin-right: 0.5rem;
|
|
object-fit: contain;
|
|
filter: brightness(0) invert(1); /* Makes the icon white for footer */
|
|
}
|
|
|
|
.footer-logo span {
|
|
color: white;
|
|
}
|
|
|
|
.footer-section h4 {
|
|
margin-bottom: 1rem;
|
|
color: #0066cc;
|
|
}
|
|
|
|
.footer-section ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.footer-section ul li {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.footer-section ul li a {
|
|
color: #bbb;
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.footer-section ul li a:hover {
|
|
color: white;
|
|
}
|
|
|
|
.footer-section p {
|
|
color: #bbb;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.social-links {
|
|
display: flex;
|
|
gap: 1rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.social-links a {
|
|
width: 40px;
|
|
height: 40px;
|
|
background: #0066cc;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.social-links a:hover {
|
|
background: #0052a3;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.footer-bottom {
|
|
border-top: 1px solid #444;
|
|
padding-top: 1rem;
|
|
text-align: center;
|
|
color: #bbb;
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 768px) {
|
|
.hamburger {
|
|
display: flex;
|
|
}
|
|
|
|
.nav-menu {
|
|
position: fixed;
|
|
left: -100%;
|
|
top: 70px;
|
|
flex-direction: column;
|
|
background-color: white;
|
|
width: 100%;
|
|
text-align: center;
|
|
transition: 0.3s;
|
|
box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
|
|
padding: 2rem 0;
|
|
}
|
|
|
|
.nav-menu.active {
|
|
left: 0;
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.hero-buttons {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.services-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.portfolio-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.about-content {
|
|
grid-template-columns: 1fr;
|
|
text-align: center;
|
|
}
|
|
|
|
.about-stats {
|
|
justify-content: center;
|
|
}
|
|
|
|
.contact-content {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.form-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.nav-container {
|
|
padding: 1rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.hero-title {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.service-card,
|
|
.quote-form {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.about-stats {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.portfolio-filter {
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.filter-btn {
|
|
padding: 0.5rem 1rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
}
|
|
|
|
/* Utility Classes */
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.fade-in {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
transition: all 0.6s ease;
|
|
}
|
|
|
|
.fade-in.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|