/* ==========================================
   Idea2Founder v3.0
   Main Stylesheet
   Dream. Dare. Build.
========================================== */

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#07131F;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.6;
}

/* Container */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ======================
      NAVIGATION
====================== */

.navbar{

    position:fixed;

    top:0;

    width:100%;

    z-index:1000;

    background:rgba(5,12,22,.65);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.brand{

    display:flex;

    align-items:center;

    text-decoration:none;

    color:white;

    font-size:24px;

    font-weight:700;

}

.brand img{

    width:52px;

    margin-right:12px;

}

nav{

    display:flex;

    gap:28px;

}

nav a{

    color:white;

    text-decoration:none;

    font-size:16px;

    transition:.3s;

}

nav a:hover{

    color:#5DD7FF;

}

.actions{

    display:flex;

    gap:15px;

}

.login{

    color:white;

    text-decoration:none;

    padding:10px 20px;

}

.signup{

    text-decoration:none;

    background:#0F4CFF;

    color:white;

    padding:10px 22px;

    border-radius:40px;

    transition:.3s;

}

.signup:hover{

    background:#6C3BFF;

}

/* ======================
         HERO
====================== */

.hero{

    position:relative;

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

}

.hero-image{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:linear-gradient(
    135deg,
    rgba(7,19,31,.90),
    rgba(15,76,255,.55),
    rgba(108,59,255,.45));

}

.hero-content{

    position:relative;

    z-index:10;

    max-width:900px;

    padding:20px;

}

.hero h1{

    font-size:68px;

    font-weight:800;

    line-height:1.1;

}

.hero p{

    margin-top:25px;

    font-size:24px;

    color:#DCE7FF;

}

.buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

}

.primary-btn,
.secondary-btn{

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.primary-btn{

    background:#0F4CFF;

    color:white;

}

.secondary-btn{

    border:2px solid white;

    color:white;

}

.primary-btn:hover,
.secondary-btn:hover{

    transform:translateY(-4px);

}
/* ==========================================
   IDEA2FOUNDER v3.1
   Navigation
========================================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(15,25,45,.85);
    backdrop-filter:blur(12px);
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.navbar .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:80px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.brand img{
    width:48px;
    height:48px;
}

.brand span{
    color:#ffffff;
    font-size:24px;
    font-weight:700;
}

.nav-links{
    display:flex;
    gap:28px;
}

.nav-links a{
    color:#ffffff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:#4F8CFF;
}

.actions{
    display:flex;
    gap:15px;
}

.login{
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
}

.signup{
    background:#0F4CFF;
    color:#ffffff;
    padding:12px 22px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.signup:hover{
    transform:translateY(-2px);
}
/* ==========================================
   Statistics Section
========================================== */

.stats{
    padding:100px 0;
    background:#0B1728;
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
    background:rgba(15,76,255,.15);
}

.card h2{
    font-size:42px;
    color:#4F8CFF;
    margin-bottom:10px;
}

.card p{
    color:#D7E3FF;
    font-size:17px;
}

/* ==========================================
   Featured Ideas
========================================== */

.featured{
    padding:100px 0;
    background:#07131F;
}

.featured h2{
    text-align:center;
    font-size:42px;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    color:#B8C7E6;
    margin-bottom:50px;
}

.idea-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.idea-card{
    background:rgba(255,255,255,.05);
    border-radius:20px;
    padding:30px;
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.idea-card:hover{
    transform:translateY(-10px);
    border-color:#4F8CFF;
}

.idea-card h3{
    color:#4F8CFF;
    margin-bottom:15px;
    font-size:24px;
}

.idea-card p{
    color:#D7E3FF;
    line-height:1.7;
}
/* ==========================================
   How It Works
========================================== */

.how-it-works{
    padding:100px 0;
    background:#0B1728;
}

.how-it-works h2,
.why-us h2,
.success-stories h2,
.cta h2{
    text-align:center;
    font-size:42px;
    margin-bottom:20px;
}

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.step-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px;
    text-align:center;
    transition:.3s;
}

.step-card:hover{
    transform:translateY(-10px);
    border-color:#4F8CFF;
}

.step-card h3{
    color:#4F8CFF;
    font-size:36px;
    margin-bottom:10px;
}

.step-card h4{
    margin-bottom:15px;
    font-size:22px;
}

.step-card p{
    color:#D7E3FF;
}

/* ==========================================
   Why Choose Us
========================================== */

.why-us{
    padding:100px 0;
    background:#07131F;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.feature-box{
    background:rgba(255,255,255,.05);
    border-radius:20px;
    padding:30px;
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-10px);
    border-color:#4F8CFF;
}

.feature-box h3{
    margin-bottom:15px;
    color:#4F8CFF;
}

.feature-box p{
    color:#D7E3FF;
}
/* ==========================================
   Success Stories
========================================== */

.success-stories{
    padding:100px 0;
    background:#0B1728;
}

.story-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.story-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.story-card:hover{
    transform:translateY(-10px);
    border-color:#4F8CFF;
}

.story-card h3{
    color:#4F8CFF;
    margin-bottom:15px;
}

.story-card p{
    color:#D7E3FF;
    line-height:1.7;
}

/* ==========================================
   Call To Action
========================================== */

.cta{
    padding:100px 20px;
    text-align:center;
    background:linear-gradient(135deg,#0F4CFF,#6C3BFF);
}

.cta h2{
    color:#fff;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 35px;
    color:#fff;
    font-size:18px;
}

/* ==========================================
   Footer
========================================== */

.footer{
    background:#050C16;
    padding:70px 0 20px;
}

.footer .container{
    display:grid;
    grid-template-columns:2fr 1fr 2fr;
    gap:40px;
}

.footer-logo img{
    width:70px;
    margin-bottom:15px;
}

.footer-logo h2{
    margin-bottom:10px;
}

.footer-logo p,
.footer-contact p{
    color:#B8C7E6;
}

.footer-links ul{
    list-style:none;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#4F8CFF;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    color:#B8C7E6;
}