/*=====================================
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;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{

background:#f4f8fc;
color:#222;
line-height:1.7;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:90%;
max-width:1250px;
margin:auto;

}

/*=====================================
SCROLLBAR
=====================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#eef4fb;

}

::-webkit-scrollbar-thumb{

background:#0B6A88;
border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#084d64;

}

/*=====================================
TEXT SELECTION
=====================================*/

::selection{

background:#0B6A88;
color:#fff;

}

/*=====================================
HEADER
=====================================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
background:#ffffff;
box-shadow:0 4px 18px rgba(0,0,0,.08);
z-index:9999;

}

header .container{

display:flex;
align-items:center;
justify-content:space-between;
height:82px;

}

/*=====================================
LOGO
=====================================*/

.logo{

display:flex;
align-items:center;
gap:12px;

}

.logo img{

width:55px;
height:55px;
border-radius:12px;

}

.logo h2{

font-size:28px;
font-weight:800;
color:#0B6A88;
letter-spacing:1px;

}

/*=====================================
NAVIGATION
=====================================*/

nav ul{

display:flex;
align-items:center;
gap:28px;

}

nav ul li a{

font-size:15px;
font-weight:600;
color:#222;
transition:.3s;

}

nav ul li a:hover{

color:#0B6A88;

}

/*=====================================
REGISTER BUTTON
=====================================*/

.register-btn{

background:#0B6A88;
color:#fff;
padding:14px 28px;
border-radius:50px;
font-weight:700;
transition:.35s;

}

.register-btn:hover{

background:#084d64;
transform:translateY(-2px);

}

/*=====================================
MENU BUTTON
=====================================*/

.menu-btn{

display:none;
font-size:32px;
cursor:pointer;
color:#0B6A88;

}

/*=====================================
LIVE BAR
=====================================*/

.earning-bar{

margin-top:82px;
background:#0B6A88;
color:#fff;
overflow:hidden;
padding:12px 0;

}

.marquee{

display:flex;
gap:60px;
white-space:nowrap;
animation:scroll 25s linear infinite;

}

.marquee span{

font-size:15px;
font-weight:600;

}

@keyframes scroll{

0%{

transform:translateX(100%);

}

100%{

transform:translateX(-100%);

}

}

/*=====================================
HERO SECTION
=====================================*/

