*{
box-sizing:border-box;
}

img{
max-width:100%;
height:auto;
}

body{
font-family:'Inter',sans-serif;
margin:0;
background:#f8fafc;
color:#111827;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo{
font-size:24px;
font-weight:700;
color:#FACC15;
}

nav a{
margin-left:30px;
text-decoration:none;
color:#374151;
font-weight:500;
transition:0.25s;
}

nav a:hover{
color:#FACC15;
}

/* HERO */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:110px 80px;
}

.hero-text h1{
font-size:56px;
font-weight:700;
}

.hero-text p{
margin-top:18px;
font-size:18px;
color:#6b7280;
}

/* CTA BUTTON */

.cta-btn{
display:inline-block;
margin-top:30px;
padding:14px 32px;
background:#FACC15;
color:#111827;
border-radius:12px;
text-decoration:none;
font-weight:600;
transition:0.25s;
}

.cta-btn:hover{
transform:translateY(-4px);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
background:#fbbf24;
}

/* HERO IMAGE */

.hero-img img{
width:520px;
border-radius:24px;

box-shadow:
0 25px 60px rgba(0,0,0,0.25),
0 10px 20px rgba(0,0,0,0.08);

transition:0.4s;
}

.hero-img img:hover{
transform:translateY(-8px) scale(1.02);
}

/* FEATURES */

.features{
padding:110px 80px;
text-align:center;
background:#ffffff;
background:#fffbeb;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
margin-top:50px;
}

/* FEATURE CARDS */

.feature-card{
background:white;
padding:35px;
border-radius:18px;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
transition:0.3s;
text-align:center;

display:flex;
flex-direction:column;
align-items:center;
}

.feature-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

/* ICON BOX */

.feature-icon{
width:64px;
height:64px;

background:#FACC15;
border-radius:14px;

display:inline-block;
position:relative;

margin-bottom:18px;
}

.feature-icon::before{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);

font-size:26px;
color:#111;
}
/* SCREENSHOTS */

.screenshots{
padding:110px 80px;
text-align:center;
background:#f9fafb;
}

.screens{
overflow:hidden;
margin-top:50px;
}

.screens-track{

display:flex;
gap:40px;

width:max-content;

animation:scrollScreens 25s linear infinite;

}
.screens img{

width:240px;
flex-shrink:0;

border-radius:22px;



transition:0.3s;

}

@keyframes scrollScreens{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}
.screens img:hover{
transform:scale(1.05);
}

/* FOOTER */

footer{
text-align:center;
padding:50px;
color:#6b7280;
}


.menu-icon{
display:none;
font-size:24px;
cursor:pointer;
}

/* FLOW SECTION */

.flow-section{
padding:120px 20px;
text-align:center;

/* QuickFix gradient background */

background:linear-gradient(
180deg,
#f8fafc 0%,
#fff7cc 40%,
#fde68a 100%
);

transition:background 0.6s ease;
}
.page-title{
font-size:42px;
margin-bottom:80px;
}

/* FLOW CONTAINER */

.flow{
position:relative;
max-width:900px;
margin:auto;
}

/* VERTICAL CENTER LINE */

.flow::before{
content:"";
position:absolute;
left:50%;
top:0;
width:2px;
height:100%;
background:#e5e7eb;
}

/* FLOW STEPS */

.flow-step{
position:relative;
width:260px;

background:white;
padding:25px;

border-radius:14px;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

margin-bottom:60px;

transition:all 0.7s ease;

opacity:1;
transform:translateY(0);
}
.flow-step:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* LEFT SIDE */

.flow-step.left{
left:0;
}

/* RIGHT SIDE */

.flow-step.right{
left:60%;
}

/* ICON */

.flow-icon{

width:50px;
height:50px;

background:#FACC15;

border-radius:12px;

display:inline-block;
position:relative;

margin:0 auto 12px auto;

}

/* center the Font Awesome glyph */

.flow-icon::before{

position:absolute;

top:50%;
left:50%;

transform:translate(-50%, -50%);

font-size:22px;

color:#111;

}
/* DOTTED CONNECTOR */

.flow-step::after{
content:"";
position:absolute;
top:50%;
width:60px;
border-top:2px dashed #FACC15;
}

/* LEFT CONNECTOR */

.flow-step.left::after{
right:-60px;
}

/* RIGHT CONNECTOR */

