@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.hero *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:'Poppins',sans-serif;
}

body{
    background:#ffffff;
    overflow-x:hidden;
    color:#222;
}

/* HERO */

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding:100px 8%;
    background:
    linear-gradient(rgba(13,91,122,.82),
    rgba(13,91,122,.88)),
    url('images/funding-bg.jpg');
    background-size:cover;
    background-position:center;
}

.hero-content{
    position:relative;
    z-index:5;
    color:#fff;
    max-width:950px;
    animation:fadeUp 1s ease;
}

.hero-tag{
    display:inline-block;
    padding:12px 30px;
    background:rgba(255,255,255,.12);
    border-radius:50px;
    backdrop-filter:blur(10px);
    letter-spacing:2px;
    font-size:14px;
}

.hero h1{
    font-size:76px;
    margin-top:30px;
    line-height:1.15;
    font-weight:800;
}

.hero p{
    margin-top:25px;
    font-size:20px;
    line-height:1.9;
}

.breadcrumb{
    margin-top:25px;
    opacity:.9;
}

.hero-btn{
    display:inline-block;
    margin-top:40px;
    padding:18px 40px;
    background:#f37021;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.4s;
    font-weight:600;
    box-shadow:0 15px 30px rgba(243,112,33,.3);
}

.hero-btn:hover{
    transform:translateY(-6px);
}

/* FLOATING */

.floating{
    position:absolute;
    border-radius:50%;
    animation:float 8s ease-in-out infinite;
}

.shape1{
    width:320px;
    height:320px;
    background:rgba(255,255,255,.08);
    top:-100px;
    left:-100px;
}

.shape2{
    width:450px;
    height:450px;
    background:rgba(243,112,33,.15);
    right:-180px;
    bottom:-180px;
}

.shape3{
    width:130px;
    height:130px;
    background:rgba(255,255,255,.1);
    top:120px;
    right:18%;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(25px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0px);
    }

}

/* NAVIGATION */

.fund-nav{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    padding:20px 8%;
    display:flex;
    gap:20px;
    overflow:auto;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.fund-nav a{
    text-decoration:none;
    color:#0D5B7A;
    padding:14px 25px;
    border-radius:50px;
    transition:.4s;
    white-space:nowrap;
    font-weight:600;
}

.fund-nav a:hover{
    background:#0D5B7A;
    color:#fff;
}

/* SECTION HEAD */

.section-head{
    text-align:center;
    margin-bottom:70px;
}

.section-tag{
    color:#f37021;
    font-weight:700;
    letter-spacing:2px;
}

.section-head h2{
    font-size:60px;
    color:#0D5B7A;
    margin-top:20px;
}

.section-head p{
    margin-top:15px;
    color:#666;
    line-height:1.8;
}

/* DASHBOARD */

.dashboard-section{
    padding:120px 8%;
}

.scheme-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.scheme-card{
    position:relative;
    background:#fff;
    padding:40px;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    transition:.5s;
}

.scheme-card:hover{
    transform:translateY(-15px);
}

.card-glow{
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(243,112,33,.12);
    border-radius:50%;
    top:-50px;
    right:-50px;
}

.status-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    position:relative;
    z-index:2;
}

.status-row h3{
    color:#0D5B7A;
    font-size:28px;
    line-height:1.4;
}

.status-badge{
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    height:fit-content;
}

.open{
    background:#e9fff1;
    color:#17a34a;
}

.closed{
    background:#ffeaea;
    color:#d63636;
}

.funding-amount{
    margin-top:30px;
    font-size:34px;
    font-weight:700;
    color:#f37021;
    position:relative;
    z-index:2;
}

.deadline{
    margin-top:18px;
    font-weight:600;
    color:#444;
    position:relative;
    z-index:2;
}

.eligibility{
    margin-top:30px;
    position:relative;
    z-index:2;
}

.eligibility h4{
    color:#0D5B7A;
    margin-bottom:15px;
}

.eligibility ul{
    padding-left:20px;
}

.eligibility li{
    margin-bottom:12px;
    line-height:1.7;
    color:#555;
}

.apply-btn,
.closed-btn{
    margin-top:35px;
    display:inline-block;
    border:none;
    padding:16px 30px;
    border-radius:50px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
    position:relative;
    z-index:2;
}

.apply-btn{
    background:linear-gradient(135deg,#0D5B7A,#f37021);
    color:#fff;
    text-decoration:none;
}

.apply-btn:hover{
    transform:translateY(-6px);
}

.closed-btn{
    background:#ddd;
    color:#666;
}

.closed-card{
    opacity:.7;
    filter:grayscale(.25);
}

/* GUIDELINES */

.guidelines-section{
    padding:120px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    background:#f9fcff;
}

.guide-left h2{
    font-size:56px;
    color:#0D5B7A;
    margin:20px 0;
}

.guide-left p{
    line-height:1.9;
    color:#555;
}

.guide-right{
    display:grid;
    gap:25px;
}

.guide-card{
    background:#fff;
    padding:35px;
    border-radius:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.guide-card:hover{
    transform:translateY(-10px);
}

.guide-card .icon{
    font-size:42px;
    margin-bottom:18px;
}

.guide-card h3{
    color:#0D5B7A;
    margin-bottom:12px;
}

.guide-card p{
    color:#666;
    line-height:1.8;
}

/* EQUITY */

.equity-section{
    position:relative;
    padding:140px 8%;
    overflow:hidden;
    background:
    linear-gradient(rgba(13,91,122,.88),
    rgba(13,91,122,.88)),
    url('images/equity-bg.jpg');

    background-size:cover;
    background-position:center;
}

.equity-content{
    position:relative;
    z-index:5;
    text-align:center;
    color:#fff;
}

.equity-content h2{
    font-size:62px;
    margin:20px 0;
}

.equity-content p{
    line-height:1.9;
    font-size:18px;
}

.equity-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.equity-box{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    padding:40px;
    border-radius:30px;
}

.equity-box h3{
    font-size:40px;
    margin-bottom:15px;
}

/* CMS */

.cms-section{
    padding:120px 8%;
}

.cms-card{
    background:linear-gradient(135deg,#0D5B7A,#117ea5);
    color:#fff;
    padding:70px;
    border-radius:40px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.cms-card::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-180px;
    right:-100px;
}

.cms-icon{
    font-size:60px;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.cms-card h2{
    font-size:52px;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.cms-card p{
    position:relative;
    z-index:2;
    line-height:1.9;
    font-size:17px;
    margin-top:18px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .guidelines-section{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:50px;
    }

    .section-head h2,
    .guide-left h2,
    .equity-content h2,
    .cms-card h2{
        font-size:40px;
    }

}

@media(max-width:600px){

    .hero{
        min-height:85vh;
    }

    .hero h1{
        font-size:38px;
    }

    .dashboard-section,
    .guidelines-section,
    .equity-section,
    .cms-section{
        padding:80px 6%;
    }

    .cms-card{
        padding:40px 25px;
    }

}