/* ===========================================
   GREAT BELLO INVESTMENT
   style.css - Part 1
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#333;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#081f4d;
    color:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:60px;
    height:60px;
    border-radius:50%;
}

.logo h2{
    font-size:24px;
    color:#ffd700;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#ffd700;
}

.call-btn{
    background:#ffd700;
    color:#081f4d;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}

.hero{
    background:linear-gradient(rgba(8,31,77,.85),rgba(8,31,77,.85)),
    url('../images/hero.jpg') center/cover;
    min-height:90vh;
    display:flex;
    align-items:center;
}

.hero-content{
    color:#fff;
    text-align:center;
}

.hero h1{
    font-size:55px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    max-width:900px;
    margin:auto;
}

.hero-buttons{
    margin-top:40px;
}

.btn,
.btn2{
    display:inline-block;
    padding:15px 35px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    margin:10px;
}

.btn{
    background:#ffd700;
    color:#081f4d;
}

.btn2{
    background:#25D366;
    color:#fff;
}

#about{
    padding:80px 0;
}

#about h2{
    text-align:center;
    color:#081f4d;
    margin-bottom:30px;
    font-size:40px;
}

#about p{
    text-align:center;
    max-width:900px;
    margin:auto;
    font-size:18px;
}

.about-boxes{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    text-align:center;
}

.box h3{
    color:#081f4d;
    margin-bottom:15px;
}

.box:hover{
    transform:translateY(-10px);
    transition:.4s;
}

@media(max-width:768px){

header .container{
    flex-direction:column;
}

nav ul{
    flex-direction:column;
    text-align:center;
}

nav ul li{
    margin:10px 0;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:18px;
}

.logo h2{
    font-size:18px;
}

}
#services{
    padding:80px 0;
    background:#eef3fb;
}

#services h2{
    text-align:center;
    color:#081f4d;
    font-size:40px;
    margin-bottom:40px;
}