/*=========================================
    GOOGLE RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Outfit',sans-serif;
    background:#061421;
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/*=========================================
        HERO SECTION
=========================================*/

.ngo-hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:140px 8% 100px;

    background:
    radial-gradient(circle at top left,#00ff9540 0%,transparent 35%),
    radial-gradient(circle at bottom right,#0099ff30 0%,transparent 40%),
    linear-gradient(135deg,#071321,#081b2d,#05111d);
}

/*=========================================
        GRID OVERLAY
=========================================*/

.grid-overlay{

    position:absolute;
    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);

    background-size:55px 55px;

    opacity:.25;
}

/*=========================================
        FLOATING BLOBS
=========================================*/

.hero-background span{

    position:absolute;
    border-radius:50%;
    filter:blur(90px);

}

.blob-1{

    width:380px;
    height:380px;

    background:#00ff88;

    top:-120px;
    left:-120px;

    animation:floatBlob1 8s ease-in-out infinite;

}

.blob-2{

    width:300px;
    height:300px;

    background:#00bfff;

    right:-80px;
    top:120px;

    animation:floatBlob2 9s ease-in-out infinite;

}

.blob-3{

    width:260px;
    height:260px;

    background:#0066ff;

    bottom:-100px;
    left:40%;

    animation:floatBlob3 10s ease-in-out infinite;

}

@keyframes floatBlob1{

    50%{

        transform:
        translateY(40px)
        translateX(30px)
        scale(1.15);

    }

}

@keyframes floatBlob2{

    50%{

        transform:
        translateY(-40px)
        scale(1.1);

    }

}

@keyframes floatBlob3{

    50%{

        transform:
        translateY(-35px)
        translateX(-40px)
        scale(.9);

    }

}

/*=========================================
        CONTAINER
=========================================*/

.hero-container{

    width:100%;
    max-width:1400px;

    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;

    align-items:center;

    position:relative;
    z-index:5;

}

/*=========================================
        LEFT CONTENT
=========================================*/

.hero-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 22px;

    border-radius:60px;

    color:#89ffd0;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    margin-bottom:30px;

    font-size:15px;

}

.hero-tag i{

    color:#00ff88;

    font-size:20px;

}

.hero-content h1{

    font-size:68px;
    font-weight:800;
    line-height:1.1;

    margin-bottom:25px;

}

.hero-content h1 span{

    display:block;

    margin-top:12px;

    background:linear-gradient(90deg,#00ff95,#00bfff,#ffffff);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.hero-content p{

    max-width:650px;

    font-size:18px;

    line-height:1.9;

    color:#bdd4e8;

    margin-bottom:45px;

}

/*=========================================
        BUTTONS
=========================================*/

.hero-buttons{

    display:flex;
    gap:20px;

    flex-wrap:wrap;

}

.primary-btn{

    padding:18px 34px;

    border-radius:60px;

    background:linear-gradient(135deg,#00ff95,#00b894);

    color:#02150e;

    font-weight:700;

    display:flex;
    align-items:center;
    gap:12px;

    transition:.45s;

    box-shadow:

    0 15px 40px rgba(0,255,149,.35);

}

.primary-btn:hover{

    transform:
    translateY(-8px)
    scale(1.03);

    box-shadow:
    0 25px 55px rgba(0,255,149,.45);

}

.secondary-btn{

    padding:18px 34px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,.15);

    color:white;

    backdrop-filter:blur(20px);

    transition:.4s;

}

.secondary-btn:hover{

    background:rgba(255,255,255,.08);

    transform:translateY(-8px);

}

/*=========================================
        STATS
=========================================*/

.hero-stats{

    display:flex;

    gap:25px;

    margin-top:60px;

    flex-wrap:wrap;

}

.stat-box{

    padding:22px 28px;

    min-width:170px;

    border-radius:22px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    transition:.4s;

}

.stat-box:hover{

    transform:translateY(-10px);

    border-color:#00ff88;

}

.stat-box h2{

    color:#00ff95;

    font-size:34px;

    margin-bottom:8px;

}

.stat-box span{

    color:#b9d2e6;

}

/*=========================================
        RIGHT CARD
=========================================*/

.hero-image{

    display:flex;
    justify-content:center;

}

.glass-card{

    width:100%;
    max-width:430px;

    padding:35px;

    border-radius:35px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(35px);

    box-shadow:

    0 25px 70px rgba(0,0,0,.35);

    transition:.5s;

}

.glass-card:hover{

    transform:

    rotateY(-8deg)

    rotateX(6deg)

    translateY(-12px);

}

.card-header{

    display:flex;
    gap:18px;

    align-items:center;

    margin-bottom:35px;

}

.card-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#00ff95,#0099ff);

    font-size:28px;

}

.card-header h3{

    font-size:24px;

}

.card-header span{

    color:#b5c8d8;

}

.feature{

    display:flex;
    align-items:center;

    gap:14px;

    padding:18px 0;

    color:#d8e8f5;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.feature:last-child{

    border:none;

}

.feature i{

    color:#00ff95;

    font-size:22px;

}

/*=========================================
        SCROLL
=========================================*/

.scroll-indicator{

    position:absolute;

    bottom:35px;
    left:50%;

    transform:translateX(-50%);

}

.scroll-indicator span{

    display:block;

    width:26px;
    height:48px;

    border:2px solid rgba(255,255,255,.45);

    border-radius:50px;

    position:relative;

}

.scroll-indicator span::before{

    content:"";

    position:absolute;

    left:50%;
    top:8px;

    width:6px;
    height:6px;

    border-radius:50%;

    background:#00ff95;

    transform:translateX(-50%);

    animation:scrollMove 1.6s infinite;

}

@keyframes scrollMove{

    0%{

        opacity:0;
        top:8px;

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;
        top:28px;

    }

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px){

.hero-container{

grid-template-columns:1fr;

text-align:center;

}

.hero-content p{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

margin-bottom:50px;

}

.hero-content h1{

font-size:52px;

}

}

@media(max-width:576px){

.ngo-hero{

padding:120px 25px 80px;

}

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:16px;

}

.primary-btn,
.secondary-btn{

width:100%;

justify-content:center;

}

.stat-box{

width:100%;

}

}

/*=========================================
        PREMIUM 3D RINGS
=========================================*/

.ring{

    position:absolute;
    border-radius:50%;
    border:1px solid rgba(0,255,170,.18);

    pointer-events:none;

}

.ring-1{

    width:520px;
    height:520px;

    right:-120px;
    top:50%;

    transform:translateY(-50%);

    animation:ringRotate 20s linear infinite;

}

.ring-2{

    width:320px;
    height:320px;

    right:20px;
    top:50%;

    transform:translateY(-50%);

    animation:ringRotateReverse 14s linear infinite;

}

.ring::before{

    content:"";

    position:absolute;
    inset:20px;

    border-radius:50%;

    border:1px dashed rgba(0,255,170,.15);

}

@keyframes ringRotate{

    from{

        transform:translateY(-50%) rotate(0deg);

    }

    to{

        transform:translateY(-50%) rotate(360deg);

    }

}

@keyframes ringRotateReverse{

    from{

        transform:translateY(-50%) rotate(360deg);

    }

    to{

        transform:translateY(-50%) rotate(0deg);

    }

}

/*=========================================
        FLOATING PARTICLES
=========================================*/

.particles{

    position:absolute;
    inset:0;

    overflow:hidden;

}

.particles span{

    position:absolute;

    width:6px;
    height:6px;

    border-radius:50%;

    background:#00ff95;

    box-shadow:0 0 15px #00ff95;

    animation:particleMove linear infinite;

}

.particles span:nth-child(1){

left:10%;
bottom:-30px;

animation-duration:9s;
animation-delay:0s;

}

.particles span:nth-child(2){

left:22%;
bottom:-40px;

animation-duration:13s;

}

.particles span:nth-child(3){

left:40%;
bottom:-20px;

animation-duration:10s;

}

.particles span:nth-child(4){

left:55%;
bottom:-35px;

animation-duration:12s;

}

.particles span:nth-child(5){

left:68%;
bottom:-30px;

animation-duration:8s;

}

.particles span:nth-child(6){

left:78%;
bottom:-40px;

animation-duration:11s;

}

.particles span:nth-child(7){

left:88%;
bottom:-25px;

animation-duration:9s;

}

.particles span:nth-child(8){

left:96%;
bottom:-40px;

animation-duration:13s;

}

@keyframes particleMove{

    0%{

        transform:
        translateY(0)
        scale(.4);

        opacity:0;

    }

    20%{

        opacity:1;

    }

    80%{

        opacity:1;

    }

    100%{

        transform:
        translateY(-110vh)
        scale(1.5);

        opacity:0;

    }

}

