*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

:root{
    --primary:#007bff;
    --secondary:#00c6ff;
    --dark:#0f172a;
    --light:#f8fafc;
}

body{
    font-family:'Poppins',sans-serif;
    margin:0;
    background:#fff;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 8%;
    /* background:linear-gradient(
        135deg,
        #007bff,
        #00c6ff
    ); */
    color:rgb(7, 7, 7);
}

.hero-content{
    max-width:600px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
}

.hero p{
    font-size:18px;
    margin-top:20px;
}

.btn-primary{
    background:white;
    color:#007bff;
    padding:15px 30px;
    border-radius:30px;
    text-decoration:none;
}


nav{
    display:flex;
    justify-content:space-between;
    /* align-items:center; */
    padding:20px 10%;
    background:linear-gradient(
        135deg,
        #007bff,
        #00c6ff
    );
}

ul{
    display:flex;
    gap:30px;
    list-style:none;
}

a{
    text-decoration:none;
    color:black;
}

.btn{
    background:#1a73e8;
    color:white;
    padding:10px 20px;
    border:none;
    border-radius:8px;
}


 .hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 8%;
    background:
    radial-gradient(circle at top right,
    rgba(0,166,255,.15),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(73,209,125,.15),
    transparent 35%),

    #ffffff;
}

.hero-content{
    max-width:600px;
}

.hero h1{
    font-size:68px;
    line-height:1.1;
    color:#0f172a;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    color:#64748b;
    line-height:1.7;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}

.hero-btn{
    text-decoration:none;
    padding:14px 30px;
    border-radius:30px;
    font-weight:600;
}

.primary-btn{
    background:linear-gradient(
        135deg,
        #00a6ff,
        #49d17d
    );
    color:white;
}

.secondary-btn{
    border:2px solid #00a6ff;
    color:#00a6ff;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    color:#334155;
    font-weight:500;
}

.hero-image img{
    width:450px;
    max-width:100%;
}
/* .hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 8%;
    background:linear-gradient(
        135deg,
        #f8fdff,
        #eefcff
    );
} */
/* .hero h1{
    font-size:50px;
}

.hero button{
    margin-top:20px;
    padding:12px 25px;
    background:#1a73e8;
    color:white;
    border:none;
    border-radius:8px;
} */

.features{
    padding:100px 8%;
    background:#f8fbff;
    text-align:center;
}

.features h2{
    font-size:42px;
    color:#0f172a;
    margin-bottom:15px;
}

.feature-subtitle{
    color:#64748b;
    max-width:700px;
    margin:0 auto 50px;
    line-height:1.7;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:90px;
    height:90px;
    object-fit:contain;
    margin-bottom:20px;
}

.card h3{
    color:#0f172a;
    margin-bottom:12px;
}

.card p{
    color:#64748b;
    line-height:1.6;
}

.how-it-works{
    padding:100px 8%;
    background:#ffffff;
}

.how-it-works h2{
    text-align:center;
    font-size:42px;
    color:#0f172a;
    margin-bottom:15px;
}

.subtitle{
    text-align:center;
    color:#64748b;
    margin-bottom:60px;
}

.timeline{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    position:relative;
}

.timeline::before{
    content:"";
    position:absolute;
    top:28px;
    left:10%;
    width:80%;
    height:4px;
    background:linear-gradient(
        90deg,
        #00a6ff,
        #49d17d
    );
    z-index:1;
}

.timeline-step{
    flex:1;
    text-align:center;
    position:relative;
    z-index:2;
}

.circle{
    width:60px;
    height:60px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #00a6ff,
        #49d17d
    );
    color:white;
    font-size:22px;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
}

.timeline-step h3{
    margin-bottom:10px;
    color:#0f172a;
}

.timeline-step p{
    color:#64748b;
    font-size:14px;
    line-height:1.6;
}

.app{
    text-align:center;
    padding:80px;
}

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
}




