:root{
    --primary:#0061FF;
    --primary-light:#4D8DFF;
    --primary-dark:#0050D4;
    --dark:#01040D;
    --dark-light:#07162E;
    --white:#ffffff;
    --text:#5f6775;
}

/* =========================
   GLOBAL
========================= */

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:
    radial-gradient(circle at top right,rgba(0,97,255,.08),transparent 35%),
    radial-gradient(circle at bottom left,rgba(0,97,255,.05),transparent 35%),
    #f7faff;
    color:var(--text);
}

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

.royal-hero{
    background:#fff;
    padding:70px;
    border-radius:30px;
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.royal-hero:before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    top:-150px;
    right:-150px;
    border-radius:50%;
    background:rgba(0,97,255,.08);
}

.royal-hero:after{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    bottom:-120px;
    left:-120px;
    border-radius:50%;
    background:rgba(0,97,255,.05);
}

.about-tag{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:linear-gradient(135deg,#0061FF,#4D8DFF);
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    box-shadow:0 10px 25px rgba(0,97,255,.25);
}

.royal-hero h1{
    color:#01040D;
    font-size:58px;
    font-weight:900;
    line-height:1.1;
    margin:15px 0;
}

.tagline{
    color:#0061FF;
    font-size:20px;
    font-weight:700;
    margin-bottom:25px;
}

.royal-hero h2{
    color:#01040D;
    font-weight:800;
    margin-bottom:20px;
}

.royal-hero p{
    line-height:1.9;
    font-size:16px;
}

/* =========================
   IMAGE
========================= */

.about-image{
    overflow:hidden;
    border-radius:25px;
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    transition:.5s;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.about-image:hover img{
    transform:scale(1.08);
}

/* =========================
   STATS
========================= */

.about-stat{
    background:#fff;
    padding:25px;
    border-radius:18px;
    border-left:5px solid #0061FF;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.about-stat:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,97,255,.15);
}

.about-stat h3{
    color:#01040D;
    font-size:28px;
    font-weight:800;
}

.about-stat span{
    color:#777;
}

/* =========================
   VALUE BOX
========================= */

.value-box{
    background:linear-gradient(
        135deg,
        #01040D,
        #07162E,
        #0061FF
    );
    color:#fff;
    text-align:center;
    padding:35px 20px;
    border-radius:18px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,97,255,.20);
}

.value-box:before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-40px;
    right:-40px;
}

.value-box:hover{
    transform:translateY(-10px);
}

.value-box h5{
    color:#fff;
    font-size:18px;
    font-weight:700;
    position:relative;
    z-index:2;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
}

.section-title h2{
    color:#01040D;
    display:inline-block;
    position:relative;
    padding-bottom:15px;
    font-weight:800;
}

.section-title h2:after{
    content:'';
    width:90px;
    height:4px;
    background:#0061FF;
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    border-radius:10px;
}

/* =========================
   CARD
========================= */

.royal-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    border-top:5px solid #0061FF;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.royal-card h2,
.royal-card h3{
    color:#01040D;
    font-weight:700;
}

/* =========================
   FEATURE BOX
========================= */

.royal-feature{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:20px;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.royal-feature:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,97,255,.15);
}

.royal-feature h4{
    color:#01040D;
    font-weight:700;
}

/* =========================
   OPPORTUNITY
========================= */

.royal-opportunity{
    background:linear-gradient(
        135deg,
        #01040D,
        #07162E,
        #0061FF
    );
    color:#fff;
    padding:70px;
    border-radius:30px;
    position:relative;
    overflow:hidden;
}

.royal-opportunity:before{
    content:'';
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    position:absolute;
    top:-200px;
    right:-150px;
}

.royal-opportunity h2{
    color:#fff;
    font-size:42px;
    font-weight:800;
}

.royal-opportunity p{
    color:rgba(255,255,255,.95);
}

/* =========================
   CHECK LIST
========================= */

.check-list{
    list-style:none;
    padding:0;
}

.check-list li{
    background:rgba(255,255,255,.08);
    padding:18px 20px;
    margin-bottom:15px;
    border-radius:12px;
    color:#fff;
    transition:.3s;
}

.check-list li:hover{
    background:rgba(0,97,255,.25);
    transform:translateX(8px);
}

/* =========================
   GROWTH BOX
========================= */

.growth-box{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
}

.growth-box span{
    width:65px;
    height:65px;
    background:#0061FF;
    color:#fff;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.growth-box h5{
    color:#01040D;
    font-weight:700;
}

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

.royal-cta{
    background:#fff;
    padding:60px 40px;
    text-align:center;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.royal-cta h3{
    color:#01040D;
    font-size:52px;
    font-weight:800;
}

.cta-lines span{
    display:block;
    color:#0061FF;
    font-size:22px;
    font-weight:700;
    margin:10px 0;
}

/* =========================
   ANIMATION
========================= */

.royal-hero,
.value-box,
.about-stat,
.royal-feature,
.growth-box{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

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

@media(max-width:991px){

    .royal-hero,
    .royal-opportunity{
        padding:35px 25px;
    }

    .royal-hero h1,
    .royal-cta h3{
        font-size:38px;
    }

    .royal-opportunity h2{
        font-size:30px;
    }
}

@media(max-width:768px){

    .royal-hero{
        padding:25px 20px;
    }

    .royal-opportunity{
        padding:30px 20px;
    }

    .royal-hero h1{
        font-size:32px;
    }

    .tagline{
        font-size:16px;
    }
}

