
/*
|--------------------------------------------------------------------------
| VALORABANK
| FILE : assets/css/index.css
| THEME : PREMIUM FINTECH REVOLUT STYLE
|--------------------------------------------------------------------------
*/

:root{

    --primary:#081F4D;
    --primary-light:#0E2D70;
    --secondary:#FFD447;
    --accent:#FFB56A;
    --success:#7DBE8A;
    --dark:#0F172A;
    --light:#F8FAFC;
    --gray:#64748B;

    --gradient-primary:linear-gradient(
        135deg,
        #081F4D 0%,
        #103A8C 100%
    );

    --gradient-gold:linear-gradient(
        135deg,
        #FFD447 0%,
        #FFB56A 100%
    );

    --gradient-hero:linear-gradient(
        135deg,
        rgba(8,31,77,.95),
        rgba(16,58,140,.85)
    );

    --shadow-sm:0 10px 25px rgba(0,0,0,.05);
    --shadow-md:0 15px 40px rgba(0,0,0,.08);
    --shadow-lg:0 25px 70px rgba(0,0,0,.12);

    --radius:24px;
    --radius-lg:32px;

}

body{

    background:#ffffff;
    overflow-x:hidden;

}

/* ==================================================
   COMMON
================================================== */

.section-padding{

    padding:110px 0;

}

.section-title{

    font-size:3rem;
    font-weight:800;
    color:var(--primary);
    margin-bottom:20px;

}

.section-subtitle{

    max-width:750px;
    margin:auto;
    color:var(--gray);
    font-size:1.05rem;
    line-height:1.9;

}

.btn-valorabank{

    background:var(--gradient-gold);
    color:var(--primary);
    border:none;
    border-radius:60px;
    padding:15px 35px;
    font-weight:700;
    transition:.4s;

}

.btn-valorabank:hover{

    transform:translateY(-5px);
    box-shadow:var(--shadow-md);

}

.btn-outline-valorabank{

    border:2px solid #ffffff;
    color:#ffffff;
    border-radius:60px;
    padding:15px 35px;
    font-weight:700;
    transition:.4s;

}

.btn-outline-valorabank:hover{

    background:#ffffff;
    color:var(--primary);

}

/* ==================================================
   HERO
================================================== */

.hero-section{

    /* reduce vertical footprint while keeping visual impact */
    min-height:85vh;
    padding:40px 0;

    position:relative;

    display:flex;
    align-items:center;

    background:
    var(--gradient-hero),
    url('../images/home/hero-bg.png');

    background-size:cover;
    background-position:center;

    overflow:hidden;

}

.hero-section::before{

    content:'';

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-100px;
    top:-100px;

}

.hero-badge{

    display:inline-block;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    margin-bottom:20px;

    font-size:0.95rem;

}

.hero-title{

    color:#fff;

    font-size:3.6rem;

    font-weight:800;

    line-height:1.12;

}

.hero-description{

    color:#dbe4ff;

    font-size:1rem;

    line-height:1.6;

    margin:20px 0 18px 0;

}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

/* slightly smaller buttons inside the hero to reduce visual weight */
.hero-section .btn-valorabank,
.hero-section .btn-outline-valorabank{

    padding:12px 28px;
    font-size:0.95rem;

}

/* reduce floating card sizes to better fit the hero */
.floating-card{

    width:260px;
    padding:18px;

}

.floating-card.card-1{

    right:40px;
    top:140px;

}

.floating-card.card-2{

    right:180px;
    bottom:80px;

}

/* ==================================================
   FLOATING CARD
================================================== */

.floating-card{

    position:absolute;

    background:rgba(255,255,255,.1);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:25px;

    color:#fff;

    box-shadow:var(--shadow-lg);

    animation:floatCard 5s ease-in-out infinite;

}

.floating-card.card-1{

    right:40px;
    top:140px;

}

.floating-card.card-2{

    right:180px;
    bottom:80px;

    animation-delay:2s;

}

