*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat',sans-serif;
}

body{
    background:#0a0a0a;
    color:white;
}

/* HERO */

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.bg-video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.logo{
    width:300px;
    margin-bottom:30px;
}

.hero h1{
    font-size:60px;
    font-weight:800;
    text-transform:uppercase;
    color:white;
    animation:glow 2s infinite alternate;
}

@keyframes glow{
    from{
        text-shadow:0 0 10px #00aaff;
    }

    to{
        text-shadow:0 0 30px #00aaff;
    }
}

/* ABOUT */

.about{
    display:flex;
    gap:50px;
    padding:100px 10%;
    align-items:center;
    flex-wrap:wrap;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:45px;
    margin-bottom:25px;
}

.about-text p{
    line-height:1.9;
    margin-bottom:30px;
    color:#cfcfcf;
}

.about-text ul li{
    margin-bottom:15px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

/* BRANDS */

.brands{
    padding:100px 10%;
    text-align:center;
}

.brands h2{
    font-size:50px;
    margin-bottom:60px;
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.brand-card{
    background:#111;
    padding:40px;
    border-radius:20px;
    transition:0.4s;
}

.brand-card:hover{
    transform:translateY(-10px);
}

.brand-card img{
    width:100%;
    height:180px;
    object-fit:contain;
}

.brand-card h3{
    margin-top:20px;
}

/* SERVICES */

.services{
    padding:100px 10%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-box{
    background:#111;
    padding:70px 30px;
    border-left:5px solid #00aaff;
    transition:0.4s;
}

.service-box:hover{
    background:#00aaff;
}

/* PROGRESS */

.progress{
    padding:100px 10%;
    text-align:center;
}

.progress h2{
    font-size:55px;
    margin-bottom:60px;
}

.process{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.step{
    background:#111;
    padding:30px 50px;
    border-radius:10px;
}

/* PROJECTS */

.projects{
    padding:100px 10%;
    display:flex;
    gap:50px;
    align-items:center;
    flex-wrap:wrap;
}

.project-image{
    flex:1;
}

.project-image img{
    width:100%;
    border-radius:20px;
}

.project-text{
    flex:1;
}

.project-text h2{
    font-size:50px;
    margin-bottom:30px;
}

.project-text p{
    line-height:1.9;
    color:#cfcfcf;
    margin-bottom:30px;
}

.project-list{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.project-list span{
    background:#00aaff;
    padding:12px 20px;
    border-radius:30px;
}

/* CONTACT */

.contact{
    padding:100px 10%;
    text-align:center;
}

.contact h2{
    font-size:50px;
    margin-bottom:40px;
}

form{
    max-width:700px;
    margin:auto;
}

input,
textarea{
    width:100%;
    padding:20px;
    margin-bottom:20px;
    background:#111;
    border:none;
    color:white;
}

button{
    padding:18px 40px;
    border:none;
    background:#00aaff;
    color:white;
    font-size:18px;
    cursor:pointer;
}

/* RESPONSIVE */

@media(max-width:768px){

.hero h1{
    font-size:35px;
}

.about,
.projects{
    flex-direction:column;
}

}
.contact-email{
    color:#00aaff;
    font-size:20px;
    margin-bottom:30px;
    letter-spacing:1px;
}