/*==========================
GOOGLE FONT
==========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{

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

    background:#070b18;

    color:#fff;

    overflow-x:hidden;

    position:relative;

}

/*==========================
PREMIUM BACKGROUND
==========================*/

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:
    radial-gradient(circle at 15% 20%,rgba(255,183,0,.10),transparent 35%),

    radial-gradient(circle at 85% 30%,rgba(255,170,0,.08),transparent 30%),

    radial-gradient(circle at 80% 90%,rgba(90,40,255,.12),transparent 35%),

    #1f0308;

    z-index:-5;

}

/*==========================
BLURS
==========================*/

.bg-blur{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    z-index:-3;

}

.blur1{

    width:350px;

    height:350px;

    background:#d4a017;

    left:-180px;

    top:-120px;

    opacity:.12;

}

.blur2{

    width:300px;

    height:300px;

    background:#5c2fff;

    right:-150px;

    bottom:-180px;

    opacity:.14;

}

/*==========================
GRID
==========================*/

.grid-bg{

    position:fixed;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:60px 60px;

    z-index:-4;

}

/*==========================
HEADER
==========================*/

#header{

    position:absolute;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    padding:22px 0;

}

.navbar{

    background:transparent !important;

    padding:0;

}

.navbar .show{background:#222;}
/*==========================
LOGO
==========================*/

.logo{

    height:58px;

}

/*==========================
MENU
==========================*/
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: #220607!important; /* Change to your header color */
    box-shadow: 0 3px 15px rgba(0,0,0,.15);
}
.navbar-nav{

    gap:28px;

}

.nav-link{

    color:#fff !important;

    font-size:17px;

    font-weight:500;

    position:relative;

    transition:.35s;

}

.nav-link:hover{

    color:#ffc533 !important;

}

.nav-link.active{

    color:#fff !important;

}

.nav-link.active::after{

    content:"";

    position:absolute;

    width:100%;

    height:3px;

    border-radius:30px;

    background:#ffc533;

    left:0;

    bottom:-8px;

}

/*==========================
BUTTON
==========================*/

.btn-gold{

    border:2px solid #e6b432;

    color:#fff;

    border-radius:60px;

    padding:15px 34px;

    font-weight:600;

    transition:.4s;

    background:transparent;

}

.btn-gold:hover{

    background:linear-gradient(135deg,#ffcc4d,#d49409);

    color:#111;

    box-shadow:0 0 35px rgba(255,193,7,.45);

    transform:translateY(-3px);

}

.btn-gold i{

    margin-left:8px;

    transition:.35s;

}

.btn-gold:hover i{

    transform:translateX(6px);

}

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:150px 0 90px;

    position:relative;

}

.hero-left{

    position:relative;

    z-index:5;

}

/*==================================
BADGE
==================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    border-radius:60px;

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

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

    color:#f5c24d;

    font-weight:600;

    backdrop-filter:blur(15px);

    margin-bottom:24px;

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

}

.hero-badge i{

    font-size:16px;

}

/*==================================
MAIN HEADING
==================================*/

.hero h1{

    font-size:62px;

    font-weight:800;

    line-height:1.05;

    margin-bottom:12px;

    color:#fff;

    letter-spacing:-2px;

}

