/* =========================
   NGO HERO SECTION
========================= */

.ngo-hero{

    min-height:100vh;

    background:
    linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.75)
    ),

    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1600");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;

    position:relative;

    overflow:hidden;
}

/* GLOW EFFECT */

.ngo-hero::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(0,223,154,0.18);

    border-radius:50%;

    top:-150px;
    left:-150px;

    filter:blur(120px);

    animation:glowMove 8s infinite alternate;
}

.ngo-hero::after{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:
    rgba(0,140,255,0.18);

    border-radius:50%;

    bottom:-150px;
    right:-150px;

    filter:blur(120px);

    animation:glowMove2 10s infinite alternate;
}

.ngo-overlay{

    position:relative;

    z-index:2;

    max-width:1000px;

    color:white;
}

.ngo-badge{

    display:inline-block;

    padding:12px 24px;

    background:#00df9a;

    color:black;

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;
}

.ngo-overlay h1{

    font-size:75px;

    line-height:1.2;

    margin-bottom:25px;
}

.ngo-overlay p{

    font-size:24px;

    line-height:1.8;

    color:#dbeafe;

    margin-bottom:45px;
}

/* BUTTONS */

.ngo-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:60px;
}

.primary-btn,
.secondary-btn{

    padding:18px 38px;

    border:none;

    border-radius:14px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:0.4s;
}

.primary-btn{

    background:#00df9a;

    color:black;
}

.secondary-btn{

    background:transparent;

    border:2px solid white;

    color:white;
}

.primary-btn:hover,
.secondary-btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 15px 30px rgba(0,0,0,0.3);
}

/* TRUST CARDS */

.ngo-trust{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;
}

.trust-card{

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(255,255,255,0.1);

    padding:25px;

    border-radius:25px;

    width:220px;
}

.trust-card h2{

    font-size:42px;

    color:#00df9a;

    margin-bottom:10px;
}

.trust-card p{

    color:white;

    font-size:18px;
}

/* MAIN SECTION */

.ngo-main{

    width:92%;

    margin:100px auto;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;
}

/* LEFT */

.ngo-left{

    display:flex;

    flex-direction:column;

    gap:35px;
}

/* TOP GRID */

.ngo-top-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;
}

/* BOTTOM GRID */

.ngo-bottom-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

/* CARDS */

.ngo-card,
.ngo-small-card{

    background:white;

    padding:40px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

    transition:0.4s;
}

.ngo-card:hover,
.ngo-small-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 50px rgba(0,0,0,0.15);
}

.ngo-card h2,
.ngo-small-card h2{

    font-size:32px;

    color:#071a2f;

    margin-bottom:25px;
}

.ngo-card p,
.ngo-small-card ul li{

    font-size:18px;

    line-height:1.9;

    color:#555;
}

.ngo-small-card ul{

    padding-left:18px;
}

.ngo-small-card ul li{

    margin-bottom:15px;
}

/* SIDE FORM */

.ngo-side-form{

    background:
    linear-gradient(
    135deg,
    #02111f,
    #062742,
    #003566
    );

    padding:40px;

    border-radius:30px;

    height:fit-content;

    position:sticky;

    top:120px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.2);
}

.ngo-side-form h2{

    color:white;

    text-align:center;

    font-size:38px;

    margin-bottom:30px;
}

.ngo-side-form form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.ngo-side-form input,
.ngo-side-form select,
.ngo-side-form textarea{

    padding:18px;

    border:none;

    border-radius:15px;

    background:
    rgba(255,255,255,0.08);

    color:white;

    font-size:16px;

    outline:none;

    backdrop-filter:blur(10px);
}

.ngo-side-form input::placeholder,
.ngo-side-form textarea::placeholder{

    color:#dbeafe;
}

.ngo-side-form button{

    padding:18px;

    border:none;

    border-radius:15px;

    background:
    linear-gradient(
    135deg,
    #00df9a,
    #00bfff
    );

    color:black;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:0.4s;
}

.ngo-side-form button:hover{

    transform:
    translateY(-5px);
}

/* SERVICES */

.ngo-services{

    padding:110px 8%;

    background:#f4f7fc;

    text-align:center;
}

.ngo-services h1{

    font-size:55px;

    color:#071a2f;

    margin-bottom:20px;
}

.ngo-subtitle{

    font-size:22px;

    color:#666;

    margin-bottom:70px;
}

.ngo-service-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;
}

.ngo-service-card{

    background:white;

    padding:45px 35px;

    border-radius:30px;

    transition:0.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
}

.ngo-service-card:hover{

    transform:
    translateY(-12px);
}

.service-icon{

    font-size:55px;

    margin-bottom:25px;
}

.ngo-service-card h2{

    font-size:30px;

    margin-bottom:20px;

    color:#071a2f;
}

.ngo-service-card p{

    color:#555;

    line-height:1.9;

    font-size:18px;
}

/* REVIEW */

.review-section{

    padding:100px 8%;

    background:#eef5f9;

    text-align:center;

    overflow:hidden;
}

.review-section h1{

    font-size:55px;

    margin-bottom:60px;
}

