
*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Montserrat',sans-serif;
background:#050505;
color:white;
overflow-x:hidden;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 7%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,0.72);
backdrop-filter:blur(12px);
z-index:999;
border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo-area img{
height:78px;
}

nav{
display:flex;
gap:28px;
}

nav a{
text-decoration:none;
color:white;
font-weight:600;
transition:0.3s;
}

nav a:hover{
color:#d4b05d;
}

.cta-btn{
background:linear-gradient(90deg,#0f5e29,#d4b05d);
padding:14px 26px;
border-radius:40px;
text-decoration:none;
color:white;
font-weight:700;
box-shadow:0 0 20px rgba(212,176,93,0.25);
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,0.72),rgba(0,0,0,0.72)),
url('background.jpg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
padding:0 8%;
position:relative;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:radial-gradient(circle at top right, rgba(0,0,0,0.35), transparent 35%);
}

.hero-content{
max-width:820px;
position:relative;
z-index:2;
}

.hero-tag{
display:inline-block;
padding:10px 18px;
border:1px solid rgba(255,255,255,0.25);
border-radius:50px;
font-size:13px;
letter-spacing:2px;
margin-bottom:28px;
backdrop-filter:blur(8px);
}

.hero h1{
font-size:74px;
line-height:1.05;
margin-bottom:26px;
font-weight:800;
}

.hero p{
font-size:22px;
line-height:1.7;
max-width:760px;
opacity:0.92;
}

.hero-buttons{
display:flex;
gap:18px;
margin-top:38px;
flex-wrap:wrap;
}