.hero h1 span{

    display:block;

    margin-top:10px;

    background:linear-gradient(90deg,#FFE27A,#FFC533,#D79A00);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/*==================================
SUB HEADING
==================================*/

.hero h2{

    margin-top:22px;

    font-size:36px;

    font-weight:700;

    color:#fff;

}

.hero h2 span{

    color:#e6b432;

}

/*==================================
PARAGRAPH
==================================*/

.hero p{

    margin-top:24px;

    max-width:620px;

    color:#b6bcc8;

    font-size:18px;

    line-height:1.6;

}

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

.hero-buttons{

    display:flex;

    align-items:center;

    gap:22px;

    margin-top:40px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    border-radius:60px;

    padding:14px 32px;

    font-weight:600;

    transition:.35s;

}

.hero-buttons .btn-outline-light{

    border:2px solid rgba(255,255,255,.25);

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

    backdrop-filter:blur(10px);

}

.hero-buttons .btn-outline-light:hover{

    background:#fff;

    color:#111;

}

.hero-buttons i{

    margin-left:8px;

}

/*==================================
BUTTON HOVER
==================================*/

.hero-buttons .btn:hover{

    transform:translateY(-5px);

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

}

/*==================================
TYPING TEXT
==================================*/

#typing{

    color:#f2be3e;

    border-right:2px solid #f2be3e;

    padding-right:5px;

    animation:blink .8s infinite;

}

@keyframes blink{

    50%{

        border-color:transparent;

    }

}
/*==========================
Counter Section
==========================*/

.counter-wrapper{
    display:flex;
    gap:12px;
    margin-top:45px;
    flex-wrap:wrap;
 justify-content: center; 
}

.counter-card{

    width:135px;
    min-height:130px;

    background:linear-gradient(180deg,#1b1f2d,#171b28);

    border-radius:22px;

    padding:18px 10px 10px 10px;

    text-align:center;

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

    position:relative;

    overflow:hidden;

    transition:.35s;

}

.counter-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#f7c948,#ff9800);

}

.counter-card:hover{

    transform:translateY(-8px);

    border-color:#f7c948;

    box-shadow:0 18px 40px rgba(247,201,72,.18);

}

.counter-card h3{

    font-size:38px;

    font-weight:800;

    color:#FFF0B3;

    margin-bottom:2px;

    line-height:1;

}

.counter-card p{

    color:#d0d4df;

    font-size:11px;

    font-weight:500;

    line-height:1;

    margin-bottom:8px;

}

.counter-card span{

    display:inline-block;

    padding:6px 16px;

    background:#103c2c;

    color:#2be675;

    border-radius:30px;

    font-size:16px;

    font-weight:700;

}

/*==================================
RIGHT SECTION
==================================*/

.hero-right{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:700px;
}

/*==================================
DASHBOARD
==================================*/

.dashboard{

    position:relative;

    width:100%;
    max-width:560px;

    padding:35px;

    border-radius:30px;

    background:rgba(15,20,35,.75);

    backdrop-filter:blur(25px);

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

    overflow:hidden;

    box-shadow:
    0 30px 80px rgba(0,0,0,.45);

}

/* Gold Glow */

.dashboard-glow{

    position:absolute;

    width:250px;
    height:250px;

    background:#f6b319;

    border-radius:50%;

    top:-120px;
    right:-120px;

    filter:blur(120px);

    opacity:.18;

    pointer-events:none;

}

/*==================================
HEADER
==================================*/

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.dashboard-header h3{

    font-size:28px;

    font-weight:700;

    margin-bottom:5px;

}

.dashboard-header small{

    color:#bfc8d5;

    font-size:15px;

}

.dashboard-header select{

    background:#161d2f;

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

    color:#fff;

    border-radius:12px;

    padding:10px 16px;

    outline:none;

}

/*==================================
LIVE DOT
==================================*/

.live-dot{

    width:10px;
    height:10px;

    display:inline-block;

    background:#22c55e;

    border-radius:50%;

    margin-right:8px;

    animation:pulse 1.5s infinite;

}

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(34,197,94,.6);

}

100%{

box-shadow:0 0 0 12px rgba(34,197,94,0);

}

}

/*==================================
GRAPH
==================================*/

.graph{

    margin:25px 0 35px;

}

.graph svg{

    width:100%;

    height:230px;

}

#graphLine{

    fill:none;

    stroke:url(#goldGradient);

    stroke-width:6;

    stroke-linecap:round;

    stroke-linejoin:round;

    stroke-dasharray:1200;

    stroke-dashoffset:1200;

    animation:drawGraph 3s ease forwards;

}

.graph circle{

    fill:#f4b400;

    stroke:#fff;

    stroke-width:3;

}

@keyframes drawGraph{

to{

stroke-dashoffset:0;

}

}

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

.floating{

    position:absolute;

    display:flex;

    align-items:center;

    gap:12px;

    padding:16px 22px;

    border-radius:18px;

    background:rgba(18,24,40,.82);

    backdrop-filter:blur(20px);

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

    color:#fff;

    font-weight:600;

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

    z-index:10;

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

}

.floating i{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#ffcb47,#d79a00);

    color:#111;

    font-size:18px;

}

.floating span{

    font-size:15px;

}

/* Position */

.floating1{

    top:70px;

    right:-70px;

}

.floating2{

    left:-80px;

    top:240px;

    animation-delay:1.5s;

}

