 

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f4f7f9;
}

/* HEADER */

.header{
width:100%;
background:#0f172a;
padding:15px 5%;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
color:#22c55e;
font-size:24px;
font-weight:bold;
}

.logo span{
color:white;
}

/* NAV MENU */

.nav-menu{
display:flex;
align-items:center;
gap:25px;
}

.nav-menu a{
text-decoration:none;
color:white;
font-size:15px;
transition:0.3s;
}

.nav-menu a:hover{
color:#22c55e;
}

/* BUTTONS */

.auth-buttons{
display:flex;
gap:10px;
}

.btn-login{
padding:8px 18px;
border:1px solid #22c55e;
background:transparent;
color:#22c55e;
border-radius:5px;
cursor:pointer;
}

.btn-register{
padding:8px 18px;
background:#22c55e;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
}

.btn-login:hover{
background:#22c55e;
color:white;
}

.btn-register:hover{
background:#16a34a;
}

/* TOGGLE BUTTON */

.toggle{
display:none;
font-size:22px;
color:white;
cursor:pointer;
}

/* MOBILE MENU */

@media(max-width:900px){

.nav-menu{
position:absolute;
top:70px;
left:0;
width:100%;
background:#0f172a;
flex-direction:column;
align-items:center;
gap:20px;
padding:20px;
display:none;
}

.nav-menu.active{
display:flex;
}

.auth-buttons{
flex-direction:column;
}

.toggle{
display:block;
}

}

 

.hero{
width:100%;
background:linear-gradient(135deg,#0f172a,#020617);
padding:80px 5%;
color:white;
}

.hero-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
}

/* LEFT TEXT */

.hero-left{
flex:1;
}

.hero-left h1{
font-size:48px;
margin-bottom:20px;
}

.hero-left h1 span{
color:#22c55e;
}

.hero-left p{
font-size:18px;
line-height:1.6;
margin-bottom:30px;
color:#cbd5f5;
}

/* BUTTONS */

.hero-buttons{
display:flex;
gap:15px;
}

.btn-start{
background:#22c55e;
color:white;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
font-weight:600;
}

.btn-login{
border:1px solid #22c55e;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
color:#22c55e;
}

.btn-start:hover{
background:#16a34a;
}

.btn-login:hover{
background:#22c55e;
color:white;
}

/* RIGHT IMAGE */

.hero-right{
flex:1;
text-align:center;
}

.hero-right img{
max-width:100%;
height:auto;
}

/* MOBILE RESPONSIVE */

@media(max-width:900px){

.hero-container{
flex-direction:column;
text-align:center;
}

.hero-left h1{
font-size:36px;
}

.hero-buttons{
justify-content:center;
}

}


.about{
padding:80px 5%;
background:#f8fafc;
}

.about-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:50px;
}

/* IMAGE */

.about-image{
flex:1;
text-align:center;
}

.about-image img{
width:100%;
max-width:450px;
}

/* CONTENT */

.about-content{
flex:1;
}

.about-content h2{
font-size:36px;
margin-bottom:20px;
color:#0f172a;
}

.about-content h2 span{
color:#22c55e;
}

.about-content p{
font-size:16px;
line-height:1.7;
margin-bottom:20px;
color:#475569;
}

/* FEATURES */

.about-features{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:25px;
}

.feature{
background:white;
padding:20px;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.feature h3{
color:#22c55e;
margin-bottom:8px;
font-size:18px;
}

.feature p{
font-size:14px;
}

/* RESPONSIVE */

@media(max-width:900px){

.about-container{
flex-direction:column;
text-align:center;
}

.about-features{
grid-template-columns:1fr;
}

}


.about-section{
padding:100px 5%;
background:linear-gradient(135deg,#020617,#0f172a,#1e293b);
color:white;
}

.about-wrapper{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:60px;
}

/* IMAGE */

.about-img{
flex:1;
text-align:center;
}

.about-img img{
width:100%;
max-width:450px;
filter:drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

/* TEXT */

.about-text{
flex:1;
}

.about-text h2{
font-size:40px;
margin-bottom:20px;
}

.about-text span{
color:#00f5a0;
}

.about-text p{
color:#cbd5e1;
line-height:1.8;
margin-bottom:18px;
font-size:16px;
}

/* FEATURE BOX */

.about-boxes{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:30px;
}

.box{
background:rgba(255,255,255,0.05);
padding:25px;
border-radius:10px;
transition:0.3s;
border:1px solid rgba(255,255,255,0.08);
}

.box:hover{
transform:translateY(-5px);
background:rgba(0,245,160,0.1);
}

.box h3{
color:#00f5a0;
margin-bottom:8px;
}

.box p{
font-size:14px;
color:#cbd5e1;
}

/* MOBILE */

@media(max-width:900px){

.about-wrapper{
flex-direction:column;
text-align:center;
}

.about-boxes{
grid-template-columns:1fr;
}

.about-text h2{
font-size:32px;
}

}


.services{
padding:80px 5%;
background:linear-gradient(135deg,#0f172a,#020617);
color:white;
text-align:center;
}

.services-container{
max-width:1200px;
margin:auto;
}

.services-title{
font-size:36px;
margin-bottom:40px;
color:#00f5a0;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.service-box{
background:#1e293b;
padding:25px;
border-radius:8px;
transition:0.3s;
}

.service-box:hover{
transform:translateY(-5px);
background:#334155;
}

.service-box h3{
margin-bottom:10px;
color:#00f5a0;
}

.service-box p{
font-size:14px;
color:#cbd5e1;
}

/* Responsive */

@media(max-width:900px){

.services-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.services-grid{
grid-template-columns:1fr;
}

}


.faq-section{
padding:80px 5%;
background:linear-gradient(135deg,#020617,#0f172a);
color:white;
}

.faq-container{
max-width:900px;
margin:auto;
}

.faq-title{
text-align:center;
font-size:36px;
margin-bottom:40px;
color:#00f5a0;
}

.faq-item{
border-bottom:1px solid rgba(255,255,255,0.1);
margin-bottom:10px;
}

.faq-question{
width:100%;
background:none;
border:none;
color:white;
font-size:18px;
padding:15px 0;
text-align:left;
cursor:pointer;
outline:none;
}

.faq-answer{
display:none;
padding-bottom:15px;
color:#cbd5e1;
font-size:15px;
}


.footer{
background:linear-gradient(135deg,#020617,#0f172a,#111827);
color:white;
padding:70px 5% 20px;
}

.footer-container{
max-width:1200px;
margin:auto;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
margin-bottom:40px;
}

.footer-col h3{
color:#00f5a0;
margin-bottom:15px;
}

.footer-col h4{
margin-bottom:15px;
color:#00f5a0;
}

.footer-col p{
font-size:14px;
color:#cbd5e1;
line-height:1.6;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
text-decoration:none;
color:#cbd5e1;
font-size:14px;
}

.footer-col ul li a:hover{
color:#00f5a0;
}

/* Social Icons */

.social-icons{
margin-top:10px;
}

.social-icons a{
display:inline-block;
margin-right:10px;
font-size:20px;
color:white;
text-decoration:none;
}

/* Bottom */

.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,0.1);
padding-top:15px;
font-size:14px;
color:#94a3b8;
}

/* Responsive */

@media(max-width:900px){

.footer-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

}