/*=========================================
        PREMIUM HEADING ANIMATION
=========================================*/

.hero-content{

    animation:fadeLeft 1.1s ease;

}

.hero-image{

    animation:fadeRight 1.3s ease;

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:
        translateX(-70px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:
        translateX(70px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/*=========================================
        PREMIUM GLOW
=========================================*/

.glass-card{

    position:relative;

    overflow:hidden;

}

.glass-card::before{

    content:"";

    position:absolute;

    top:-150%;

    left:-50%;

    width:70%;

    height:300%;

    background:

    linear-gradient(

    transparent,

    rgba(255,255,255,.18),

    transparent

    );

    transform:rotate(25deg);

    animation:shine 6s linear infinite;

}

@keyframes shine{

    from{

        left:-80%;

    }

    to{

        left:180%;

    }

}

/*=========================================
        BUTTON GLOW
=========================================*/

.primary-btn{

    position:relative;

    overflow:hidden;

}

.primary-btn::before{

    content:"";

    position:absolute;

    width:0;

    height:100%;

    left:0;

    top:0;

    background:rgba(255,255,255,.18);

    transition:.45s;

}

.primary-btn:hover::before{

    width:100%;

}

/*=========================================
        STAT HOVER
=========================================*/

.stat-box{

    position:relative;

    overflow:hidden;

}

.stat-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle,#00ff8835,transparent);

    opacity:0;

    transition:.4s;

}

.stat-box:hover::before{

    opacity:1;

}

/*=========================================
        WHY NGO SECTION
=========================================*/

.why-ngo{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}

/* Background Glow */

.why-ngo::before{

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -180px;
    left: -150px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(120px);

}

.why-ngo::after{

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -120px;
    bottom: -150px;

    border-radius: 50%;

    background: rgba(0,170,255,.08);

    filter: blur(120px);

}

/*=========================================
        SECTION TITLE
=========================================*/

.section-title{

    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;

}

.section-badge{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 22px;

    border-radius: 50px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    color: #82ffd2;

    backdrop-filter: blur(20px);

    font-size: 14px;

    margin-bottom: 22px;

}

.section-title h2{

    font-size: 48px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 20px;

}

.section-title h2 span{

    display: block;

    margin-top: 10px;

    background: linear-gradient(90deg,#00ff95,#00bfff,#ffffff);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.section-title p{

    color: #bdd4e8;

    font-size: 17px;

    line-height: 1.9;

}

/*=========================================
        GRID
=========================================*/

.benefits-grid{

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;

}

/*=========================================
        CARD
=========================================*/

.benefit-card{

    position: relative;

    padding: 35px;

    border-radius: 28px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

    overflow: hidden;

    transition: .45s ease;

}

/* Top Glow Line */

.benefit-card::before{

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 3px;

    background: linear-gradient(90deg,#00ff95,#00bfff);

    transform: scaleX(0);

    transform-origin: left;

    transition: .45s;

}

/* Glow Background */

.benefit-card::after{

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    top: -110px;

    right: -110px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(60px);

    opacity: 0;

    transition: .45s;

}

.benefit-card:hover{

    transform: translateY(-12px);

    border-color: rgba(0,255,149,.35);

    box-shadow: 0 20px 50px rgba(0,0,0,.35);

}

.benefit-card:hover::before{

    transform: scaleX(1);

}

.benefit-card:hover::after{

    opacity: 1;

}

/*=========================================
        ICON
=========================================*/

.benefit-icon{

    width: 72px;

    height: 72px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg,#00ff95,#00bfff);

    font-size: 30px;

    color: #03131d;

    margin-bottom: 25px;

    transition: .45s;

}

.benefit-card:hover .benefit-icon{

    transform: rotate(-8deg) scale(1.08);

}

/*=========================================
        CONTENT
=========================================*/

.benefit-card h3{

    font-size: 24px;

    margin-bottom: 15px;

    font-weight: 700;

}

.benefit-card p{

    color: #bfd4e7;

    line-height: 1.8;

    font-size: 15px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px){

    .benefits-grid{

        grid-template-columns: repeat(2,1fr);

    }

}

@media(max-width:768px){

    .why-ngo{

        padding: 90px 25px;

    }

    .section-title h2{

        font-size: 36px;

    }

    .benefits-grid{

        grid-template-columns: 1fr;

    }

}

@media(max-width:480px){

    .benefit-card{

        padding: 28px;

    }

    .benefit-icon{

        width: 60px;
        height: 60px;

        font-size: 24px;

    }

    .section-title h2{

        font-size: 30px;

    }

}

/*=========================================
        REGISTRATION TYPES
=========================================*/

.registration-types{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}

/* Background Glow */

.registration-types::before{

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -200px;
    right: -180px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(130px);

}

.registration-types::after{

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    bottom: -150px;
    left: -150px;

    border-radius: 50%;

    background: rgba(0,170,255,.08);

    filter: blur(130px);

}

/*=========================================
        GRID
=========================================*/

.types-grid{

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 35px;

    margin-top: 70px;

}

/*=========================================
        CARD
=========================================*/

.type-card{

    position: relative;

    padding: 40px 35px;

    border-radius: 30px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

    overflow: hidden;

    transition: .45s ease;

}

/* Animated Border */

.type-card::before{

    content: "";

    position: absolute;

    inset: 0;

    padding: 1px;

    border-radius: 30px;

    background: linear-gradient(
        135deg,
        rgba(0,255,149,.5),
        rgba(0,191,255,.4),
        transparent
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

            mask-composite: exclude;

    opacity: 0;

    transition: .4s;

}

/* Glow Circle */

.type-card::after{

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -120px;
    top: -120px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(70px);

    opacity: 0;

    transition: .4s;

}

.type-card:hover{

    transform:
        translateY(-16px)
        rotateX(4deg);

    border-color: rgba(0,255,149,.35);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);

}

.type-card:hover::before{

    opacity: 1;

}

.type-card:hover::after{

    opacity: 1;

}

/*=========================================
        ACTIVE CARD
=========================================*/

.active-card{

    transform: translateY(-25px);

    border: 1px solid rgba(0,255,149,.25);

    box-shadow: 0 25px 60px rgba(0,255,149,.12);

}

.active-card:hover{

    transform:
        translateY(-40px)
        scale(1.02);

}

/*=========================================
        POPULAR TAG
=========================================*/

.popular-tag{

    position: absolute;

    top: 18px;
    right: 18px;

    padding: 8px 18px;

    border-radius: 30px;

    background: linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    color: #03151d;

    font-size: 13px;

    font-weight: 700;

}

/*=========================================
        ICON
=========================================*/

.type-icon{

    width: 82px;
    height: 82px;

    border-radius: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 30px;

    background: linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    color: #03151d;

    font-size: 34px;

    transition: .45s;

}

.type-card:hover .type-icon{

    transform:
        rotate(-10deg)
        scale(1.08);

}

/*=========================================
        CONTENT
=========================================*/

.type-card h3{

    font-size: 28px;

    margin-bottom: 18px;

    font-weight: 700;

}

.type-card p{

    color: #bfd4e7;

    line-height: 1.8;

    margin-bottom: 28px;

    font-size: 15px;

}

/*=========================================
        LIST
=========================================*/

.type-card ul{

    list-style: none;

    margin-bottom: 35px;

}

.type-card ul li{

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 0;

    color: #d8e8f5;

    border-bottom: 1px solid rgba(255,255,255,.06);

}

.type-card ul li:last-child{

    border: none;

}

.type-card ul li i{

    color: #00ff95;

    font-size: 18px;

}

/*=========================================
        BUTTON
=========================================*/

.type-card a{

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 26px;

    border-radius: 50px;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.08);

    color: #ffffff;

    transition: .4s;

}

.type-card a:hover{

    background: linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    color: #03151d;

    transform: translateX(6px);

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

    .types-grid{

        grid-template-columns: repeat(2,1fr);

    }

    .active-card{

        transform: none;

    }

}

@media(max-width:768px){

    .registration-types{

        padding: 90px 25px;

    }

    .types-grid{

        grid-template-columns: 1fr;

    }

    .type-card{

        padding: 30px;

    }

    .type-card h3{

        font-size: 24px;

    }

}

@media(max-width:480px){

    .type-icon{

        width: 70px;
        height: 70px;

        font-size: 28px;

    }

    .popular-tag{

        font-size: 11px;

        padding: 7px 14px;

    }

}

/*=========================================
        REQUIRED DOCUMENTS
=========================================*/

.required-documents{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}

/* Background Glow */

.required-documents::before{

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -180px;
    left: -180px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(120px);

}

.required-documents::after{

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    bottom: -180px;
    right: -180px;

    border-radius: 50%;

    background: rgba(0,170,255,.08);

    filter: blur(120px);

}

/*=========================================
        WRAPPER
=========================================*/

.documents-wrapper{

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 60px;

    align-items: center;

}

/*=========================================
        LEFT CARD
=========================================*/

.document-showcase{

    position: sticky;

    top: 120px;

    padding: 45px;

    border-radius: 30px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

    overflow: hidden;

}

.document-showcase::before{

    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -120px;
    right: -120px;

    border-radius: 50%;

    background: rgba(0,255,149,.10);

    filter: blur(70px);

}

.document-icon{

    width: 90px;
    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 24px;

    background: linear-gradient(135deg,#00ff95,#00bfff);

    color: #03151d;

    font-size: 38px;

    margin-bottom: 30px;

}

.document-showcase h2{

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;

}

.document-showcase h2 span{

    display: block;

    margin-top: 8px;

    background: linear-gradient(90deg,#00ff95,#00bfff,#ffffff);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.document-showcase p{

    color: #bfd4e7;

    line-height: 1.9;

    font-size: 16px;

}

/*=========================================
        RIGHT GRID
=========================================*/

.documents-right{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 25px;

}

/*=========================================
        DOCUMENT CARD
=========================================*/

.document-item{

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 28px;

    border-radius: 24px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition: .45s;

    overflow: hidden;

}

.document-item::before{

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 3px;

    background: linear-gradient(90deg,#00ff95,#00bfff);

    transform: scaleX(0);

    transform-origin: left;

    transition: .4s;

}

.document-item::after{

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(60px);

    opacity: 0;

    transition: .4s;

}

.document-item:hover{

    transform: translateY(-10px);

    border-color: rgba(0,255,149,.35);

    box-shadow: 0 20px 45px rgba(0,0,0,.35);

}

.document-item:hover::before{

    transform: scaleX(1);

}

.document-item:hover::after{

    opacity: 1;

}

/*=========================================
        ICON
=========================================*/

.document-item i{

    color: #00ff95;

    font-size: 28px;

    flex-shrink: 0;

}

/*=========================================
        CONTENT
=========================================*/

.document-item h4{

    font-size: 20px;

    margin-bottom: 8px;

    font-weight: 600;

}

.document-item p{

    color: #bdd4e8;

    line-height: 1.7;

    font-size: 14px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

    .documents-wrapper{

        grid-template-columns: 1fr;

    }

    .document-showcase{

        position: relative;

        top: 0;

    }

}

@media(max-width:768px){

    .required-documents{

        padding: 90px 25px;

    }

    .documents-right{

        grid-template-columns: 1fr;

    }

    .document-showcase{

        padding: 35px;

    }

    .document-showcase h2{

        font-size: 34px;

    }

}

@media(max-width:480px){

    .document-showcase{

        padding: 28px;

    }

    .document-icon{

        width: 70px;
        height: 70px;

        font-size: 30px;

    }

    .document-item{

        padding: 22px;

    }

    .document-item h4{

        font-size: 18px;

    }

}

/*=========================================
        REGISTRATION PROCESS
=========================================*/

.registration-process{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}

/* Background Glow */

.registration-process::before{

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -220px;
    left: -180px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(130px);

}

.registration-process::after{

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -150px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(0,170,255,.08);

    filter: blur(130px);

}

/*=========================================
        TIMELINE
=========================================*/

.process-timeline{

    position: relative;

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 50px 70px;

    margin-top: 80px;

    z-index: 2;

}

/* Center Line */

.process-timeline::before{

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    width: 4px;

    height: 100%;

    transform: translateX(-50%);

    border-radius: 20px;

    background: linear-gradient(
        to bottom,
        #00ff95,
        #00bfff,
        #00ff95
    );

    box-shadow:
        0 0 25px rgba(0,255,149,.45);

}

/*=========================================
        PROCESS CARD
=========================================*/

.process-card{

    position: relative;

    padding: 35px;

    border-radius: 28px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

    transition: .45s;

    overflow: hidden;

}

/* Alternate Layout */

.process-card:nth-child(odd){

    margin-right: 40px;

}

.process-card:nth-child(even){

    margin-left: 40px;

}

/* Glow Effect */

.process-card::before{

    content: "";

    position: absolute;

    inset: 0;

    background:

    radial-gradient(circle at top right,
    rgba(0,255,149,.12),
    transparent 60%);

    opacity: 0;

    transition: .45s;

}

.process-card:hover{

    transform: translateY(-12px);

    border-color: rgba(0,255,149,.35);

    box-shadow: 0 25px 60px rgba(0,0,0,.35);

}

.process-card:hover::before{

    opacity: 1;

}

/*=========================================
        STEP NUMBER
=========================================*/

.step-number{

    position: absolute;

    top: 20px;

    right: 25px;

    font-size: 70px;

    font-weight: 800;

    color: rgba(255,255,255,.05);

    pointer-events: none;

}

/*=========================================
        ICON
=========================================*/

.process-icon{

    width: 80px;
    height: 80px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    color: #04141d;

    font-size: 34px;

    margin-bottom: 25px;

    transition: .45s;

}

.process-card:hover .process-icon{

    transform: rotate(-8deg) scale(1.08);

}

/*=========================================
        CONTENT
=========================================*/

.process-card h3{

    font-size: 26px;

    margin-bottom: 16px;

    font-weight: 700;

}

.process-card p{

    color: #bfd4e7;

    line-height: 1.8;

    font-size: 15px;

}

/*=========================================
        CONNECTOR DOT
=========================================*/

.process-card::after{

    content: "";

    position: absolute;

    top: 50%;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: #00ff95;

    box-shadow:
        0 0 18px rgba(0,255,149,.8);

    transform: translateY(-50%);

}

.process-card:nth-child(odd)::after{

    right: -49px;

}

.process-card:nth-child(even)::after{

    left: -49px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px){

    .process-timeline{

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .process-timeline::before{

        left: 25px;

    }

    .process-card{

        margin: 0 0 0 55px !important;

    }

    .process-card::after{

        left: -40px !important;

        right: auto;

    }

}

@media(max-width:768px){

    .registration-process{

        padding: 90px 25px;

    }

    .process-card{

        padding: 28px;

    }

    .process-icon{

        width: 68px;
        height: 68px;

        font-size: 28px;

    }

    .process-card h3{

        font-size: 22px;

    }

}

@media(max-width:480px){

    .step-number{

        font-size: 50px;

    }

    .process-card{

        margin-left: 40px !important;

    }

    .process-timeline::before{

        left: 18px;

    }

    .process-card::after{

        left: -33px !important;

        width: 14px;
        height: 14px;

    }

}

/*=========================================
        WHY CHOOSE US
=========================================*/

.why-choose-us{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}

/*=========================================
        BACKGROUND GLOW
=========================================*/

.why-choose-us::before{

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    top: -220px;
    left: -220px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(140px);

}

.why-choose-us::after{

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    bottom: -220px;

    border-radius: 50%;

    background: rgba(0,170,255,.08);

    filter: blur(140px);

}

/*=========================================
        STATS
=========================================*/

.choose-stats{

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

    margin-top: 70px;

    margin-bottom: 70px;

}

.choose-stat{

    position: relative;

    padding: 35px 25px;

    text-align: center;

    border-radius: 28px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    overflow: hidden;

    transition: .45s ease;

}

.choose-stat::before{

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(90deg,#00ff95,#00bfff);

    transform: scaleX(0);

    transform-origin: left;

    transition: .4s;

}

.choose-stat:hover{

    transform: translateY(-12px);

    border-color: rgba(0,255,149,.35);

    box-shadow: 0 20px 50px rgba(0,0,0,.35);

}

.choose-stat:hover::before{

    transform: scaleX(1);

}

.choose-stat h3{

    font-size: 42px;

    margin-bottom: 10px;

    background: linear-gradient(90deg,#00ff95,#00bfff);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.choose-stat p{

    color: #bfd4e7;

    line-height: 1.6;

}

/*=========================================
        FEATURE GRID
=========================================*/

.choose-grid{

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;

}

/*=========================================
        FEATURE CARD
=========================================*/

.choose-card{

    position: relative;

    padding: 35px;

    border-radius: 28px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

    overflow: hidden;

    transition: .45s ease;

}

.choose-card::before{

    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(circle at top right,
        rgba(0,255,149,.12),
        transparent 65%);

    opacity: 0;

    transition: .4s;

}

.choose-card:hover{

    transform: translateY(-14px);

    border-color: rgba(0,255,149,.35);

    box-shadow: 0 25px 60px rgba(0,0,0,.35);

}

.choose-card:hover::before{

    opacity: 1;

}

/*=========================================
        ICON
=========================================*/

.choose-icon{

    width: 78px;
    height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 22px;

    margin-bottom: 28px;

    background: linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    color: #03151d;

    font-size: 32px;

    transition: .45s;

}

.choose-card:hover .choose-icon{

    transform: rotate(-8deg) scale(1.08);

}

/*=========================================
        CONTENT
=========================================*/

.choose-card h3{

    font-size: 24px;

    margin-bottom: 16px;

    font-weight: 700;

}

.choose-card p{

    color: #bfd4e7;

    line-height: 1.8;

    font-size: 15px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

    .choose-stats{

        grid-template-columns: repeat(2,1fr);

    }

    .choose-grid{

        grid-template-columns: repeat(2,1fr);

    }

}

@media(max-width:768px){

    .why-choose-us{

        padding: 90px 25px;

    }

    .choose-grid{

        grid-template-columns: 1fr;

    }

    .choose-stat h3{

        font-size: 34px;

    }

    .choose-card{

        padding: 30px;

    }

}

@media(max-width:480px){

    .choose-stats{

        grid-template-columns: 1fr;

    }

    .choose-icon{

        width: 68px;
        height: 68px;

        font-size: 28px;

    }

    .choose-card h3{

        font-size: 22px;

    }

}

/*=========================================
        REGISTRATION FORM
=========================================*/

.registration-form-section{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}

/*=========================================
        BACKGROUND GLOW
=========================================*/

.registration-form-section::before{

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    top: -220px;
    left: -220px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(140px);

}

.registration-form-section::after{

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    bottom: -220px;
    right: -220px;

    border-radius: 50%;

    background: rgba(0,170,255,.08);

    filter: blur(140px);

}

/*=========================================
        WRAPPER
=========================================*/

.registration-wrapper{

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 380px 1fr;

    gap: 40px;

    margin-top: 70px;

    align-items: start;

}

/*=========================================
        LEFT CARD
=========================================*/

.info-card{

    position: sticky;

    top: 120px;

    padding: 40px;

    border-radius: 30px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(30px);

    overflow: hidden;

}

.info-card::before{

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -120px;
    right: -120px;

    border-radius: 50%;

    background: rgba(0,255,149,.10);

    filter: blur(80px);

}

.info-icon{

    width: 85px;
    height: 85px;

    border-radius: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 28px;

    background: linear-gradient(135deg,#00ff95,#00bfff);

    color: #04151d;

    font-size: 36px;

}

.info-card h3{

    font-size: 28px;

    margin-bottom: 18px;

}

.info-card p{

    color: #bfd4e7;

    line-height: 1.9;

    margin-bottom: 30px;

}

.trust-list{

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.trust-item{

    display: flex;

    align-items: center;

    gap: 14px;

    color: #d9e8f5;

}

.trust-item i{

    color: #00ff95;

    font-size: 20px;

}

/*=========================================
        FORM BOX
=========================================*/

.registration-form-box{

    padding: 45px;

    border-radius: 30px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(30px);

    overflow: hidden;

    position: relative;

}

.registration-form-box::before{

    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(circle at top right,
    rgba(0,255,149,.08),
    transparent 65%);

    pointer-events: none;

}

/*=========================================
        PROGRESS
=========================================*/

.form-progress{

    margin-bottom: 45px;

}

.progress-line{

    width: 100%;

    height: 8px;

    border-radius: 50px;

    background: rgba(255,255,255,.08);

    overflow: hidden;

}

.progress-line span{

    display: block;

    width: 25%;

    height: 100%;

    border-radius: inherit;

    background: linear-gradient(
        90deg,
        #00ff95,
        #00bfff
    );

}

.progress-text{

    margin-top: 12px;

    color: #9fc2d8;

    font-size: 15px;

}

/*=========================================
        FORM HEADING
=========================================*/

.form-heading{

    margin-bottom: 35px;

}

.form-heading h3{

    font-size: 32px;

    margin-bottom: 12px;

}

.form-heading p{

    color: #bdd4e8;

}

/*=========================================
        GRID
=========================================*/

.form-grid{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 25px;

}

/*=========================================
        FORM GROUP
=========================================*/

.form-group{

    display: flex;

    flex-direction: column;

}

.form-group label{

    margin-bottom: 10px;

    color: #ffffff;

    font-weight: 500;

}

.form-group input,
.form-group select{

    height: 60px;

    padding: 0 20px;

    border-radius: 16px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.04);

    color: #ffffff;

    font-size: 15px;

    outline: none;

    transition: .35s;

}

.form-group input::placeholder{

    color: #8ca8bb;

}

.form-group input:focus,
.form-group select:focus{

    border-color: #00ff95;

    background: rgba(255,255,255,.06);

    box-shadow: 0 0 0 4px rgba(0,255,149,.12);

}

/* Dropdown */

.form-group select option{

    background: #081521;

    color: #ffffff;

}

/*=========================================
        BUTTON
=========================================*/

.form-footer{

    margin-top: 40px;

}

.next-step-btn{

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 18px 34px;

    border: none;

    border-radius: 60px;

    cursor: pointer;

    background: linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    color: #04141d;

    font-size: 16px;

    font-weight: 700;

    transition: .4s;

}

.next-step-btn:hover{

    transform: translateY(-5px);

    box-shadow: 0 20px 45px rgba(0,255,149,.30);

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

    .registration-wrapper{

        grid-template-columns: 1fr;

    }

    .info-card{

        position: relative;

        top: 0;

    }

}

@media(max-width:768px){

    .registration-form-section{

        padding: 90px 25px;

    }

    .form-grid{

        grid-template-columns: 1fr;

    }

    .registration-form-box{

        padding: 30px;

    }

    .info-card{

        padding: 30px;

    }

    .form-heading h3{

        font-size: 28px;

    }

}

@media(max-width:480px){

    .registration-form-box{

        padding: 22px;

    }

    .info-card{

        padding: 22px;

    }

    .next-step-btn{

        width: 100%;

        justify-content: center;

    }

}

/*=========================================
        TEXTAREA
=========================================*/

.form-group textarea{

    width:100%;

    padding:20px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    color:#ffffff;

    resize:vertical;

    min-height:140px;

    outline:none;

    transition:.35s;

    font-family:'Outfit',sans-serif;

    font-size:15px;

}

.form-group textarea::placeholder{

    color:#8ca8bb;

}

.form-group textarea:focus{

    border-color:#00ff95;

    background:rgba(255,255,255,.06);

    box-shadow:0 0 0 4px rgba(0,255,149,.12);

}

/*=========================================
        UPLOAD GRID
=========================================*/

.upload-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.upload-card{

    position:relative;

    padding:35px;

    text-align:center;

    border-radius:24px;

    border:2px dashed rgba(255,255,255,.15);

    background:rgba(255,255,255,.04);

    transition:.4s;

}

.upload-card:hover{

    border-color:#00ff95;

    transform:translateY(-8px);

    background:rgba(255,255,255,.06);

}

.upload-card i{

    font-size:42px;

    color:#00ff95;

    margin-bottom:18px;

}

.upload-card h4{

    margin-bottom:10px;

    font-size:22px;

}

.upload-card p{

    color:#b8cfe3;

    margin-bottom:22px;

    font-size:14px;

}

.upload-card input{

    width:100%;

    color:#ffffff;

}

.upload-card input::file-selector-button{

    padding:12px 18px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    margin-right:15px;

    background:linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    color:#03141d;

    font-weight:600;

}

@media(max-width:768px){

.upload-grid{

grid-template-columns:1fr;

}

}

/*=========================================
        REVIEW SUMMARY
=========================================*/

.review-summary{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-bottom:35px;

}

.summary-item{

    padding:24px;

    border-radius:18px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

}

.summary-item span{

    display:block;

    color:#8faec2;

    font-size:13px;

    margin-bottom:8px;

}

.summary-item strong{

    font-size:17px;

    color:#ffffff;

    word-break:break-word;

}

/*=========================================
        TERMS
=========================================*/

.terms-box{

    margin-bottom:35px;

    padding:25px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

}

.terms-box label{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:#c5d8e8;

    line-height:1.8;

    cursor:pointer;

}

.terms-box input{

    margin-top:4px;

    accent-color:#00ff95;

}

/*=========================================
        BUTTONS
=========================================*/

.form-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.secondary-btn{

    padding:16px 30px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.05);

    color:#ffffff;

    cursor:pointer;

    transition:.35s;

}

.secondary-btn:hover{

    background:rgba(255,255,255,.08);

    transform:translateY(-3px);

}

.submit-btn{

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px 36px;

    border:none;

    border-radius:60px;

    cursor:pointer;

    font-size:16px;

    font-weight:700;

    background:linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    color:#04151d;

    transition:.4s;

}

.submit-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 50px rgba(0,255,149,.35);

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:768px){

.review-summary{

grid-template-columns:1fr;

}

.form-footer{

flex-direction:column;

}

.secondary-btn,
.submit-btn{

width:100%;

justify-content:center;

}

}

/*=========================================
        CLIENT TESTIMONIALS
=========================================*/

.client-testimonials{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}

/*=========================================
        BACKGROUND GLOW
=========================================*/

.client-testimonials::before{

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -220px;
    left: -200px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(140px);

}

.client-testimonials::after{

    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -180px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(0,170,255,.08);

    filter: blur(140px);

}

/*=========================================
        GRID
=========================================*/

.testimonial-grid{

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;

    margin-top: 70px;

}

/*=========================================
        CARD
=========================================*/

.testimonial-card{

    position: relative;

    padding: 35px;

    border-radius: 30px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

    overflow: hidden;

    transition: .45s ease;

}

.testimonial-card::before{

    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(
        circle at top right,
        rgba(0,255,149,.12),
        transparent 65%
    );

    opacity: 0;

    transition: .4s;

}

.testimonial-card:hover{

    transform: translateY(-15px);

    border-color: rgba(0,255,149,.35);

    box-shadow: 0 25px 60px rgba(0,0,0,.35);

}

.testimonial-card:hover::before{

    opacity: 1;

}

/*=========================================
        STARS
=========================================*/

.stars{

    display: flex;

    gap: 6px;

    margin-bottom: 22px;

}

.stars i{

    color: #FFD54A;

    font-size: 18px;

}

/*=========================================
        REVIEW TEXT
=========================================*/

.testimonial-card p{

    color: #c4d8e8;

    line-height: 1.9;

    font-size: 15px;

    margin-bottom: 30px;

}

/*=========================================
        USER
=========================================*/

.testimonial-user{

    display: flex;

    align-items: center;

    gap: 18px;

}

.user-avatar{

    width: 65px;
    height: 65px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    font-weight: 700;

    background: linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    color: #04151d;

    flex-shrink: 0;

}

.testimonial-user h4{

    font-size: 18px;

    margin-bottom: 6px;

}

.testimonial-user span{

    color: #8fb3c8;

    font-size: 14px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

    .testimonial-grid{

        grid-template-columns: repeat(2,1fr);

    }

}

@media(max-width:768px){

    .client-testimonials{

        padding: 90px 25px;

    }

    .testimonial-grid{

        grid-template-columns: 1fr;

    }

    .testimonial-card{

        padding: 28px;

    }

}

@media(max-width:480px){

    .user-avatar{

        width: 55px;
        height: 55px;

        font-size: 18px;

    }

    .testimonial-user h4{

        font-size: 17px;

    }

}

/*=========================================
                FAQ SECTION
=========================================*/

.faq-section{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}

/*=========================================
            BACKGROUND GLOW
=========================================*/

.faq-section::before{

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -220px;
    left: -220px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(140px);

}

.faq-section::after{

    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -180px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(0,170,255,.08);

    filter: blur(140px);

}

/*=========================================
            WRAPPER
=========================================*/

.faq-wrapper{

    position: relative;

    z-index: 2;

    max-width: 950px;

    margin: 70px auto 0;

}

/*=========================================
            FAQ ITEM
=========================================*/

.faq-item{

    position: relative;

    margin-bottom: 22px;

    border-radius: 24px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

    overflow: hidden;

    transition: .4s;

}

.faq-item:hover{

    transform: translateY(-4px);

    border-color: rgba(0,255,149,.30);

    box-shadow: 0 20px 50px rgba(0,0,0,.35);

}

/*=========================================
            QUESTION
=========================================*/

.faq-question{

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 28px 30px;

    border: none;

    background: transparent;

    color: #ffffff;

    cursor: pointer;

    font-size: 18px;

    font-weight: 600;

    text-align: left;

}

.faq-question span{

    flex: 1;

    line-height: 1.6;

}

.faq-question i{

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.06);

    color: #00ff95;

    font-size: 22px;

    transition: .35s;

}

/*=========================================
            ANSWER
=========================================*/

.faq-answer{

    max-height: 0;

    overflow: hidden;

    transition: max-height .45s ease;

}

.faq-answer p{

    padding: 0 30px 30px;

    color: #bfd4e7;

    line-height: 1.9;

    font-size: 15px;

}

/*=========================================
            ACTIVE
=========================================*/

.faq-item.active{

    border-color: rgba(0,255,149,.30);

    box-shadow: 0 20px 55px rgba(0,255,149,.08);

}

.faq-item.active .faq-answer{

    max-height: 300px;

}

.faq-item.active .faq-question i{

    transform: rotate(45deg);

    background: linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    color: #04151d;

}

/*=========================================
        TOP BORDER ANIMATION
=========================================*/

.faq-item::before{

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 3px;

    background: linear-gradient(
        90deg,
        #00ff95,
        #00bfff
    );

    transform: scaleX(0);

    transform-origin: left;

    transition: .4s;

}

.faq-item:hover::before,
.faq-item.active::before{

    transform: scaleX(1);

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:768px){

    .faq-section{

        padding: 90px 25px;

    }

    .faq-question{

        padding: 22px;

        font-size: 16px;

    }

    .faq-answer p{

        padding: 0 22px 22px;

    }

}

@media(max-width:480px){

    .faq-question{

        gap: 14px;

        font-size: 15px;

    }

    .faq-question i{

        width: 36px;
        height: 36px;

        font-size: 18px;

    }

}

/*=========================================
            FINAL CTA SECTION
=========================================*/

.final-cta{

    position: relative;

    padding: 140px 8%;

    overflow: hidden;

}

/*=========================================
            GLOW EFFECTS
=========================================*/

.cta-glow{

    position: absolute;

    border-radius: 50%;

    filter: blur(140px);

    pointer-events: none;

}

.glow-1{

    width: 420px;
    height: 420px;

    top: -180px;
    left: -160px;

    background: rgba(0,255,149,.12);

}

.glow-2{

    width: 380px;
    height: 380px;

    right: -120px;
    bottom: -120px;

    background: rgba(0,170,255,.12);

}

/*=========================================
            CTA WRAPPER
=========================================*/

.cta-wrapper{

    position: relative;

    z-index: 2;

    max-width: 1050px;

    margin: auto;

    padding: 80px 60px;

    text-align: center;

    border-radius: 35px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(30px);

    overflow: hidden;

}

.cta-wrapper::before{

    content: "";

    position: absolute;

    inset: 0;

    background:
    radial-gradient(circle at top right,
    rgba(0,255,149,.12),
    transparent 60%);

    opacity: .9;

}

.cta-wrapper>*{

    position: relative;

    z-index: 2;

}

/*=========================================
            BADGE
=========================================*/

.cta-badge{

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 24px;

    border-radius: 50px;

    background: rgba(255,255,255,.07);

    border: 1px solid rgba(255,255,255,.08);

    color: #00ff95;

    font-size: 14px;

    margin-bottom: 28px;

}

/*=========================================
            HEADING
=========================================*/

.cta-wrapper h2{

    font-size: 58px;

    line-height: 1.2;

    margin-bottom: 24px;

}

.cta-wrapper h2 span{

    display: block;

    margin-top: 8px;

    background: linear-gradient(
        90deg,
        #00ff95,
        #00bfff,
        #ffffff
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.cta-wrapper p{

    max-width: 760px;

    margin: auto;

    color: #bfd4e7;

    line-height: 1.9;

    font-size: 17px;

}

/*=========================================
            FEATURES
=========================================*/

.cta-features{

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 28px;

    margin: 45px 0;

}

.cta-feature{

    display: flex;

    align-items: center;

    gap: 10px;

    color: #d8e8f5;

    font-size: 16px;

}

.cta-feature i{

    color: #00ff95;

    font-size: 20px;

}

/*=========================================
            BUTTONS
=========================================*/

.cta-buttons{

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.cta-primary-btn,
.cta-secondary-btn{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 18px 34px;

    border-radius: 60px;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    transition: .4s;

}

/* Primary */

.cta-primary-btn{

    background: linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    color: #03141d;

}

.cta-primary-btn:hover{

    transform: translateY(-6px);

    box-shadow: 0 20px 50px rgba(0,255,149,.30);

}

/* Secondary */

.cta-secondary-btn{

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    color: #ffffff;

}

.cta-secondary-btn:hover{

    border-color: rgba(0,255,149,.35);

    background: rgba(255,255,255,.08);

    transform: translateY(-6px);

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

    .cta-wrapper{

        padding: 60px 40px;

    }

    .cta-wrapper h2{

        font-size: 46px;

    }

}

@media(max-width:768px){

    .final-cta{

        padding: 90px 25px;

    }

    .cta-wrapper{

        padding: 45px 28px;

    }

    .cta-wrapper h2{

        font-size: 36px;

    }

    .cta-wrapper p{

        font-size: 15px;

    }

    .cta-buttons{

        flex-direction: column;

    }

    .cta-primary-btn,
    .cta-secondary-btn{

        width: 100%;

    }

}

@media(max-width:480px){

    .cta-wrapper h2{

        font-size: 30px;

    }

    .cta-features{

        flex-direction: column;

        align-items: flex-start;

        gap: 16px;

    }

}

/*=========================================
        SCROLL REVEAL
=========================================*/

.reveal{

    opacity:0;

    transition:1s ease;

}

.fade-up{

    transform:translateY(80px);

}

.fade-left{

    transform:translateX(-80px);

}

.fade-right{

    transform:translateX(80px);

}

.zoom-in{

    transform:scale(.85);

}

.reveal.active{

    opacity:1;

    transform:none;

}

/*=========================================
        NGO CONSULTATION
=========================================*/

.ngo-consultation-section{

    padding:120px 8%;

    position:relative;

}

.consultation-wrapper{

    margin-top:70px;

    display:grid;

    grid-template-columns:380px 1fr;

    gap:40px;

    align-items:start;

}

.consultation-card{

    padding:40px;

    border-radius:30px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

}

.ngo-side-form{

    padding:45px;

    border-radius:30px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

}

.ngo-side-form h2{

    text-align:center;

    margin-bottom:35px;

    font-size:34px;

}

.ngo-side-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.ngo-side-form input,
.ngo-side-form select,
.ngo-side-form textarea{

    width:100%;

    padding:18px 20px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.05);

    color:#fff;

    font-size:15px;

    outline:none;

    transition:.35s;

}

.ngo-side-form textarea{

    resize:vertical;

    min-height:150px;

}

.ngo-side-form input::placeholder,
.ngo-side-form textarea::placeholder{

    color:#8ea9bc;

}

.ngo-side-form input:focus,
.ngo-side-form select:focus,
.ngo-side-form textarea:focus{

    border-color:#00ff95;

    box-shadow:0 0 0 4px rgba(0,255,149,.12);

}

.ngo-side-form select option{

    background:#081521;

    color:#fff;

}

.ngo-side-form button{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:18px;

    border:none;

    border-radius:60px;

    cursor:pointer;

    font-size:16px;

    font-weight:700;

    color:#04151d;

    background:linear-gradient(
    135deg,
    #00ff95,
    #00bfff);

    transition:.4s;

}

.ngo-side-form button:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(0,255,149,.30);

}

@media(max-width:992px){

.consultation-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.ngo-consultation-section{

padding:90px 25px;

}

.ngo-side-form{

padding:30px;

}

.consultation-card{

padding:30px;

}

.ngo-side-form h2{

font-size:28px;

}

}

/*=========================================
        BENEFITS OF NGO REGISTRATION
=========================================*/

.ngo-benefits-section{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}

/*=========================================
        BACKGROUND GLOW
=========================================*/

.ngo-benefits-section::before{

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -220px;
    left: -220px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(150px);

}

.ngo-benefits-section::after{

    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -180px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(0,170,255,.08);

    filter: blur(150px);

}

/*=========================================
        GRID
=========================================*/

.benefits-grid{

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;

    margin-top: 70px;

}

/*=========================================
        CARD
=========================================*/

.benefit-card{

    position: relative;

    padding: 35px;

    border-radius: 28px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

    overflow: hidden;

    transition: .45s ease;

}

.benefit-card::before{

    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(
        circle at top right,
        rgba(0,255,149,.12),
        transparent 70%
    );

    opacity: 0;

    transition: .45s;

}

.benefit-card::after{

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );

    transform: skewX(-25deg);

    transition: .8s;

}

.benefit-card:hover{

    transform: translateY(-12px);

    border-color: rgba(0,255,149,.35);

    box-shadow: 0 25px 60px rgba(0,0,0,.35);

}

.benefit-card:hover::before{

    opacity: 1;

}

.benefit-card:hover::after{

    left: 150%;

}

/*=========================================
        ICON
=========================================*/

.benefit-icon{

    width: 78px;
    height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 22px;

    margin-bottom: 25px;

    background: linear-gradient(
        135deg,
        rgba(0,255,149,.18),
        rgba(0,170,255,.18)
    );

    border: 1px solid rgba(255,255,255,.08);

    transition: .45s;

}

.benefit-icon i{

    font-size: 34px;

    color: #00ff95;

}

.benefit-card:hover .benefit-icon{

    transform: rotate(-8deg) scale(1.08);

    box-shadow: 0 15px 35px rgba(0,255,149,.20);

}

/*=========================================
        TEXT
=========================================*/

.benefit-card h3{

    font-size: 24px;

    color: #ffffff;

    margin-bottom: 18px;

}

.benefit-card p{

    color: #bfd4e7;

    line-height: 1.9;

    font-size: 15px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

    .benefits-grid{

        grid-template-columns: repeat(2,1fr);

    }

}

@media(max-width:768px){

    .ngo-benefits-section{

        padding: 90px 25px;

    }

    .benefits-grid{

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .benefit-card{

        padding: 28px;

    }

    .benefit-icon{

        width: 68px;
        height: 68px;

    }

    .benefit-icon i{

        font-size: 30px;

    }

    .benefit-card h3{

        font-size: 22px;

    }

}

@media(max-width:480px){

    .benefit-card{

        padding: 24px;

    }

    .benefit-card h3{

        font-size: 20px;

    }

    .benefit-card p{

        font-size: 14px;

    }

}

/*=========================================
        NGO ELIGIBILITY SECTION
=========================================*/

.ngo-eligibility-section{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}

/*=========================================
        BACKGROUND GLOW
=========================================*/

.ngo-eligibility-section::before{

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -220px;
    left: -220px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(150px);

}

.ngo-eligibility-section::after{

    content: "";

    position: absolute;

    width: 460px;
    height: 460px;

    right: -180px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(0,170,255,.08);

    filter: blur(150px);

}

/*=========================================
        WRAPPER
=========================================*/

.eligibility-wrapper{

    position: relative;

    z-index: 2;

    margin-top: 70px;

    display: grid;

    grid-template-columns: 1fr 1.1fr;

    gap: 45px;

    align-items: start;

}

/*=========================================
        LEFT CONTENT
=========================================*/

.eligibility-content{

    padding: 40px;

    border-radius: 30px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

}

.eligibility-content h3{

    font-size: 34px;

    margin-bottom: 20px;

}

.eligibility-content p{

    color: #bfd4e7;

    line-height: 1.9;

    margin-bottom: 35px;

}

/*=========================================
        LIST
=========================================*/

.eligibility-list{

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.eligibility-item{

    display: flex;

    align-items: flex-start;

    gap: 15px;

}

.eligibility-item i{

    color: #00ff95;

    font-size: 22px;

    margin-top: 2px;

}

.eligibility-item span{

    color: #d5e5f3;

    line-height: 1.8;

}

/*=========================================
        RIGHT GRID
=========================================*/

.eligibility-grid{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 25px;

}

/*=========================================
        CARD
=========================================*/

.eligibility-card{

    position: relative;

    padding: 30px;

    border-radius: 25px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    overflow: hidden;

    transition: .4s ease;

}

.eligibility-card::before{

    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(circle at top right,
    rgba(0,255,149,.10),
    transparent 70%);

    opacity: 0;

    transition: .4s;

}

.eligibility-card:hover{

    transform: translateY(-10px);

    border-color: rgba(0,255,149,.30);

    box-shadow: 0 20px 45px rgba(0,0,0,.35);

}

.eligibility-card:hover::before{

    opacity: 1;

}

.eligibility-card i{

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    margin-bottom: 20px;

    font-size: 28px;

    color: #00ff95;

    background: linear-gradient(
    135deg,
    rgba(0,255,149,.15),
    rgba(0,170,255,.15));

}

.eligibility-card h4{

    font-size: 22px;

    margin-bottom: 15px;

}

.eligibility-card p{

    color: #bfd4e7;

    line-height: 1.8;

    font-size: 15px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

    .eligibility-wrapper{

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px){

    .ngo-eligibility-section{

        padding: 90px 25px;

    }

    .eligibility-content{

        padding: 30px;

    }

    .eligibility-content h3{

        font-size: 28px;

    }

    .eligibility-grid{

        grid-template-columns: 1fr;

    }

}

@media(max-width:480px){

    .eligibility-card{

        padding: 24px;

    }

    .eligibility-card h4{

        font-size: 20px;

    }

    .eligibility-content h3{

        font-size: 24px;

    }

}

/*=========================================
        NGO PROCESS GUIDE
=========================================*/

.ngo-process-guide{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}

/*=========================================
        BACKGROUND GLOW
=========================================*/

.ngo-process-guide::before{

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    top: -250px;
    left: -220px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(150px);

}

.ngo-process-guide::after{

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    bottom: -220px;

    border-radius: 50%;

    background: rgba(0,170,255,.08);

    filter: blur(150px);

}

/*=========================================
        WRAPPER
=========================================*/

.guide-wrapper{

    position: relative;

    max-width: 1100px;

    margin: 80px auto 0;

    z-index: 2;

}

/* Timeline Line */

.guide-wrapper::before{

    content: "";

    position: absolute;

    left: 42px;

    top: 0;

    width: 4px;

    height: 100%;

    border-radius: 50px;

    background: linear-gradient(
        to bottom,
        #00ff95,
        #00bfff
    );

    opacity: .35;

}

/*=========================================
        STEP
=========================================*/

.guide-step{

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 35px;

    margin-bottom: 45px;

}

.guide-step:last-child{

    margin-bottom: 0;

}

/*=========================================
        STEP NUMBER
=========================================*/

.step-number{

    position: relative;

    width: 88px;
    height: 88px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    font-weight: 700;

    color: #04151d;

    background: linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    box-shadow:
        0 0 30px rgba(0,255,149,.25),
        0 15px 40px rgba(0,0,0,.25);

    z-index: 2;

    transition: .4s;

}

.guide-step:hover .step-number{

    transform: scale(1.08) rotate(-5deg);

}

/*=========================================
        CONTENT CARD
=========================================*/

.step-content{

    flex: 1;

    position: relative;

    padding: 35px;

    border-radius: 28px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

    overflow: hidden;

    transition: .4s;

}

.step-content::before{

    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(
        circle at top right,
        rgba(0,255,149,.12),
        transparent 70%
    );

    opacity: 0;

    transition: .4s;

}

.guide-step:hover .step-content{

    transform: translateY(-8px);

    border-color: rgba(0,255,149,.30);

    box-shadow: 0 20px 50px rgba(0,0,0,.35);

}

.guide-step:hover .step-content::before{

    opacity: 1;

}

/*=========================================
        TEXT
=========================================*/

.step-content h3{

    font-size: 26px;

    margin-bottom: 18px;

    color: #ffffff;

}

.step-content p{

    color: #bfd4e7;

    line-height: 1.9;

    font-size: 15px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:768px){

    .ngo-process-guide{

        padding: 90px 25px;

    }

    .guide-wrapper::before{

        left: 28px;

    }

    .guide-step{

        gap: 20px;

    }

    .step-number{

        width: 58px;
        height: 58px;

        font-size: 18px;

    }

    .step-content{

        padding: 25px;

    }

    .step-content h3{

        font-size: 21px;

    }

}

@media(max-width:480px){

    .guide-step{

        flex-direction: column;

    }

    .guide-wrapper::before{

        display: none;

    }

    .step-number{

        width: 60px;
        height: 60px;

    }

    .step-content{

        width: 100%;

    }

}

/*=========================================
        NGO COMPARISON SECTION
=========================================*/

.ngo-comparison-section{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}

.ngo-comparison-section::before{

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -220px;
    left: -220px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(150px);

}

.ngo-comparison-section::after{

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -220px;
    bottom: -220px;

    border-radius: 50%;

    background: rgba(0,170,255,.08);

    filter: blur(150px);

}

/*=========================================
        WRAPPER
=========================================*/

.comparison-wrapper{

    position: relative;

    z-index: 2;

    margin-top: 70px;

    overflow-x: auto;

    border-radius: 30px;

}

/*=========================================
        TABLE
=========================================*/

.comparison-table{

    min-width: 1000px;

    border-radius: 30px;

    overflow: hidden;

    background: rgba(255,255,255,.04);

    backdrop-filter: blur(25px);

    border: 1px solid rgba(255,255,255,.08);

}

/*=========================================
        HEADER
=========================================*/

.comparison-header{

    display: grid;

    grid-template-columns: 1.2fr repeat(3,1fr);

    background: linear-gradient(
        90deg,
        rgba(0,255,149,.15),
        rgba(0,170,255,.12)
    );

}

.comparison-header .comparison-col{

    padding: 28px 20px;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.08);

}

.comparison-header .comparison-col:last-child{

    border-right: none;

}

.comparison-header h3{

    color: #ffffff;

    font-size: 22px;

    font-weight: 700;

}

/*=========================================
        ROWS
=========================================*/

.comparison-row{

    display: grid;

    grid-template-columns: 1.2fr repeat(3,1fr);

    transition: .35s ease;

}

.comparison-row:nth-child(even){

    background: rgba(255,255,255,.025);

}

.comparison-row:hover{

    background: rgba(0,255,149,.08);

}

.comparison-row .comparison-col{

    padding: 24px 20px;

    border-right: 1px solid rgba(255,255,255,.06);

    border-bottom: 1px solid rgba(255,255,255,.06);

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

}

.comparison-row .comparison-col:last-child{

    border-right: none;

}

.comparison-col.feature{

    justify-content: flex-start;

    text-align: left;

    padding-left: 30px;

}

.comparison-col strong{

    color: #ffffff;

    font-size: 17px;

}

.comparison-col p{

    color: #bfd4e7;

    line-height: 1.7;

    font-size: 15px;

}

/*=========================================
        COLUMN COLORS
=========================================*/

.trust{

    background: rgba(0,255,149,.05);

}

.society{

    background: rgba(0,170,255,.05);

}

.section8{

    background: rgba(122,92,255,.08);

}

/*=========================================
        SUMMARY CARD
=========================================*/

.comparison-summary{

    margin-top: 60px;

    display: flex;

    justify-content: center;

}

.summary-card{

    max-width: 900px;

    width: 100%;

    padding: 45px;

    border-radius: 30px;

    text-align: center;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

    position: relative;

    overflow: hidden;

}

.summary-card::before{

    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(circle at top,
    rgba(0,255,149,.12),
    transparent 70%);

    opacity: .9;

}

.summary-icon{

    position: relative;

    width: 85px;
    height: 85px;

    margin: 0 auto 25px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    box-shadow: 0 15px 35px rgba(0,255,149,.25);

}

.summary-icon i{

    color: #04151d;

    font-size: 36px;

}

.summary-card h3{

    position: relative;

    color: #fff;

    font-size: 30px;

    margin-bottom: 20px;

}

.summary-card p{

    position: relative;

    color: #bfd4e7;

    line-height: 2;

    font-size: 16px;

}

.summary-card strong{

    color: #00ff95;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px){

    .comparison-table{

        min-width: 900px;

    }

}

@media(max-width:768px){

    .ngo-comparison-section{

        padding: 90px 25px;

    }

    .comparison-header h3{

        font-size: 18px;

    }

    .comparison-col strong{

        font-size: 15px;

    }

    .comparison-col p{

        font-size: 14px;

    }

    .summary-card{

        padding: 30px;

    }

    .summary-card h3{

        font-size: 24px;

    }

}

@media(max-width:480px){

    .summary-icon{

        width: 70px;
        height: 70px;

    }

    .summary-icon i{

        font-size: 30px;

    }

    .summary-card h3{

        font-size: 22px;

    }

    .summary-card p{

        font-size: 14px;

        line-height: 1.9;

    }

}

/*=========================================
        NGO DOCUMENTS SECTION
=========================================*/

.ngo-documents-section{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}

/*=========================================
        BACKGROUND GLOW
=========================================*/

.ngo-documents-section::before{

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -220px;
    left: -220px;

    border-radius: 50%;

    background: rgba(0,255,149,.08);

    filter: blur(150px);

}

.ngo-documents-section::after{

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -220px;
    bottom: -220px;

    border-radius: 50%;

    background: rgba(0,170,255,.08);

    filter: blur(150px);

}

/*=========================================
        GRID
=========================================*/

.documents-grid{

    position: relative;

    z-index: 2;

    margin-top: 70px;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;

}

/*=========================================
        CARD
=========================================*/

.document-card{

    position: relative;

    padding: 35px;

    border-radius: 28px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

    overflow: hidden;

    transition: .4s ease;

}

.document-card::before{

    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(circle at top right,
    rgba(0,255,149,.12),
    transparent 70%);

    opacity: 0;

    transition: .4s;

}

.document-card::after{

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );

    transform: skewX(-25deg);

    transition: .8s;

}

.document-card:hover{

    transform: translateY(-12px);

    border-color: rgba(0,255,149,.35);

    box-shadow: 0 25px 60px rgba(0,0,0,.35);

}

.document-card:hover::before{

    opacity: 1;

}

.document-card:hover::after{

    left: 150%;

}

/*=========================================
        ICON
=========================================*/

.document-icon{

    width: 78px;
    height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 22px;

    background: linear-gradient(
        135deg,
        rgba(0,255,149,.18),
        rgba(0,170,255,.18)
    );

    border: 1px solid rgba(255,255,255,.08);

    transition: .4s;

}

.document-card:hover .document-icon{

    transform: rotate(-8deg) scale(1.08);

    box-shadow: 0 15px 35px rgba(0,255,149,.25);

}

.document-icon i{

    font-size: 34px;

    color: #00ff95;

}

/*=========================================
        TEXT
=========================================*/

.document-card h3{

    color: #ffffff;

    font-size: 24px;

    margin-bottom: 15px;

}

.document-card p{

    color: #bfd4e7;

    line-height: 1.9;

    font-size: 15px;

}

/*=========================================
        NOTE BOX
=========================================*/

.documents-note{

    position: relative;

    z-index: 2;

    margin-top: 70px;

    display: flex;

    gap: 25px;

    align-items: flex-start;

    padding: 40px;

    border-radius: 30px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(25px);

}

.note-icon{

    width: 80px;
    height: 80px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 22px;

    background: linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    box-shadow: 0 15px 35px rgba(0,255,149,.25);

}

.note-icon i{

    font-size: 36px;

    color: #04151d;

}

.documents-note h3{

    color: #ffffff;

    font-size: 28px;

    margin-bottom: 15px;

}

.documents-note p{

    color: #bfd4e7;

    line-height: 2;

    font-size: 15px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

    .documents-grid{

        grid-template-columns: repeat(2,1fr);

    }

}

@media(max-width:768px){

    .ngo-documents-section{

        padding: 90px 25px;

    }

    .documents-grid{

        grid-template-columns: 1fr;

    }

    .documents-note{

        flex-direction: column;

        padding: 30px;

    }

    .documents-note h3{

        font-size: 24px;

    }

}

@media(max-width:480px){

    .document-card{

        padding: 28px;

    }

    .document-icon{

        width: 68px;
        height: 68px;

    }

    .document-icon i{

        font-size: 30px;

    }

    .document-card h3{

        font-size: 21px;

    }

    .document-card p{

        font-size: 14px;

    }

    .documents-note{

        padding: 25px;

    }

    .documents-note p{

        font-size: 14px;

    }

}

/*=========================================
        COMPLETE NGO GUIDE
=========================================*/

.ngo-guide-section{

    position: relative;

    padding: 110px 8%;

    overflow: hidden;

}

.ngo-guide-section::before{

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -220px;
    left: -220px;

    border-radius: 50%;

    background: rgba(0,255,149,.06);

    filter: blur(160px);

}

.ngo-guide-section::after{

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    bottom: -220px;

    border-radius: 50%;

    background: rgba(0,170,255,.06);

    filter: blur(160px);

}

.guide-content{

    position: relative;

    z-index: 2;

    max-width: 1200px;

    margin: 70px auto 0;

}

.guide-block{

    position: relative;

    margin-bottom: 40px;

    padding: 40px;

    border-radius: 28px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(22px);

    transition: .4s;

    overflow: hidden;

}

.guide-block::before{

    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(circle at top right,
    rgba(0,255,149,.10),
    transparent 70%);

    opacity: 0;

    transition: .4s;

}

.guide-block:hover{

    transform: translateY(-8px);

    border-color: rgba(0,255,149,.28);

    box-shadow: 0 20px 50px rgba(0,0,0,.30);

}

.guide-block:hover::before{

    opacity: 1;

}

.guide-block h3{

    position: relative;

    color: #ffffff;

    font-size: 30px;

    margin-bottom: 20px;

    line-height: 1.4;

}

.guide-block p{

    position: relative;

    color: #bfd4e7;

    font-size: 16px;

    line-height: 2;

    margin-bottom: 18px;

}

.guide-points{

    position: relative;

    margin-top: 25px;

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 18px;

    list-style: none;

    padding: 0;

}

.guide-points li{

    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #dceeff;

    line-height: 1.8;

    font-size: 15px;

}

.guide-points li::before{

    content: "✔";

    color: #00ff95;

    font-weight: bold;

    font-size: 18px;

    margin-top: 1px;

}

/*=========================
        RESPONSIVE
==========================*/

@media(max-width:768px){

    .ngo-guide-section{

        padding: 90px 25px;

    }

    .guide-block{

        padding: 30px;

    }

    .guide-block h3{

        font-size: 24px;

    }

    .guide-block p{

        font-size: 15px;

    }

    .guide-points{

        grid-template-columns: 1fr;

    }

}

@media(max-width:480px){

    .guide-block{

        padding: 25px;

    }

    .guide-block h3{

        font-size: 22px;

    }

}

/*==================================================
        RELATED SERVICES SECTION
===================================================*/

.related-services-section{

    position: relative;

    padding: 120px 8%;

    overflow: hidden;

}


/* BACKGROUND GLOW */

.related-services-section::before{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

    top:-200px;
    left:-200px;

    border-radius:50%;

    background:rgba(0,255,149,.08);

    filter:blur(150px);

}


.related-services-section::after{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

    right:-200px;
    bottom:-200px;

    border-radius:50%;

    background:rgba(0,170,255,.08);

    filter:blur(150px);

}


/*==================================================
        SERVICES GRID
===================================================*/


.services-grid{

    position:relative;

    z-index:2;

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}


/*==================================================
        SERVICE CARD
===================================================*/


.service-card{

    position:relative;

    text-decoration:none;

    padding:35px 30px;

    border-radius:28px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    overflow:hidden;

    transition:.45s ease;

}



.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(
        circle at top right,
        rgba(0,255,149,.15),
        transparent 70%
    );

    opacity:0;

    transition:.4s;

}



.service-card:hover{

    transform:translateY(-12px);

    border-color:rgba(0,255,149,.35);

    box-shadow:

    0 25px 60px rgba(0,0,0,.35);

}



.service-card:hover::before{

    opacity:1;

}



/* ICON */


.service-card i{

    position:relative;

    width:75px;

    height:75px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:

    linear-gradient(
        135deg,
        rgba(0,255,149,.20),
        rgba(0,170,255,.20)
    );

    color:#00ff95;

    font-size:34px;

    margin-bottom:25px;

    transition:.4s;

}



.service-card:hover i{

    transform:rotate(-8deg) scale(1.1);

    box-shadow:

    0 15px 35px rgba(0,255,149,.25);

}



/* TEXT */


.service-card h3{

    position:relative;

    color:#ffffff;

    font-size:22px;

    margin-bottom:15px;

}



.service-card p{

    position:relative;

    color:#bfd4e7;

    font-size:15px;

    line-height:1.8;

}



/*==================================================
        CTA BOX
===================================================*/


.bottom-cta{

    position:relative;

    z-index:2;

    margin-top:80px;

    padding:55px 40px;

    text-align:center;

    border-radius:35px;

    background:

    linear-gradient(
        135deg,
        rgba(0,255,149,.12),
        rgba(0,170,255,.12)
    );

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(25px);

    overflow:hidden;

}



.bottom-cta::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    top:-150px;

    right:-100px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    filter:blur(80px);

}



.bottom-cta h3{

    position:relative;

    color:#ffffff;

    font-size:34px;

    margin-bottom:18px;

}



.bottom-cta p{

    position:relative;

    max-width:850px;

    margin:auto;

    color:#c9dced;

    line-height:2;

    font-size:16px;

}


/* BUTTON */


.cta-btn{

    position:relative;

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:35px;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    color:#04151d;

    font-weight:700;

    background:

    linear-gradient(
        135deg,
        #00ff95,
        #00bfff
    );

    transition:.4s;

    box-shadow:

    0 15px 40px rgba(0,255,149,.25);

}



.cta-btn:hover{

    transform:translateY(-5px);

    box-shadow:

    0 20px 55px rgba(0,255,149,.45);

}



.cta-btn i{

    font-size:20px;

}


/*==================================================
        RESPONSIVE
===================================================*/


@media(max-width:1200px){


    .services-grid{

        grid-template-columns:repeat(3,1fr);

    }

}



@media(max-width:900px){


    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }


}



@media(max-width:600px){


    .related-services-section{

        padding:90px 25px;

    }


    .services-grid{

        grid-template-columns:1fr;

    }


    .service-card{

        padding:30px;

    }


    .bottom-cta{

        padding:40px 25px;

    }


    .bottom-cta h3{

        font-size:26px;

    }


    .bottom-cta p{

        font-size:14px;

    }


}