*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    line-height:1.6;
    color:#333;
    background:#fff;
}

.container{
    width:90%;
    max-width:1250px;
    margin:auto;
}

/* HEADER */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:linear-gradient(90deg,#b8c6d6,#eef5fd,#646f7a);
    box-shadow:0 4px 18px rgba(0,0,0,.08);
}

header .container{
    height:72px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width: 110px;
    height:auto;
    display:block;
    object-fit:contain;
}

nav ul{
    display:flex;
    align-items:center;
    gap:42px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:#090d14;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

nav a:hover,
nav a.active{
    color:#C89B3C;
}

/* HERO */
.hero{
    height:100vh;
    background:url('../images/bg1.png') center/cover no-repeat;
    padding-top:72px;
}

.overlay{
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:rgba(255,255,255,0.04);
}

.hero-content{
    max-width:850px;
    padding:20px;
}

.hero-content h1{
    color:#fff;
    font-size:70px;
    line-height:1.1;
    margin-bottom:20px;
    text-shadow:0 4px 18px rgba(0,0,0,.35);
}

.hero-content p{
    color:#f8fafc;
    font-size:24px;
    margin-bottom:30px;
    text-shadow:0 3px 12px rgba(0,0,0,.25);
}

.btn{
    display:inline-block;
    background:#C89B3C;
    padding:15px 36px;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#1E3A5F;
    transform:translateY(-3px);
}

/* SECTIONS */
section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
    font-size:40px;
    color:#1E3A5F;
}

/* ABOUT */
.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:14px;
}

.about h2{
    font-size:41px;
    color:#1E3A5F;
    margin-bottom:15px;
}

.about p{
    font-size:17px;
    color:#555;
    margin-bottom:20px;
}

.about ul{
    list-style:none;
}

.about li{
    margin-bottom:10px;
    color:#333;
}

/* PROJECTS */
.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card h3{
    padding:18px 18px 8px;
    color:#1E3A5F;
}

.card p{
    padding:0 18px 22px;
    color:#666;
}

/* SERVICES */
#services{
    background:#f6f9fc;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    text-align:center;
}

.service-grid div{
    background:#fff;
    padding:35px 20px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.07);
}

.service-grid i{
    font-size:48px;
    color:#C89B3C;
    margin-bottom:15px;
}

.service-grid h3{
    color:#1E3A5F;
}

/* CONTACT */
#contact{
    padding:75px 0;
    background:#f6f8fb;
}

.contact-form{
    max-width:780px;
    margin:25px auto 0;
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 12px 35px rgba(0,0,0,.07);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px 16px;
    margin-bottom:18px;
    border:1px solid #d9e1ec;
    border-radius:8px;
    font-size:15px;
    outline:none;
}

.contact-form textarea{
    height:130px;
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#C89B3C;
}

.contact-form button{
    width:220px;
    padding:14px;
    border:none;
    border-radius:8px;
    background:#C89B3C;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#a77d27;
}

/* FOOTER */
footer{
    background:#0f172a;
    color:#fff;
    text-align:center;
    padding:30px 20px;
    font-size:15px;
}

/* RESPONSIVE */
@media(max-width:768px){
    header .container{
        height:68px;
    }

    .logo img{
        width:130px;
    }

    nav ul{
        display:none;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:18px;
    }

    .about,
    .cards,
    .service-grid,
    .form-row{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:32px;
    }
}
.projects-section{
    background:#071421;
    padding:95px 0;
}

.projects-heading{
    text-align:center;
    margin-bottom:45px;
}

.projects-heading span{
    color:#C89B3C;
    letter-spacing:4px;
    font-size:14px;
    font-weight:700;
}

.projects-heading h2{
    color:#fff;
    font-size:42px;
    margin:12px 0;
}

.projects-heading p{
    color:#cbd5e1;
    max-width:680px;
    margin:auto;
    font-size:17px;
}

.project-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.project-card{
    background:#0d1f33;
    border:1px solid rgba(200,155,60,.35);
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,.25);
    transition:.35s;
}

.project-card:hover{
    transform:translateY(-8px);
    border-color:#C89B3C;
}

.project-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.project-info{
    padding:22px;
}

.project-info h3{
    color:#fff;
    font-size:21px;
    margin-bottom:10px;
}

