:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-b4536ff */```css
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#050505;
color:#fff;
overflow-x:hidden;
}

section{
padding:100px 8%;
}

/* HERO */

.hero{
display:flex;
justify-content:space-between;
align-items:center;
min-height:100vh;
gap:50px;
}

.hero-content{
max-width:650px;
}

.tag{
display:inline-block;
padding:10px 20px;
border:1px solid rgba(255,215,0,.3);
border-radius:30px;
background:rgba(255,215,0,.08);
color:#FFD700;
margin-bottom:20px;
}

.hero h1{
font-size:65px;
line-height:1.1;
margin-bottom:20px;
}

.hero p{
color:#bdbdbd;
font-size:18px;
line-height:1.8;
}

.hero-btns{
margin-top:30px;
display:flex;
gap:20px;
}

.btn-primary{
background:linear-gradient(135deg,#FFD700,#b8860b);
padding:15px 30px;
border-radius:50px;
color:#000;
font-weight:700;
text-decoration:none;
transition:.3s;
}

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

.btn-secondary{
border:1px solid #FFD700;
padding:15px 30px;
border-radius:50px;
color:#fff;
text-decoration:none;
transition:.3s;
}

.btn-secondary:hover{
background:#FFD700;
color:#000;
}

.stats{
display:flex;
gap:40px;
margin-top:50px;
}

.stat h2{
font-size:40px;
color:#FFD700;
}

.hero-image{
position:relative;
width:450px;
height:450px;
}

.circle-glow{
width:350px;
height:350px;
background:radial-gradient(circle,#FFD700,#000);
border-radius:50%;
filter:blur(60px);
opacity:.4;
position:absolute;
top:50px;
left:50px;
}

.floating-card{
position:absolute;
padding:20px 30px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,.1);
border-radius:20px;
top:100px;
left:0;
}

.card2{
right:0;
left:auto;
top:250px;
}

/* SECTION TITLES */

.section-title{
text-align:center;
font-size:48px;
margin-bottom:60px;
}

/* SERVICES */

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.service-card{
padding:35px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:25px;
transition:.4s;
}

.service-card:hover{
transform:translateY(-10px);
border-color:#FFD700;
}

.service-card h3{
margin-bottom:15px;
color:#FFD700;
}

/* PORTFOLIO */

.portfolio{
background:#050505;
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.project{
background:#111;
border-radius:24px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
transition:.35s ease;
height:auto;
}

.project:hover{
transform:translateY(-10px);
border-color:#FFD700;
box-shadow:0 15px 40px rgba(255,215,0,.12);
}

.project img{
width:100%;
aspect-ratio:16/9;
object-fit:cover;
display:block;
}

.project-overlay{
position:relative;
left:auto;
bottom:auto;
padding:25px;
}

.project-category{
display:inline-block;
padding:8px 16px;
border-radius:30px;
background:rgba(255,215,0,.08);
border:1px solid rgba(255,215,0,.25);
color:#FFD700;
font-size:12px;
font-weight:600;
margin-bottom:15px;
}

.project-overlay h3{
font-size:28px;
margin-bottom:10px;
}

.project-overlay p{
color:#bdbdbd;
line-height:1.7;
margin-bottom:25px;
}

.project-btn{
display:inline-block;
padding:14px 28px;
border-radius:50px;
background:linear-gradient(135deg,#FFD700,#b8860b);
color:#000;
font-weight:700;
text-decoration:none;
transition:.3s;
}

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

/* PROCESS */

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.step{
padding:40px;
background:#111;
border-radius:20px;
text-align:center;
}

.step span{
font-size:50px;
font-weight:700;
color:#FFD700;
display:block;
margin-bottom:15px;
}

/* TESTIMONIAL */

.testimonial-card{
max-width:800px;
margin:auto;
background:#111;
padding:40px;
border-radius:25px;
text-align:center;
}

/* CONTACT */

.contact form{
max-width:800px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.contact input,
.contact textarea{
background:#111;
border:none;
padding:18px;
border-radius:12px;
color:#fff;
}

.contact textarea{
height:150px;
}

.contact button{
background:linear-gradient(135deg,#FFD700,#b8860b);
border:none;
padding:18px;
border-radius:12px;
font-weight:700;
cursor:pointer;
}

/* FOOTER */

footer{
padding:30px;
text-align:center;
border-top:1px solid rgba(255,255,255,.1);
}

/* TABLET */

@media(max-width:991px){

.hero{
flex-direction:column;
text-align:center;
}

.hero h1{
font-size:45px;
}

.hero-btns,
.stats{
justify-content:center;
}

.portfolio-grid{
grid-template-columns:1fr;
}

.process-grid{
grid-template-columns:1fr 1fr;
}

}

/* MOBILE */

@media(max-width:768px){

.hero-image{
width:100%;
height:300px;
}

.floating-card{
font-size:14px;
padding:14px 18px;
}

.project{
border-radius:18px;
}

.project-overlay{
padding:20px;
}

.project-btn{
width:100%;
text-align:center;
}

}

@media(max-width:600px){

.hero h1{
font-size:36px;
}

.process-grid{
grid-template-columns:1fr;
}

.stats{
flex-direction:column;
gap:20px;
}

.hero-btns{
flex-direction:column;
}

.btn-primary,
.btn-secondary{
width:100%;
text-align:center;
}

.section-title{
font-size:34px;
}

}
```/* End custom CSS */