/*====================================================
RISWAY LANDING PAGE
Author : ChatGPT
Version : 1.0
====================================================*/

/*==========================
Google Font
==========================*/

:root{

    --primary:#2563eb;
    --secondary:#16a34a;
    --dark:#0f172a;
    --text:#475569;
    --light:#f8fafc;
    --white:#ffffff;
    --border:#e2e8f0;

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

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--dark);
    overflow-x:hidden;

}

/*==========================
Typography
==========================*/

h1,
h2,
h3,
h4,
h5{

    font-weight:700;
    color:var(--dark);

}

p{

    color:var(--text);
    line-height:1.8;

}

.section{

    padding:100px 0;

}

.section-title{

    font-size:42px;
    font-weight:700;

}

.section-subtitle{

    color:#64748b;
    max-width:700px;
    margin:auto;

}

/*==========================
Navbar
==========================*/

.navbar{

    transition:.3s;
    padding:18px 0;

}

.navbar.scrolled{

    padding:12px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.navbar-brand{

    font-size:34px;
    letter-spacing:1px;

}

.nav-link{

    color:#334155;
    margin-left:18px;
    font-weight:500;
    transition:.3s;

}

.nav-link:hover{

    color:var(--primary);

}

.btn-primary{

    background:var(--primary);
    border:none;
    border-radius:40px;
    padding:13px 28px;
    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(37,99,235,.30);

}

.btn-outline-primary{

    border-radius:40px;
    padding:13px 28px;

}

/*==========================
Hero
==========================*/

.hero{

    padding-top:160px;
    padding-bottom:120px;

    position:relative;

    overflow:hidden;

    background:

    linear-gradient(

        135deg,

        #eff6ff 0%,

        #ffffff 50%,

        #ecfdf5 100%

    );

}

/*==========================
Background Shape
==========================*/

.hero::before{

    content:'';

    width:450px;

    height:450px;

    position:absolute;

    right:-120px;

    top:-120px;

    border-radius:50%;

    background:

    rgba(37,99,235,.08);

}

.hero::after{

    content:'';

    width:350px;

    height:350px;

    position:absolute;

    left:-120px;

    bottom:-100px;

    border-radius:50%;

    background:

    rgba(22,163,74,.08);

}

.hero h1{

    font-size:58px;

    line-height:1.2;

}

.hero .lead{

    font-size:20px;

}

.badge{

    padding:12px 18px;

    border-radius:50px;

    font-size:14px;

}

/*==========================
Hero Image
==========================*/

.hero-image{

    max-width:90%;

    animation:float 4s ease-in-out infinite;

    filter:

    drop-shadow(

    0 30px 60px rgba(0,0,0,.15)

    );

}

/*==========================
Statistics
==========================*/

.counter{

    font-size:42px;

    color:var(--primary);

    font-weight:700;

}

.hero small{

    color:#64748b;

}

/*==========================
Trusted
==========================*/

.bg-light{

    background:#f8fafc!important;

}

.bg-light .col{

    opacity:.5;

    font-weight:700;

    font-size:22px;

    transition:.3s;

}

.bg-light .col:hover{

    opacity:1;

    transform:scale(1.05);

}

/*==========================
Buttons
==========================*/

.btn-success{

    background:var(--secondary);

    border:none;

    border-radius:50px;

    padding:14px 32px;

}

.btn-success:hover{

    transform:translateY(-3px);

    box-shadow:

    0 15px 35px

    rgba(22,163,74,.25);

}

/*==========================
Feature Card
==========================*/

.feature-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    height:100%;

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

    transition:.35s;

    box-shadow:

    0 8px 30px rgba(0,0,0,.04);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 25px 45px rgba(0,0,0,.10);

}

.feature-card i{

    font-size:48px;

    color:var(--primary);

    margin-bottom:20px;

    display:block;

}

.feature-card h4{

    margin-bottom:15px;

}

.feature-card p{

    margin-bottom:0;

}

/*==========================
List Group
==========================*/

.list-group-item{
    border:none;
    /*padding:18px 0;*/
    font-size:18px;
}

/*==========================
Dashboard Image
==========================*/

#dashboard img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

/*==========================
CTA
==========================*/
.cta{
    padding:100px 0;
    background:
    linear-gradient(
        135deg,
        var(--primary),
        #3b82f6
    );
    color:#fff;

}

.cta h2{

    color:#fff;

    font-size:46px;

}

.cta p{

    color:

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

    font-size:20px;

}

/*==========================
Footer
==========================*/

.footer{

    padding:70px 0 20px;

    background:#0f172a;

}

.footer h3,

.footer h5{

    color:#fff;

}

.footer p,

.footer li{

    color:#cbd5e1;

}

.footer ul{

    list-style:none;

    padding-left:0;

}

.footer li{

    margin-bottom:10px;

}

.footer hr{

    border-color:

    rgba(255,255,255,.15);

}

.footer .text-center{

    color:#94a3b8;

}

/*==========================
Animation
==========================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}

/*==========================
Utility
==========================*/

.shadow-lg{

    box-shadow:var(--shadow)!important;

}

.rounded-xl{

    border-radius:24px;

}

.text-primary{

    color:var(--primary)!important;

}

.text-success{

    color:var(--secondary)!important;

}



/*====================================================
PART 2
Premium Components
====================================================*/

/*==========================
Feature Section
==========================*/

