*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#1f2937;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*=====================
HEADER
======================*/

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(20px);
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    z-index:999;
}

header .container{
    height:85px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:65px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:40px;
}

nav a{
    text-decoration:none;
    color:#1f2937;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#D4AF37;
}

.menu{
    display:none;
    font-size:28px;
    color:#1f2937;
    cursor:pointer;
}

/*=====================
HERO
======================*/

.hero{

    height:100vh;

    display:flex;

    align-items:center;

    background:
    linear-gradient(rgba(255,255,255,.92),
    rgba(255,255,255,.96)),
    url("../images/chart.jpg");

    background-size:cover;

    background-position:center;

}

.hero-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}

.left{

    width:50%;

}

.left h1{

    font-size:64px;

    line-height:72px;

    font-weight:800;

    background:linear-gradient(90deg,#FFD700,#B8860B);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.left h2{

    margin-top:18px;

    font-size:34px;

    color:#1f2937;

}

.left p{

    margin:30px 0;

    font-size:18px;

    color:#6B7280;

    line-height:32px;

}

.buttons{

    display:flex;

    gap:20px;

}

.gold-btn{

    background:#D4AF37;

    color:#fff;

    text-decoration:none;

    padding:15px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

    box-shadow:0 10px 30px rgba(212,175,55,.30);

}

.gold-btn:hover{

    background:#B8860B;

    transform:translateY(-4px);

}

.outline-btn{

    padding:15px 35px;

    border:2px solid #D4AF37;

    color:#D4AF37;

    text-decoration:none;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.outline-btn:hover{

    background:#D4AF37;

    color:#fff;

}

.right{

    width:50%;

    text-align:center;

}

.right img{

    width:450px;

    max-width:100%;

    animation:float 4s ease-in-out infinite;

    filter:drop-shadow(0 15px 35px rgba(212,175,55,.35));

}

@keyframes float{

    50%{

        transform:translateY(-15px);

    }

}

/*=====================
FLOATING BUTTONS
======================*/

.floating{

    position:fixed;

    right:25px;

    bottom:25px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:9999;

}

.floating a{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:28px;

    color:#fff;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    transition:.3s;

}

.floating a:hover{

    transform:scale(1.08);

}

.floating a:first-child{

    background:#25D366;

}

.floating a:last-child{

    background:#0088cc;

}

/*========================================
WHY CHOOSE US
========================================*/

.why-section{
    padding:110px 0;
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#D4AF37;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:46px;
    color:#1F2937;
    margin:15px 0;
    font-weight:700;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#6B7280;
    line-height:30px;
    font-size:17px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{

    background:#ffffff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    border:1px solid #E5E7EB;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(212,175,55,.20);

    border-color:#D4AF37;

}

.why-card i{

    width:85px;

    height:85px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#FFF8E5;

    color:#D4AF37;

    font-size:36px;

}

.why-card h3{

    color:#1F2937;

    font-size:24px;

    margin-bottom:15px;

}

.why-card p{

    color:#6B7280;

    line-height:28px;

}


/*========================================
SERVICES
========================================*/

.services-section{

    padding:110px 0;

    background:#F8F9FA;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    border:1px solid #E5E7EB;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.35s;

    position:relative;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(212,175,55,.18);

}

.service-icon{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#FFF8E5;

    margin-bottom:25px;

}

.service-icon i{

    font-size:34px;

    color:#D4AF37;

}

.service-card h3{

    font-size:24px;

    color:#1F2937;

    margin-bottom:20px;

}

.service-card ul{

    list-style:none;

    margin-bottom:30px;

}

.service-card ul li{

    padding:12px 0;

    color:#6B7280;

    border-bottom:1px solid #F1F1F1;

}

.service-btn{

    display:inline-block;

    background:#D4AF37;

    color:#fff;

    text-decoration:none;

    padding:14px 28px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.service-btn:hover{

    background:#B8860B;

}

.premium{

    border:2px solid #D4AF37;

    background:linear-gradient(180deg,#FFFDF7,#FFF6DA);

}

.premium-tag{

    position:absolute;

    top:18px;

    right:-38px;

    background:#D4AF37;

    color:#fff;

    padding:8px 42px;

    font-size:12px;

    font-weight:700;

    transform:rotate(45deg);

}

/*========================================
STATS SECTION
========================================*/

.stats-section{
    padding:110px 0;
    background:#ffffff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:20px;
    padding:45px 25px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
    transition:.35s;
}

.stat-box:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
    box-shadow:0 20px 45px rgba(212,175,55,.18);
}

.stat-box h2{
    font-size:52px;
    color:#D4AF37;
    font-weight:700;
    margin-bottom:10px;
}

.stat-box span{
    color:#D4AF37;
    font-size:28px;
    font-weight:700;
}

.stat-box p{
    color:#6B7280;
    font-size:16px;
    margin-top:10px;
}


/*========================================
PROCESS SECTION
========================================*/

.process-section{
    padding:110px 0;
    background:#F8F9FA;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.process-card{
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    border:1px solid #E5E7EB;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(212,175,55,.18);
    border-color:#D4AF37;
}

.number{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#D4AF37;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(212,175,55,.30);
}

.process-card h3{
    color:#1F2937;
    font-size:24px;
    margin-bottom:15px;
}

.process-card p{
    color:#6B7280;
    line-height:28px;
}


/*========================================
CALL TO ACTION
========================================*/

.cta-section{

    padding:100px 0;

    background:linear-gradient(135deg,#D4AF37,#B8860B);

    text-align:center;

    color:#fff;

}

.cta-section h2{

    font-size:48px;

    font-weight:700;

    margin-bottom:20px;

}

.cta-section p{

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

    font-size:18px;

    line-height:32px;

    color:#fff;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-section .gold-btn{

    background:#fff;

    color:#B8860B;

    box-shadow:none;

}

.cta-section .gold-btn:hover{

    background:#1F2937;

    color:#fff;

}

.cta-section .outline-btn{

    border:2px solid #fff;

    color:#fff;

}

.cta-section .outline-btn:hover{

    background:#fff;

    color:#B8860B;

}

/*=========================================
CONTACT SECTION
=========================================*/

.contact-section{
    padding:110px 0;
    background:#ffffff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    margin-top:60px;
}

.contact-info h3{
    font-size:40px;
    color:#1F2937;
    margin-bottom:15px;
}

.contact-info>p{
    color:#6B7280;
    margin-bottom:35px;
    line-height:30px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:30px;
}

.contact-item i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#FFF7DD;
    color:#D4AF37;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.contact-item h4{
    color:#1F2937;
    margin-bottom:5px;
}

.contact-item p{
    color:#6B7280;
}

.social-buttons{
    margin-top:40px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.contact-form{
    background:#fff;
    border-radius:20px;
    padding:40px;
    border:1px solid #E5E7EB;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:16px 18px;
    margin-bottom:20px;

    border:1px solid #E5E7EB;
    border-radius:12px;

    background:#F9FAFB;

    color:#1F2937;

    font-size:15px;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;
    border-color:#D4AF37;
    background:#fff;

}

.contact-form button{

    border:none;
    cursor:pointer;

    width:100%;

}

/*=========================================
FOOTER
=========================================*/

footer{

    background:#1F2937;

    padding:70px 0 40px;

    text-align:center;

}

.footer-logo{

    height:80px;

    margin-bottom:20px;

}

footer p{

    color:#D1D5DB;

    line-height:28px;

}

.risk{

    margin-top:20px;

    max-width:900px;

    margin-left:auto;

    margin-right:auto;

    color:#9CA3AF;

    font-size:14px;

}

/*=========================================
SCROLL BUTTON
=========================================*/

.scrollTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    background:#D4AF37;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(212,175,55,.35);

    transition:.3s;

    z-index:999;

    display:none;

}

.scrollTop:hover{

    background:#B8860B;

    transform:translateY(-5px);

}

/*=================================
PREMIUM SERVICES
=================================*/

.premium-services{

padding:110px 0;

background:#fff;

}

.service-showcase{

display:flex;

align-items:center;

justify-content:space-between;

gap:70px;

margin:100px 0;

}

.service-showcase.reverse{

flex-direction:row-reverse;

}

.service-image{

flex:1;

}

.service-image img{

width:100%;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

transition:.4s;

border:1px solid #eee;

}

.service-image img:hover{

transform:scale(1.03);

}

.service-content{

flex:1;

}

.service-content h3{

font-size:42px;

color:#1F2937;

margin-bottom:20px;

}

.service-content p{

font-size:17px;

line-height:30px;

color:#6B7280;

margin-bottom:30px;

}

.service-content ul{

list-style:none;

margin-bottom:35px;

}

.service-content ul li{

padding:12px 0;

font-size:17px;

color:#374151;

border-bottom:1px solid #ECECEC;

}

.service-content .gold-btn{

display:inline-block;

}
