*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Inter,sans-serif;
scroll-behavior:smooth;
}

body{
background:#f5fff7;
color:#111827;
overflow-x:hidden;
}

/* ================= HEADER ================= */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:14px 5%;
display:flex;
justify-content:space-between;
align-items:center;
background:#ffffffdd;
backdrop-filter:blur(20px);
z-index:999;
border-bottom:1px solid #dcfce7;
}

.logo{
font-size:28px;
font-weight:800;
color:#16a34a;
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:#111827;
font-weight:600;
font-size:15px;
transition:.3s;
}

nav a:hover{
color:#16a34a;
}

.header-btns{
display:flex;
gap:10px;
}

.btn{
padding:10px 18px;
border-radius:12px;
font-size:14px;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.login-btn{
background:#fff;
border:1px solid #d1d5db;
color:#111827;
}

.register-btn{
background:linear-gradient(135deg,#16a34a,#22c55e);
color:#fff;
box-shadow:0 10px 25px rgba(34,197,94,.25);
}

.register-btn:hover,
.login-btn:hover{
transform:translateY(-3px);
}

/* ================= MOBILE MENU ================= */

.menu-toggle{
display:none;
width:45px;
height:45px;
border-radius:14px;
background:linear-gradient(135deg,#16a34a,#22c55e);
align-items:center;
justify-content:center;
color:#fff;
font-size:24px;
cursor:pointer;
}

.mobile-menu{
position:fixed;
top:76px;
left:-100%;
width:100%;
height:calc(100vh - 76px);
background:#ffffffef;
backdrop-filter:blur(20px);
padding:30px 20px;
display:flex;
flex-direction:column;
gap:18px;
transition:.4s;
z-index:998;
}

.mobile-menu.active{
left:0;
}

.mobile-menu a{
text-decoration:none;
padding:15px 18px;
border-radius:16px;
background:#f8fff9;
border:1px solid #dcfce7;
font-weight:700;
color:#111827;
transition:.3s;
}

.mobile-menu a:hover{
background:#16a34a;
color:#fff;
transform:translateX(5px);
}

.mobile-btns{
display:flex;
flex-direction:column;
gap:14px;
margin-top:10px;
}

/* ================= HERO ================= */

.hero{
padding:140px 5% 70px;
text-align:center;
position:relative;
overflow:hidden;
}

.hero::before{
content:"";
position:absolute;
width:400px;
height:400px;
background:#22c55e;
filter:blur(150px);
opacity:.12;
top:-120px;
left:-120px;
}

.hero h1{
font-size:65px;
line-height:1.1;
margin-bottom:20px;
font-weight:900;
position:relative;
z-index:2;
}

.hero span{
color:#16a34a;
}

.hero p{
max-width:850px;
margin:auto;
font-size:18px;
line-height:1.9;
color:#64748b;
position:relative;
z-index:2;
}

.hero-btns{
display:flex;
justify-content:center;
gap:15px;
margin-top:35px;
flex-wrap:wrap;
}

.hero-btn{
padding:14px 28px;
border-radius:15px;
text-decoration:none;
font-weight:700;
transition:.4s;
}

.hero-main-btn{
background:linear-gradient(135deg,#16a34a,#22c55e);
color:#fff;
box-shadow:0 15px 35px rgba(34,197,94,.25);
}

.hero-outline-btn{
border:1px solid #bbf7d0;
background:#fff;
color:#111827;
}

.hero-btn:hover{
transform:translateY(-4px);
}

/* ================= SECTION TITLE ================= */

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:48px;
margin-bottom:15px;
}

.section-title p{
font-size:17px;
color:#64748b;
line-height:1.8;
}

/* ================= LIVE API ================= */

.live-section{
padding:20px 5% 70px;
}

.live-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:16px;
}

.live-card{
background:#fff;
border:1px solid #dcfce7;
border-radius:24px;
padding:18px;
box-shadow:0 15px 40px rgba(34,197,94,.08);
transition:.4s;
}

.live-card:hover{
transform:translateY(-6px);
}

.live-header{
display:flex;
align-items:center;
gap:10px;
margin-bottom:14px;
}

.live-icon{
width:48px;
height:48px;
border-radius:14px;
background:linear-gradient(135deg,#16a34a,#22c55e);
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#fff;
}

.process{
display:flex;
flex-direction:column;
gap:8px;
}

.step{
background:#f8fff9;
border:1px solid #dcfce7;
padding:10px;
border-radius:12px;
font-size:13px;
display:flex;
align-items:center;
gap:8px;
opacity:0;
animation:fadeLoop 8s infinite;
}

.step:nth-child(1){animation-delay:0s;}
.step:nth-child(2){animation-delay:2s;}
.step:nth-child(3){animation-delay:4s;}
.step:nth-child(4){animation-delay:6s;}

.step i{
color:#16a34a;
}

@keyframes fadeLoop{

0%{
opacity:0;
transform:translateY(10px);
}

10%{
opacity:1;
transform:translateY(0);
}

40%{
opacity:1;
}

50%{
opacity:0;
}

100%{
opacity:0;
}

}

.success{
margin-top:12px;
padding:10px;
border-radius:12px;
background:linear-gradient(135deg,#16a34a,#22c55e);
color:#fff;
font-weight:700;
text-align:center;
animation:pulse 2s infinite;
}

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.03);
}

100%{
transform:scale(1);
}

}

/* ================= PRODUCTS ================= */

.products{
    padding:90px 6%;
    background:#ffffff;
    position:relative;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.mini-title{
    display:inline-block;
    padding:8px 22px;
    border-radius:50px;
    background:#dcfce7;
    color:#16a34a;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-title h2{
    font-size:46px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:14px;
}

.section-title p{
    color:#64748b;
    font-size:18px;
}

/* GRID */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
    gap:28px;
}

/* CARD */

.product-card{
    background:#ffffff;
    border:1px solid #dcfce7;
    border-radius:26px;
    padding:38px 28px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
}

.product-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#22c55e,#16a34a);
}