.floating3{

    bottom:60px;

    right:-90px;

    animation-delay:3s;

}

@keyframes floatCard{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}

/*==================================
ORBIT
==================================*/

.orbit{

    position:absolute;

    width:620px;

    height:620px;

    border:1px dashed rgba(255,193,7,.18);

    border-radius:50%;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    animation:rotateOrbit 35s linear infinite;

    pointer-events:none;

}

.orbit2{

    width:760px;

    height:760px;

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

    animation-direction:reverse;

    animation-duration:55s;

}

@keyframes rotateOrbit{

    from{

        transform:translate(-50%,-50%) rotate(0deg);

    }

    to{

        transform:translate(-50%,-50%) rotate(360deg);

    }

}

/*==================================
MOUSE GLOW
==================================*/

.mouse-glow{

    position:fixed;

    width:350px;

    height:350px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(255,185,0,.18),
        transparent 70%);

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:-1;

    transition:
    left .08s linear,
    top .08s linear;

}

.dashboard{

    transition:.5s;

}
.dashboard{
    width:600px;
    height:520px;
    padding:30px;
    border-radius:28px;

    transform:rotate(-4deg);

    position:relative;

    overflow:hidden;
}
.graph{
    margin-top:20px;
    height:180px;
}

.graph svg{
    height:180px;
}
.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:15px;

    margin-top:20px;

}
.stat-box{

    text-align:center;

    padding:20px 10px;

    border-radius:18px;

}
.progress-ring{

    position:absolute;

    top:35px;

    right:35px;

}
.floating1{

    top:60px;

    right:-70px;

}
.floating2{

    left:-80px;

    top:170px;

}
.floating3{

    right:-60px;

    bottom:60px;

}
.orbit{

    width:500px;
    height:500px;

}

.orbit2{

    width:650px;
    height:650px;

}
.dashboard-header{

    margin-bottom:10px;

}
.hero-right{

    perspective:1200px;

}

.dashboard{

    transform:rotate(-5deg);

}
.dashboard:hover{

    transform:translateY(-10px);

    box-shadow:
    0 35px 90px rgba(0,0,0,.50),
    0 0 60px rgba(255,193,7,.12);

}


.hero-left,
.dashboard,
.counter-card,
.stat-box{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}


















.hero-right{

position:relative;

display:flex;

justify-content:center;

align-items:center;

height:700px;

}

/* Dashboard */

.dashboard{

width:620px;

height:480px;

background:#111626;

border-radius:30px;

padding:35px;

transform:rotate(-5deg);

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

box-shadow:

0 30px 80px rgba(0,0,0,.45);

position:relative;

overflow:hidden;

}

/* Glow */

.hero-glow{

position:absolute;

width:320px;

height:320px;

background:#f4b400;

filter:blur(140px);

right:20px;

top:50px;

opacity:.15;

}

/* Header */

.dashboard-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

}

.dashboard-header h3{

font-size:34px;

font-weight:700;

margin:0;

}

.dashboard-header small{

color:#b9c1d2;

font-size:15px;

}

.month-box{

padding:12px 24px;

background:#1d2438;

border-radius:15px;

font-weight:600;

}

/* Live */

.live-dot{

display:inline-block;

width:10px;

height:10px;

background:#2ecc71;

border-radius:50%;

margin-right:8px;

}

/* Graph */

.graph-area{

margin-top:30px;

}

.graph-area svg{

width:100%;

height:220px;

}

#graphLine{

fill:none;

stroke:url(#lineColor);

stroke-width:6;

stroke-linecap:round;

stroke-linejoin:round;

stroke-dasharray:1200;

stroke-dashoffset:1200;

animation:drawGraph 3s forwards;

}

.graph-area circle{

fill:#f4b400;

stroke:#fff;

stroke-width:3;

}

