*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

html, body{
    height:100%;
    width:100%;
    overflow-x:hidden;
}

body{
    min-height:100vh;
    background: radial-gradient(circle at top, #080808, #000814);
    color:white;
    overflow-y:auto;
}

/* HERO */
.hero{
    text-align:center;
    padding:20px 20px 80px;
}

.hero img{
    width:190px;
    margin-bottom:25px;
}

.hero h1{
    font-size:50px;
    font-weight:700;
    line-height:1.1;
}

.hero h1 span{
    background: linear-gradient(90deg, #00c6ff, #00ff99);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: softGlow 2.5s ease-in-out infinite alternate;
}

/* Glow animation */
@keyframes softGlow{
    from{
        text-shadow: 0 0 4px rgba(0,255,153,0.6);
    }
    to{
        text-shadow: 0 0 8px rgba(0,198,255,0.8);
    }
}

/*space line*/
.space-line{
    width:220px;
    height:4px;
    margin:25px auto;
    border-radius:10px;
    background:linear-gradient(90deg,#2e8b57,#3cb371,#20b2aa);
    animation:blinkLine 1.2s infinite;
}

/* Blink animation */
@keyframes blinkLine{
    0%{
        opacity:1;
        box-shadow:0 0 5px #2e8b57;
    }
    50%{
        opacity:0.3;
        box-shadow:0 0 20px #3cb371;
    }
    100%{
        opacity:1;
        box-shadow:0 0 5px #2e8b57;
    }
}

.hero p{
    margin-top:20px;
    font-size:20px;
    opacity:.8;
    line-height:1.1;
}

/* ABOUT US */
.about-section{
    width:90%;
    max-width:900px;
    margin:80px auto;
    padding:40px;
    border-radius:20px;
    background:linear-gradient(145deg,#111827,#1f2937);
    box-shadow:0 0 30px rgba(0,0,0,0.6);
}

.about-section h1{
    text-align:center;
    font-size:25px;
    margin-bottom:10px;
}

.title-line{
    width:20px;
    height:4px;
    margin:10px auto 40px;
    border-radius:10px;
    background:linear-gradient(90deg,#00c6ff,#00ff99);
}

.about-content p{
    font-size:15px;
    line-height:1.7;
    margin-bottom:25px;
    color:#d1d5db;
}

/* Highlight colors */
.blue,
.green,
.yellow,
.light-blue{
    background:none !important;
    box-shadow:none !important;
    padding:0 !important;
    border-radius:0 !important;
}

.blue{ color:#38bdf8; }
.green{ color:#4ade80; }
.yellow{ color:#facc15; }
.light-blue{ color:#60a5fa; }

/* Vision & Mission */
.vision-mission{
    display:flex;
    gap:40px;
    margin-top:40px;
    flex-wrap:wrap;
}

.vm-box{
    flex:1;
    min-width:300px;
    padding:30px;
    border-radius:18px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.15);
    transition:0.3s;
}

.vm-box:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,0.08);
}

.vm-box h2{
    margin-bottom:20px;
    font-size:20px;
}

.vm-box ul{
    padding-left:20px;
}

.vm-box ul li{
    margin-bottom:12px;
    line-height:1.6;
}

/* LEGAL SECTION */
.legal-section{
    width:90%;
    max-width:700px;
    margin:80px auto;
}

.legal-section h1{
    text-align:center;
    font-size:25px;
    margin-bottom:10px;
}

.title-line{
    width:200px;
    height:4px;
    margin:10px auto 40px;
    border-radius:10px;
    background:linear-gradient(90deg,#00ff99,#00c6ff);
}

.policy-box{
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.15);
    padding:10px 15px;
    margin-bottom:20px;
    border-radius:15px;
    font-size:15px;
    transition:0.3s;
}

.policy-box:hover{
    background: rgba(255,255,255,0.1);
    transform:translateX(5px);
}

.footer-text{
    text-align:center;
    margin-top:40px;
    opacity:0.6;
    font-size:15px;
}

/* CERTIFICATES */
/* .certificates{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-top:80px;
    flex-wrap:wrap;
    padding:20px;
}

.card{
    background:linear-gradient(145deg,#111827,#1f2937);
    padding:30px;
    border-radius:20px;
    width:520px;
    max-width:100%;
    text-align:center;
    box-shadow:0 0 30px rgba(0,0,0,.6);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.certificate-header{
    font-size:15px;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:8px;
    opacity:.8;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    display:inline-block;
}

.green{ background:#22c55e; }
.blue{ background:#3b82f6; }

.sub-info{
    font-size:14px;
    opacity:.7;
    margin-bottom:10px;
}

.certificate-line{
    width:100%;
    height:3px;
    margin:15px 0;
    border-radius:5px;
    background:linear-gradient(90deg,#2e8b57,#3cb371,#20b2aa);
}

.image-wrapper{
    width:100%;
    height:180px;
    overflow:hidden;
    border-radius:12px;
    background:#e5e7eb;
    display:flex;
    align-items:center;
    justify-content:center;
}

.image-wrapper img{
    width:auto;
    max-width:100%;
    height:100%;
    object-fit:contain;
}

.view-btn{
    margin:20px auto 0 auto;
    padding:8px 18px;
    font-size:14px;
    border:none;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    color:white;
    display:block;
}

.green-btn{
    background:linear-gradient(45deg,#16a34a,#22c55e);
}

.blue-btn{
    background:linear-gradient(45deg,#2563eb,#3b82f6);
}

.view-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 15px rgba(0,0,0,0.6);
}

.verified-text{
    margin-top:15px;
    color:#22c55e;
    font-size:14px;
} */

/* SOCIAL MISSION */
.social-mission{
    width:80%;
    max-width:1100px;
    margin:100px auto;
    padding:50px 40px;
    border-radius:25px;
    background:linear-gradient(145deg,#0f172a,#111827);
    box-shadow:0 0 40px rgba(0,0,0,0.6);
    text-align:center;
}

.mission-header .heart{
    font-size:40px;
}

.mission-header h1{
    font-size:32px;
    margin:15px 0 30px;
}

.mission-text{
    font-size:18px;
    line-height:1.8;
    color:#cbd5e1;
    margin-bottom:50px;
}

.brand{color:#22d3ee;font-weight:600;}
.food{color:#facc15;}
.medical{color:#4ade80;}
.home{color:#60a5fa;}

.mission-cards{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.mission-card{
    flex:1;
    min-width:260px;
    padding:30px;
    border-radius:20px;
    color:white;
    transition:0.3s;
}

.mission-card:hover{
    transform:translateY(-5px);
}

.food-card{background:linear-gradient(145deg,#5c4200,#e89625);}
.medical-card{background:linear-gradient(145deg,#064e3b,#25d3a2);}
.housing-card{background:linear-gradient(145deg,#1e3a8a,#5685ea);}

.icon{
    font-size:40px;
    margin-bottom:15px;
}

.legal-consultation{
    margin:60px 0;
    padding:40px;
    border-radius:20px;
    background:linear-gradient(145deg,#2e1065,#4c1d95);
    border:1px solid #7c3aed;
}

.available{
    margin-top:20px;
    font-weight:600;
    color:#c4b5fd;
}

.login-note{
    padding:25px;
    border-radius:20px;
    background:linear-gradient(145deg,#0f3b46,#134e4a);
    border:1px solid #14b8a6;
    font-size:16px;
    color:#d1f5f3;
}

/* ENTER WEBSITE */
.enter{
    text-align:center;
    margin:100px 0 60px;
}

.enter button{
    padding:10px 25px;
    font-size:22px;
    border-radius:15px;
    border:none;
    background:linear-gradient(45deg,#1fb6ff,#2563eb);
    color:white;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.enter button:hover{
    transform:scale(1.05);
}

/* CONTACT SECTION */
.contact-section{
    width:90%;
    max-width:1000px;
    margin:80px auto;
    padding:40px;
    border-radius:20px;
    background:linear-gradient(145deg,#111827,#1f2937);
    box-shadow:0 0 30px rgba(0,0,0,0.6);
    text-align:center;
}

.contact-section h1{
    font-size:26px;
    margin-bottom:10px;
}

.contact-container{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    margin-top:30px;
}

.contact-box{
    background:#0f172a;
    padding:25px;
    border-radius:15px;
    width:250px;
    transition:0.3s;
}

.contact-box:hover{
    transform:translateY(-5px);
    box-shadow:0 0 15px rgba(0,0,0,0.6);
}

.contact-box h3{
    margin-bottom:10px;
    font-size:18px;
    color:#38bdf8;
}

.contact-box p{
    font-size:14px;
    color:#d1d5db;
}

/* FOOTER */
footer{
    text-align:center;
    opacity:.6;
    padding-bottom:30px;
}

/*blink green dot*/
.green-dot{
    display:inline-block;
    width:10px;
    height:10px;
    margin-right:8px;
    border-radius:50%;
    background:#00ff66;
    animation:blinkDot 1s infinite;
}

@keyframes blinkDot{
    0%{
        opacity:1;
        box-shadow:0 0 5px #00ff66;
    }
    50%{
        opacity:0.3;
        box-shadow:0 0 15px #00ff66;
    }
    100%{
        opacity:1;
        box-shadow:0 0 5px #00ff66;
    }
}

/* GOVERNMENT CERTIFICATION */
.government-certification {
    text-align: center;
    padding: 60px 20px 40px;
    background: #050b14;
}

.cert-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.cert-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cert-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c1624;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    transition: 0.4s ease;
}

.cert-circle img {
    width: 130px;
    height: auto;
}

.green-border { border: 4px solid #0b5f3b; }
.orange-border { border: 4px solid #7a3d12; }

.cert-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255,255,255,0.15);
}

.cert-box p {
    margin-top: 20px;
    font-size: 20px;
    color: #cfcfcf;
    font-weight: 500;
}

.cert-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    position: relative;
}

.cert-divider::before {
    content: "";
    width: 2px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    position: absolute;
}

.middle-dot {
    width: 14px;
    height: 14px;
    background: #00bcd4;
    border-radius: 50%;
    z-index: 2;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero h1{ font-size:35px; }
    .card{ width:90%; }
    .cert-circle{ width:180px; height:180px; }
    .cert-circle img{ width:100px; }
    .cert-divider{ height:180px; }
    .middle-dot{ width:10px; height:10px; }
}


/*======app logo section======*/
.app-logo-section {
    text-align: center;
    padding: 60px 0;
}

.app-logo-container {
    width: 220px;              /* Slightly bigger than logo */
    height: 220px;
    margin: 0 auto;
    border-radius: 50%;        /* Make outer border circle */
    border: 3px solid #f93594; /* Circle outline */
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.app-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;        /* Logo circle */
    object-fit: cover;
    filter: drop-shadow(0 0 15px #ed3e90);
}
.app-logo-container:hover {
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.9);
    transform: scale(1.05);
    transition: 0.3s ease;
}

.app-logo-container:hover .app-logo {
    filter: drop-shadow(0 0 25px #00ffff);
    transition: 0.3s ease;
}
.logo-headline {
    margin-top: 20px;
    font-size: 24px;
    color: hsl(166, 100%, 50%) ;
    text-align: center;
    letter-spacing: 1px;
}