.review-track{

    display:flex;

    gap:30px;

    width:max-content;

    animation:slideReviews 20s linear infinite;
}

.review-card{

    min-width:350px;

    background:white;

    padding:40px 30px;

    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

.review-card h2{

    margin-bottom:20px;
}

.review-card p{

    line-height:1.9;

    margin-bottom:20px;

    color:#555;
}

.review-card h3{

    color:#00b894;
}

@keyframes slideReviews{

    0%{

        transform:translateX(0);
    }

    100%{

        transform:translateX(-50%);
    }
}

@keyframes glowMove{

    0%{
        transform:translate(0,0);
    }

    100%{
        transform:translate(80px,60px);
    }
}

@keyframes glowMove2{

    0%{
        transform:translate(0,0);
    }

    100%{
        transform:translate(-80px,-60px);
    }
}

/* MOBILE */

@media(max-width:1000px){

    .ngo-main{

        grid-template-columns:1fr;
    }

    .ngo-top-grid,
    .ngo-bottom-grid{

        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .ngo-overlay h1{

        font-size:42px;
    }

    .ngo-overlay p{

        font-size:18px;
    }

    .ngo-services h1,
    .review-section h1{

        font-size:38px;
    }

    .review-card{

        min-width:280px;
    }

}
/* =========================
   WHY CHOOSE SECTION
========================= */

.gst-features{

    padding:120px 8%;

    background:
    linear-gradient(
    135deg,
    #02111f,
    #062742,
    #0b3d66
    );

    position:relative;

    overflow:hidden;

    text-align:center;
}

/* BACKGROUND GLOW */

.gst-features::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(0,223,154,0.15);

    border-radius:50%;

    top:-150px;
    left:-150px;

    filter:blur(120px);

    animation:moveGlow 8s infinite alternate;
}

.gst-features::after{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:
    rgba(0,140,255,0.18);

    border-radius:50%;

    bottom:-150px;
    right:-150px;

    filter:blur(120px);

    animation:moveGlow2 10s infinite alternate;
}

/* HEADING */

.gst-features h1{

    font-size:60px;

    color:white;

    margin-bottom:70px;

    position:relative;

    z-index:2;

    line-height:1.3;
}

/* GRID */

.feature-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

    position:relative;

    z-index:2;
}

/* CARD */

.feature-box{

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.1);

    padding:45px 35px;

    border-radius:30px;

    transition:0.4s;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.25);
}

/* TOP LINE */

.feature-box::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
    90deg,
    #00df9a,
    #00bfff
    );
}

/* HOVER */

.feature-box:hover{

    transform:
    translateY(-15px)
    scale(1.03);

    background:
    rgba(255,255,255,0.12);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.4);
}

/* TITLE */

.feature-box h2{

    font-size:32px;

    color:white;

    margin-bottom:20px;

    line-height:1.4;
}

/* TEXT */

.feature-box p{

    font-size:18px;

    color:#dbeafe;

    line-height:1.9;
}

/* ANIMATION */

@keyframes moveGlow{

    0%{

        transform:
        translate(0,0);
    }

    100%{

        transform:
        translate(80px,60px);
    }
}

@keyframes moveGlow2{

    0%{

        transform:
        translate(0,0);
    }

    100%{

        transform:
        translate(-80px,-60px);
    }
}

/* MOBILE */

@media(max-width:768px){

    .gst-features{

        padding:90px 6%;
    }

    .gst-features h1{

        font-size:40px;
    }

    .feature-box{

        padding:35px 25px;
    }

    .feature-box h2{

        font-size:26px;
    }

}

/* NGO SELECT DROPDOWN FIX */

.ngo-side-form select{

    background: rgba(255,255,255,0.08) !important;

    color: white !important;

    border: 1px solid rgba(255,255,255,0.08);

    appearance: none;

    -webkit-appearance: none;

    -moz-appearance: none;

    background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: right 18px center;

    padding-right: 50px;
}

/* DROPDOWN OPTIONS */

.ngo-side-form select option{

    background: #071a2f;

    color: white;
}

/* =========================================
   NGO REGISTRATION LUXURY DESIGN
========================================= */

.ngo-pricing-section{

    width:100%;

    min-height:100vh;

    padding:120px 8%;

    background:
    linear-gradient(
    135deg,
    #021526,
    #052c46,
    #003b5c,
    #021526
    );

    position:relative;

    overflow:hidden;
}

/* GLOW EFFECT */

.ngo-pricing-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:
    radial-gradient(
    circle,
    rgba(0,255,255,0.15),
    transparent 70%
    );

    top:-250px;
    left:-250px;
}

.ngo-pricing-section::after{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    background:
    radial-gradient(
    circle,
    rgba(0,153,255,0.14),
    transparent 70%
    );

    bottom:-250px;
    right:-250px;
}

/* =========================================
   HEADING
========================================= */

.ngo-heading{

    text-align:center;

    margin-bottom:90px;

    position:relative;

    z-index:2;
}

.ngo-tag{

    display:inline-block;

    padding:14px 28px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(0,255,255,0.25);

    color:#7dd3fc;

    font-size:18px;

    margin-bottom:30px;

    backdrop-filter:blur(12px);
}

