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

body{

    background:#050505;
    color:white;
    font-family:'Poppins',sans-serif;

}

header{

    position:absolute;
    width:100%;
    z-index:1000;

}

.container{

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 40px;

}

.logo img{

    height:85px;

}

nav{

    display:flex;

    gap:30px;

}

nav a{

    color:white;

    text-decoration:none;

    font-size:15px;

    transition:.3s;

}

nav a:hover{

    color:#C8A24B;

}

.cta-button{

    text-decoration:none;

    border:2px solid #C8A24B;

    color:white;

    padding:12px 24px;

    border-radius:5px;

    transition:.3s;

}

.cta-button:hover{

    background:#C8A24B;

    color:black;

}

.hero{

    height:100vh;

    background:url("images/hero.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

}

.overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.65);

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:900px;

    padding:20px;

}

.hero h4{

    color:#C8A24B;

    letter-spacing:2px;

    margin-bottom:20px;

}

.hero h1{

    font-size:68px;

    line-height:1.1;

    margin-bottom:25px;

    font-family:'Montserrat',sans-serif;

}

.hero p{

    font-size:22px;

    color:#d5d5d5;

    margin-bottom:45px;

}

.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.primary{

    background:#C8A24B;

    color:black;

    padding:18px 40px;

    text-decoration:none;

    font-weight:bold;

}

.secondary{

    border:2px solid white;

    color:white;

    padding:18px 40px;

    text-decoration:none;

}
html{
    scroll-behavior:smooth;
}

#navbar{
    position:fixed;
    width:100%;
    transition:.35s;
}

.logo img{
    height:95px;
}

.eyebrow{

    color:#C8A24B;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:25px;

    font-weight:600;

}

.hero-text{

    max-width:850px;

    margin:auto;

}

.trust{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin-top:60px;

    font-size:14px;

    color:#C8A24B;

    text-transform:uppercase;

}

.about{

    padding:120px 0;

    background:#0d0d0d;

}

.about-container{

    max-width:900px;

    margin:auto;

}

.about h2{

    font-size:48px;

    margin-bottom:35px;

    color:white;

    font-family:Montserrat;

}

.about p{

    color:#d0d0d0;

    font-size:20px;

    line-height:1.8;

    margin-bottom:25px;

}
/* ==========================
   Industries Section
========================== */

.industries{

    padding:120px 8%;
    background:#050505;

}

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title p{

    color:#C8A24B;
    letter-spacing:3px;
    font-size:14px;
    margin-bottom:15px;

}

.section-title h2{

    font-size:52px;
    font-family:Montserrat;
    margin-bottom:20px;

}

.section-title span{

    display:inline-block;
    width:90px;
    height:3px;
    background:#C8A24B;

}

.industry-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;

}

.industry-card{

    background:#111;
    padding:40px;
    border:1px solid rgba(200,162,75,.15);

    border-radius:14px;

    transition:.35s;

}

.industry-card:hover{

    transform:translateY(-8px);

    border-color:#C8A24B;

    box-shadow:0 15px 40px rgba(200,162,75,.18);

}

.industry-card h3{

    color:#fff;

    margin-bottom:18px;

    font-size:24px;

}

.industry-card p{

    color:#bdbdbd;

    line-height:1.7;

}
/* ==========================
   FEATURES
========================== */

.features{

    padding:120px 8%;

    background:#0d0d0d;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.feature{

    text-align:center;

    padding:45px 30px;

    background:#151515;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.feature:hover{

    transform:translateY(-10px);

    border-color:#C8A24B;

    box-shadow:0 20px 45px rgba(0,0,0,.45);

}

.icon{

    font-size:56px;

    margin-bottom:25px;

}

.feature h3{

    font-size:26px;

    margin-bottom:18px;

    color:white;

}

.feature p{

    color:#bbbbbb;

    line-height:1.8;

}
/* ==========================
   SHOWCASE
========================== */

.showcase{

    padding:120px 8%;

    background:#050505;

}

.showcase-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.showcase-card{

    height:450px;

    border-radius:18px;

    overflow:hidden;

    position:relative;

    cursor:pointer;

    transition:.4s;

    background:linear-gradient(135deg,#222,#111);

}

.showcase-card:hover{

    transform:translateY(-8px);

}

.showcase-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(0,0,0,.88),rgba(0,0,0,.2));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

}

.showcase-overlay h3{

    font-size:34px;

    margin-bottom:15px;

}

.showcase-overlay p{

    color:#ddd;

    line-height:1.8;

}

.real-estate{

    border:1px solid rgba(200,162,75,.25);

}

.business{

    border:1px solid rgba(200,162,75,.25);

}

.drone{

    border:1px solid rgba(200,162,75,.25);

}

@media(max-width:900px){

.showcase-grid{

grid-template-columns:1fr;

}

}