/* style.css */

/* @import url('variables.css');
@import url('layout.css');
@import url('components.css');
@import url('sections.css');
@import url('animations.css');
@import url('responsive.css'); */

/*==================================================
MAGNUM FINTECH WEBSITE
Version: 2.0
Author: Steven Alexis & ChatGPT
===================================================*/


/*==================================================
GOOGLE FONT
===================================================*/

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');


/*==================================================
ROOT VARIABLES
===================================================*/

:root{

    --primary:#533E89;
    --primary-light:#6953A2;
    --primary-dark:#3D2D67;

    --secondary:#2CE9C3;
    --secondary-dark:#24C3A7;

    --background:#F5F1EE;
    --surface:#FFFFFF;

    --heading:#222222;
    --text:#626A78;
    --muted:#A3A9B5;

    --border:#E6E8EC;

    --success:#22C55E;
    --warning:#F59E0B;
    --danger:#EF4444;

    --shadow-sm:0 8px 20px rgba(0,0,0,.05);

    --shadow-md:0 18px 40px rgba(0,0,0,.08);

    --shadow-lg:0 25px 60px rgba(83,62,137,.15);

    --radius-sm:12px;
    --radius-md:20px;
    --radius-lg:30px;

    --transition:.35s ease;

}

/*==================================================
RESET
===================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Lato',sans-serif;

    background:var(--background);

    color:var(--text);

    font-size:16px;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

section{

    position:relative;

}

.section-space{

    padding:120px 0;

}

/*==================================================
TYPOGRAPHY
===================================================*/

h1,h2,h3,h4,h5,h6{

    color:var(--heading);

    font-weight:900;

    line-height:1.2;

}

h1{

    font-size:64px;

}

h2{

    font-size:48px;

}

h3{

    font-size:34px;

}

h4{

    font-size:24px;

}

p{

    color:var(--text);

    margin-bottom:20px;

}

.section-tag{

    display:inline-block;

    color:var(--primary);

    background:rgba(83,62,137,.08);

    padding:10px 18px;

    border-radius:40px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}


/*==================================================
BUTTONS
===================================================*/

.btn{

    border-radius:50px;

    padding:16px 34px;

    font-weight:700;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    border:none;

    color:#fff;

}

.btn-primary:hover{

    background:var(--secondary);

    color:#222;

    transform:translateY(-4px);

}

.btn-light{

    border-radius:50px;

    padding:16px 34px;

    font-weight:700;

}

.btn-outline-light{

    border:2px solid #fff;

    color:#fff;

}

.btn-outline-light:hover{

    background:#fff;

    color:var(--primary);

}


/*==================================================
NAVIGATION
===================================================*/
.navbar{

    background:transparent;
    padding:25px 0;

    transition:.4s;

    z-index:999;

}

.navbar-nav .nav-link{

    color:var(--primary);

    font-weight:700;

    margin:0 12px;

    position:relative;

}

.navbar-nav .nav-link:hover{

    color:var(--secondary);

}



.navbar-brand img{

    height:60px;

}



.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:3px;

    background:var(--secondary);

    transition:.35s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

.navbar.scrolled{

    background:#fff;

    box-shadow:var(--shadow-sm);

    padding:16px 0;

}

.navbar.scrolled .nav-link{

    color:var(--heading);

}

/*==================================================
HERO
===================================================*/

.hero{

    min-height:100vh;

    background:linear-gradient(135deg,#533E89,#6A54A8);

    overflow:hidden;

    /* color:#fff; */
    display:flex;

    align-items:center;

}

/* .hero{

    min-height:100vh;

    display:flex;

    align-items:center;

} */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(44,233,195,.18),
    transparent 35%);

}



.hero h1{

    color:var(--heading);

    font-size:72px;

    margin:25px 0;

}

.hero h1 span{

    color:var(--secondary);
    /* color:var(--primary); */

}

