/* 29 June 2026 */


/*-------------------
Banner
--------------------*/

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

body{
    font-family:Arial, Helvetica, sans-serif;
}

.hero-banner{
    padding:60px 0;
    background:#ffffff;
}

.container{
    max-width:1300px;
    width:90%;
    margin:auto;
}

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

.hero-left{
    flex:1;
}

.hero-right{
    flex:1;
    text-align:right;
}

.hero-right img{
    width:100%;
    max-width:650px;
    display:block;
    margin-left:auto;
}

.sub-title{
    color:#00A4E4;
    font-size:20px;
    font-weight:600;
    letter-spacing:1px;
    display:block;
    margin-bottom:20px;
    text-transform:uppercase;
}

.hero-left h1{
    font-size:76px;
    line-height:1.05;
    color:#0A2B5E;
    font-weight:800;
    margin-bottom:25px;
}

.hero-left p{
    max-width:560px;
    color:#1d3557;
    font-size:28px;
    line-height:1.5;
    margin-bottom:40px;
}

.hero-btns{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    padding:18px 35px;
    border-radius:10px;
    font-size:24px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#00A4E4;
    color:#fff;
    border:2px solid #00A4E4;
}

.btn-primary:hover{
    background:#0088bf;
}

.btn-outline{
    border:2px solid #00A4E4;
    color:#0A2B5E;
    background:#fff;
}

.btn-outline:hover{
    background:#00A4E4;
    color:#fff;
}

/*-------------------
Tablet
--------------------*/

@media(max-width:1199px){

.hero-left h1{
    font-size:58px;
}

.hero-left p{
    font-size:22px;
}

.btn{
    font-size:20px;
    padding:16px 28px;
}

}

/*-------------------
Mobile
--------------------*/

@media(max-width:991px){

.hero-content{
    flex-direction:column-reverse;
    text-align:center;
}

.hero-right{
    text-align:center;
}

.hero-right img{
    margin:auto;
}

.hero-left p{
    max-width:100%;
}

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

.hero-left h1{
    font-size:48px;
}

.hero-left p{
    font-size:20px;
}

}

/*-------------------
Small Mobile
--------------------*/

@media(max-width:576px){

.hero-banner{
    padding:40px 0;
}

.sub-title{
    font-size:15px;
}

.hero-left h1{
    font-size:36px;
}

.hero-left p{
    font-size:17px;
}

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

.btn{
    width:100%;
    font-size:18px;
    padding:15px;
}

}