.hero{

padding:90px 0;

background:linear-gradient(135deg,#eef8ff,#ffffff);

}

.hero-content{

text-align:center;

}

.hero-tag{

display:inline-block;

background:#d9f2ff;

color:#0B6A88;

padding:8px 18px;

border-radius:50px;

font-weight:600;

margin-bottom:25px;

}

.hero h1{

font-size:56px;

font-weight:800;

margin-bottom:18px;

color:#0B6A88;

}

.hero h2{

font-size:28px;

font-weight:600;

margin-bottom:20px;

color:#333;

}

.hero p{

max-width:850px;

margin:auto;

font-size:18px;

color:#666;

margin-bottom:45px;

}

.hero-image{

max-width:420px;

margin:40px auto;

}

.hero-image img{

border-radius:28px;

box-shadow:0 18px 45px rgba(0,0,0,.18);

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn{

background:#0B6A88;

color:#fff;

padding:16px 40px;

border-radius:50px;

font-size:16px;

font-weight:700;

transition:.3s;

}

.btn:hover{

background:#084d64;

transform:translateY(-4px);

}

.btn2{

background:#fff;

color:#0B6A88;

border:2px solid #0B6A88;

padding:16px 40px;

border-radius:50px;

font-weight:700;

transition:.3s;

}

.btn2:hover{

background:#0B6A88;

color:#fff;

}

/*=====================================
SECTION TITLE
=====================================*/

.section-title{

text-align:center;

margin-bottom:55px;

}

.section-title span{

display:inline-block;

background:#dff5ff;

color:#0B6A88;

padding:8px 18px;

border-radius:40px;

font-size:14px;

font-weight:700;

margin-bottom:16px;

}

.section-title h2{

font-size:42px;

font-weight:800;

color:#0B6A88;

margin-bottom:15px;

}

.section-title p{

max-width:760px;

margin:auto;

color:#666;

font-size:17px;

}

/*=====================================
REFERRAL SECTION
=====================================*/

.refer-section{
padding:80px 0 30px;
}

.refer-box{

background:linear-gradient(135deg,#0B6A88,#0F87AA);

border-radius:25px;

padding:60px 40px;

text-align:center;

color:#fff;

box-shadow:0 20px 40px rgba(11,106,136,.25);

}

.refer-title{

display:inline-block;

background:rgba(255,255,255,.18);

padding:10px 20px;

border-radius:50px;

font-weight:700;

margin-bottom:20px;

}

.refer-box h2{

font-size:52px;

margin:15px 0;

letter-spacing:2px;

font-weight:800;

}

.refer-box p{

max-width:700px;

margin:20px auto 35px;

font-size:17px;

opacity:.95;

}

.refer-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.copy-btn{

background:#fff;

color:#0B6A88;

padding:15px 35px;

border:none;

border-radius:50px;

font-size:16px;

font-weight:700;

cursor:pointer;

transition:.35s;

}

.copy-btn:hover{

transform:translateY(-4px);

}

.register-btn2{

background:#FFD54A;

color:#222;

padding:15px 35px;

border-radius:50px;

font-weight:700;

transition:.35s;

}

.register-btn2:hover{

transform:translateY(-4px);

}

/*=====================================
REWARD SECTION
=====================================*/

.reward-section{

padding-bottom:80px;

}

.reward-box{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.reward-item{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

font-size:17px;

font-weight:600;

transition:.35s;

}

.reward-item:hover{

transform:translateY(-8px);

}

/*=====================================
STATISTICS
=====================================*/

.stats{

padding:20px 0 90px;

}

.stat-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.stat-card{

background:#fff;

padding:35px;

border-radius:22px;

text-align:center;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.stat-card:hover{

transform:translateY(-8px);

}

.stat-card h2{

font-size:38px;

font-weight:800;

color:#0B6A88;

margin-bottom:10px;

}

.stat-card p{

color:#666;

font-weight:600;

}

/*=====================================
WALLET SECTION
=====================================*/

.wallet-section{

padding:90px 0;

background:#fff;

}

.wallet-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.wallet-card{

background:#F8FBFE;

padding:30px;

border-radius:22px;

display:flex;

justify-content:center;

align-items:center;

height:150px;

transition:.35s;

box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.wallet-card:hover{

transform:translateY(-8px);

}

.wallet-card img{

max-width:90px;

}

/*=====================================
HIGHLIGHT SECTION
=====================================*/

.highlight-section{

padding:90px 0;

}

.highlight-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.highlight-card{

background:#fff;

padding:35px;

border-radius:22px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.highlight-card:hover{

transform:translateY(-8px);

}

.highlight-card h3{

font-size:24px;

margin-bottom:15px;

color:#0B6A88;

}

.highlight-card p{

color:#666;

}

/*=====================================
APP PREVIEW
=====================================*/

.app-preview{

padding:90px 0;

background:#fff;

}

.preview-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.preview-card{

background:#fff;

padding:15px;

border-radius:22px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

}

.preview-card:hover{

transform:translateY(-10px);

}

.preview-card img{

border-radius:16px;

width:100%;

}

/*=====================================
WHY CHOOSE
=====================================*/

.why{

padding:90px 0;

}

.why-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.why-card{

background:#fff;

padding:35px;

border-radius:22px;

text-align:center;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.why-card:hover{

transform:translateY(-10px);

}

.why-card .icon{

font-size:55px;

margin-bottom:20px;

}

.why-card h3{

font-size:24px;

margin-bottom:15px;

color:#0B6A88;

}

.why-card p{

color:#666;

}

/*=====================================
FEATURE SECTION
=====================================*/

.feature-section{

padding:90px 0;

background:#fff;

}

.feature-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.feature-box{

background:#F8FBFE;

padding:35px;

border-radius:20px;

transition:.35s;

box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.feature-box:hover{

transform:translateY(-10px);

}

.feature-box h3{

font-size:24px;

color:#0B6A88;

margin-bottom:15px;

}

.feature-box p{

color:#666;

}

/*=====================================
STEPS SECTION
=====================================*/

.steps{

padding:90px 0;

}

.steps-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.step-card{

background:#fff;

padding:40px;

border-radius:24px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

}

.step-card:hover{

transform:translateY(-10px);

}

.step-number{

width:70px;

height:70px;

background:#0B6A88;

color:#fff;

border-radius:50%;

margin:0 auto 25px;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

font-weight:800;

}

.step-card h3{

font-size:24px;

color:#0B6A88;

margin-bottom:15px;

}

.step-card p{

color:#666;

}

/*=====================================
GUIDE SECTION
=====================================*/

.guide{

padding:90px 0;

background:#fff;

}

.guide-content{

background:#F8FBFE;

padding:50px;

border-radius:25px;

box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.guide-content h3{

font-size:28px;

margin-top:35px;

margin-bottom:15px;

color:#0B6A88;

}

.guide-content h3:first-child{

margin-top:0;

}

.guide-content p{

font-size:17px;

color:#666;

margin-bottom:20px;

}

/*=====================================
INFO CARDS
=====================================*/

.info-section{

padding:90px 0;

}

.info-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.info-card{

background:#fff;

padding:35px;

border-radius:22px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.info-card:hover{

transform:translateY(-10px);

}

.info-card h3{

font-size:23px;

color:#0B6A88;

margin-bottom:15px;

}

.info-card p{

color:#666;

}

/*=====================================
SEO CONTENT
=====================================*/

.seo-content{

padding:90px 0;

background:#fff;

}

.seo-content p{

font-size:18px;

color:#555;

margin-bottom:25px;

line-height:1.9;

}

/*=====================================
FAQ
=====================================*/

.faq-section{

padding:90px 0;

}

.faq{

display:grid;

gap:22px;

}

.faq-item{

background:#fff;

padding:30px;

border-radius:18px;

box-shadow:0 10px 25px rgba(0,0,0,.07);

transition:.3s;

}

.faq-item:hover{

transform:translateY(-6px);

}

.faq-item h3{

font-size:22px;

color:#0B6A88;

margin-bottom:12px;

}

.faq-item p{

color:#666;

}

/*=====================================
REVIEWS
=====================================*/

.reviews{

padding:90px 0;

background:#fff;

}

.review-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.review-card{

background:#F8FBFE;

padding:35px;

border-radius:22px;

text-align:center;

font-size:22px;

box-shadow:0 12px 30px rgba(0,0,0,.06);

transition:.35s;

}

.review-card:hover{

transform:translateY(-8px);

}

.review-card p{

font-size:16px;

margin:20px 0;

color:#666;

}

.review-card h4{

color:#0B6A88;

}

/*=====================================
CTA SECTION
=====================================*/

.contact-cta{

padding:90px 0;

}

.cta-box{

background:linear-gradient(135deg,#0B6A88,#148BB1);

padding:70px 40px;

border-radius:30px;

text-align:center;

color:#fff;

}

.cta-box h2{

font-size:42px;

margin-bottom:20px;

}

.cta-box p{

max-width:750px;

margin:auto auto 35px;

font-size:18px;

opacity:.95;

}

/*=====================================
FOOTER
=====================================*/

footer{

background:#062C38;

padding:90px 0 30px;

color:#fff;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:40px;

margin-bottom:50px;

}

.footer-grid h3{

font-size:24px;

margin-bottom:20px;

}

.footer-grid p{

color:#d6d6d6;

}

.footer-grid ul{

display:flex;

flex-direction:column;

gap:14px;

}

.footer-grid ul li a{

color:#d6d6d6;

transition:.3s;

}

.footer-grid ul li a:hover{

color:#fff;

padding-left:8px;

}

.copyright{

border-top:1px solid rgba(255,255,255,.12);

padding-top:25px;

text-align:center;

color:#bbb;

}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:992px){

nav{

display:none;

}

.menu-btn{

display:block;

}

.hero h1{

font-size:42px;

}

.hero h2{

font-size:24px;

}

.reward-box,
.wallet-grid,
.preview-grid,
.steps-grid,
.info-grid,
.review-grid,
.stat-grid,
.feature-grid,
.why-grid,
.highlight-grid,
.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.container{

width:94%;

}

.hero{

padding:70px 0;

}

.hero h1{

font-size:34px;

}

.hero h2{

font-size:22px;

}

.section-title h2{

font-size:30px;

}

.reward-box,
.wallet-grid,
.preview-grid,
.steps-grid,
.info-grid,
.review-grid,
.stat-grid,
.feature-grid,
.why-grid,
.highlight-grid,
.footer-grid{

grid-template-columns:1fr;

}

.logo h2{

font-size:22px;

}

.register-btn{

display:none;

}

.hero-buttons{

flex-direction:column;

}

.btn,
.btn2,
.copy-btn,
.register-btn2{

width:100%;

text-align:center;

}

.refer-box{

padding:40px 25px;

}

.refer-box h2{

font-size:38px;

}

.cta-box{

padding:45px 25px;

}

.cta-box h2{

font-size:30px;

}

.guide-content{

padding:30px;

}

}

/*=====================================
ANIMATION
=====================================*/

.hidden{

opacity:0;

transform:translateY(50px);

transition:all .8s ease;

}

.show{

opacity:1;

transform:translateY(0);

}

/*=====================================
BACK TO TOP
=====================================*/

.topBtn{

position:fixed;

bottom:25px;

right:25px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#0B6A88;

color:#fff;

font-size:24px;

cursor:pointer;

display:none;

box-shadow:0 10px 25px rgba(0,0,0,.2);

transition:.3s;

z-index:9999;

}

.topBtn:hover{

transform:translateY(-5px);

background:#084d64;

}

/*=====================================
MOBILE MENU
=====================================*/

@media(max-width:992px){

nav{

position:fixed;

top:82px;

right:-100%;

width:300px;

height:calc(100vh - 82px);

background:#fff;

padding:40px 25px;

transition:.35s;

box-shadow:-10px 0 25px rgba(0,0,0,.1);

overflow-y:auto;

}

nav.active{

right:0;

}

nav ul{

display:flex;

flex-direction:column;

gap:20px;

}

nav ul li{

width:100%;

}

nav ul li a{

display:block;

padding:12px;

border-radius:10px;

}

nav ul li a:hover{

background:#eef8ff;

}

}

/*=====================================
CONTACT PAGE
=====================================*/

.contact-page{

padding:90px 0;

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:40px;

}

.contact-info{

background:#fff;

padding:40px;

border-radius:25px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-info h2{

font-size:36px;

color:#0B6A88;

margin-bottom:20px;

}

.contact-card{

margin-top:25px;

padding:20px;

background:#F7FBFD;

border-radius:15px;

}

.contact-card h3{

color:#0B6A88;

margin-bottom:8px;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:25px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-form form{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-form input,

.contact-form textarea{

padding:18px;

border:1px solid #ddd;

border-radius:12px;

font-size:16px;

outline:none;

}

.contact-form input:focus,

.contact-form textarea:focus{

border-color:#0B6A88;

}

.contact-form button{

padding:18px;

border:none;

background:#0B6A88;

color:#fff;

font-size:17px;

font-weight:700;

border-radius:50px;

cursor:pointer;

transition:.3s;

}

.contact-form button:hover{

background:#084d64;

}

@media(max-width:768px){

.contact-grid{

grid-template-columns:1fr;

}

}