.primary-btn{
background:linear-gradient(90deg,#0f5e29,#d4b05d);
padding:16px 34px;
border-radius:50px;
text-decoration:none;
color:white;
font-weight:700;
transition:0.3s;
}

.primary-btn:hover{
transform:translateY(-3px);
}

.secondary-btn{
border:1px solid rgba(255,255,255,0.25);
padding:16px 34px;
border-radius:50px;
text-decoration:none;
color:white;
font-weight:700;
backdrop-filter:blur(10px);
}

.services-section{
padding:120px 8%;
background:#070707;
}

.section-title{
text-align:center;
margin-bottom:70px;
}

.section-title span{
color:#d4b05d;
font-weight:700;
letter-spacing:2px;
font-size:14px;
}

.section-title h2{
font-size:54px;
margin:20px 0;
}

.section-title p{
font-size:20px;
opacity:0.8;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:28px;
}

.service-card{
background:linear-gradient(180deg,rgba(255,255,255,0.05),rgba(255,255,255,0.02));
border:1px solid rgba(255,255,255,0.08);
padding:40px 34px;
border-radius:28px;
transition:0.35s;
backdrop-filter:blur(10px);
}

.service-card:hover{
transform:translateY(-10px);
border-color:#d4b05d;
box-shadow:0 0 30px rgba(212,176,93,0.12);
}

.service-icon{
font-size:46px;
margin-bottom:20px;
}

.service-card h3{
font-size:24px;
margin-bottom:16px;
}

.service-card p{
line-height:1.7;
opacity:0.85;
}

.business-section{
padding:120px 8%;
background:linear-gradient(135deg,#08140f,#061018);
}

.business-content{
display:grid;
grid-template-columns:1.1fr 1fr;
gap:40px;
align-items:center;
}

.left-box{
background:rgba(255,255,255,0.04);
padding:50px;
border-radius:30px;
border:1px solid rgba(255,255,255,0.08);
}

.mini-title{
color:#d4b05d;
font-weight:700;
letter-spacing:2px;
font-size:14px;
}

.left-box h2{
font-size:48px;
margin:24px 0;
line-height:1.1;
}

.left-box p{
font-size:19px;
line-height:1.8;
opacity:0.9;
margin-bottom:28px;
}

.left-box ul{
list-style:none;
}

.left-box li{
margin-bottom:14px;
font-size:18px;
}

.right-box{
display:flex;
flex-direction:column;
gap:24px;
}

.mini-card{
background:rgba(255,255,255,0.05);
padding:36px;
border-radius:24px;
border:1px solid rgba(255,255,255,0.08);
}

.mini-card h3{
font-size:28px;
margin-bottom:14px;
color:#d4b05d;
}

.mini-card p{
line-height:1.7;
opacity:0.88;
}

.final-section{
padding:140px 8%;
background:
linear-gradient(rgba(0,0,0,0.72),rgba(0,0,0,0.72)),
url('https://images.unsplash.com/photo-1497436072909-f5e4be8df4e0?q=80&w=1800&auto=format&fit=crop');
background-size:cover;
background-position:center;
position:relative;
text-align:center;
}

.final-overlay{
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(15,94,41,0.3),rgba(0,0,0,0.40));
}

.final-content{
position:relative;
z-index:2;
max-width:850px;
margin:auto;
}

.final-content h2{
font-size:62px;
margin-bottom:26px;
}

.final-content p{
font-size:22px;
line-height:1.8;
margin-bottom:40px;
}

footer{
padding:34px;
background:black;
text-align:center;
font-size:14px;
opacity:0.7;
}

@media(max-width:980px){

header{
padding:12px 18px;
gap:10px;
}

.logo-area img{
height:80px !important;
}

nav{
flex-wrap:wrap;
justify-content:center;
gap:14px;
}

nav a{
font-size:15px;
}

.cta-btn{
display:none;
}

.hero{
padding-top:40px;
}

.hero h1{
font-size:42px !important;
}

.hero p{
font-size:18px;
}

.business-content{
grid-template-columns:1fr;
}

.left-box h2{
font-size:36px;
}

.final-content h2{
font-size:44px;
}

.section-title h2{
font-size:42px;
}

}


.contact-section{
padding:80px 8%;
background:#07120d;
text-align:center;
}

.contact-box{
max-width:700px;
margin:auto;
background:rgba(255,255,255,0.05);
padding:50px;
border-radius:28px;
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(10px);
}

.contact-box h2{
font-size:42px;
margin-bottom:25px;
color:#d4b05d;
}

.contact-box p{
font-size:22px;
margin:14px 0;
line-height:1.7;
}

.logo-area img{height:90px!important}
.hero h1{font-size:62px!important;font-weight:800;letter-spacing:-1px}
.hero-highlight{background:linear-gradient(90deg,#fff,#d4b05d);-webkit-background-clip:text;-webkit-text-fill-color:transparent}

.service-card:nth-child(-n+5){border-color:rgba(212,176,93,.25)}

.contact-section{padding:120px 8%;background:linear-gradient(135deg,#061018,#0a1d15)}
.contact-header{text-align:center;margin-bottom:60px}
.contact-header span{color:#d4b05d;font-weight:700;letter-spacing:3px}
.contact-header h2{font-size:54px;margin:20px 0}
.contact-header p{max-width:800px;margin:auto}
.contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:30px}
.contact-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:28px;padding:45px 30px;text-align:center}
.contact-card:hover{transform:translateY(-10px);border-color:#d4b05d;box-shadow:0 0 35px rgba(212,176,93,.18)}
.contact-icon{font-size:48px;margin-bottom:18px}
.contact-card a{color:white;text-decoration:none}

.final-logo{width:340px;max-width:90%}
.whatsapp-float{position:fixed;right:25px;bottom:25px;width:70px;height:70px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;color:#fff;text-decoration:none;font-size:34px;z-index:99999}


.hero{
background-attachment:fixed;
}

.hero::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.25) 100%);
z-index:1;
}

.hero-content{
z-index:3;
position:relative;
}

.hero h1{
max-width:760px;
font-size:58px!important;
line-height:1.08;
}

@media(max-width:980px){
.hero h1{
font-size:42px!important;
}
}


.service-link{
text-decoration:none;
color:inherit;
display:block;
}

.service-link:hover{
text-decoration:none;
color:inherit;
}