.ngo-heading h1{

    font-size:78px;

    color:white;

    font-weight:800;

    line-height:1.2;
}

.ngo-heading h1 span{

    background:
    linear-gradient(
    to right,
    #67e8f9,
    #38bdf8,
    #60a5fa
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.ngo-heading p{

    max-width:900px;

    margin:30px auto;

    color:#cbd5e1;

    font-size:24px;

    line-height:1.8;
}

.heading-line{

    width:180px;
    height:4px;

    margin:35px auto;

    border-radius:50px;

    background:
    linear-gradient(
    to right,
    #67e8f9,
    #0ea5e9
    );

    box-shadow:
    0 0 25px rgba(103,232,249,0.7);
}

/* =========================================
   CONTAINER
========================================= */

.ngo-pricing-container{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    position:relative;

    z-index:2;
}

/* =========================================
   CARD
========================================= */

.ngo-card{

    width:380px;

    padding:50px 35px;

    border-radius:35px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(20px);

    position:relative;

    overflow:hidden;

    transition:0.5s;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.3);
}

/* TOP SHINE */

.ngo-card::before{

    content:"";

    position:absolute;

    width:200%;
    height:220px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,0.12),
    transparent
    );

    top:-100px;
    left:-50%;

    transform:rotate(5deg);
}

/* HOVER */

.ngo-card:hover{

    transform:
    translateY(-18px)
    scale(1.03);

    border:
    1px solid rgba(103,232,249,0.45);

    box-shadow:
    0 0 35px rgba(56,189,248,0.35),
    0 20px 50px rgba(0,0,0,0.35);
}

/* PREMIUM CARD */

.premium-ngo{

    border:
    2px solid #38bdf8;

    transform:scale(1.04);

    box-shadow:
    0 0 40px rgba(56,189,248,0.35);
}

/* =========================================
   BADGE
========================================= */

.popular-badge{

    position:absolute;

    top:0;
    right:0;

    background:
    linear-gradient(
    135deg,
    #67e8f9,
    #0ea5e9
    );

    color:#021526;

    padding:16px 24px;

    font-size:14px;

    font-weight:700;

    clip-path:
    polygon(
    0 0,
    100% 0,
    100% 100%,
    50% 85%,
    0 100%
    );
}

/* =========================================
   PLAN NAME
========================================= */

.plan-name{

    display:inline-block;

    padding:12px 28px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(103,232,249,0.3);

    color:#7dd3fc;

    font-size:18px;

    margin-bottom:30px;
}

.premium-plan{

    background:
    rgba(56,189,248,0.12);

    border:
    1px solid #38bdf8;

    color:#67e8f9;
}

/* =========================================
   ICON
========================================= */

.ngo-icon{

    width:110px;
    height:110px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 35px;

    font-size:50px;

    background:
    rgba(255,255,255,0.08);

    border:
    2px solid rgba(103,232,249,0.3);

    box-shadow:
    0 0 30px rgba(56,189,248,0.2);
}

.premium-icon{

    border:
    2px solid #38bdf8;

    box-shadow:
    0 0 35px rgba(56,189,248,0.45);
}

/* =========================================
   TITLE
========================================= */

.ngo-card h2{

    text-align:center;

    color:white;

    font-size:38px;

    margin-bottom:25px;

    line-height:1.4;
}

/* =========================================
   PRICE
========================================= */

.ngo-card h3{

    text-align:center;

    font-size:72px;

    margin-bottom:35px;

    font-weight:800;

    background:
    linear-gradient(
    to right,
    #67e8f9,
    #38bdf8,
    #60a5fa
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

/* =========================================
   FEATURES
========================================= */

.ngo-card ul{

    list-style:none;

    margin-bottom:40px;
}

.ngo-card ul li{

    color:#e2e8f0;

    font-size:21px;

    margin-bottom:18px;

    line-height:1.7;
}

/* =========================================
   BUTTON
========================================= */

.ngo-btn{

    width:100%;

    height:75px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    #67e8f9,
    #0ea5e9,
    #2563eb
    );

    color:white;

    font-size:24px;

    font-weight:700;

    transition:0.4s;

    box-shadow:
    0 0 30px rgba(56,189,248,0.35);
}

.ngo-btn:hover{

    transform:
    scale(1.05);

    box-shadow:
    0 0 40px rgba(56,189,248,0.7),
    0 0 70px rgba(37,99,235,0.45);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

    .ngo-heading h1{

        font-size:58px;
    }

    .ngo-card{

        width:100%;
        max-width:500px;
    }
}

@media(max-width:768px){

    .ngo-pricing-section{

        padding:90px 5%;
    }

    .ngo-heading h1{

        font-size:40px;
    }

    .ngo-heading p{

        font-size:18px;
    }

    .ngo-card{

        padding:40px 25px;
    }

    .ngo-card h2{

        font-size:30px;
    }

    .ngo-card h3{

        font-size:55px;
    }

    .ngo-card ul li{

        font-size:18px;
    }

    .ngo-btn{

        font-size:20px;
    }
}