.site-header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:9999;

background:rgba(10,10,10,.85);

backdrop-filter:blur(2px);

}

.header-inner{

display:flex;

align-items:center;

justify-content:space-between;

height:150px;

}

.logo img{

max-height:150px;

}

.menu{

display:flex;

list-style:none;

gap:40px;

}

.menu li a{

color:#fff;

font-weight:600;

transition:.10s;

}

.menu li a:hover{

color:#00d084;

}

.header-btn{

margin-left:40px;

}

.mobile-toggle{

display:none;

font-size:34px;

cursor:pointer;

color:#fff;

}

@media(max-width:991px){

.main-nav{

display:none;

}

.header-btn{

display:none;

}

.mobile-toggle{

display:block;

}

.hero{

padding:180px 0 120px;

background:#111;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

}

.hero-badge{

display:inline-block;

padding:10px 18px;

background:#00d08420;

border:1px solid #00d084;

border-radius:30px;

margin-bottom:25px;

color:#00d084;

font-weight:600;

}

.hero h1{

font-size:64px;

line-height:1.1;

margin-bottom:25px;

}

.hero h1 span{

display:block;

color:#00d084;

}

.hero p{

font-size:20px;

color:#aaa;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:60px;

}

.btn-outline{

background:transparent;

border:2px solid #00d084;

}

.hero-stats{

display:flex;

gap:60px;

}

.hero-stats h2{

font-size:42px;

color:#00d084;

}

.hero-right img{

width:100%;

animation:float 4s ease infinite;

}

@keyframes float{

50%{

transform:translateY(-10px);

}

}

.services{

padding:100px 0;

background:#181818;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:48px;

margin-bottom:10px;

}

.section-title p{

color:#888;

}

.services-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.service-card{

background:#222;

padding:40px;

border-radius:18px;

transition:.35s;

}

.service-card:hover{

transform:translateY(-10px);

border:1px solid #00d084;

}

.icon{

font-size:42px;

margin-bottom:25px;

}

.service-card h3{

margin-bottom:15px;

font-size:28px;

}

.service-card p{

color:#aaa;

line-height:1.8;

}

.projects{

padding:120px 0;

background:#111;

}

.projects-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.project-card{

background:#1b1b1b;

border-radius:18px;

overflow:hidden;

transition:.35s;

box-shadow:0 10px 30px rgba(0,0,0,.25);

}

.project-card:hover{

transform:translateY(-10px);

}

.project-card img{

width:100%;

height:260px;

object-fit:cover;

transition:.15s;

}

.project-card:hover img{

transform:scale(1.05);

}

.project-content{

padding:30px;

}

.project-content h3{

font-size:30px;

margin-bottom:25px;

}

.power{

display:flex;

justify-content:space-between;

margin-bottom:30px;

}

.power span{

display:block;

color:#888;

font-size:14px;

margin-bottom:8px;

}

.power strong{

color:#00d084;

font-size:22px;

}

@media(max-width:991px){

.projects-grid{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:1fr;

}

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-stats{

justify-content:center;

}

.footer{

background:#0b0b0b;

padding:90px 0 30px;

border-top:1px solid #222;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:60px;

margin-bottom:60px;

}

.footer h2{

font-size:34px;

margin-bottom:20px;

}

.footer h3{

margin-bottom:20px;

color:#00d084;

}

.footer p{

color:#999;

line-height:1.8;

}

.footer ul{

list-style:none;

}

.footer li{

margin-bottom:12px;

color:#bbb;

}

.copyright{

border-top:1px solid #222;

padding-top:25px;

text-align:center;

color:#666;

}

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

}

}

}

}