@keyframes floatCard{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* ==================================================
   QUICK SERVICES
================================================== */

.quick-services{

    margin-top:-80px;
    position:relative;
    z-index:50;

}

.quick-card{

    background:#fff;

    border-radius:28px;

    padding:35px;

    height:100%;

    transition:.4s;

    box-shadow:var(--shadow-md);

}

.quick-card:hover{

    transform:translateY(-10px);

}

.quick-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    background:var(--gradient-primary);

    display:flex;

    align-items:center;
    justify-content:center;

    color:#FFD447;

    font-size:30px;

    margin-bottom:20px;

}

.quick-card h4{

    color:var(--primary);
    font-weight:700;

}

.quick-card a{

    color:var(--primary);
    font-weight:600;

}

/* ==================================================
   EXCHANGE BAR
================================================== */

.exchange-section{

    background:#f8fafc;

}

.rate-card{

    background:#fff;

    border-radius:20px;

    padding:25px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.3s;

}

.rate-card:hover{

    transform:translateY(-5px);

}

.rate-value{

    color:var(--success);

    font-weight:800;

    font-size:1.6rem;

}

/* ==================================================
   COUNTERS
================================================== */

.counter-section{

    background:var(--gradient-primary);

}

.counter-box{

    text-align:center;
    color:#fff;

}

.counter-number{

    font-size:3rem;
    font-weight:800;

}

.counter-title{

    font-size:1rem;
    color:#dbe4ff;

}

/* ==================================================
   ABOUT
================================================== */

.about-image{

    min-height:500px;

    border-radius:35px;

    background:#e5e7eb;

    box-shadow:var(--shadow-lg);

}

.about-content p{

    line-height:2;
    color:var(--gray);

}

.about-feature{

    display:flex;
    gap:15px;
    margin-bottom:20px;

}

.about-feature i{

    color:#FFD447;
    font-size:22px;

}

/* ==================================================
   SERVICES
================================================== */

.service-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:var(--shadow-md);

    transition:.4s;

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-image{

    height:250px;

    background:#e5e7eb;

}

.service-content{

    padding:30px;

}

.service-content h4{

    color:var(--primary);
    font-weight:700;

}

/* ==================================================
   RESPONSIBILITY
================================================== */

.responsibility-section{

    background:#f8fafc;

}

.responsibility-image{

    min-height:500px;

    background:#e5e7eb;

    border-radius:35px;

}

.responsibility-list{

    list-style:none;
    padding:0;

}

.responsibility-list li{

    margin-bottom:20px;

    font-weight:500;

}

.responsibility-list i{

    color:var(--success);

    margin-right:10px;

}

/* ==================================================
   CTA
================================================== */

.cta-box{

    background:var(--gradient-primary);

    border-radius:40px;

    color:#fff;

    padding:80px 50px;

    text-align:center;

}

.cta-box.gold{

    background:var(--gradient-gold);
    color:var(--primary);

}

/* ==================================================
   PARTNERS
================================================== */

.partner-box{

    height:120px;

    border-radius:20px;

    background:#f1f5f9;

    display:flex;

    align-items:center;
    justify-content:center;

    transition:.3s;

}

.partner-box:hover{

    transform:translateY(-8px);

}

/* ==================================================
   BLOG
================================================== */

.blog-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:var(--shadow-md);

    transition:.4s;

}

.blog-card:hover{

    transform:translateY(-10px);

}

.blog-image{

    height:250px;
    background:#e5e7eb;

}

.blog-content{

    padding:30px;

}

/* ==================================================
   RESPONSIVE
================================================== */

@media(max-width:991px){

    .hero-title{

        font-size:2.6rem;

    }

    .floating-card{

        display:none;

    }

    .section-title{

        font-size:2.2rem;

    }

}

@media(max-width:576px){

    .hero-title{

        font-size:1.8rem;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .section-padding{

        padding:70px 0;

    }

}

/* ensure the hero row doesn't force a full viewport height on smaller screens */
.hero-section .row.align-items-center.min-vh-100{

    min-height:75vh;

}

