/* AI GLOBAL EXPORTS - Premium Theme */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8fbff;
    color:#222;
    line-height:1.6;
}

/* Header */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:#062b5b;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo h2{
    color:#FDB813;
    font-size:32px;
}

.logo p{
    color:#fff;
    font-size:14px;
}

nav a{
    text-decoration:none;
    color:white;
    margin-left:30px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#FDB813;
}

/* Hero */

.hero{
    height:100vh;
    background:url("images/hero.jpg") center center/cover no-repeat;
    position:relative;
}

.overlay{
    background:rgba(0,33,71,.72);
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
}

.hero-content{
    width:90%;
    max-width:1200px;
    margin:auto;
    color:white;
}

.hero-content h4{
    color:#FDB813;
    font-size:22px;
    margin-bottom:10px;
}

.hero-content h1{
    font-size:72px;
    font-weight:700;
}

.hero-content h2{
    font-size:34px;
    margin-top:10px;
    margin-bottom:20px;
}

.hero-content p{
    max-width:650px;
    font-size:20px;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    background:#FDB813;
    color:#062b5b;
    padding:16px 35px;
    text-decoration:none;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    background:white;
    transform:translateY(-3px);
}

/* Sections */

section{
    padding:90px 0;
}

section h2{
    text-align:center;
    font-size:40px;
    color:#062b5b;
    margin-bottom:40px;
}

/* About */

#about{
    background:white;
}

#about p{
    max-width:900px;
    margin:auto;
    text-align:center;
    font-size:18px;
}

/* Products */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:18px;
    text-align:center;
    padding:40px 25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    cursor:pointer;
}

.card:hover{
    transform:translateY(-12px);
}

.card{
    font-size:55px;
}

.card h3{
    margin-top:20px;
    color:#062b5b;
    font-size:24px;
}

/* Markets */

#markets{
    background:#eef5fc;
}

#markets p{
    text-align:center;
    font-size:22px;
}

/* Contact */

#contact{
    background:#062b5b;
    color:white;
}

#contact h2{
    color:#FDB813;
}

#contact p{
    text-align:center;
    margin-bottom:12px;
    font-size:18px;
}

#contact .btn{
    display:block;
    width:230px;
    margin:35px auto 0;
    text-align:center;
}

/* Footer */

footer{
    background:#02162f;
    color:white;
    text-align:center;
    padding:25px;
}

/* Mobile */

@media(max-width:768px){

header .container{
    flex-direction:column;
}

nav{
    margin-top:15px;
}

nav a{
    display:block;
    margin:12px 0;
}

.hero-content h1{
    font-size:42px;
}

.hero-content h2{
    font-size:22px;
}

.hero-content p{
    font-size:17px;
}

section h2{
    font-size:30px;
}

.cards{
    grid-template-columns:1fr;
}

}
.stats{
background:#062b5b;
padding:80px 0;
color:white;
}

.stats .container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
text-align:center;
}

.stat-box h2{
font-size:55px;
color:#FDB813;
}

.stat-box p{
font-size:20px;
}

#why{
padding:90px 8%;
background:#fff;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:50px;
}

.why-card{
background:#f4f8ff;
padding:35px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.why-card:hover{
transform:translateY(-8px);
}

#quote{
padding:90px 8%;
background:#eef6ff;
}

form{
max-width:700px;
margin:auto;
}

form input,
form textarea{

width:100%;
padding:16px;
margin:12px 0;
border-radius:8px;
border:1px solid #ddd;
font-size:16px;

}

form button{

width:100%;
padding:18px;
background:#FDB813;
border:none;
font-size:18px;
font-weight:bold;
cursor:pointer;
border-radius:8px;

}