/* =========================
RESET
========================= */

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

body{
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    background:#F5F7FA;
    color:#1A1A1A;
    line-height:1.6;
}

.container{
    width:92%;
    max-width:1280px;
    margin:auto;
}

/* =========================
HEADER
========================= */

header{
    background:linear-gradient(
        90deg,
        #021233,
        #082c73,
        #021233
    );
    border-bottom:1px solid rgba(255,255,255,.1);
    position:sticky;
    top:0;
    z-index:100;
}

.nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:50px;
    min-height:120px;
}

.logo{
    height:120px;
    width:auto;
}

/* =========================
MENU
========================= */

nav{
    display:flex;
    align-items:center;
    gap:35px;
}

nav a{
    color:#FFFFFF;
    text-decoration:none;
    font-weight:600;
    font-size:1rem;
    transition:0.3s;
}

nav a:hover{
    color:#00AEEF;
}

/* =========================
HERO
========================= */

.hero{
    padding:80px 0;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-left{
    flex:1;
}

.hero-left h1{
    font-size:3.2rem;
    line-height:1.15;
    margin-bottom:25px;
    color:#111827;
}

.hero-left p{
    font-size:1.1rem;
    line-height:1.9;
    margin-bottom:35px;
    color:#4B5563;
}

.hero-buttons{
    display:flex;
}

.btn{
    display:inline-block;
    background:#00AEEF;
    color:#FFFFFF;
    text-decoration:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#0095d1;
}

.hero-right{
    flex:1;
}

.hero-image{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

/* =========================
PAGE SECTIONS
========================= */

.page-section{
    padding:80px 0;
    min-height:60vh;
}

.page-section h1{
    font-size:3rem;
    margin-bottom:25px;
    color:#111827;
}

.page-section h3{
    margin-top:30px;
    margin-bottom:12px;
    color:#0F4C81;
}

.page-section p{
    font-size:1.05rem;
    line-height:1.9;
    margin-bottom:20px;
}

/* =========================
SERVICES
========================= */

.services{
    padding:50px 0 90px;
}

.services h2{
    text-align:center;
    font-size:2.3rem;
    margin-bottom:50px;
    color:#111827;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:28px;
}

.card{
    background:#FFFFFF;
    border:1px solid #E5E7EB;
    border-radius:14px;
    padding:35px;
    transition:all .3s ease;
    box-shadow:0 5px 15px rgba(0,0,0,.04);
}

.card:hover{
    border-color:#00AEEF;
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.card h3{
    margin-bottom:15px;
    color:#111827;
    font-size:1.25rem;
}

.card p{
    color:#4B5563;
    line-height:1.8;
}

/* =========================
CONTACT FORM
========================= */

.contact-box{
    max-width:800px;
    margin-top:40px;
}

.contact-box form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-box label{
    font-weight:600;
    color:#111827;
}

.contact-box input,
.contact-box textarea{
    padding:14px;
    border:1px solid #D1D5DB;
    border-radius:8px;
    font-size:1rem;
    font-family:inherit;
}

.contact-box input:focus,
.contact-box textarea:focus{
    outline:none;
    border-color:#00AEEF;
}

.contact-box button{
    background:#00AEEF;
    color:#FFFFFF;
    border:none;
    padding:14px 24px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-box button:hover{
    background:#0095d1;
}

/* =========================
FOOTER
========================= */

footer{
    background:linear-gradient(
        90deg,
        #021233,
        #082c73,
        #021233
    );
    text-align:center;
    padding:60px 20px;
}

.footer-brand{
    font-size:1.6rem;
    font-weight:700;
    color:#FFFFFF;
    margin-bottom:15px;
}

footer p{
    color:#D1D5DB;
    margin-bottom:12px;
}

/* =========================
MOBILE
========================= */

@media(max-width:900px){

    .hero-content{
        flex-direction:column;
    }

    .hero-left h1{
        font-size:2.3rem;
        text-align:center;
    }

    .hero-left p{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .nav{
        flex-direction:column;
        gap:15px;
        padding:20px 0;
    }

    .logo{
        height:90px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .grid{
        grid-template-columns:1fr;
    }
}
.page-section a{
    color:#00AEEF;
    font-weight:600;
    text-decoration:none;
}

.page-section a:hover{
    text-decoration:underline;
}
/* =========================
CTA BANNER
========================= */

.cta-banner{
    background:linear-gradient(
        90deg,
        #021233,
        #082c73,
        #021233
    );
    color:#ffffff;
    padding:40px;
    border-radius:16px;
    margin:40px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.cta-banner h2{
    color:#ffffff;
    margin-bottom:15px;
}

.cta-banner p{
    color:#D1D5DB;
    margin-bottom:0;
}
/* =========================
NEWSLETTER SUBSCRIBE
========================= */

.subscribe-box{
    margin-top:60px;
    padding:40px;
    background:#F8FAFC;
    border:1px solid #E5E7EB;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.subscribe-box h2{
    margin-bottom:15px;
    color:#111827;
}

.subscribe-box p{
    color:#4B5563;
    margin-bottom:25px;
}

.subscribe-box form{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.subscribe-box input{
    flex:1;
    min-width:250px;
    padding:14px;
    border:1px solid #D1D5DB;
    border-radius:8px;
    font-size:1rem;
}

.subscribe-box button{
    background:#00AEEF;
    color:#ffffff;
    border:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.subscribe-box button:hover{
    background:#0095d1;
}

.subscribe-note{
    margin-top:15px;
    font-size:0.9rem;
    color:#6B7280;
}
/* Make button text darker */

.btn{
color:#021233 !important;
font-weight:700;
}

.cta-button{
color:#021233 !important;
font-weight:700;
}
