:root {
--primary: #f20505; --primary-hover: #c90000;
--dark-bg: #050505; --dark-surface: #0f0f0f; 
--text-white: #ffffff; 
--text-gray: #d1d5db; --font-heading: 'Outfit', sans-serif;
--font-body: 'Inter', sans-serif;
--neon-glow: 0 0 20px rgba(242, 5, 5, 0.6);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; } ::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; border: 2px solid var(--dark-bg); transition: background 0.3s;}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
body {
font-family: var(--font-body); background-color: var(--dark-bg);
color: var(--text-gray); line-height: 1.6; overflow-x: hidden;
-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background-image: 
linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
background-size: 50px 50px;
}
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-white); line-height: 1.2; }
a, button { text-decoration: none; cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; } .text-gradient {
background: linear-gradient(135deg, #ffffff, #888888);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.neon-badge {
display: inline-block; padding: 6px 16px; border-radius: 50px;
background: rgba(242,5,5,0.1); border: 1px solid var(--primary);
color: var(--primary); font-weight: 700; font-size: 0.9rem;
margin-bottom: 20px; letter-spacing: 2px; text-transform: uppercase;
box-shadow: inset 0 0 10px rgba(242,5,5,0.2), 0 0 15px rgba(242,5,5,0.3);
} .slant-bottom { clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%); padding-bottom: 8vw; }
.slant-top { clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%); margin-top: -5vw; padding-top: 8vw; } .btn-primary, .btn-secondary, .btn-massive {
display: inline-flex; align-items: center; justify-content: center; gap: 10px;
border-radius: 4px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative; overflow: hidden; z-index: 1; border: none;
}
.btn-primary { 
padding: 16px 36px; font-size: 1.1rem;
background: var(--primary); color: #fff; box-shadow: var(--neon-glow); 
}
.btn-primary:hover { 
background: #ff1a1a; transform: translateY(-5px) scale(1.02); 
box-shadow: 0 15px 35px rgba(242, 5, 5, 0.6); 
}
.btn-secondary { padding: 14px 30px; font-size: 1rem; background: transparent; color: #fff; border: 2px solid #555; }
.btn-secondary:hover { border-color: var(--primary); background: rgba(242,5,5,0.1); transform: translateY(-3px); }
.btn-nav { padding: 10px 20px; background: transparent; border: 2px solid var(--primary); color: var(--primary); border-radius: 30px; font-weight: 700;}
.btn-nav:hover { background: var(--primary); color: #fff; box-shadow: var(--neon-glow); }
.btn-massive { padding: 24px 50px; font-size: 1.3rem; background: #fff; color: var(--primary); border-radius: 50px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.btn-massive:hover { background: var(--dark-bg); color: #fff; transform: translateY(-5px) scale(1.05); box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(242, 5, 5, 0.7); }
70% { box-shadow: 0 0 0 20px rgba(242, 5, 5, 0); }
100% { box-shadow: 0 0 0 0 rgba(242, 5, 5, 0); }
}
.pulse { animation: pulse 2s infinite; } .navbar {
position: fixed; top: 0; width: 100%; padding: 25px 5%;
display: flex; justify-content: space-between; align-items: center;
z-index: 1001; transition: all 0.4s ease; border-bottom: 1px solid transparent;
}
.navbar.scrolled {
background: rgba(3, 3, 3, 0.98); padding: 15px 5%;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8); border-bottom: 2px solid var(--primary);
}
.logo { display: flex; align-items: center; gap: 15px; }
.brand-logo { width: 50px; height: 50px; border-radius: 50%; object-fit: contain; background: #fff; padding: 2px; box-shadow: 0 0 15px rgba(242,5,5,0.4); border: 2px solid var(--primary); }
.brand-text { font-size: 1.4rem; font-weight: 900; letter-spacing: 1px; line-height: 1.1; color: #fff; text-decoration: none;}
.brand-text span { font-size: 0.8rem; color: var(--primary); display: block; letter-spacing: 3px; font-weight: 600; text-transform: uppercase; margin-top: 3px;}
.nav-links { display: flex; list-style: none; align-items: center; gap: 35px; }
.nav-links li a { font-weight: 600; font-size: 0.95rem; color: #fff; position: relative; transition: color 0.3s;} .nav-links li a:not(.btn-nav)::after {
content:''; position:absolute; bottom:-6px; left:0; width:0; height:2px;
background:var(--primary); transition:width 0.3s ease;
}
.nav-links li a:not(.btn-nav):hover::after { width:100%; }
.nav-links li a:not(.btn-nav):hover { color: var(--primary); }
.menu-toggle { display: none; }
.bar { display: block; width: 30px; height: 3px; margin: 6px auto; transition: all 0.3s ease; background-color: var(--primary); } .route-banner {
position: fixed; top: 85px; width: 100%; z-index: 1000;
background: linear-gradient(90deg, #111, var(--primary), #111);
color: #fff; overflow: hidden; white-space: nowrap; padding: 12px 0;
box-shadow: 0 5px 20px rgba(0,0,0,0.6); border-bottom: 2px solid #000;
background-size: 200% 100%; animation: gradientShimmer 5s ease infinite;
}
@keyframes gradientShimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.route-track { display: inline-block; animation: scrollBanner 30s linear infinite; font-weight: 900; font-size: 1rem; letter-spacing: 2px; will-change: transform; }
.route-track span { margin-right: 60px; text-shadow: 0 2px 5px rgba(0,0,0,0.5);}
@keyframes scrollBanner { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } } .hero {
position: relative; height: 100vh; min-height: 800px;
display: flex; align-items: center; padding: 0 5%; overflow: hidden;
background-color: #000;
} .hero-bg {
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
background: 
linear-gradient(rgba(5,5,5,0.8), rgba(5,5,5,0.95)),
repeating-linear-gradient(45deg, rgba(242,5,5,0.08) 0%, rgba(242,5,5,0.08) 2px, transparent 2px, transparent 50px);
background-size: 100% 100%, 80px 80px;
z-index: 1;
animation: moveGrid 20s linear infinite;
}
@keyframes moveGrid {
0% { background-position: 0 0, 0 0; }
100% { background-position: 0 0, 80px 80px; }
} .hero-glow {
position: absolute; width: 800px; height: 800px;
background: radial-gradient(circle, rgba(242,5,5,0.15) 0%, transparent 60%);
top: 50%; left: 30%; transform: translate(-50%, -50%);
border-radius: 50%; z-index: 2; filter: blur(60px);
animation: pulseGlow 6s ease-in-out infinite alternate;
}
@keyframes pulseGlow {
0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
.hero-content { position: relative; z-index: 3; max-width: 850px; margin-top: 100px; }
.hero-content h1 { font-size: 6rem; font-weight: 900; margin-bottom: 25px; line-height: 1.1; text-transform: uppercase; text-shadow: 0 15px 30px rgba(0,0,0,0.8); }
.hero-content p { font-size: 1.4rem; max-width: 650px; margin-bottom: 50px; color: var(--text-gray); font-weight: 400;}
.hero-buttons { display: flex; gap: 20px; } .about { background: var(--dark-bg); padding: 140px 0; position: relative; z-index: 5;}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.section-subtitle { color: var(--primary); text-transform: uppercase; letter-spacing: 3px; font-weight: 900; margin-bottom: 20px; display: flex; align-items: center; gap: 10px;}
.section-title { font-size: 3.5rem; margin-bottom: 30px; line-height: 1.1; font-weight: 800;}
.about-text p { margin-bottom: 22px; font-size: 1.2rem; color: var(--text-gray);} .about-image-wrapper { position: relative; perspective: 1000px; }
.neon-border-box {
border-radius: 20px; padding: 15px; background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.1); position: relative;
box-shadow: 0 20px 50px rgba(0,0,0,0.5); transform: rotateY(-5deg) rotateX(5deg);
transition: transform 0.5s ease;
min-height: auto;
}
.neon-border-box:hover { transform: rotateY(0) rotateX(0); border-color: var(--primary); box-shadow: var(--neon-glow);}
.neon-border-box img { width: 100%; height: auto; object-fit: contain; border-radius: 12px; display: block; }
.floating-stat {
position: absolute; bottom: 20px; left: 20px;
background: var(--primary); color: #fff; padding: 25px; border-radius: 15px;
box-shadow: 0 15px 30px rgba(242,5,5,0.4); border: 2px solid #fff; z-index: 10;
}
.floating-stat h3 { font-size: 3rem; margin: 0; line-height: 1; }
.floating-stat p { font-weight: 800; text-transform: uppercase; margin: 0; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.pulse-slow { animation: floatY 6s ease-in-out infinite; } .services { background: var(--dark-surface); padding: 120px 0; position: relative; z-index: 10; border-top: 1px solid rgba(255,255,255,0.05); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 60px; }
.service-card {
background: #030303; border-radius: 16px; overflow: hidden;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
border: 1px solid rgba(255,255,255,0.05); position: relative;
box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.service-card:hover { 
transform: translateY(-15px) scale(1.03); border-color: var(--primary); 
box-shadow: 0 30px 60px rgba(242, 5, 5, 0.2); z-index: 2;
}
.img-zoom-wrapper { position: relative; overflow: hidden; height: 250px; }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #030303 10%, transparent 100%); z-index: 1; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; display: block; }
.service-card:hover img { transform: scale(1.15); }
.service-info { padding: 40px 30px; position: relative; z-index: 2; }
.service-info h3 { font-size: 1.6rem; margin-bottom: 15px; font-weight: 800; display: flex; align-items: center; gap: 12px; }
.service-info i { color: var(--primary); font-size: 1.8rem; }
.service-card p { font-size: 1.1rem; color: var(--text-gray); }
.dark-solid { padding: 60px 40px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(180deg, #0f0f0f 0%, #000 100%); }
.huge-icon { font-size: 4rem; color: var(--primary); margin-bottom: 25px; display: inline-block; transition: transform 0.4s; text-shadow: var(--neon-glow); }
.dark-solid:hover .huge-icon { transform: scale(1.2) rotate(5deg); } .gallery { padding: 80px 0 120px; background: var(--dark-bg); overflow: hidden; position: relative; z-index: 5;}
.marquee-wrapper { width: 100%; overflow: hidden; white-space: nowrap; padding: 40px 0; margin-top: 30px;}
.marquee-track { display: inline-flex; animation: scrollGallery 40s linear infinite; gap: 40px; padding-left: 40px; will-change: transform;}
.marquee-track:hover { animation-play-state: paused; }
.gallery-img-box {
position: relative; height: 400px; width: 600px; border-radius: 20px; overflow: hidden;
box-shadow: 0 15px 35px rgba(0,0,0,0.6); transition: all 0.4s ease; border: 2px solid transparent;
}
.gallery-img-box:hover { transform: scale(1.05); z-index: 10; border-color: var(--primary); box-shadow: var(--neon-glow); }
.gallery-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-img-box:hover img { transform: scale(1.1); }
@keyframes scrollGallery { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } } .super-vibrant {
position: relative; overflow: hidden; padding: 120px 0;
background: linear-gradient(135deg, #e60000 0%, #800000 100%);
box-shadow: inset 0 0 100px rgba(0,0,0,0.5); z-index: 20; color: #fff;
}
.cta-content { position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-text h2 { font-size: 3.5rem; color: #fff; margin-bottom: 20px; line-height: 1.1; font-weight: 900; text-shadow: 0 10px 20px rgba(0,0,0,0.3);}
.cta-text h2 span { color: #ffd700; }
.cta-text p { font-size: 1.4rem; color: #fff; font-weight: 600; max-width: 600px; text-shadow: 0 2px 5px rgba(0,0,0,0.3);}
.decor-circle { position: absolute; border-radius: 50%; background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent); pointer-events: none; }
.circle-1 { width: 600px; height: 600px; top: -200px; right: -100px; border: 2px solid rgba(255,255,255,0.1); }
.circle-2 { width: 300px; height: 300px; bottom: -100px; left: 10%; background: rgba(255,255,255,0.05); } .footer { background: #000; padding: 100px 0 30px; position: relative; border-top: 1px solid #222;}
.footer-grid { display: grid; grid-template-columns: 2fr 1.5fr; gap: 80px; margin-bottom: 80px; }
.footer-col h2 { font-size: 2.2rem; margin-bottom: 25px; }
.footer-col h2 span { color: var(--primary); }
.footer-desc { margin-bottom: 35px; max-width: 450px; font-size: 1.1rem; line-height: 1.8;}
.social-links { display: flex; gap: 15px; }
.social-links a {
display: flex; align-items: center; justify-content: center; width: 50px; height: 50px;
border-radius: 50%; background: #111; border: 1px solid #333; font-size: 1.3rem; transition: all 0.4s ease;
}
.neon-hover:hover { background: var(--primary); color: #fff; transform: translateY(-8px); border-color: var(--primary); box-shadow: var(--neon-glow); }
.footer-col h3 { font-size: 1.6rem; margin-bottom: 30px; font-weight: 800;}
.contact-info { list-style: none; }
.contact-info li { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; font-size: 1.1rem; }
.icon-box { 
display: flex; align-items: center; justify-content: center; width: 45px; height: 45px;
background: rgba(242,5,5,0.1); border-radius: 10px; color: var(--primary); flex-shrink: 0;
}
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #222; color: #555; font-weight: 600; letter-spacing: 1px;} @media (max-width: 1024px) {
.cta-content { flex-direction: column; text-align: center; }
.cta-text p { margin: 0 auto; }
}
@media (max-width: 992px) {
.about-grid, .footer-grid { grid-template-columns: 1fr; }
.hero-content h1 { font-size: 4.5rem; }
.gallery-img-box { height: 280px; width: 450px; }
}
@media (max-width: 768px) {
.nav-links {
display: none; flex-direction: column; width: 100%; position: absolute;
top: 75px; left: 0; background: rgba(5,5,5,0.98); padding: 30px 0; border-bottom: 2px solid var(--primary);
}
.nav-links.active { display: flex; }
.menu-toggle { display: block; }
.hero-content h1 { font-size: 3.5rem; }
.hero-buttons { flex-direction: column; }
.section-title { font-size: 2.5rem; }
.gallery-img-box { height: 220px; width: 350px; }
.floating-stat { padding: 20px; bottom: -15px; left: -15px;}
.floating-stat h3 { font-size: 2rem;}
.cta-text h2 { font-size: 2.5rem; }
} .reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; will-change: transform, opacity; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; will-change: transform, opacity; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; will-change: transform, opacity;  }
.active { opacity: 1; transform: translate3d(0, 0, 0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } 
.delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; } .delay-5 { transition-delay: 0.5s; } .delay-6 { transition-delay: 0.6s; } .delay-7 { transition-delay: 0.7s; } .delay-8 { transition-delay: 0.8s; } .delay-9 { transition-delay: 0.9s; } .delay-10 { transition-delay: 1.0s; }