@keyframes drawGraph{

to{

stroke-dashoffset:0;

}

}
.hero-right::before{

content:"";

position:absolute;

right:50px;

top:80px;

width:420px;

height:420px;

border-radius:50%;

background:radial-gradient(circle,#ffc10755,transparent 70%);

filter:blur(80px);

z-index:-1;

}
.dashboard-image{
    width:760px;
    max-width:none;
    position:absolute;
    right:-70px;
    top:20px;
}
.hero-glow{
    position:absolute;
    width:450px;
    height:450px;
    right:40px;
    top:40px;
    border-radius:50%;
    background:radial-gradient(circle,#f4b40055,transparent 70%);
    filter:blur(80px);
    z-index:-1;
}
.ai-card{

top:100px;

right:-10px;

}

.search-card{

left:20px;

bottom:120px;

}
.dashboard-image{

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

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}
.hero-right::after{

content:"";

position:absolute;

inset:0;

background-image:

radial-gradient(#ffc10766 1px,transparent 1px);

background-size:30px 30px;

opacity:.25;

pointer-events:none;

}
.dashboard-image{

transform:rotate(-6deg);

}

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

.trusted{
    padding:40px 0 30px;
    position:relative;
    overflow:hidden;
}

.trusted h5{
    color:#fff;
    text-align:center;
    font-size:20px;
    font-weight:700;
    margin-bottom:35px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.logo-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.logo-track{
    display:flex;
    align-items:center;
    gap:35px;
    width:max-content;
    animation:scrollLogo 28s linear infinite;
}

.logo-track > div{
    width:180px;
    height:90px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
    flex-shrink:0;
}

.logo-track > div:hover{
    transform:translateY(-8px);
    border-color:#f5b942;
    box-shadow:0 15px 35px rgba(245,185,66,.18);
}

.logo-track img{
    max-width:120px;
    max-height:45px;
    width:auto;
    filter:grayscale(100%) brightness(1.4);
    opacity:.85;
    transition:.35s;
}

.logo-track div:hover img{
    filter:none;
    opacity:1;
}

@keyframes scrollLogo{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}


.footer{

padding:90px 0 30px;

/*background:#282a2f;
*/
position:relative;

overflow:hidden;

border-top:1px solid rgba(255,255,255,.06);

}

.footer::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:radial-gradient(circle,#f5b94233,transparent);

right:-100px;

top:-120px;

filter:blur(90px);

}

.footer-cta{

display:flex;

justify-content:space-between;

align-items:center;

padding:50px;

margin-bottom:70px;

border-radius:28px;

background:linear-gradient(135deg,#171d2c,#101522);

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

}

.footer-cta h2{

font-size:42px;

font-weight:700;

margin-bottom:10px;

}

.footer-cta p{

color:#b7bfd0;

max-width:550px;

}

.cta-buttons{

display:flex;

gap:18px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.2fr;

gap:50px;

}

.footer-logo{

width:220px;

margin-bottom:20px;

}

.footer-grid h4{

margin-bottom:25px;

color:#fff;

}

.footer-grid a{

display:block;

margin-bottom:14px;

color:#b9c2d2;

text-decoration:none;

transition:.3s;

}

.footer-grid a:hover{

color:#f5b942;

padding-left:6px;

}

.footer-grid p{

color:#b9c2d2;

margin-bottom:12px;

}

.socials{

display:flex;

gap:14px;

margin-top:20px;

}

.socials a{

width:46px;

height:46px;

border-radius:50%;

background:#181f2e;

display:flex;

align-items:center;

justify-content:center;

font-size:20px;

color:#fff;

transition:.3s;

}

.socials a:hover{

background:#f5b942;

color:#111;

transform:translateY(-6px);

}

.footer hr{

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

margin:45px 0 20px;

}

.copyright{

text-align:center;

color:#aeb7c5;

font-size:15px;

}



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

.about-section{

    position:relative;

    padding:100px 0;

    /*background:linear-gradient(180deg,#5b1926,#352c17);*/
background: linear-gradient(126deg, #250e06 50%, rgba(91, 25, 38, 0.08) 100%);
    overflow:hidden;

}

/* Golden Glow */

.about-section::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:radial-gradient(circle,#f5b94222,transparent 70%);

    left:-120px;

    top:20px;

    filter:blur(80px);

}

.about-section::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:radial-gradient(circle,#6c3cff18,transparent 70%);

    right:-80px;

    bottom:-80px;

    filter:blur(80px);

}

/*=========================
Images
=========================*/
.about-images {
position:relative;
min-height:550px
}

.about-images img {
width:100%;
border-radius:30px;
object-fit:cover;
transition:.5s;
box-shadow:0 30px 70px #0000001f
}

.about-images .img1 {
width:72%;
height:450px
}

.about-images .img2 {
position:absolute;
width:55%;
height:280px;
right:0;
bottom:0;
border:10px solid #fff
}

.about-images img:hover {
transform:scale(1.03)
}

.experience-box {
position:absolute;
left:20px;
bottom:40px;
background:linear-gradient(135deg,#C51E46,#C8A33D);
color:#fff;
padding:25px 30px;
border-radius:20px;
box-shadow:0 20px 45px #0003;
animation:floatBox 4s infinite
}

.experience-box h2 {
font-size:52px;
font-weight:800;
margin-bottom:0;
color:#fff
}

.experience-box span {
font-size:15px;
display:block;
font-weight:500
}

@keyframes floatBox {
0% {
transform:translateY(0)
}

50% {
transform:translateY(-10px)
}

100% {
transform:translateY(0)
}
}

/*=========================
Content
=========================*/

.section-tag{

    display:inline-block;

    padding:8px 22px;

    background:rgba(245,185,66,.12);

    color:#f5b942;

    border:1px solid rgba(245,185,66,.35);

    border-radius:40px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.about-section h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.about-section p{

    color:#b9c1d2;

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

/*=========================
Features
=========================*/

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.about-list div{

    background:#171c2a;

    padding:18px 22px;

    border-radius:18px;

    color:#fff;

    font-weight:600;

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

    transition:.35s;

}

.about-list div:hover{

    transform:translateY(-6px);

    border-color:#f5b942;

    box-shadow:0 15px 30px rgba(245,185,66,.18);

}

.about-list i{

    color:#f5b942;

    margin-right:12px;

    font-size:18px;

}

/*=========================
Button
=========================*/

.about-section .btn-gold{

    margin-top:40px;

    padding:15px 40px;

    border-radius:50px;

    background:linear-gradient(135deg,#f7c948,#f5b942);

    color:#111;

    font-weight:700;

    transition:.35s;

}

.about-section .btn-gold:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(245,185,66,.35);

}


.process {
padding:120px 0;
/*background:#2d2113;*/
}

.process-line {
display:flex;
justify-content:space-between;
position:relative;
margin-top:80px;
flex-wrap:wrap
}

.process-line::before {
content:"";
position:absolute;
left:5%;
right:5%;
top:35px;
height:4px;
background:linear-gradient(90deg,#C51E46,#C8A33D);
z-index:0
}

.step {
position:relative;
text-align:center;
z-index:2;
flex:1;
min-width:150px;
margin-bottom:40px
}

.circle {
width:70px;
height:70px;
margin:auto;
background:#fff;
border:5px solid #C8A33D;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:24px;
color:#C51E46;
transition:.35s;
box-shadow:0 10px 30px #0000001a
}

.step:hover .circle {
background:linear-gradient(135deg,#C51E46,#C8A33D);
color:#fff;
transform:scale(1.1)
}

.step h5 {
margin-top:20px;
font-weight:700;
font-size:18px
}

.step p {
font-size:14px;
color:#777;
margin-top:10px;
padding:0 10px
}

.circle::after {
content:"";
position:absolute;
width:70px;
height:70px;
border-radius:50%;
border:2px solid #c8a33d66;
animation:pulseCircle 2.5s infinite
}

@keyframes pulseCircle {
0% {
transform:scale(1);
opacity:1
}

100% {
transform:scale(1.8);
opacity:0
}
}

@media(max-width:992px) {
.process-line {
justify-content:center;
gap:35px
}

.process-line::before {
display:none
}

.step {
flex:unset;
width:45%
}
}

@media(max-width:576px) {
.step {
width:100%
}

.why-card {
padding:30px 20px
}
}


.page-header{

    position:relative;

    padding:110px 0 70px;

    overflow:hidden;

    background:
    linear-gradient(rgba(11,15,25,.88),rgba(11,15,25,.94)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1600&auto=format&fit=crop") center/cover;

    border-bottom:1px solid rgba(255,255,255,.06);

}

.page-header-content{

    position:relative;

    z-index:2;

    max-width:720px;

}

.page-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    background:rgba(245,185,66,.12);

    border:1px solid rgba(245,185,66,.35);

    color:#f5b942;

    border-radius:40px;

    margin-bottom:22px;

    font-weight:600;

}

.page-header h1{

    font-size:58px;

    font-weight:800;

    color:#fff;

    margin-bottom:15px;

}

.page-header p{

    color:#c2c8d4;

    font-size:19px;

    line-height:1.8;

    max-width:650px;

}

.breadcrumb-custom{

    margin-top:28px;

    display:flex;

    gap:12px;

    align-items:center;

}

.breadcrumb-custom a{

    color:#f5b942;

    text-decoration:none;

}

.breadcrumb-custom span{

    color:#bfc6d3;

}

.header-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

}

.circle1{

    width:300px;

    height:300px;

    background:#f5b94222;

    top:-80px;

    right:120px;

}

.circle2{

    width:260px;

    height:260px;

    background:#7b3cff20;

    bottom:-100px;

    right:-40px;

}

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

.info-box{

    background:#fff;

    border:1px solid #e8e8e8;

    border-radius:18px;

    padding:25px;

    height:100%;

    transition:.3s;

}

.info-box:hover{

    transform:translateY(-6px);

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

    border-color:#f4b400;

}

.info-box .icon{

    width:60px;

    height:60px;

    background:#fff5dd;

    color:#f4b400;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    margin-bottom:20px;

}

.info-box h5{

    font-weight:700;

    margin-bottom:15px;

    color:#222;

}

.info-box p{

    color:#666;

    font-size:15px;

    line-height:1.7;

}

.bg-light{

    background:#f8fafc !important;

}
.bg-light h2{color:#333333!important}

.contact-box{

background:#fff;

padding:35px 25px;

border-radius:18px;

text-align:center;

border:1px solid #e9ecef;

transition:.35s;

height:100%;

}

.contact-box:hover{

transform:translateY(-8px);

box-shadow:0 18px 35px rgba(0,0,0,.08);

border-color:#f5b942;

}

.contact-icon{

width:75px;

height:75px;

margin:auto;

border-radius:50%;

background:#fff7e5;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#f5b942;

margin-bottom:20px;

transition:.35s;

}

.contact-box:hover .contact-icon{

transform:rotate(8deg) scale(1.1);

background:#f5b942;

color:#111;

}

.contact-box h5{

font-weight:700;

margin-bottom:15px;

}

.contact-box p{

color:#666;

margin:0;

line-height:1.8;

}

.bg-light{

background:#f8fafc !important;

}
.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:62px;

    height:62px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:30px;

    z-index:9999;

    box-shadow:0 12px 30px rgba(37,211,102,.35);

    animation:whatsappPulse 2s infinite;

    transition:.3s;

}

.floating-whatsapp:hover{

    color:#fff;

    transform:scale(1.08);

}

@keyframes whatsappPulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.45);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

.services-section{

background:#fafafa;

}

.section-title{

font-size:48px;

font-weight:700;

margin-bottom:15px;

color:#222;

}

.section-subtitle{

max-width:700px;

margin:auto;

color:#666;

font-size:18px;

}

.service-card{

background:#fff;

border-radius:18px;

padding:35px 28px;

height:100%;

transition:.35s;

border:1px solid #eee;

text-align:left;

}

.service-card:hover{

transform:translateY(-8px);

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

border-color:#f5b942;

}

.service-icon{

width:72px;

height:72px;

border-radius:18px;

background:#fff7e8;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

color:#f5b942;

margin-bottom:22px;

transition:.35s;

}

.service-card:hover .service-icon{

background:#f5b942;

color:#111;

transform:rotate(-8deg);

}

.service-card h4{

font-weight:700;

margin-bottom:15px;

color:#222;

}

.service-card p{

color:#666;

line-height:1.8;

margin:0;

}
.text-dark{color:#222!important;}
.text-muted{color:#f2f2f2!important;}

@media(max-width:576px) {
.page-header, .hero-left, .hero-right, .hero-buttons, .footer-cta{text-align:center!important;justify-content: center;  }
.navbar-brand img{max-width:250px!important;}
.hero-glow{width:250px; height:250px;}
.dashboard-image{width:100%!important; height:auto!important; right:5px!important;}
.hero-right {min-height:275px!important;         display: none;}
.footer::before {width:100%!important; height:auto;}
.cta-buttons{display:none;}
.footer-grid div{min-width:100%!important;  justify-content: center;}
.blur1, .blur2{bottom:0px; right:0px;}
.about-image{min-height:400px;}
.footer-grid{text-align:center!important;display:block!important;  width:100%;}
.navbar-nav{border-radius:10px;}
.navbar-nav li{padding-left: 20px;}


}

