:root{
--accent:#ADD300;
--accent-light:#D4FF4D;
--accent-soft:rgba(173,211,1,0.3);
--accent-glow:rgba(173,211,1,0.55);
--accent-bg:rgba(173,211,1,0.12);
--bg:#070707;
}

*{scroll-behavior:smooth;box-sizing:border-box;}
body{
margin:0;
font-family:'Poppins',Arial,sans-serif;
background:var(--bg);
color:white;
overflow-x:hidden;
}

h1,h2,h3{
font-weight:700;
letter-spacing:0.5px;
}

header{
position:fixed;
top:0;
width:100%;
background:rgba(0,0,0,0.85);
padding:14px 30px;
display:flex;
justify-content:space-between;
align-items:center;
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(173,211,1,0.15);
z-index:1000;
}

.logo{
display:flex;
align-items:center;
gap:12px;
}
.logo img{
height:58px;
width:58px;
object-fit:contain;
}
.logo-text{
font-weight:600;
letter-spacing:2px;
font-size:15px;
color:var(--accent);
}
.logo-text strong{
color:white;
font-weight:800;
}

nav{
display:flex;
}
nav a{
color:#ccc;
margin:0 14px;
text-decoration:none;
font-weight:500;
font-size:15px;
transition:0.3s;
}
nav a:hover{color:var(--accent);}

#menuToggle{
display:none;
background:none;
border:none;
color:var(--accent);
font-size:26px;
cursor:pointer;
}

.section{
min-height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
padding:100px 40px 40px;
text-align:center;
width:100%;
}

.section h1,
.section p,
.section h2{
max-width:100%;
min-width:0;
overflow-wrap:break-word;
}

.section h2{
font-size:34px;
position:relative;
margin-bottom:10px;
}
.section h2::after{
content:"";
display:block;
width:60px;
height:4px;
background:var(--accent);
margin:14px auto 0;
border-radius:2px;
}

.hero{
background:radial-gradient(circle at center, #161a05, #000);
position:relative;
overflow:hidden;
}
.hero-slideshow{
position:absolute;
inset:0;
z-index:0;
}
.hero-slide{
position:absolute;
inset:0;
background-size:contain;
background-position:center;
background-repeat:no-repeat;
background-color:#000;
opacity:0;
transition:opacity 1.2s ease;
}
.hero-slide.active{
opacity:1;
}
.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(180deg,rgba(0,0,0,0.6),rgba(0,0,0,0.8));
z-index:1;
}
.hero h1,
.hero p,
.hero .btn{
position:relative;
z-index:2;
}

.services-banner{
width:100%;
max-width:1100px;
margin:50px auto 0;
}

.services-cards{
margin-top:60px;
}
.services-banner-strip{
background:var(--accent);
color:#0a0a0a;
text-align:center;
font-family:'Georgia',serif;
font-style:italic;
font-size:clamp(15px,2.4vw,20px);
padding:16px 20px;
border-radius:6px;
position:relative;
z-index:2;
}
.services-banner-tabs{
display:flex;
justify-content:space-around;
flex-wrap:wrap;
}
.services-tab{
display:flex;
flex-direction:column;
align-items:center;
flex:1;
min-width:110px;
text-align:center;
padding:0 8px;
}
.tab-flag{
width:34px;
height:30px;
flex-shrink:0;
background:var(--accent);
clip-path:polygon(0 0,100% 0,100% 60%,50% 100%,0 60%);
margin-top:-1px;
}
.tab-label{
margin-top:14px;
color:white;
font-weight:700;
font-size:14px;
line-height:1.4;
}

.eyebrow{
display:block;
color:#777;
text-transform:uppercase;
letter-spacing:3px;
font-size:13px;
font-weight:600;
margin-bottom:4px;
}

.about-text{
max-width:680px;
color:#bbb;
font-size:15px;
line-height:1.8;
margin-top:18px;
}