.flow-step.right::after{
left:-60px;
}

.flow-step.animate{
opacity:0;
transform:translateY(40px);
}

.flow-step.animate.show{
opacity:1;
transform:translateY(0);
}

/* MOBILE */

@media (max-width:768px){

.flow{
max-width:100%;
padding-left:40px;
}

/* move timeline to the left */

.flow::before{
left:15px;
}

/* stack cards */

.flow-step{
width:100%;
left:0 !important;
margin-bottom:50px;
}

/* hide zigzag connectors */

.flow-step::after{
display:none;
}

/* keep icons centered */

.flow-icon{
margin:0 auto 12px auto;
}

}

/* ========================= */
/* TABLET RESPONSIVE */
/* ========================= */

@media (max-width:1024px){

.hero{
flex-direction:column;
text-align:center;
gap:40px;
}

.hero-img img{
width:80%;
}

.feature-grid{
grid-template-columns:repeat(2,1fr);
}

.screens img{
width:200px;
}

}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width:768px){

.navbar{
padding:20px;
}

nav a{
margin-left:15px;
font-size:14px;
}

.hero{
padding:80px 20px;
}

.hero-text h1{
font-size:36px;
}

.hero-text p{
font-size:16px;
}

.hero-img img{
width:100%;
}

.features{
padding:80px 20px;
}

.feature-grid{
grid-template-columns:1fr;
gap:25px;
}

.feature-card{
padding:25px;
}

.screenshots{
padding:80px 20px;
}

.screens img{
width:180px;
}

footer{
padding:40px 20px;
}



}

@media (max-width:768px){

.menu-icon{
display:block;
}

nav{
position:absolute;
top:70px;
left:0;
width:100%;

background:white;

display:none;
flex-direction:column;
align-items:center;

box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

nav a{
margin:15px 0;
}

nav.active{
display:flex;
}

}

/* DOWNLOAD SECTION */

.download-section{

height:70vh;

display:flex;
align-items:center;
justify-content:center;

text-align:center;

background:linear-gradient(
180deg,
#f8fafc,
#fff7cc
);

}

.download-content h1{
font-size:48px;
margin-bottom:15px;
}

.download-content p{
font-size:18px;
color:#6b7280;
margin-bottom:30px;
}

.playstore-btn{
width:200px;
transition:0.3s;
}

.playstore-btn:hover{
transform:scale(1.05);
}

/* CONTACT SECTION */

.contact-section{

padding:120px 20px;

background:#ffffff;

}

.contact-container{

max-width:1100px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

}

/* CONTACT CARDS */

.contact-card{

background:white;

padding:40px;

border-radius:18px;

box-shadow:0 15px 40px rgba(0,0,0,0.08);

}

/* CONTACT ITEMS */

.contact-item{

display:flex;
align-items:center;

gap:15px;

margin-top:20px;

font-size:17px;

}

.contact-item i{

color:#FACC15;

font-size:20px;

}

/* FORM */

.contact-form{

display:flex;
flex-direction:column;
gap:15px;

margin-top:20px;

}

.contact-form input,
.contact-form textarea{

padding:12px;

border:1px solid #e5e7eb;

border-radius:10px;

font-family:'Inter',sans-serif;

}

.contact-form button{

padding:12px;

background:#FACC15;

border:none;

border-radius:10px;

font-weight:600;

cursor:pointer;

transition:0.3s;

}

.contact-form button:hover{

background:#fbbf24;

}

/* MOBILE */

@media (max-width:768px){

.contact-container{

grid-template-columns:1fr;

}

}

/* MOBILE TEXT SCALING */

@media (max-width:768px){

/* HERO TEXT */

.hero-text h1{
font-size:32px;
}

.hero-text p{
font-size:16px;
}

/* SECTION TITLES */

.features h2,
.screenshots h2,
.page-title,
.download-content h1{
font-size:28px;
}

/* FEATURE CARD TEXT */

.feature-card h3{
font-size:18px;
}

.feature-card p{
font-size:14px;
}

/* FLOW CARD TEXT */

.flow-step h3{
font-size:17px;
}

.flow-step p{
font-size:14px;
}

/* CONTACT TEXT */

.contact-card h2{
font-size:22px;
}

.contact-item{
font-size:15px;
}

/* FORM */

.contact-form input,
.contact-form textarea{
font-size:14px;
}

.contact-form button{
font-size:15px;
}

}