#features{
    position:relative;
    overflow:hidden;
}

#features::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(37,99,235,.04);
    border-radius:50%;
    top:-250px;
    right:-180px;
    z-index:0;
}

#features::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(22,163,74,.05);
    border-radius:50%;
    left:-120px;
    bottom:-120px;
    z-index:0;
}

#features .container{
    position:relative;
    z-index:2;
}


/*==========================
Premium Feature Card
==========================*/

.feature-card{

    position:relative;
    overflow:hidden;

}

.feature-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

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

    transform:scaleX(0);

    transition:.4s;

}

.feature-card:hover::before{

    transform:scaleX(1);

}

.feature-card::after{

    content:"";

    position:absolute;

    width:120px;
    height:120px;

    border-radius:50%;

    background:rgba(37,99,235,.05);

    right:-60px;
    bottom:-60px;

    transition:.4s;

}

.feature-card:hover::after{

    transform:scale(1.4);

}


/*==========================
Feature Icon
==========================*/

.feature-card i{

    width:80px;
    height:80px;

    display:flex;

    justify-content:center;
    align-items:center;

    border-radius:22px;

    background:linear-gradient(
        135deg,
        #eff6ff,
        #ffffff
    );

    box-shadow:
    0 10px 30px rgba(37,99,235,.12);

    transition:.4s;

}

.feature-card:hover i{

    transform:rotate(-8deg) scale(1.08);

}


/*==========================
Dashboard Section
==========================*/

#dashboard{

    position:relative;

}

#dashboard::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(37,99,235,.05);

    right:-180px;
    bottom:-180px;

}


/*==========================
Dashboard Image
==========================*/

#dashboard img{

    transition:.5s;

}

#dashboard img:hover{

    transform:
    translateY(-8px)
    rotate(-1deg);

}


/*==========================
Dashboard List
==========================*/

.list-group{

    border-radius:18px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

}

.list-group-item{

    background:#fff;

    transition:.3s;

}

.list-group-item:hover{

    background:#f8fafc;

    padding-left:35px;

    color:var(--primary);

}


/*==========================
Statistic Card
==========================*/

.stat-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    text-align:center;

    box-shadow:
    0 10px 35px rgba(0,0,0,.05);

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-10px);

}

.stat-card h2{

    font-size:48px;

    color:var(--primary);

}

.stat-card span{

    color:#64748b;

}


/*==========================
Mockup Phone
==========================*/

.phone{

    width:320px;

    margin:auto;

    background:#111827;

    border-radius:40px;

    padding:12px;

    box-shadow:

    0 35px 70px rgba(0,0,0,.20);

}

.phone img{

    width:100%;

    border-radius:30px;

}


/*==========================
Gradient Box
==========================*/

.gradient-box{

    border-radius:30px;

    background:linear-gradient(
        135deg,
        var(--primary),
        #4f46e5
    );

    color:#fff;

    padding:60px;

}

.gradient-box h2{

    color:#fff;

}

.gradient-box p{

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

}


/*==========================
Floating Icon
==========================*/

.float-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    justify-content:center;
    align-items:center;

    color:#fff;

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

    position:absolute;

    animation:floating 5s ease infinite;

    box-shadow:
    0 20px 35px rgba(0,0,0,.12);

}

.float-1{

    top:20%;
    left:8%;

}

.float-2{

    right:10%;
    top:25%;

}

.float-3{

    bottom:10%;
    left:15%;

}

.float-4{

    right:15%;
    bottom:15%;

}


/*==========================
Glass Card
==========================*/

.glass{

    backdrop-filter:blur(15px);

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

    border:1px solid
    rgba(255,255,255,.45);

    border-radius:24px;

    box-shadow:
    0 20px 45px rgba(0,0,0,.08);

}


/*==========================
Section Badge
==========================*/

.section-badge{

    display:inline-block;

    padding:8px 18px;

    background:#eff6ff;

    color:var(--primary);

    border-radius:50px;

    font-weight:600;

    margin-bottom:18px;

}


/*==========================
Image Hover
==========================*/

img{

    transition:.4s;

}

img:hover{

    transform:scale(1.02);

}


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

.cta{

    position:relative;

    overflow:hidden;

}

.cta::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

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

    left:-180px;
    top:-180px;

}

.cta::after{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

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

    right:-150px;
    bottom:-150px;

}


/*==========================
Floating Animation
==========================*/

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}


/*==========================
Hover Utilities
==========================*/

.hover-up{

    transition:.35s;

}

.hover-up:hover{

    transform:translateY(-8px);

}

.scale:hover{

    transform:scale(1.05);

}

.rotate:hover{

    transform:rotate(-2deg);

}


/*==========================
Shadow Utilities
==========================*/

.shadow-soft{

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

}

.shadow-hover:hover{

    box-shadow:
    0 25px 55px rgba(0,0,0,.12);

}


.store-btn{
    display:flex;
    align-items:center;
    gap:15px;

    padding:14px 22px;

    background:#fff;
    color:#222;

    border-radius:18px;
    text-decoration:none;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.store-btn:hover{

    transform:translateY(-5px);

    color:var(--primary);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.store-btn i{

    font-size:32px;

}

.store-btn small{

    color:#888;
    font-size:12px;

}

.mini-feature{

    background:#fff;

    border-radius:14px;

    padding:15px 18px;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    font-weight:500;

}

.mini-feature i{

    margin-right:8px;

}