.project-info p{
    color:#cbd5e1;
    font-size:15px;
    line-height:1.7;
    margin-bottom:14px;
}

.project-info a{
    color:#C89B3C;
    text-decoration:none;
    font-weight:700;
}

@media(max-width:992px){
    .project-cards{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .project-cards{
        grid-template-columns:1fr;
    }

    .projects-heading h2{
        font-size:32px;
    }
}
.premium-footer{
    background:#061321;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.premium-footer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#C89B3C,#F1D27A,#C89B3C);
}

.footer-main{
    width:90%;
    max-width:1350px;
    margin:auto;
    display:grid;
    grid-template-columns:1.25fr 1fr 1.35fr;
    gap:45px;
    padding:75px 0 55px;
}

.footer-box{
    padding:0 38px;
}

.footer-box:not(:last-child){
    border-right:1px solid rgba(200,155,60,.35);
}

.brand-box{
    text-align:center;
}

.brand-box img{
    width:150px;
    background:#fff;
    padding:8px;
    border-radius:10px;
    margin-bottom:18px;
}

.brand-box h2{
    color:#fff;
    font-size:30px;
    letter-spacing:2px;
}

.tagline{
    color:#F1D27A;
    font-size:22px;
    margin:20px 0;
    font-family:Georgia,serif;
}

.brand-box p,
.office-box p{
    color:#d6dde8;
    line-height:1.8;
    font-size:15px;
}

.brand-box h4{
    color:#C89B3C;
    margin:28px 0 14px;
    letter-spacing:1px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:14px;
}

.social-icons a{
    width:44px;
    height:44px;
    border:1px solid #C89B3C;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#C89B3C;
    transform:translateY(-5px);
}

.footer-icon{
    color:#C89B3C;
    font-size:34px;
    margin-bottom:16px;
}

.footer-box h3{
    color:#fff;
    font-size:26px;
    margin-bottom:28px;
    position:relative;
    text-transform:uppercase;
    letter-spacing:1px;
}

.footer-box h3::after{
    content:"";
    width:45px;
    height:3px;
    background:#C89B3C;
    position:absolute;
    left:0;
    bottom:-10px;
}

.links-box ul{
    list-style:none;
    margin-top:18px;
}

.links-box ul li{
    border-bottom:1px dashed rgba(255,255,255,.12);
}

.links-box ul li a{
    display:block;
    color:#d6dde8;
    text-decoration:none;
    padding:12px 0;
    transition:.3s;
}

.links-box ul li a::before{
    content:"›";
    color:#C89B3C;
    margin-right:12px;
    font-size:22px;
}

.links-box ul li a:hover{
    color:#F1D27A;
    padding-left:8px;
}

.footer-btn{
    margin-top:28px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border:1px solid #C89B3C;
    border-radius:8px;
    color:#F1D27A;
    text-decoration:none;
    font-weight:700;
    text-transform:uppercase;
    transition:.3s;
}

.footer-btn:hover{
    background:#C89B3C;
    color:#061321;
}

.office-block{
    margin-bottom:36px;
    padding-bottom:30px;
    border-bottom:1px solid rgba(200,155,60,.35);
}

.office-block:last-child{
    border-bottom:none;
    padding-bottom:0;
    margin-bottom:0;
}

.office-box p{
    margin:14px 0;
}

.office-box p i{
    color:#C89B3C;
    margin-right:10px;
}

.footer-features{
    border-top:1px solid rgba(200,155,60,.45);
    border-bottom:1px solid rgba(200,155,60,.45);
    width:100%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding:28px 5%;
    gap:25px;
}

.footer-features div{
    display:flex;
    gap:16px;
    align-items:center;
}

.footer-features i{
    color:#C89B3C;
    font-size:34px;
}

.footer-features h4{
    color:#fff;
    text-transform:uppercase;
    font-size:16px;
    margin-bottom:4px;
}

.footer-features p{
    color:#bfc8d6;
    font-size:14px;
}

.footer-bottom{
    text-align:center;
    padding:22px;
    color:#cbd5e1;
    font-size:14px;
}

@media(max-width:900px){
    .footer-main{
        grid-template-columns:1fr;
    }

    .footer-box{
        border-right:none!important;
        border-bottom:1px solid rgba(200,155,60,.25);
        padding:35px 0;
    }

    .footer-features{
        grid-template-columns:1fr;
    }
}