
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5fff8;
    overflow-x:hidden;
    color:#111;
}

/* Background */

.bg{
    position:fixed;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index:-1;
}

.bg span{
    position:absolute;
    border-radius:50%;
    background:rgba(0,200,83,0.08);
    bottom:-250px;
    animation:float 18s linear infinite;
}

.bg span:nth-child(1){
    width:320px;
    height:320px;
    left:8%;
}

.bg span:nth-child(2){
    width:180px;
    height:180px;
    left:60%;
    animation-duration:12s;
}

.bg span:nth-child(3){
    width:260px;
    height:260px;
    left:82%;
    animation-duration:22s;
}

@keyframes float{

    0%{
        transform:translateY(0) rotate(0deg);
        opacity:1;
    }

    100%{
        transform:translateY(-1300px) rotate(720deg);
        opacity:0;
    }

}

/* Navbar */

.navbar{
    width:100%;
    padding:18px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(14px);
    background:rgba(255,255,255,0.78);
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:linear-gradient(135deg,#00c853,#00e676);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:28px;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,200,83,0.35);
    animation:logoFloat 3s ease-in-out infinite;
}

.logo-icon::before{
    content:'';
    position:absolute;
    width:150%;
    height:150%;
    background:rgba(255,255,255,0.18);
    transform:rotate(45deg);
    left:-120%;
    animation:shine 3s linear infinite;
}

.logo-text{
    font-size:34px;
    font-weight:800;
    color:#00b140;
}

.logo-text span{
    color:#111;
}

@keyframes shine{

    100%{
        left:150%;
    }

}

@keyframes logoFloat{

    50%{
        transform:translateY(-5px);
    }

}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:0.3s;
}

.menu a:hover{
    color:#00b140;
}

.nav-btns{
    display:flex;
    gap:14px;
}

.btn{
    padding:13px 28px;
    border:none;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
    text-decoration:none;
}

.login{
    background:#fff;
    border:1px solid #ddd;
    color:#111;
}

.register{
    background:#00b140;
    color:#fff;
    box-shadow:0 10px 30px rgba(0,177,64,0.3);
}

.btn:hover{
    transform:translateY(-3px);
}

/* Hero */

.hero{
    width:100%;
    min-height:100vh;
    padding:70px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-left{
    flex:1;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    border:1px solid rgba(0,0,0,0.06);
    padding:12px 22px;
    border-radius:50px;
    margin-bottom:25px;
    color:#00a63e;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.hero-left h1{
    font-size:74px;
    line-height:1.12;
    margin-bottom:25px;
}

.hero-left h1 span{
    color:#00b140;
}

.hero-left p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    max-width:680px;
}

