/* ================= RESET ================= */
html{
scroll-behavior:smooth;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:linear-gradient(135deg,#070b1a,#111827,#1e1b4b);
color:#fff;
overflow-x:hidden;
}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-thumb{
background:linear-gradient(#06b6d4,#ec4899);
border-radius:20px;
}

/* ================= BACKGROUND ================= */

.bg1{
position:fixed;
top:-200px;
left:-200px;
width:600px;
height:600px;
background:radial-gradient(circle,#06b6d444,transparent 70%);
z-index:-1;
animation:move1 12s infinite alternate;
}

.bg2{
position:fixed;
bottom:-200px;
right:-200px;
width:700px;
height:700px;
background:radial-gradient(circle,#ec489944,transparent 70%);
z-index:-1;
animation:move2 12s infinite alternate;
}

@keyframes move1{
100%{
transform:translate(120px,80px);
}
}

@keyframes move2{
100%{
transform:translate(-120px,-80px);
}
}

/* ================= NAVBAR ================= */

nav{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 7%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(16px);
border-bottom:1px solid rgba(255,255,255,0.08);
z-index:9999;
}

.logo-box{
display:flex;
align-items:center;
gap:12px;
}

.logo-box img{
width:52px;
height:52px;
border-radius:50%;
background:#fff;
padding:4px;
}

.logo-box h2{
font-size:28px;
background:linear-gradient(90deg,#06b6d4,#ec4899);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
text-decoration:none;
color:#fff;
font-size:15px;
transition:.3s;
}

.nav-links a:hover{
color:#06b6d4;
}

/* ================= HERO ================= */

header{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:130px 8% 60px;
}

.hero{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:60px;
align-items:center;
max-width:1300px;
width:100%;
}

.hero-text h1{
font-size:68px;
line-height:1.1;
margin-bottom:25px;
}

.hero-text span{
background:linear-gradient(90deg,#06b6d4,#ec4899);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero-text p{
font-size:17px;
line-height:1.9;
color:#d1d5db;
margin-bottom:35px;
}

.hero-btns{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn{
padding:15px 30px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.4s;
display:inline-block;
}

.btn-primary{
background:linear-gradient(135deg,#06b6d4,#ec4899);
color:#fff;
box-shadow:0 15px 35px rgba(236,72,153,0.25);
}

.btn-primary:hover{
transform:translateY(-5px);
}

.btn-secondary{
border:1px solid rgba(255,255,255,0.12);
background:rgba(255,255,255,0.05);
color:#fff;
backdrop-filter:blur(12px);
}

.btn-secondary:hover{
background:rgba(255,255,255,0.1);
}

/* ================= HERO IMAGE ================= */

.hero-image{
display:flex;
justify-content:center;
}

.hero-image img{
width:100%;
max-width:500px;
animation:float 4s ease-in-out infinite;
filter:drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

@keyframes float{
50%{
transform:translateY(-18px);
}
}

/* ================= STATS ================= */

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
padding:0 8% 80px;
}

.stat-box{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(18px);
padding:35px;
border-radius:28px;
text-align:center;
transition:.4s;
}

.stat-box:hover{
transform:translateY(-10px);
border-color:#06b6d4;
}

.stat-box h2{
font-size:42px;
margin-bottom:12px;
background:linear-gradient(90deg,#06b6d4,#ec4899);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.stat-box p{
color:#d1d5db;
}

/* ================= SECTION ================= */

.section{
padding:90px 8%;
}

.section-title{
text-align:center;
margin-bottom:65px;
}

.section-title h2{
font-size:45px;
margin-bottom:15px;
}

.section-title p{
color:#cbd5e1;
}

/* ================= SERVICES ================= */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:28px;
}

.card{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(18px);
padding:40px 25px;
border-radius:30px;
text-align:center;
text-decoration:none;
color:#fff;
position:relative;
overflow:hidden;
transition:.4s;
}

.card::before{
content:'';
position:absolute;
width:250px;
height:250px;
background:radial-gradient(circle,#06b6d422,transparent 70%);
top:-120px;
right:-120px;
}

.card:hover{
transform:translateY(-12px) scale(1.03);
border-color:#ec4899;
box-shadow:0 20px 50px rgba(236,72,153,0.2);
}

.card i{
font-size:45px;
margin-bottom:18px;
background:linear-gradient(135deg,#06b6d4,#ec4899);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.card h3{
margin-bottom:10px;
font-size:20px;
}

.card p{
font-size:14px;
color:#d1d5db;
line-height:1.7;
}

/* ================= ABOUT ================= */

.about{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:60px;
align-items:center;
}

.about img{
width:100%;
border-radius:35px;
box-shadow:0 25px 60px rgba(0,0,0,0.35);
}

.about-content h2{
font-size:48px;
margin-bottom:20px;
}

.about-content p{
line-height:1.9;
color:#d1d5db;
margin-bottom:18px;
}

/* ================= CONTACT ================= */

.contact-box{
background:linear-gradient(135deg,#06b6d422,#ec489922);
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(10px);
padding:60px;
border-radius:35px;
text-align:center;
}

.contact-box h2{
font-size:42px;
margin-bottom:15px;
}

.contact-box p{
color:#d1d5db;
margin-bottom:25px;
line-height:1.8;
}

/* ================= FLOATING BUTTONS ================= */

.floating-buttons{
position:fixed;
left:20px;
bottom:20px;
display:flex;
flex-direction:column;
gap:15px;
z-index:999;
}

.float-btn{
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
text-decoration:none;
font-size:24px;
color:#fff;
background:linear-gradient(135deg,#06b6d4,#ec4899);
box-shadow:0 15px 35px rgba(0,0,0,0.4);
transition:.4s;
}

.float-btn:hover{
transform:scale(1.1);
}

/* ================= MOBILE ================= */

@media (max-width:900px){

.hero{
grid-template-columns:1fr;
text-align:center;
}

.hero-text h1{
font-size:48px;
}

.nav-links{
display:none;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

.about{
grid-template-columns:1fr;
}

.contact-box h2{
font-size:34px;
}

}

@media (max-width:600px){

nav{
padding:15px 20px;
}

.logo-box h2{
font-size:22px;
}

.hero-text h1{
font-size:38px;
}

.hero-text p{
font-size:15px;
}

.hero-btns{
flex-direction:column;
}

.btn{
width:100%;
text-align:center;
}

.stats{
grid-template-columns:1fr;
}

.section{
padding:70px 20px;
}

.section-title h2{
font-size:30px;
}

.grid{
grid-template-columns:1fr;
}

.card{
padding:30px 20px;
}

.about-content h2{
font-size:34px;
}

.contact-box{
padding:40px 20px;
}

.contact-box h2{
font-size:28px;
}

}
/* ================= HERO BUTTONS ================= */

.hero-btns{
    display:flex;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
    position:relative;
    z-index:10;
}

.btn{
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
    position:relative;
    z-index:10;
}

.btn-primary{
    background:linear-gradient(135deg,#06b6d4,#ec4899);
    color:#fff;
}

.btn-secondary{
    background:#fff;
    color:#111827;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
.bg1,
.bg2{
    pointer-events:none;
}
/* ================= FIX BUTTON CLICK ISSUE ================= */

header,
.hero,
.hero-text,
.hero-btns{
    position:relative;
    z-index:999;
}

.bg1,
.bg2{
    pointer-events:none;
    z-index:-1;
}
nav{
    position:relative;
    z-index:1000;
}
/* APP STYLE MOBILE VIEW */
@media (max-width: 768px){

body{
padding-top:70px;
}

/* FIX NAVBAR LIKE APP */
nav{
position:fixed;
top:0;
left:0;
width:100%;
height:65px;
padding:10px 15px;
z-index:9999;
}

/* HIDE MENU TEXT (APP STYLE) */
.nav-links{
display:none;
}

/* HERO SMALL */
.hero-text h1{
font-size:32px;
text-align:center;
}

.hero{
padding:100px 15px 40px;
}

/* CARDS LIKE APP GRID */
.grid{
grid-template-columns:repeat(2,1fr);
gap:15px;
padding:20px;
}

.card{
padding:18px;
border-radius:18px;
}

/* FLOAT BUTTON FIX */
.floating-buttons{
bottom:15px;
left:15px;
}

.float-btn{
width:50px;
height:50px;
font-size:22px;
}
}

/* ================= FAQ ================= */

.faq-section{

padding:90px 8%;

}

.faq-container{

max-width:950px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;

}

.faq-item{

background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
border-radius:22px;
overflow:hidden;
backdrop-filter:blur(16px);
transition:.3s;

}

.faq-item:hover{

border-color:#06b6d4;

}

.faq-question{

width:100%;
background:none;
border:none;
padding:24px;
display:flex;
justify-content:space-between;
align-items:center;
color:#fff;
font-size:17px;
font-weight:600;
cursor:pointer;

}

.faq-question i{

transition:.3s;

}

.faq-answer{

max-height:0;
overflow:hidden;
transition:max-height .4s ease;
padding:0 24px;

}

.faq-answer p{

padding-bottom:24px;
color:#d1d5db;
line-height:1.8;

}

.faq-item.active .faq-answer{

max-height:300px;

}

.faq-item.active .faq-question i{

transform:rotate(45deg);
color:#06b6d4;

}


/* ================= MOBILE ================= */

@media(max-width:768px){

.faq-question{

font-size:15px;
padding:20px;

}

}