body{
margin:0;
font-family:'Poppins', sans-serif;
background: linear-gradient(135deg, #f4f4f7, #c5e2ff);
}

/* 🔹 NAVBAR */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 50px;
background: linear-gradient(135deg, #ffffff, #b6daff);

}

/* LOGO */
.logo-container{
display:flex;
align-items:center;
gap:10px;
cursor:pointer;
}

.logo{
width:45px;
transition:0.3s;
border-radius: 50%;
}

.brand-name{
font-size:24px;
font-weight:700;
color:#5a6cff;
transition:0.3s;
}

/* 🔥 HOVER EFFECT */
.logo-container:hover .logo{
transform:scale(1.1) rotate(5deg);
}

.logo-container:hover .brand-name{
letter-spacing:1px;
color:#6c63ff;
}

/* BUTTONS */
.nav-buttons button{
padding:10px 20px;
border-radius:8px;
font-size:14px;
cursor:pointer;
}

.signin{
    margin-left:10px;
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    align-self: flex-end;
    cursor: pointer;
    width: 30%;
    margin-top: 15px;
    text-decoration: none;

}

/* 🔹 HERO */
.hero{
height:85vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background: linear-gradient(135deg, #f4f4f7, #6599ec);
}

.hero h1{
font-size:48px;
color:#2c3e50;
}

.hero p{
margin-top:10px;
font-size:18px;
color:#4a5a6a;
}

/* BUTTON */
.explore-btn{
margin-top:20px;
padding:12px 25px;
font-size:16px;
border-radius:10px;
border:none;
background:#2c3e50;
color:white;
cursor:pointer;
transition:0.3s;
}

.explore-btn:hover{
background:#1a252f;
transform:scale(1.05);
}

/*footer section*/

.footer{
    background:#0b1a2f;
    color:#fff;
    padding:50px 80px 20px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    gap:40px;
}

.footer-section h3{
    margin-bottom:15px;
}

.footer-section p{
    color:#cbd5e1;
    line-height:1.6;

}

.footer-section ul{
    list-style:none;
    padding:0;
}

.footer-section ul li{
    margin-bottom:10px;
    color:#cbd5e1;
    cursor:pointer;
    transition:0.3s;
}

.footer-section ul li:hover{
    color:#4a90e2;
}

.footer hr{
    margin:30px 0;
    border:0.5px solid #2c3e50;
}

.footer-bottom{
    text-align:center;
    color:#94a3b8;
}
.explore-btn{
    display:inline-block;
    padding:12px 30px;
    background:#2c3e50;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.explore-btn:hover{
    background:#4a90e2;
}

/* SECTION COMMON */
section {
    padding: 60px 20px;
    text-align: center;
}

/* HEADINGS */
h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1e293b;
}

/* FEATURES (WHY RIGHT TRACK) */

.feature-box {
    justify-content: center;
    align-items: center;
    gap: 40px;   /* space between items */
    flex-wrap: nowrap;  /* FORCE in one line */
    display: flex;
    justify-content: center;
    gap: 30px;

}

.features-container {
    display: flex;              /* 👈 MAIN CHANGE */
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;            /* responsive */
}
.feature {
    width: 260px;
    text-align: center;
}
.feature {
    background: white;
    padding: 20px;
    border-radius: 12px;
    width: 260px;
    text-align: center;  /* 👈 VERY IMPORTANT */

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.feature-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feature:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}


.feature h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

/* HOW IT WORKS */
.steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    background: #2563eb;
    color: white;
    padding: 15px 25px;
    border-radius: 20px;
    font-size: 14px;
}

/* CTA */
.cta {
    margin-top: 40px;
}

.cta h2 {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #2563eb;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #1e40af;
    transform: scale(1.05);
}

/* IMAGE LEFT */
.feature-img {
    width: 250px;
    height: 250px;
    border-radius: 10%;
}

.feature-content p {
    font-size: 13px;
    color: #64748b;
    margin-top: 5px; 
}

.about-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;

    text-align: center;
    line-height: 1.8;

    color: #333;
    font-size: 16px;

    background: white;
    border-radius: 12px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.about-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    transition: 0.3s;
    padding: 10px;
    border-radius: 8px;
}
.about-section:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}
.about-section p:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}
