/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0
*/

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

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

html,
body{
    width:100%;
    overflow-x:hidden;
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
    color:#222;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

/* ================= REMOVE GENERATEPRESS SPACING ================= */

.home .site-header{
    display:none;
}

.home #masthead{
    display:none;
}

.home .main-navigation{
    display:none;
}

.home .inside-header{
    display:none;
}

.site,
.site-content,
.site-main,
.content-area,
.inside-article,
.entry-content{

    width:100%;
    margin:0 !important;
    padding:0 !important;

}

.separate-containers .inside-article{
    padding:0 !important;
}

.custom-home{
    width:100%;
}

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

.custom-header{

    width:100%;
    height:95px;
    background:#fff;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;

}

.header-inner{

    max-width:1400px;
    margin:auto;

    height:95px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 40px;

}

.site-logo img{

    height:58px;

}

.site-nav{

    display:flex;
    align-items:center;
    gap:38px;

}

.site-nav a{

    color:#17233d;
    font-size:15px;
    font-weight:700;
    position:relative;

}

.site-nav a:hover{

    color:#1476d1;

}

.site-nav a.active{

    color:#1476d1;

}

.site-nav a.active:after{

    content:"";

    position:absolute;

    left:0;
    bottom:-14px;

    width:100%;
    height:3px;

    background:#1476d1;

}

.search-icon{

    font-size:24px;
    cursor:pointer;

}

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

.hero{
    position:relative;
    width:100%;
    min-height:720px;
    overflow:hidden;
    background:linear-gradient(135deg,#0d5ea5 0%, #2b8be8 100%);
}

.hero-wrapper{

    width:100%;
    max-width:1400px;

    margin:0 auto;

    min-height:720px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    position:relative;
    z-index:2;

    padding:0 40px;
}

.hero-left{

    width:48%;
    color:#fff;
    z-index:3;

}

.hero-badge{

    display:inline-block;

    padding:10px 20px;

    background:rgba(255,255,255,.15);

    border-radius:30px;

    margin-bottom:25px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

}

.hero-left h1{

    font-size:72px;

    line-height:1.08;

    font-weight:800;

    margin-bottom:30px;

}

.hero-left p{

    font-size:22px;

    line-height:1.7;

    color:#eef5ff;

    margin-bottom:45px;

    max-width:600px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    display:inline-block;

    background:#fff;

    color:#156fc7;

    padding:18px 38px;

    border-radius:50px;

    font-weight:700;

}

.btn-secondary{

    display:inline-block;

    border:2px solid #fff;

    color:#fff;

    padding:18px 38px;

    border-radius:50px;

}

.hero-right{

    position:absolute;

    right:0;
    top:0;

    width:48%;
    height:100%;

}

.hero-right img{

    width:100%;
    height:720px;

    object-fit:cover;

    object-position:center;

    border-radius:30px 0 0 30px;

}

/* Soft fade between text and image */

.hero-right::before{

    content:"";

    position:absolute;

    left:-120px;
    top:0;

    width:180px;
    height:100%;

    background:linear-gradient(to right,
        rgba(13,94,165,1) 0%,
        rgba(13,94,165,.85) 30%,
        rgba(13,94,165,.35) 70%,
        rgba(13,94,165,0) 100%);

    z-index:2;

}