.about-features{
display:flex;
flex-wrap:wrap;
gap:50px;
justify-content:center;
margin-top:50px;
}
.about-feature{
display:flex;
flex-direction:column;
align-items:center;
gap:14px;
}
.about-feature svg{
color:var(--accent);
}
.about-feature span{
font-weight:600;
font-size:15px;
color:white;
}

.hero h1{
font-size:clamp(28px,6vw,54px);
color:var(--accent);
text-shadow:0 0 25px var(--accent-glow);
line-height:1.2;
}
.hero p{
color:#ccc;
font-size:18px;
letter-spacing:1px;
}

.btn,button{
display:inline-block;
margin-top:25px;
background:linear-gradient(45deg,var(--accent),var(--accent-light));
border:none;
padding:15px 34px;
border-radius:30px;
cursor:pointer;
color:#0a0a0a;
font-weight:700;
font-family:inherit;
text-decoration:none;
transition:0.3s;
}
.btn:hover,button:hover{
transform:scale(1.07);
box-shadow:0 0 25px var(--accent-glow);
}

.cards{
display:flex;
flex-wrap:wrap;
gap:22px;
justify-content:center;
margin-top:35px;
}

.card{
background:rgba(255,255,255,0.04);
border:1px solid var(--accent-soft);
padding:28px;
border-radius:16px;
width:240px;
transition:0.3s;
}
.card:hover{
transform:translateY(-8px) scale(1.03);
box-shadow:0 0 25px var(--accent-bg);
border-color:var(--accent);
}
.card-icon{
width:56px;
height:56px;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 16px;
border-radius:50%;
background:var(--accent-bg);
color:var(--accent);
}
.card h3{
margin:10px 0;
color:var(--accent);
font-size:17px;
}
.card p{
font-size:14px;
color:#bbb;
line-height:1.6;
}

.card-list{
list-style:none;
margin:14px 0 0;
padding:0;
display:inline-block;
text-align:left;
}
.card-list li{
font-size:13px;
color:#bbb;
padding-left:16px;
position:relative;
margin-bottom:8px;
}
.card-list li::before{
content:"";
position:absolute;
left:0;
top:6px;
width:6px;
height:6px;
border-radius:50%;
background:var(--accent);
}

.card-list li.has-preview{
cursor:pointer;
position:relative;
text-decoration:underline;
text-decoration-color:var(--accent-soft);
text-underline-offset:3px;
}
.img-preview-overlay{
position:fixed;
top:0;
left:0;
width:100vw;
height:100vh;
background:rgba(0,0,0,0.92);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transform:scale(0.97);
pointer-events:none;
transition:opacity 0.3s ease,transform 0.3s ease;
z-index:5000;
}
.img-preview-overlay img{
max-width:90vw;
max-height:90vh;
object-fit:contain;
border-radius:10px;
box-shadow:0 0 60px rgba(0,0,0,0.7),0 0 30px var(--accent-bg);
}
.img-preview-overlay.show{
opacity:1;
transform:scale(1);
}

.project-card{
text-align:left;
}
.project-card img{
width:100%;
height:160px;
object-fit:cover;
border-radius:10px;
margin-bottom:14px;
}
.project-card .tag{
display:inline-block;
background:var(--accent-bg);
color:var(--accent);
font-size:12px;
font-weight:600;
padding:4px 12px;
border-radius:20px;
margin-bottom:10px;
}

footer{
padding:60px 60px 0;
color:#999;
font-size:14px;
scroll-margin-top:80px;
border-top:1px solid rgba(255,255,255,0.06);
background:#050505;
}

.footer-top{
display:grid;
grid-template-columns:1.4fr 1fr 1.4fr 1.4fr;
gap:40px;
max-width:1300px;
margin:0 auto;
padding-bottom:40px;
text-align:left;
}

.footer-col{
display:flex;
flex-direction:column;
gap:10px;
}

.footer-brand img{
width:54px;
height:54px;
object-fit:contain;
margin-bottom:6px;
}
.footer-brand p{
margin:0;
line-height:1.5;
color:#aaa;
font-size:14px;
}

