

.home-hero-c{
    position:relative;
    overflow:hidden;
}

.home-hero-w{
    display:grid;
    grid-template-columns:1.15fr.85fr;
    gap:35px;
    align-items:center;
}

.quick-action-btns{
    padding-top: 15px;
    display:flex;
    gap:.8rem;
    flex-wrap:wrap;
}

.action-btn{
    display:inline-flex; 
    align-items:center; 
    gap:.6rem; padding:.85rem 1rem; 
    border:1px solid rgba(142,202,230, .45); 
    background: rgba(142,202,230, .12); 
    border-radius:.8rem; 
    font-weight:600; 
    text-decoration:none;
    color: white;
        cursor: pointer;
}

.action-btn:hover{
    background-color: rgba(142,202,230, .25);
}

.action-btn::after{ 
    content:"→"; 
    transition: transform .2s ease; 
}

.grid-container{
    border:1px solid #232a36; 
    border-radius: 10px; 
    background: rgba(142,202,230, .12); 
    padding:1rem; 
}

.quad-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:15px;
}

.gird-quadrant{
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    border:1px solid #232a36; 
    background: #161b24; 
}

 .gird-quadrant img{ 
    width:100%; 
    height:100%; 
    object-fit:cover; 
}

.offering-cards{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.offering-card{
    border:1px solid #232a36; 
    border-radius: 10px; 
    overflow:hidden; 
    background: #12161d;
    padding-bottom: 15px;
}

.offering-card img{
    aspect-ratio: 16/10; 
    object-fit: cover;
}

.offering-content{
    padding: 1.5rem 1rem 1.2rem; 
}

.offering-content h3{
    padding-top: 5px;
    margin:0 0 .35rem; 
    font-size: 30px;
}

.offering-content p{
    margin:0;
    color: white; 
    font-size: 20px;
    line-height: 1.5;
}

.card-header{
    display:inline-block; 
    font-size: 20px; 
    letter-spacing:.12em; 
    text-transform:uppercase; 
    color: white; 
    border:1px solid #232a36; 
    border-radius:999px; 
    padding:.10rem .55rem; 
    margin-bottom:.4rem;
}

.client-quotes{
    display:flex;
    overflow:auto hidden;
    scroll-snap-type: x mandatory;
    padding-bottom:1rem;
    gap: 35px;

}

.quote{
    scroll-snap-align:start;
    min-width: 320px;
    flex: 0 0 auto;
    border:1px solid #232a36;
    border-radius: 10px;
    background: #12161d;
    padding: 10px;
    width: 100%;
}

.quote p{
    margin: .2rem 0 0;
    color: white;
}

.login-wrapper{
    display: none;
}


.login-w{
    display: flex;
    justify-content: center;
    width: 40%;
    margin: 0 auto;
    flex-direction: column;
    border: 1px solid #232a36;
    color: white;
    background: #12161d;
    border-radius: 10px;
    padding: 20px;
}

.login-l{
    color: white;
    font-size: 18px;
    padding-bottom: 10px;
}

.login-form{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.input-field label{
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.input-field input{
    width: 100%;
    padding: 20px 32px;
    border: 1px solid #232a36;
    border-radius: 10px;
    background: #161b24;
    color:white;
    font: inherit;
}

.input-field input:focus{
    outline: 2px solid #8ecae6;
    outline-offset: 2px;
}

.login-btn{
    align-self: start;
    width: 100%;
    padding: 20px 32px;
    border: 1px solid #232a36;
    border-radius: 20px;
    background: #161b24;
    color:white;
    font-weight: 600;
    cursor: pointer;
}

.login-btn:hover{
    background-color: rgba(142,202,230, .25);
}

.back-btn{
    color: white;
    font-size: 20px;
    margin: 0 auto ;
    cursor: pointer;
}

.back-btn:hover{
    color: rgba(142,202,230, .25);
}


.login-form p{
    font-size: 15px;
}

.login-form a{
    color: #8ecae6;
    cursor: pointer;
}

.login-form a:hover{
    color: rgba(142,202,230, .25);
}

.signup-wrapper{
    display: none;
}

.signup-w{
    display: flex;
    justify-content: center;
    width: 40%;
    margin: 0 auto;
    flex-direction: column;
    border: 1px solid #232a36;
    color: white;
    background: #12161d;
    border-radius: 10px;
    padding: 20px;
}

.signup-form{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.signup-btn{
    align-self: start;
    width: 100%;
    padding: 20px 32px;
    border: 1px solid #232a36;
    border-radius: 20px;
    background: #161b24;
    color:white;
    font-weight: 600;
    cursor: pointer;
}

.signup-btn:hover{
    background-color: rgba(142,202,230, .25);
}