.hero p{

    color:rgba(255,255,255,.85);
    /* color:var(--primary); */

    font-size:20px;

    max-width:560px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    color:var(--secondary);

    background:rgba(255,255,255,.12);

    padding:10px 22px;

    border-radius:40px;

    backdrop-filter:blur(10px);

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.hero-stats{

    display:flex;

    gap:50px;

    margin-top:70px;

}

.hero-stats h3{

    color:#fff;

    font-size:42px;

}

.hero-stats span{

    color:rgba(255,255,255,.7);

}

.hero-phone{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-phone img{

    max-width:520px;

    animation:floatPhone 5s ease-in-out infinite;

    filter:drop-shadow(0 30px 60px rgba(0,0,0,.25));

}

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:18px;

    padding:18px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:var(--shadow-lg);

}

.floating-card i{

    width:52px;

    height:52px;

    background:var(--secondary);

    color:#222;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:20px;

}

/*==================================================
PARTNERS
===================================================*/

.partners{

    background:#fff;

}

.partner-logo{

    max-height:70px;

    width:auto;

    margin:auto;

    opacity:.65;

    transition:var(--transition);

    filter:grayscale(100%);

}

.partner-logo:hover{

    opacity:1;

    filter:none;

    transform:scale(1.08);

}

/*==================================================
ABOUT
===================================================*/

.about-home{

    background:var(--background);

}

.about-home img{

    border-radius:30px;

    box-shadow:var(--shadow-lg);

}

.feature-mini{

    display:flex;

    align-items:center;

    gap:18px;

    background:#fff;

    padding:22px;

    border-radius:18px;

    margin-bottom:20px;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.feature-mini:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.feature-mini i{

    width:60px;

    height:60px;

    background:rgba(44,233,195,.12);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:24px;

}

.feature-mini h5{

    margin:0;

    font-size:18px;

}

/*==================================================
WHY MAGNUM
===================================================*/

.why-magnum{

    background:#fff;

}

.feature-card{

    background:#fff;

    border-radius:25px;

    padding:40px 30px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

    border:1px solid var(--border);

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.feature-card .icon{

    width:80px;

    height:80px;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    border-radius:24px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

}

.feature-card .icon i{

    color:#fff;

    font-size:32px;

}

.feature-card h4{

    margin-bottom:18px;

}

.feature-card p{

    margin-bottom:0;

}

/*==================================================
HOW IT WORKS
===================================================*/

.how-it-works{

    background:var(--background);

}

.how-it-works img{

    /* width:50%; */
    padding-bottom: 10px;

}

.step-card{

    background:#fff;

    text-align:center;

    padding:45px 25px;

    border-radius:25px;

    box-shadow:var(--shadow-sm);

    position:relative;

    transition:var(--transition);

    height:100%;

}

.step-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.step-number{

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--secondary);

    color:#222;

    font-weight:900;

    display:flex;

    justify-content:center;

    align-items:center;

}

.step-card i{

    font-size:42px;

    color:var(--primary);

    margin:25px 0;

}

/*==================================================
PLATFORM FEATURES
===================================================*/

.platform-features{

    background:#fff;

}

.platform-features img{

    max-width:430px;

    margin:auto;

}

.check-item{

    display:flex;

    align-items:center;

    gap:14px;

    font-weight:600;

}

.check-item i{

    color:var(--secondary);

    font-size:20px;

}

/*==================================================
BENEFITS
===================================================*/

.benefits{

    background:var(--background);

}

.benefit-box{

    background:#fff;

    border-radius:25px;

    padding:45px;

    height:100%;

    box-shadow:var(--shadow-sm);

}

.benefit-header{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:35px;

}

.benefit-header i{

    width:70px;

    height:70px;

    border-radius:18px;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

}

.benefit-list li{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:20px;

    font-size:17px;

}

.benefit-list i{

    color:var(--secondary);

}

/*==================================================
MOBILE APP
===================================================*/

.mobile-app{

    background:#fff;

}

.app-preview{

    max-width:380px;

    animation:floatPhone 6s ease-in-out infinite;

}

.app-features{

    margin-top:35px;

}

.app-item{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

    font-size:18px;

    font-weight:600;

}

.app-item i{

    color:var(--primary);

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(44,233,195,.12);

}

/*==================================================
STATISTICS
===================================================*/

.statistics{

    background:linear-gradient(135deg,var(--primary),#6F58A6);

    color:#fff;

}

.stat-card{

    padding:35px;

}

.stat-card h2{

    font-size:60px;

    color:#fff;

}

.stat-card p{

    color:rgba(255,255,255,.8);

    margin:0;

}

/*==================================================
TESTIMONIALS
===================================================*/

.testimonials{

    background:var(--background);

}

.testimonial-card{

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:var(--shadow-sm);

}

.stars{

    color:#FFD700;

    margin-bottom:25px;

}

.testimonial-user{

    display:flex;

    align-items:center;

    gap:18px;

    margin-top:30px;

}

.testimonial-user img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

}

/*==================================================
FAQ
===================================================*/

.faq{

    background:#fff;

}

.accordion-item{

    border:none;

    margin-bottom:20px;

    border-radius:18px !important;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

}

.accordion-button{

    padding:25px;

    font-weight:700;

    font-size:18px;

}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

/*==================================================
BLOG
===================================================*/

.blog-home{

    background:var(--background);

}

.blog-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.blog-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.blog-card:hover img{

    transform:scale(1.08);

}

.blog-content{

    padding:30px;

}

.blog-content span{

    display:inline-block;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    margin-bottom:12px;

}

.blog-content h4{

    margin-bottom:18px;

    line-height:1.4;

}

.blog-content a{

    color:var(--primary);

    font-weight:700;

}

.blog-content a:hover{

    color:var(--secondary-dark);

}

/*==================================================
CTA
===================================================*/

.cta-section{

    padding:120px 0;

    background:var(--background);

}

.cta-box{

    background:linear-gradient(135deg,var(--primary),#6C56A9);

    color:#fff;

    border-radius:35px;

    padding:70px;

    position:relative;

    overflow:hidden;

    box-shadow:var(--shadow-lg);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    right:-120px;

    top:-120px;

}

.cta-box h2{

    color:#fff;

    margin-bottom:20px;

}

.cta-box p{

    color:rgba(255,255,255,.85);

    margin-bottom:0;

}

/*==================================================
NEWSLETTER
===================================================*/

.newsletter{

    background:#fff;

}

.newsletter-box{

    background:#fff;

    border-radius:30px;

    padding:60px;

    box-shadow:var(--shadow-md);

}

.newsletter-form{

    overflow:hidden;

    border-radius:50px;

}

.newsletter-form .form-control{

    border:none;

    padding:18px 25px;

    font-size:16px;

}

.newsletter-form .form-control:focus{

    box-shadow:none;

}

.newsletter-form .btn{

    border-radius:0;

}

/*==================================================
FOOTER
===================================================*/

.footer{

    background:#2B2341;

    color:#D8D9E1;

    padding-top:90px;

}

.footer-logo{

    max-height:65px;

}

.footer p{

    color:#C8CAD5;

}

.footer h5{

    color:#fff;

    margin-bottom:25px;

}

.footer-links li{

    margin-bottom:15px;

}

.footer-links a{

    color:#C8CAD5;

}

.footer-links a:hover{

    color:var(--secondary);

    padding-left:6px;

}

.footer-contact li{

    display:flex;

    gap:15px;

    margin-bottom:18px;

}

.footer-contact i{

    color:var(--secondary);

    width:20px;

}

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

}

.social-links a:hover{

    background:var(--secondary);

    color:#222;

}

.footer-apps img{

    height:48px;

    margin-right:12px;

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:60px 0 30px;

}

.copyright{

    margin:0;

}

.footer .text-md-end a{

    color:#C8CAD5;

    margin-left:15px;

}

.footer .text-md-end a:hover{

    color:var(--secondary);

}

/*==================================================
FLOATING CARDS
===================================================*/

.card-wallet{

    top:10%;

    left:-30px;

}

.card-payment{

    right:-35px;

    top:45%;

}

.card-notification{

    bottom:8%;

    left:10%;

}

/*==================================================
SWIPER
===================================================*/

.swiper{

    padding-bottom:60px;

}

.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#CFCFD5;

    opacity:1;

}

.swiper-pagination-bullet-active{

    background:var(--primary);

}

/*==================================================
BACK TO TOP
===================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    box-shadow:var(--shadow-md);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:var(--secondary);

    color:#222;

}

.ecosystem-wrapper::before{
content:'';
position:absolute;
width:2px;
height:100%;
background:#533E89;
left:50%;
transform:translateX(-50%);
}

.ecosystem-wrapper::after{
content:'';
position:absolute;
height:2px;
width:100%;
background:#533E89;
top:50%;
}

/*==================================================
RESPONSIVE
===================================================*/

@media(max-width:992px){

    h1{

        font-size:52px;

    }

    h2{

        font-size:38px;

    }

    .hero{

        text-align:center;

        padding:120px 0 80px;

    }

    .hero-buttons{

        justify-content:center;

        flex-wrap:wrap;

    }

    .hero-stats{

        justify-content:center;

        flex-wrap:wrap;

    }

    .hero-phone{

        margin-top:60px;

    }

    .floating-card{

        display:none;

    }

    .cta-box{

        padding:50px 35px;

        text-align:center;

    }

}

@media(max-width:768px){

    h1{

        font-size:42px;

    }

    h2{

        font-size:32px;

    }

    .section-space{

        padding:80px 0;

    }

    .newsletter-box{

        padding:35px;

    }

    .benefit-box{

        padding:30px;

    }

    .feature-card{

        padding:30px;

    }

    .step-card{

        margin-bottom:30px;

    }

    .blog-card{

        margin-bottom:30px;

    }

}

@media(max-width:576px){

    .hero-buttons{

        flex-direction:column;

    }

    .btn{

        width:100%;

    }

    .hero-stats{

        gap:30px;

    }

    .navbar-brand img{

        height:48px;

    }

}

@keyframes floatCard{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}