/* ==========================================
   CENTRAL ADMIN SOLUTION V3
   Premium Corporate Theme
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f8fa;
    color:#222;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/*==========================================
NAVBAR
==========================================*/

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
}

.navbar{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:rgba(5,18,34,.95);

    backdrop-filter:blur(8px);

    transition:.35s;

}

.navbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    width:100%;

}

.logo img{

    height:60px;

}

.nav-links{

    display:flex;

    gap:25px;
    align-items:center;

}

.nav-links a{

    color:#fff;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover,
.nav-links a.active{

    color:#D4AF37;

}

.quote-button{

    background:#D4AF37;

    color:#071C3A;

    padding:14px 28px;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}

.quote-button:hover{

    background:#fff;

    transform:translateY(-2px);

}

/*==========================================
HERO
==========================================*/

.hero{

    height:100vh;

    background:url("../images/hero-1.jpg") center center/cover no-repeat;

    position:relative;

    display:flex;

    align-items:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(2,18,36,.82),
    rgba(2,18,36,.82));

}

.hero-content{

    position:relative;

    z-index:2;

    color:white;

    max-width:760px;

}

.hero-content h5{

    color:#D4AF37;

    letter-spacing:3px;

    margin-bottom:18px;

    font-size:18px;

}

.hero-content h1{

    font-size:68px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;

}

.hero-content p{

    font-size:20px;

    color:#ddd;

    margin-bottom:45px;

}

/*==========================================
BUTTONS
==========================================*/

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.primary-btn{

    background:#D4AF37;

    color:#071C3A;

    padding:18px 38px;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}

.primary-btn:hover{

    background:#fff;

}

.secondary-btn{

    border:2px solid white;

    color:white;

    padding:18px 38px;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}

.secondary-btn:hover{

    background:white;

    color:#071C3A;

}

/*==========================================
SECTION TITLES
==========================================*/

section{

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h5{

    color:#D4AF37;

    letter-spacing:2px;

    margin-bottom:10px;

}

.section-title h2{

    font-size:42px;

    color:#071C3A;

}
/*==========================================
ABOUT SECTION
==========================================*/

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-text h3{
    font-size:36px;
    color:#071C3A;
    margin-bottom:20px;
}

.about-text p{
    margin-bottom:20px;
    color:#555;
    font-size:17px;
}

.about-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/*==========================================
FEATURE CARDS
==========================================*/

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #D4AF37;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.card i{
    font-size:52px;
    color:#D4AF37;
    margin-bottom:20px;
}

.card h3{
    color:#071C3A;
    margin-bottom:15px;
}

/*==========================================
PRODUCTS & SERVICES
==========================================*/

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:18px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:60px;
    color:#D4AF37;
    margin-bottom:25px;
}

.service-card h3{
    color:#071C3A;
    margin-bottom:18px;
    font-size:24px;
}

.service-card p{
    color:#666;
}

/*==========================================
INDUSTRIES
==========================================*/

.industries{
    background:#071C3A;
    color:white;
}

.industries .section-title h2{
    color:white;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.industry-box{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    padding:35px;
    border-radius:15px;
    text-align:center;
    transition:.35s;
}

.industry-box:hover{
    background:#D4AF37;
    color:#071C3A;
}

.industry-box i{
    font-size:48px;
    margin-bottom:20px;
}

.industry-box h3{
    font-size:22px;
}
/*==========================================
STATISTICS
==========================================*/

.statistics{
    background:#0A1F3C;
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-box{
    text-align:center;
    padding:40px 20px;
}

.stat-box h2{
    font-size:58px;
    color:#D4AF37;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
    color:#ddd;
}

/*==========================================
CONTACT SECTION
==========================================*/

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-card{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-card h3{
    color:#071C3A;
    margin-bottom:25px;
}

.contact-card p{
    margin-bottom:18px;
}

.contact-card i{
    color:#D4AF37;
    margin-right:12px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.contact-form textarea{
    min-height:160px;
    resize:vertical;
}

.contact-form button{
    background:#D4AF37;
    color:#071C3A;
    border:none;
    padding:16px 35px;
    border-radius:40px;
    cursor:pointer;
    font-weight:700;
    transition:.3s;
}

.contact-form button:hover{
    background:#071C3A;
    color:#fff;
}

/*==========================================
FOOTER
==========================================*/

footer{
    background:#051222;
    color:#ddd;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

footer h3{
    color:#D4AF37;
    margin-bottom:20px;
}

footer ul{
    list-style:none;
}

footer ul li{
    margin-bottom:10px;
}

footer ul li a{
    color:#ddd;
    transition:.3s;
}

footer ul li a:hover{
    color:#D4AF37;
}

footer hr{
    margin:40px 0 20px;
    border:none;
    height:1px;
    background:#2B3D55;
}

.copyright{
    text-align:center;
    color:#999;
}

/*==========================================
WHATSAPP BUTTON
==========================================*/

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:32px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:992px){

    .hero-content h1{
        font-size:50px;
    }

    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hero{
        height:auto;
        padding:150px 0 80px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        text-align:center;
    }

    .service-grid,
    .cards,
    .stats-grid,
    .footer-grid,
    .industry-grid{
        grid-template-columns:1fr;
    }

    .logo img{
        height:55px;
    }

}
/* ==========================================
MOBILE NAVIGATION
========================================== */

.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
}

.nav-menu{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:30px;
    flex:1;
}

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    .logo{
        flex:1;
    }

    .menu-toggle{
        margin-left:auto;
    }

    .navbar .container{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-wrap:wrap;
        width:100%;
    }

    .nav-menu{
        display:none;
        width:100%;
        flex-direction:column;
        text-align:center;
        margin-top:20px;
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-links{
        flex-direction:column;
        gap:20px;
        width:100%;
    }

    .quote-button{
        margin-top:20px;
        display:inline-block;
    }

    .logo img{
        height:55px;
    }
}