.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.step{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.step:hover{
    transform:translateY(-10px);
}

.step-number{
    width:50px;
    height:50px;
    border-radius:50%;
    background:linear-gradient(135deg,#0099ff,#00d4ff);
    color:#fff;
    font-weight:700;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:20px;
}

.step img{
    width:90px;
    height:90px;
    object-fit:contain;
    margin-bottom:20px;
}

.step h3{
    margin-bottom:10px;
    color:#0f172a;
}

.step p{
    color:#64748b;
    font-size:15px;
    line-height:1.6;
}


.navbar{
    display:flex;
    align-items:center;
    padding:14px 40px;
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}
.logo{
    flex-shrink:0;
}
.logo img{
    height:70px;
    width:auto;
    display:block;
}




.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
    margin-left:40px;
    padding:0;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    color:#1e293b;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}
.nav-links a:hover{
    color:#00a6ff;
}


.register-btn{
    margin-left:auto;
    background:linear-gradient(
        135deg,
        #00a6ff,
        #49d17d
    );
    color:white;
    padding:12px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 6px 18px rgba(0,166,255,.25);
    transition:.3s;
}

/* .register-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,123,255,.35);
} */
.register-btn:hover{
    transform:translateY(-2px);
}
.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:200px;
    background:#fff;
    list-style:none;
    padding:10px 0;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
}

.dropdown-menu li{
    padding:0;
}

.dropdown-menu a{
    display:block;
    padding:12px 20px;
}

.dropdown:hover .dropdown-menu{
    display:block;
}
.contact-section{
    padding:100px 8%;
    background:#f8fafc;
}

.contact-header{
    text-align:center;
    margin-bottom:60px;
}

.contact-header h2{
    font-size:42px;
    color:#0f172a;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info{
    display:grid;
    gap:20px;
}

.info-card{
    background:white;
    padding:25px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-form{
    background:white;
    padding:30px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

.contact-form button{
    background:#0099ff;
    color:white;
    border:none;
    padding:15px;
    border-radius:10px;
    cursor:pointer;
}

.contact-form button:hover{
    background:#0077cc;
}
@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .register-btn{
        width:100%;
        text-align:center;
    }
    .contact-wrapper{
        grid-template-columns:1fr;
    }
     .hero-stats{
        flex-direction:column;
        gap:15px;
    }
       .timeline{
        flex-direction:column;
        gap:30px;
    }

    .timeline::before{
        display:none;
    }

    .timeline-step{
        width:100%;
    }
      .cta-section{
        padding:60px 20px;
        margin:50px 20px;
    }

    .cta-section h2{
        font-size:30px;
    }

    .cta-section p{
        font-size:16px;
    }
}
.nav-links a.active{
    color:#00a6ff;
    font-weight:700;
}
.floating-buttons{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.float-call,
.float-whatsapp{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:26px;
    text-decoration:none;
    box-shadow:0 4px 15px rgba(0,0,0,.2);
}

.float-call{
    background:#007bff;
}

.float-whatsapp{
    background:#25d379;
}
/* .register-container{
    display:flex;
    min-height:100vh;
} */

/* .left-panel{
    width:50%;
    background:linear-gradient(
        135deg,
        #0099ff,
        #00d4ff
    );
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:50px;
} */

/* .right-panel{
    width:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:60px;
} */

/* .right-panel form{
    display:flex;
    flex-direction:column;
    gap:15px;
} */

.right-panel input,
/* .right-panel textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
} */

/* .right-panel button{
    background:#0099ff;
    color:white;
    border:none;
    padding:15px;
    border-radius:10px;
} */
.register-btn{
    background:linear-gradient(
        135deg,
        #00a6ff,
        #49d17d
    );
    color:white;
    border:none;
    padding:14px 30px;
    border-radius:30px;
    cursor:pointer;
}
/* *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
} */

/* body{
    background:linear-gradient(
        135deg,
        #0099ff,
        #00d4ff
    );
    min-height:100vh;
} */

.register-page{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:20px;
     
}
/* .register-page1{
    background:linear-gradient(135deg,#0099ff,#00d4ff);
    min-height:100vh; */
/* } */
.register-card{
    background:#fff;
    width:100%;
    max-width:500px;
    border-radius:25px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

/* .logo{
    width:90px;
    display:block;
    margin:auto;
    margin-bottom:20px;
} */
.register-logo{
    width:90px;
    display:block;
    margin:auto;
    margin-bottom:20px;
}
.register-card h2{
    text-align:center;
    color:#0f172a;
}

.register-card p{
    text-align:center;
    color:#64748b;
    margin:10px 0 30px;
}

.input-box{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 15px;
    margin-bottom:15px;
}

.input-box i{
    color:#0099ff;
}

.input-box input{
    width:100%;
    border:none;
    outline:none;
    padding:15px;
}

textarea{
    width:100%;
    height:100px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:15px;
    resize:none;
    margin-bottom:20px;
}

button{
    width:100%;
    border:none;
    background:#0099ff;
    color:white;
    padding:15px;
    border-radius:12px;
    font-size:16px;
    cursor:pointer;
}

button:hover{
    background:#0078cc;
}

.back-home{
    display:block;
    text-align:center;
    margin-top:20px;
    color:#090909;
    text-decoration:none;
}
.hero-stats{
    display:flex;
    justify-content:flex-start;
    gap:50px;
    margin-top:35px;
}
.hero-stats div{
    text-align:center;
}

.hero-stats h3{
    font-size:28px;
    color:#00a6ff;
    margin-bottom:5px;
}

.hero-stats p{
    font-size:14px;
    color:#64748b;
    margin:0;
}
.app-showcase{
    padding:100px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    background:#f8fbff;
}

.app-content{
    flex:1;
}

.app-content h2{
    font-size:42px;
    color:#0f172a;
    margin-bottom:20px;
}

.app-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:25px;
}

.app-content ul{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:30px;
}

.app-content li{
    list-style:none;
    color:#334155;
}

.download-btn{
    display:inline-block;
    padding:14px 30px;
    border-radius:30px;
    background:linear-gradient(
        135deg,
        #00a6ff,
        #49d17d
    );
    color:white;
    text-decoration:none;
    font-weight:600;
}

.app-image img{
    width:350px;
    max-width:100%;
}
.cta-section{
    padding:100px 8%;
    text-align:center;
    background:linear-gradient(
        135deg,
        #00a6ff,
        #49d17d
    );
    color:white;
    border-radius:30px;
    margin:80px 8%;
}

.cta-section h2{
    font-size:42px;
    margin-bottom:15px;
    font-weight:700;
}

.cta-section p{
    font-size:18px;
    max-width:600px;
    margin:0 auto 30px;
    line-height:1.7;
    opacity:0.95;
}

.cta-btn{
    display:inline-block;
    background:white;
    color:#00a6ff;
    padding:15px 35px;
    border-radius:30px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.2);
}