.hero-banner{
    background: linear-gradient(to right,#35b6ff,#143547);
    color:white;
    padding:60px 20px;
}
.hero-container{
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    justify-content: space-between;
    max-width:1200px;
    margin: auto;

}
.hero-text{
    flex: 1 1 50%;
    padding: 20px;
}
.hero-text h1{
    font-size: 36px;
}
.hero-image{
    flex:1 1 45%;
    text-align: center;
}
.hero-image img{
    max-width: 100%;
    height:auto;
    border-radius: 10px;
    object-fit: cover;
    clip-path: polygon(
    40px 0%,          /* top-left cut */
    100% 0%,          /* top-right corner */
    100% calc(100% - 40px), /* bottom-right cut start */
    calc(100% - 40px) 100%, /* bottom-right cut end */
    0% 100%,          /* bottom-left corner */
    0% 40px           /* top-left cut end */
  );
}
.cta-buttons{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 60px;
    
}
.cta-buttons .btn{
    background-color: #023e8a;
    color: #fff;
    padding:12px 24px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 12px black;
}
.cta-buttons .btn:hover{
    background-color:black;
    box-shadow:0 10px 12px #02377d;
    transform: translateY(-4px);
}