.hero-buttons{
    margin-top:38px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-btn{
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.primary{
    background:#00b140;
    color:#fff;
    box-shadow:0 10px 30px rgba(0,177,64,0.3);
}

.secondary{
    background:#fff;
    color:#111;
    border:1px solid #ddd;
}

.hero-btn:hover{
    transform:translateY(-4px);
}

/* Demo */

.demo-card{
    width:470px;
    background:#fff;
    border-radius:38px;
    padding:35px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    border:1px solid rgba(0,0,0,0.05);
    position:relative;
    overflow:hidden;
}

.demo-title{
    text-align:center;
    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
    color:#00a63e;
}

.phone{
    background:#f8fffb;
    border-radius:32px;
    padding:25px;
    border:1px solid rgba(0,0,0,0.06);
    min-height:520px;
    position:relative;
    overflow:hidden;
}

.process{
    position:absolute;
    width:calc(100% - 50px);
    opacity:0;
    transform:translateX(40px) scale(.98);
    filter:blur(6px);
}

.step1{
    animation:step1 18s infinite;
}

.step2{
    animation:step2 18s infinite;
}

.step3{
    animation:step3 18s infinite;
}

.step4{
    animation:step4 18s infinite;
}

@keyframes step1{

    0%,22%{
        opacity:1;
        transform:translateX(0) scale(1);
        filter:blur(0);
    }

    26%,100%{
        opacity:0;
        transform:translateX(-40px) scale(.96);
        filter:blur(6px);
    }

}

@keyframes step2{

    0%,24%{
        opacity:0;
    }

    28%,48%{
        opacity:1;
        transform:translateX(0) scale(1);
        filter:blur(0);
    }

    52%,100%{
        opacity:0;
        transform:translateX(-40px) scale(.96);
        filter:blur(6px);
    }

}

@keyframes step3{

    0%,50%{
        opacity:0;
    }

    54%,74%{
        opacity:1;
        transform:translateX(0) scale(1);
        filter:blur(0);
    }

    78%,100%{
        opacity:0;
        transform:translateX(-40px) scale(.96);
        filter:blur(6px);
    }

}

@keyframes step4{

    0%,76%{
        opacity:0;
    }

    80%,98%{
        opacity:1;
        transform:translateX(0) scale(1);
        filter:blur(0);
    }

    100%{
        opacity:0;
    }

}

.screen-title{
    font-size:25px;
    font-weight:700;
    margin-bottom:25px;
    text-align:center;
}

.input-box{
    background:#fff;
    border:1px solid #ddd;
    border-radius:18px;
    padding:17px;
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.input-box i{
    font-size:22px;
    color:#00a63e;
}

.typing{
    overflow:hidden;
    white-space:nowrap;
    border-right:2px solid #00b140;
    width:175px;
    animation:
    aadhaarTyping 3.5s steps(12,end) forwards,
    blink .8s infinite;
}

.typing2{
    overflow:hidden;
    white-space:nowrap;
    border-right:2px solid #00b140;
    width:92px;
    animation:
    otpTyping 2.5s steps(6,end) forwards,
    blink .8s infinite;
}

@keyframes aadhaarTyping{

    from{
        width:0;
    }

    to{
        width:175px;
    }

}

@keyframes otpTyping{

    from{
        width:0;
    }

    to{
        width:92px;
    }

}

@keyframes blink{

    50%{
        border-color:transparent;
    }

}

.fake-btn{
    width:100%;
    padding:16px;
    background:#00b140;
    color:#fff;
    text-align:center;
    border-radius:18px;
    font-weight:600;
    margin-top:10px;
    box-shadow:0 10px 25px rgba(0,177,64,0.25);
    animation:pulse 1.5s infinite;
}

@keyframes pulse{

    50%{
        transform:scale(1.03);
    }

}

.status{
    margin-top:22px;
    background:#f0fff5;
    border:1px solid #dff5e7;
    padding:16px;
    border-radius:18px;
    line-height:1.8;
    color:#444;
    font-size:14px;
}

.loader{
    width:18px;
    height:18px;
    border:3px solid rgba(0,0,0,0.1);
    border-top:3px solid #00b140;
    border-radius:50%;
    display:inline-block;
    margin-right:10px;
    animation:spin 1s linear infinite;
}

@keyframes spin{

    100%{
        transform:rotate(360deg);
    }

}

.success{
    width:100px;
    height:100px;
    background:#00c853;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:48px;
    margin:30px auto;
    box-shadow:0 0 40px rgba(0,200,83,0.4);
    animation:successPulse 1.5s infinite;
}

@keyframes successPulse{

    50%{
        transform:scale(1.06);
    }

}

/* Developer Console */

.api-console-section{
    padding-top:20px;
}

.api-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

.api-left{
    background:#fff;
    border-radius:35px;
    padding:40px;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:0 15px 45px rgba(0,0,0,0.05);
}

.api-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:50px;
    background:#f0fff5;
    color:#00a63e;
    font-weight:600;
    border:1px solid #c8f0d4;
    margin-bottom:25px;
}

.api-left h2{
    font-size:46px;
    margin-bottom:18px;
}

.api-left p{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.endpoint-box,
.params-box{
    background:#f8fffb;
    border:1px solid #d9f5e3;
    border-radius:28px;
    padding:28px;
    margin-bottom:25px;
}

.box-title{
    text-align:center;
    color:#00a63e;
    font-weight:700;
    margin-bottom:24px;
}

.endpoint-url{
    background:#081224;
    color:#00ff88;
    border-radius:18px;
    padding:18px;
    text-align:center;
    font-size:14px;
}

.param-item{
    background:#fff;
    border:1px solid #d9f5e3;
    border-radius:16px;
    padding:16px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.api-console{
    background:#07152a;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.console-top{
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.console-dots{
    display:flex;
    gap:8px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
}

.red{
    background:#ff5f57;
}

.yellow{
    background:#ffbd2e;
}

.green{
    background:#28c840;
}

.console-heading{
    color:#fff;
    font-weight:600;
}

.console-body{
    padding:28px;
    min-height:470px;
}

.console-line{
    color:#00ff88;
    margin-bottom:18px;
    font-size:15px;
    opacity:0;
    transform:translateY(10px);
    animation:showLine .5s forwards;
}

.line1{animation-delay:1s;}
.line2{animation-delay:2s;}
.line3{animation-delay:3s;}
.line4{animation-delay:4s;}
.line5{animation-delay:5s;}
.line6{animation-delay:6s;}
.line7{animation-delay:7s;}
.line8{animation-delay:8s;}

@keyframes showLine{

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.loader-small{
    width:15px;
    height:15px;
    border:2px solid rgba(255,255,255,0.2);
    border-top:2px solid #00ff88;
    border-radius:50%;
    display:inline-block;
    margin-right:10px;
    animation:spin 1s linear infinite;
}

/* Section */

.section{
    padding:110px 7%;
}

.section-title{
    text-align:center;
    font-size:52px;
    margin-bottom:70px;
}

.section-title span{
    color:#00b140;
}

/* Services */

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-box{
    background:#fff;
    border-radius:30px;
    padding:38px;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:0.3s;
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-box i{
    font-size:50px;
    color:#00b140;
    margin-bottom:22px;
}

.service-box h3{
    margin-bottom:15px;
    font-size:25px;
}

.service-box p{
    color:#555;
    line-height:1.9;
}

/* Contact */

.contact-main{
    max-width:850px;
    margin:auto;
    background:#fff;
    border-radius:35px;
    padding:60px 40px;
    text-align:center;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:0 20px 60px rgba(0,0,0,0.05);
}

.mail-circle{
    width:120px;
    height:120px;
    border-radius:50%;
    margin:auto;
    background:linear-gradient(135deg,#00c853,#00e676);
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,200,83,0.35);
}

.mail-circle i{
    color:#fff;
    font-size:54px;
}

.contact-main h3{
    margin-top:35px;
    margin-bottom:15px;
    font-size:36px;
}

.contact-main p{
    color:#00a63e;
    font-size:24px;
    font-weight:600;
}

/* Footer */

.footer{
    padding:35px;
    text-align:center;
    background:#fff;
    border-top:1px solid rgba(0,0,0,0.05);
    color:#666;
}

/* Responsive */

@media(max-width:1100px){

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.hero-left h1{
    font-size:54px;
}

.api-wrapper{
    grid-template-columns:1fr;
}

}

@media(max-width:700px){

.navbar{
    flex-direction:column;
    gap:18px;
}

.menu{
    flex-wrap:wrap;
    justify-content:center;
}

.hero-left h1{
    font-size:40px;
}

.section-title{
    font-size:38px;
}

.demo-card{
    width:100%;
    padding:20px;
}

.api-left h2{
    font-size:32px;
}

.contact-main p{
    font-size:18px;
}

}
