body{
    background:linear-gradient(135deg,#081d4d,#102b6a,#0f172a);
    color:#fff
    }
    
    .home-hero{
        min-height:85vh;
        display:flex;
        justify-content:center;
        align-items:center;padding:40px
    }
    
    .home-container{
        width:100%;
        max-width:1400px;
        display:grid;grid-template-columns:1fr 420px 1fr;
        gap:40px;
        align-items:center
    }
    
    .home-card{
        position:relative;
        height:600px;
        border-radius:30px;
        overflow:hidden;
        box-shadow:0 20px 50px rgba(0,0,0,.35);
        transition:.4s ease
    }
    
    .home-card:hover{
        transform:translateY(-10px) scale(1.02)
    }
    
    .home-card img{
        width:100%;
        height:100%;
        object-fit:cover;
        background:#081d4d;
    }
    
    .home-overlay{
        position:absolute;
        inset:0;
        background:linear-gradient(to top,rgba(0,0,0,.75),rgba(0,0,0,.15))}
    
    .home-card-content{
        position:absolute;
        bottom:40px;
        left:40px;
        right:40px;
        z-index:2
    }
    
    .home-card-content h2{
        font-size:42px;
        margin-bottom:15px
    }
    
    .home-card-content p{
        font-size:18px;
        line-height:1.6;
        color:#e6e6e6
    }
    
    .home-center{
        text-align:center;
        padding:40px 25px
    }
    
    .home-center h1{
        font-size:54px;
        line-height:1.1;
        margin-bottom:25px
    }
    
    .home-center p{
        font-size:20px;
        color:#d9d9d9;
        margin-bottom:35px;
        line-height:1.7
    }
    
    .cta-btn{
        display:inline-block;
        padding:18px 42px;
        background:#4db8ff;
        color:#fff;
        text-decoration:none;
        border-radius:14px;
        font-size:18px;
        font-weight:700;
        transition:.3s ease
    }
    
    .cta-btn:hover{
        background:#2a9fff;
        transform:scale(1.05)
    }
@media(max-width:1100px){
    
    .home-container{
        grid-template-columns:1fr
    }
    
    .home-center{
        order:-1
    }
    
    .home-card{
        height:450px
        
    }
    
    .home-center h1{
        font-size:42px
    }
}
    
@media(max-width:600px){
    
    .home-card-content h2{
        font-size:32px
    }
    
    .home-center h1{
        font-size:34px
    }
    
    .home-center p{
        font-size:18px
    }
        
}