.product-card:hover{
    transform:translateY(-10px);
    border-color:#22c55e;
    box-shadow:
    0 15px 35px rgba(34,197,94,0.15);
}

/* ICON */

.product-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:26px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:#fff;
    font-size:38px;
    position:relative;
    transition:0.4s ease;
    box-shadow:0 10px 25px rgba(34,197,94,0.25);
}

.product-card:hover .product-icon{
    transform:scale(1.1) rotate(5deg);
}

/* TEXT */

.product-card h3{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:14px;
    line-height:1.4;
}

.product-card p{
    color:#64748b;
    font-size:15px;
    line-height:1.8;
}

/* MOBILE */

@media(max-width:768px){

.products{
    padding:70px 20px;
}

.section-title h2{
    font-size:34px;
}

.section-title p{
    font-size:15px;
}

.product-card{
    padding:30px 22px;
}

.product-card h3{
    font-size:21px;
}

.product-icon{
    width:80px;
    height:80px;
    font-size:32px;
}

}


/* ================= CONTACT ================= */

.contact{
    padding:100px 6%;
    background:#f8fffb;
    position:relative;
    overflow:hidden;
}

.contact::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(34,197,94,0.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
    filter:blur(50px);
}

.contact-container{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* HEADER */

.contact-header{
    text-align:center;
    margin-bottom:60px;
}

.contact-badge{
    display:inline-block;
    background:#dcfce7;
    color:#15803d;
    padding:10px 24px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.contact-header h2{
    font-size:48px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:16px;
}

.contact-header p{
    color:#64748b;
    font-size:18px;
    line-height:1.8;
    max-width:750px;
    margin:auto;
}

/* GRID */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

/* CARD */

.contact-card{
    background:#ffffff;
    border:1px solid #dcfce7;
    border-radius:28px;
    padding:40px 30px;
    text-align:center;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.contact-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#22c55e,#16a34a);
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(34,197,94,0.12);
    border-color:#22c55e;
}

/* ICON */

.contact-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:24px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:#fff;
    font-size:38px;
    box-shadow:0 12px 25px rgba(34,197,94,0.25);
    transition:0.4s ease;
}

.contact-card:hover .contact-icon{
    transform:scale(1.08) rotate(5deg);
}

/* ICON COLORS */

.whatsapp{
    background:linear-gradient(135deg,#22c55e,#15803d);
}

.developer{
    background:linear-gradient(135deg,#0ea5e9,#2563eb);
}

.email{
    background:linear-gradient(135deg,#f59e0b,#f97316);
}

/* TEXT */

.contact-card h3{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:16px;
}

.contact-card a{
    display:block;
    text-decoration:none;
    color:#16a34a;
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
    transition:0.3s ease;
    word-break:break-word;
}

.contact-card a:hover{
    color:#15803d;
}

.contact-card span{
    color:#64748b;
    font-size:14px;
}

/* EMAIL LIST */

.email-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* FULL WIDTH */

.full-width{
    grid-column:1/-1;
}

/* MOBILE */

@media(max-width:768px){

.contact{
    padding:70px 20px;
}

.contact-header h2{
    font-size:34px;
}

.contact-header p{
    font-size:15px;
}

.contact-card{
    padding:32px 22px;
}

.contact-card h3{
    font-size:22px;
}

.contact-card a{
    font-size:17px;
}

.contact-icon{
    width:78px;
    height:78px;
    font-size:32px;
}

}

/* ================= FOOTER ================= */

.main-footer{
    background:
    linear-gradient(135deg,#052e16 0%,#14532d 100%);
    padding:40px 6% 25px;
    position:relative;
    overflow:hidden;
}

/* GLOW */

.main-footer::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(34,197,94,0.10);
    border-radius:50%;
    top:-140px;
    right:-120px;
    filter:blur(60px);
}

/* CONTAINER */

.footer-container{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* LOGO */

.footer-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-bottom:28px;
}

.footer-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    box-shadow:0 10px 22px rgba(34,197,94,0.22);
}

.footer-logo h3{
    color:#fff;
    font-size:28px;
    font-weight:800;
    margin:0;
}

.footer-logo p{
    color:#bbf7d0;
    margin:0;
    font-size:14px;
}

/* LINKS */

.footer-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:28px;
}

.footer-links a{
    text-decoration:none;
    color:#dcfce7;
    font-size:15px;
    font-weight:600;
    padding:10px 18px;
    border-radius:12px;
    transition:0.3s ease;
}

.footer-links a:hover{
    background:rgba(255,255,255,0.08);
    color:#fff;
}

/* COPYRIGHT */

.footer-copy{
    text-align:center;
    color:#dcfce7;
    font-size:15px;
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:22px;
}

.footer-copy span{
    color:#4ade80;
    font-weight:700;
}

/* MOBILE */

@media(max-width:768px){

.main-footer{
    padding:35px 20px 22px;
}

.footer-logo{
    flex-direction:column;
    text-align:center;
}

.footer-logo h3{
    font-size:24px;
}

.footer-links{
    gap:10px;
}

.footer-links a{
    font-size:14px;
    padding:9px 14px;
}

.footer-copy{
    font-size:13px;
}

}

/* ================= MOBILE ================= */

@media(max-width:1200px){

.live-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

nav{
display:none;
}

.header-btns{
display:none;
}

.menu-toggle{
display:flex;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:15px;
}

.section-title h2{
font-size:32px;
}

.live-grid{
grid-template-columns:1fr;
}

.product-grid{
grid-template-columns:1fr;
}

.contact-grid{
grid-template-columns:1fr;
}

.contact-box{
padding:30px 20px;
}

.contact-box h2{
font-size:34px;
}

}



.logo{
display:flex;
align-items:center;
gap:12px;
font-size:28px;
font-weight:800;
color:#16a34a;
}

.logo img{
height:48px;
width:auto;
display:block;
}


/* ================= API PORTAL SECTION ================= */

.api-portal-section{
    padding:90px 6%;
    background:
    linear-gradient(180deg,#ffffff 0%,#f0fdf4 100%);
    position:relative;
    overflow:hidden;
}

/* BACKGROUND GLOW */

.api-portal-section::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(34,197,94,0.08);
    border-radius:50%;
    top:-180px;
    right:-150px;
    filter:blur(70px);
}

/* CONTAINER */

.api-container{
    max-width:1350px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* HEADING */

.api-heading{
    text-align:center;
    margin-bottom:55px;
}

.api-badge{
    display:inline-block;
    background:#dcfce7;
    color:#15803d;
    padding:9px 22px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.api-heading h2{
    font-size:46px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:12px;
}

.api-heading p{
    color:#64748b;
    font-size:17px;
}

/* GRID */

.api-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:24px;
}

/* CARD */

.api-card{
    position:relative;
    background:#ffffff;
    border-radius:28px;
    padding:32px 22px;
    text-align:center;
    border:1px solid #dcfce7;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:
    0 8px 25px rgba(0,0,0,0.04);
}

.api-card:hover{
    transform:translateY(-10px);
    border-color:#22c55e;
    box-shadow:
    0 18px 35px rgba(34,197,94,0.12);
}

/* TOP LINE */

.api-top{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#22c55e,#16a34a);
}

/* ICON */

.api-icon{
    width:78px;
    height:78px;
    margin:auto;
    margin-bottom:20px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:#fff;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    box-shadow:0 10px 22px rgba(34,197,94,0.22);
    transition:0.4s ease;
}

.api-card:hover .api-icon{
    transform:rotate(6deg) scale(1.08);
}

/* DIFFERENT COLORS */

.verify{
    background:linear-gradient(135deg,#10b981,#059669);
}

.find{
    background:linear-gradient(135deg,#0ea5e9,#2563eb);
}

.whatsapp{
    background:linear-gradient(135deg,#22c55e,#15803d);
}

.official{
    background:linear-gradient(135deg,#14b8a6,#0f766e);
}

.recharge{
    background:linear-gradient(135deg,#f97316,#ea580c);
}

.recapture{
    background:linear-gradient(135deg,#8b5cf6,#7c3aed);
}

/* TEXT */

.api-card h3{
    font-size:22px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:22px;
    line-height:1.4;
}

/* BUTTON */

.api-card a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-decoration:none;
    background:#16a34a;
    color:#fff;
    padding:13px 24px;
    border-radius:14px;
    font-size:14px;
    font-weight:700;
    transition:0.3s ease;
    box-shadow:0 8px 18px rgba(34,197,94,0.18);
}

.api-card a:hover{
    background:#15803d;
    transform:scale(1.05);
    color:#fff;
}

/* MOBILE */

@media(max-width:768px){

.api-portal-section{
    padding:70px 20px;
}

.api-heading h2{
    font-size:34px;
}

.api-heading p{
    font-size:14px;
}

.api-grid{
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.api-card{
    padding:24px 16px;
    border-radius:22px;
}

.api-icon{
    width:64px;
    height:64px;
    font-size:27px;
    border-radius:18px;
}

.api-card h3{
    font-size:16px;
    margin-bottom:18px;
}

.api-card a{
    width:100%;
    padding:11px;
    font-size:13px;
}

}
