/*=========================================
RESET
=========================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:#f7f9fd;

color:#1b2430;

overflow-x:hidden;

line-height:1.7;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:90%;

max-width:1280px;

margin:auto;

}

/*=========================================
HEADER
=========================================*/

.header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

background:rgba(255,255,255,.82);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(0,0,0,.05);

}

.nav{

height:90px;

display:flex;

align-items:center;

justify-content:space-between;

gap:20px;

}

.nav-links{

display:flex;

align-items:center;

}

.nav-links ul{

display:flex;

gap:38px;

}

.nav-actions{

display:flex;

align-items:center;

gap:16px;

}

.menu-toggle{

display:none;

border:0;

background:rgba(13,110,253,.1);

color:#0D6EFD;

width:46px;

height:46px;

border-radius:50%;

align-items:center;

justify-content:center;

flex-direction:column;

gap:4px;

cursor:pointer;

}

.menu-toggle span{

display:block;

width:20px;

height:2px;

background:currentColor;

border-radius:999px;

transition:.25s ease;

}

.menu-toggle.active span:nth-child(1){

transform:translateY(6px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

opacity:0;

}

.menu-toggle.active span:nth-child(3){

transform:translateY(-6px) rotate(-45deg);

}

.logo{

font-size:34px;

font-weight:800;

color:#07162F;

}

.logo span{

color:#0D6EFD;

}

nav a{

font-weight:600;

color:#333;

transition:.3s;

}

nav a:hover{

color:#0D6EFD;

}

.nav-btn{

padding:16px 30px;

background:#0D6EFD;

color:white;

border-radius:14px;

font-weight:700;

transition:.35s;

box-shadow:0 15px 35px rgba(13,110,253,.25);

}

.nav-btn:hover{

transform:translateY(-5px);

}

/*=========================================
HERO
=========================================*/

.hero{

position:relative;

padding:170px 0 120px;

overflow:hidden;

background:
linear-gradient(135deg,#07162F,#0D6EFD);

color:white;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.hero-left{

position:relative;

z-index:2;

}

.badge{

display:inline-block;

padding:10px 22px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(15px);

border:1px solid rgba(255,255,255,.15);

border-radius:100px;

font-size:13px;

letter-spacing:1px;

font-weight:700;

margin-bottom:30px;

}

.hero h1{

font-size:72px;

line-height:1.05;

font-weight:800;

margin-bottom:25px;

}

.hero h1 span{

display:block;

background:linear-gradient(90deg,#4da3ff,#8b5cf6);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero p{

font-size:19px;

opacity:.9;

max-width:580px;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:40px;

}

.btn{

padding:18px 34px;

background:white;

color:#0D6EFD;

border-radius:14px;

font-weight:700;

display:flex;

align-items:center;

gap:10px;

transition:.35s;

}

.btn:hover{

transform:translateY(-6px);

}

.btn-outline{

padding:18px 34px;

border:2px solid rgba(255,255,255,.25);

color:white;

border-radius:14px;

font-weight:700;

transition:.35s;

}

.btn-outline:hover{

background:white;

color:#0D6EFD;

}

.hero-trust{

display:flex;

gap:28px;

font-weight:600;

}

.hero-trust div{

display:flex;

align-items:center;

gap:8px;

}

.hero-trust i{

color:#4ade80;

}

/*=========================================
BACKGROUND BLOBS
=========================================*/

.blob{

position:absolute;

border-radius:50%;

filter:blur(70px);

opacity:.35;

animation:float 10s infinite ease-in-out;

}

.blob1{

width:320px;

height:320px;

background:#2563eb;

top:-80px;

left:-80px;

}

.blob2{

width:260px;

height:260px;

background:#8b5cf6;

bottom:40px;

right:-80px;

animation-delay:2s;

}

.blob3{

width:180px;

height:180px;

background:#22c55e;

top:40%;

left:55%;

animation-delay:4s;

}
/*=========================================
HERO RIGHT
=========================================*/

.hero-right{

display:flex;

justify-content:center;

align-items:center;

position:relative;

z-index:2;

}

/*=========================================
PREVIEW WINDOW
=========================================*/

.preview-card{

width:100%;

max-width:560px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(24px);

border:1px solid rgba(255,255,255,.18);

border-radius:28px;

overflow:hidden;

box-shadow:

0 40px 90px rgba(0,0,0,.35);

transition:.45s;

animation:floatCard 6s ease-in-out infinite;

}

.preview-card:hover{

transform:translateY(-12px);

box-shadow:

0 60px 120px rgba(0,0,0,.45);

}

.preview-header{

height:58px;

display:flex;

align-items:center;

padding:0 24px;

gap:10px;

background:rgba(255,255,255,.08);

border-bottom:1px solid rgba(255,255,255,.12);

}

.dot{

width:14px;

height:14px;

border-radius:50%;

}

.red{

background:#ff5f57;

}

.yellow{

background:#ffbd2f;

}

.green{

background:#28c840;

}

.preview-content{

padding:45px;

}

.preview-content h3{

font-size:38px;

font-weight:700;

margin-bottom:18px;

color:white;

}

.preview-content p{

color:rgba(255,255,255,.82);

font-size:17px;

line-height:1.8;

margin-bottom:40px;

}

/*=========================================
PLATFORM BUTTONS
=========================================*/

.preview-buttons{

display:flex;

flex-direction:column;

gap:18px;

}

.mini-btn{

padding:18px 24px;

border-radius:18px;

font-size:17px;

font-weight:700;

display:flex;

align-items:center;

justify-content:center;

transition:.35s;

cursor:pointer;

}

.mini-btn:hover{

transform:translateX(8px);

}

.whatsapp{

background:#25D366;

color:white;

}

.upwork{

background:#108A00;

color:white;

}

.fiverr{

background:#1DBF73;

color:white;

}

/*=========================================
SECTION TITLE
=========================================*/

.section-title{

text-align:center;

max-width:760px;

margin:auto;

margin-bottom:70px;

}

.section-title h2{

font-size:52px;

font-weight:800;

color:#07162F;

margin-bottom:18px;

line-height:1.15;

}

.section-title p{

font-size:18px;

color:#6b7280;

}

/*=========================================
PLATFORMS
=========================================*/

.platforms{

padding:120px 0;

background:#f7f9fd;

}

.platform-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

}

.platform-card{

background:white;

border-radius:28px;

padding:40px;

box-shadow:

0 20px 50px rgba(0,0,0,.08);

transition:.4s;

position:relative;

overflow:hidden;

border:1px solid #edf2f7;

}

.platform-card:hover{

transform:translateY(-12px);

box-shadow:

0 35px 80px rgba(13,110,253,.16);

border-color:#0D6EFD;

}

.platform-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:#0D6EFD;

transform:scaleX(0);

transition:.35s;

}

.platform-card:hover::before{

transform:scaleX(1);

}

.platform-icon{

width:90px;

height:90px;

border-radius:24px;

display:flex;

align-items:center;

justify-content:center;

font-size:42px;

margin-bottom:28px;

}

.platform-icon.whatsapp{

background:#dcfce7;

color:#25D366;

}

.platform-icon.upwork{

background:#dcfce7;

color:#108A00;

}

.platform-icon.fiverr{

background:#dcfce7;

color:#1DBF73;

}

.platform-icon.consultation{

background:#dbeafe;

color:#0D6EFD;

}

.platform-card h3{

font-size:30px;

margin-bottom:18px;

color:#07162F;

font-weight:700;

}

.platform-card p{

font-size:16px;

color:#6b7280;

margin-bottom:24px;

line-height:1.8;

}

.platform-card ul{

margin-bottom:30px;

}

.platform-card li{

display:flex;

align-items:center;

gap:10px;

padding:10px 0;

color:#374151;

}

.platform-card li i{

color:#22c55e;

}

.platform-btn{

display:flex;

justify-content:center;

align-items:center;

gap:10px;

padding:18px;

border-radius:16px;

font-weight:700;

transition:.35s;

color:white;

}

.whatsapp-btn{

background:#25D366;

}

.upwork-btn{

background:#108A00;

}

.fiverr-btn{

background:#1DBF73;

}

.consultation-btn{

background:#0D6EFD;

}

.platform-btn:hover{

transform:translateY(-5px);

}
/*===========================
BENEFITS
===========================*/

.benefits{

padding:120px 0;

background:linear-gradient(135deg,#f8fbff 0%,#ffffff 100%);

}

.benefits-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:32px;
}

.benefit-card{

background:white;

padding:36px 32px;

border-radius:24px;

border:1px solid #edf2f7;

box-shadow:0 18px 45px rgba(7,22,47,.06);

transition:.35s;

position:relative;

overflow:hidden;

}

.benefit-card::before{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:4px;

background:linear-gradient(90deg,#0D6EFD,#4da3ff);

transform:scaleX(.16);

transform-origin:left;

transition:.35s;

}

.benefit-card:hover{

transform:translateY(-8px);

box-shadow:0 24px 60px rgba(13,110,253,.14);

border-color:rgba(13,110,253,.2);

}

.benefit-card:hover::before{

transform:scaleX(1);

}

.benefit-icon{

width:64px;

height:64px;

display:flex;

align-items:center;

justify-content:center;

border-radius:18px;

background:linear-gradient(135deg,rgba(13,110,253,.12),rgba(77,163,255,.24));

color:#0D6EFD;

font-size:28px;

margin-bottom:22px;

}

.benefit-card h3{

font-size:24px;

font-weight:700;

color:#07162F;

margin-bottom:12px;

}

.benefit-card p{

font-size:16px;

line-height:1.8;

color:#6b7280;

}

/*===========================
TRUSTED
===========================*/

.trusted{

padding:70px 0;

background:white;

}

.trusted-title{

text-align:center;

font-size:18px;

font-weight:600;

color:#666;

margin-bottom:45px;

}

.trusted-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:25px;

}

.trusted-item{

background:#fff;

padding:30px;

border-radius:20px;

text-align:center;

border:1px solid #eef2f7;

transition:.35s;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.trusted-item:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(13,110,253,.12);

}

.trusted-item i{

font-size:34px;

color:#0D6EFD;

margin-bottom:15px;

}

.trusted-item span{

font-weight:700;

color:#07162F;

}
/*===========================
TESTIMONIALS
===========================*/

.testimonials{

padding:120px 0;

background:linear-gradient(135deg,#f8fbff 0%,#ffffff 100%);

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.testimonial-card{

background:white;

padding:35px;

border-radius:24px;

box-shadow:0 20px 45px rgba(0,0,0,.08);

transition:.35s;

border:1px solid #eef2f7;

}

.testimonial-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 60px rgba(13,110,253,.15);

border-color:rgba(13,110,253,.2);

}

.stars{

color:#FFC107;

margin-bottom:20px;

font-size:18px;

}

.testimonial-card p{

line-height:1.8;

color:#666;

margin-bottom:30px;

}

.client{

display:flex;

align-items:center;

gap:15px;

}

.client-photo{

width:68px;

height:68px;

border-radius:50%;

overflow:hidden;

flex-shrink:0;

border:3px solid #e8f1ff;

box-shadow:0 10px 20px rgba(13,110,253,.12);

}

.client-photo img{

width:100%;

height:100%;

object-fit:cover;

}

.client h4{

font-size:18px;

margin-bottom:4px;

color:#07162F;

}

.client span{

color:#777;

font-size:14px;

}
/*===========================
STATISTICS
===========================*/

.stats{

padding:120px 0;

background:linear-gradient(135deg,#07162F,#0D6EFD);

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.stat-card{

background:rgba(255,255,255,.08);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.12);

padding:40px;

border-radius:24px;

text-align:center;

transition:.35s;

}

.stat-card:hover{

transform:translateY(-10px);

background:rgba(255,255,255,.12);

}

.stat-card h2{

font-size:64px;

font-weight:800;

color:rgb(11, 171, 3);

margin-bottom:15px;

}

.stat-card h4{

font-size:22px;

color:white;

margin-bottom:15px;

}

.stat-card p{

color:rgba(255,255,255,.8);

line-height:1.8;

}
/*=========================================
CTA & CONTACT
=========================================*/

.cta{

padding:120px 0;

background:linear-gradient(135deg,#07162F,#0D6EFD);

color:white;

}

.cta-box{

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.16);

box-shadow:0 30px 70px rgba(0,0,0,.18);

border-radius:32px;

padding:60px 50px;

max-width:980px;

margin:auto;

text-align:center;

}

.cta-box h2{

font-size:48px;

font-weight:800;

margin-bottom:20px;

line-height:1.08;

}

.cta-box p{

font-size:18px;

opacity:.92;

max-width:780px;

margin:auto;

margin-bottom:35px;

color:rgba(255,255,255,.92);

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.cta-buttons .btn,
.cta-buttons .btn-outline{

min-width:220px;

}

.contact{

padding:110px 0;

background:#f7f9fd;

}

.contact-form{

max-width:760px;

margin:auto;

display:grid;

gap:20px;

}

.contact-form input,
.contact-form textarea{

width:100%;

padding:18px 22px;

border-radius:18px;

border:1px solid #d1d5db;

background:white;

font-size:16px;

color:#111827;

outline:none;

transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

border-color:#0D6EFD;

box-shadow:0 0 0 4px rgba(13,110,253,.12);

}

.contact-form button{

width:100%;

padding:18px 22px;

border-radius:18px;

font-size:17px;

font-weight:700;

background:#0D6EFD;

color:white;

border:none;

cursor:pointer;

transition:.35s;

}

.contact-form button:hover{

transform:translateY(-4px);

box-shadow:0 18px 30px rgba(13,110,253,.2);

}

footer{

padding:70px 0 50px;

background:#07162F;

color:white;

}

.footer-content{

display:grid;

grid-template-columns:1.4fr 1fr;

gap:30px;

align-items:start;

}

.footer-logo{

font-size:32px;

font-weight:800;

color:white;

margin-bottom:20px;

}

.footer-logo span{

color:#4da3ff;

}

.footer-content p{

max-width:520px;

line-height:1.8;

color:rgba(255,255,255,.82);

margin-bottom:28px;

}

.footer-links{

display:flex;

gap:28px;

flex-wrap:wrap;

}

.footer-links a{

color:rgba(255,255,255,.85);

font-weight:600;

transition:.3s;

}

.footer-links a:hover{

color:white;

}

.copyright{

color:rgba(255,255,255,.65);

font-size:14px;

margin-top:20px;

}

/*=========================================
FAQ
=========================================*/

.faq{

padding:120px 0;

background:#ffffff;

}

.faq-wrapper{

max-width:900px;

margin:auto;

}

.faq-item{

background:white;

margin-bottom:20px;

border-radius:22px;

overflow:hidden;

border:1px solid #edf2f7;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.3s;

}

.faq-item.active{

border-color:#0D6EFD;

}

.faq-question{

width:100%;

padding:28px 30px;

background:white;

border:none;

display:flex;

justify-content:space-between;

align-items:center;

font-size:20px;

font-weight:700;

cursor:pointer;

color:#07162F;

}

.faq-question i{

transition:.35s;

color:#0D6EFD;

}

.faq-item.active i{

transform:rotate(45deg);

}

.faq-answer{

display:none;

padding:0 30px 30px;

}

.faq-answer p{

color:#6b7280;

line-height:1.9;

font-size:16px;

}

.faq-item.active .faq-answer{

display:block;

}
/*=========================================
PAGE LOADER
=========================================*/

#loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

background:white;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

transition:.6s;

}

.loader-circle{

width:70px;

height:70px;

border:7px solid #e5e7eb;

border-top:7px solid #0D6EFD;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/*=========================================
SCROLL PROGRESS
=========================================*/

#progress-bar{

position:fixed;

top:0;

left:0;

height:4px;

width:0;

background:#0D6EFD;

z-index:999999;

transition:.1s;

}

/*=========================================
BACK TO TOP
=========================================*/

#topBtn{

position:fixed;

bottom:30px;

right:30px;

width:60px;

height:60px;

border:none;

border-radius:50%;

background:#0D6EFD;

color:white;

font-size:22px;

cursor:pointer;

display:none;

box-shadow:0 15px 40px rgba(13,110,253,.35);

transition:.35s;

z-index:9999;

}

#topBtn:hover{

transform:translateY(-8px);

}

@media (prefers-reduced-motion: reduce){

*, *::before, *::after{

animation-duration:0.01ms !important;

animation-iteration-count:1 !important;

transition-duration:0.01ms !important;

scroll-behavior:auto !important;

}

.blob,
.preview-card,
.platform-card,
.benefit-card,
.testimonial-card,
.stat-card{

animation:none !important;

}

}
/*=========================================
FLOATING ANIMATIONS
=========================================*/

.platform-card,
.benefit-card,
.testimonial-card,
.stat-card{

animation:floatCard 6s ease-in-out infinite;

}

.platform-card:nth-child(2){

animation-delay:.5s;

}

.platform-card:nth-child(3){

animation-delay:1s;

}

.platform-card:nth-child(4){

animation-delay:1.5s;

}

@keyframes floatCard{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}

}

/*=========================================
BUTTON RIPPLE
=========================================*/

.btn,
.platform-btn,
.nav-btn{

position:relative;

overflow:hidden;

}

.btn::after,
.platform-btn::after,
.nav-btn::after{

content:"";

position:absolute;

width:0;

height:0;

border-radius:50%;

background:rgba(255,255,255,.3);

top:50%;

left:50%;

transform:translate(-50%,-50%);

transition:.6s;

}

.btn:hover::after,
.platform-btn:hover::after,
.nav-btn:hover::after{

width:320px;

height:320px;

}
/*=========================================
CURSOR GLOW
=========================================*/

.cursor-glow{

position:fixed;

width:220px;

height:220px;

background:radial-gradient(circle,
rgba(13,110,253,.15),
transparent 70%);

pointer-events:none;

border-radius:50%;

transform:translate(-50%,-50%);

z-index:0;

transition:transform .08s linear;

}