.social-row{
display:flex;
gap:10px;
margin-top:8px;
}
.social-icon{
display:inline-flex;
align-items:center;
justify-content:center;
width:32px;
height:32px;
border-radius:50%;
border:1px solid var(--accent-soft);
color:var(--accent);
transition:0.3s;
}
.social-icon:hover{
background:var(--accent);
color:#0a0a0a;
}

.footer-col a{
color:#bbb;
text-decoration:none;
font-size:14px;
transition:0.3s;
}
.footer-col a:hover{
color:var(--accent);
}

.footer-col h4{
display:flex;
align-items:center;
gap:8px;
color:white;
font-size:15px;
margin:0;
}
.footer-col h4 svg{
color:var(--accent);
flex-shrink:0;
}
.footer-col p{
margin:0;
line-height:1.6;
color:#aaa;
font-size:14px;
}

.address-link{
color:#aaa;
text-decoration:none;
line-height:1.6;
font-size:14px;
transition:0.3s;
}
.address-link:hover{
color:var(--accent);
text-decoration:underline;
}

.icon-link{
display:inline-flex;
align-items:center;
gap:8px;
}
.icon-circle{
display:inline-flex;
align-items:center;
justify-content:center;
width:22px;
height:22px;
flex-shrink:0;
border-radius:50%;
border:1px solid var(--accent-soft);
color:var(--accent);
transition:0.3s;
}
.icon-link:hover .icon-circle{
background:var(--accent);
color:#0a0a0a;
border-color:var(--accent);
}

.footer-divider{
width:28px;
height:2px;
background:var(--accent);
margin:6px 0;
}

.footer-bottom{
max-width:1300px;
margin:0 auto;
display:flex;
flex-wrap:wrap;
gap:14px;
justify-content:space-between;
align-items:center;
padding:22px 0;
border-top:1px solid rgba(255,255,255,0.06);
font-size:13px;
color:#777;
}

.footer-legal{
display:flex;
gap:14px;
align-items:center;
}
.footer-legal a{
color:#777;
text-decoration:none;
transition:0.3s;
}
.footer-legal a:hover{
color:var(--accent);
}

@media (max-width:900px){
.footer-top{
grid-template-columns:1fr 1fr;
}
}
@media (max-width:560px){
footer{padding:50px 24px 0;}
.footer-top{
grid-template-columns:1fr;
text-align:center;
}
.footer-brand{align-items:center;}
.footer-bottom{
flex-direction:column;
text-align:center;
}
}

#preloader{
position:fixed;
width:100%;
height:100%;
background:black;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
gap:14px;
z-index:9999;
}

.preloader-logo{
width:90px;
height:90px;
object-fit:contain;
animation:spin 1.4s linear infinite;
filter:drop-shadow(0 0 18px var(--accent-glow));
}

.preloader-title{
color:white;
font-weight:800;
letter-spacing:3px;
font-size:18px;
margin:0;
opacity:0;
animation:fadeInUp 0.8s ease 0.2s forwards;
}

.preloader-tagline{
color:#888;
font-size:13px;
letter-spacing:1px;
margin:0;
opacity:0;
animation:fadeInUp 0.8s ease 0.4s forwards;
}

@keyframes spin{
100%{transform:rotate(360deg);}
}

@keyframes fadeInUp{
from{opacity:0;transform:translateY(10px);}
to{opacity:1;transform:translateY(0);}
}

@media (max-width:700px){
#menuToggle{display:block;}
nav{
position:absolute;
top:100%;
left:0;
width:100%;
flex-direction:column;
background:rgba(0,0,0,0.95);
max-height:0;
overflow:hidden;
transition:0.3s;
}
nav.open{
max-height:300px;
padding:10px 0;
}
nav a{
margin:10px 0;
}
.section{
padding:90px 20px 40px;
}
.card{
width:100%;
max-width:300px;
}
}
