/* ==================================================
SMARTBRIDGE DESIGN SYSTEM
Powered by SmartHedge Nigeria Limited
================================================== */

:root{


--primary:#002B6B;
--primary-dark:#001D4A;

--secondary:#008D36;
--secondary-dark:#006B29;

--white:#FFFFFF;

--dark:#0F172A;
--text:#475569;
--muted:#94A3B8;

--bg:#F8FAFC;
--border:#E2E8F0;

--shadow-sm:0 8px 20px rgba(0,0,0,.05);
--shadow-md:0 15px 40px rgba(0,0,0,.08);
--shadow-lg:0 25px 60px rgba(0,0,0,.12);

--radius:20px;


}

/* =====================================
RESET
===================================== */

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#fff;
color:var(--text);
overflow-x:hidden;
line-height:1.7;
}

a{
text-decoration:none;
}

img{
max-width:100%;
}

/* =====================================
TYPOGRAPHY
===================================== */

.hero-title{
font-size:clamp(3rem,6vw,5rem);
font-weight:800;
line-height:1.1;
color:#fff;
}

.section-title{
font-size:clamp(2rem,4vw,3.5rem);
font-weight:800;
line-height:1.2;
color:var(--primary);
}

.section-tag{
display:inline-block;
padding:10px 18px;
border-radius:50px;
background:#E8F5EE;
color:var(--secondary);
font-weight:700;
font-size:.85rem;
letter-spacing:.5px;
}

/* =====================================
BUTTONS
===================================== */

.btn-success{
background:var(--secondary);
border:none;
padding:14px 30px;
border-radius:12px;
font-weight:600;
}

.btn-success:hover{
background:var(--secondary-dark);
}

.btn-outline-light{
border:2px solid rgba(255,255,255,.4);
padding:14px 30px;
border-radius:12px;
}

/* =====================================
NAVBAR
===================================== */

.navbar{
padding:18px 0;
background:#fff;
box-shadow:0 1px 10px rgba(0,0,0,.04);
}

.navbar-brand{
font-weight:800;
color:var(--primary);
}

.nav-link{
color:var(--dark);
font-weight:500;
}

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

.hero-section{


background:
linear-gradient(
    135deg,
    #002B6B,
    #003E8F,
    #008D36
);

padding:120px 0;
color:#fff;


}

.hero-badge{


display:inline-block;

padding:12px 20px;

border-radius:50px;

background:
rgba(255,255,255,.15);

backdrop-filter:blur(10px);

margin-bottom:25px;


}

.hero-description{


font-size:1.1rem;

max-width:650px;

opacity:.95;

margin-top:20px;


}

.dashboard-preview{


background:#fff;

border-radius:25px;

padding:35px;

box-shadow:var(--shadow-lg);


}

.dashboard-top{


color:var(--primary);

font-size:1.3rem;

font-weight:700;

margin-bottom:25px;


}

.dashboard-grid{


display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;


}

.dashboard-card{


background:#F8FAFC;

padding:25px;

border-radius:16px;


}

.dashboard-card small{
color:#64748B;
}

.dashboard-card h3{
color:var(--primary);
margin-top:8px;
}

/* =====================================
METRICS
===================================== */

.metrics-section{


background:var(--primary);

padding:70px 0;

color:#fff;


}

.metric-box h2{


color:#7CFF9D;

font-size:3rem;

font-weight:800;


}

.metric-box p{
margin-top:10px;
}

/* =====================================
ABOUT
===================================== */

.about-section{
padding:120px 0;
}

.about-card{


background:#fff;

padding:40px;

border-radius:25px;

box-shadow:var(--shadow-md);


}

.about-card ul{
padding-left:20px;
}

/* =====================================
FEATURES
===================================== */

.features-section{
padding:120px 0;
background:#F8FAFC;
}

.feature-card{


background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow-sm);

height:100%;

transition:.3s;


}

.feature-card:hover{


transform:translateY(-10px);

box-shadow:var(--shadow-md);


}

.feature-card i{


font-size:2.5rem;

color:var(--secondary);

margin-bottom:20px;


}

/* =====================================
JOURNEY
===================================== */

.journey-section{
padding:120px 0;
}

.journey-wrapper{


display:flex;

justify-content:space-between;

gap:20px;

flex-wrap:wrap;


}

.journey-step{


flex:1;

min-width:150px;

text-align:center;


}

.journey-step i{


width:90px;

height:90px;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

border-radius:50%;

background:#F1F5F9;

color:var(--primary);

font-size:2rem;

margin-bottom:20px;


}

/* =====================================
OPPORTUNITIES
===================================== */

.opportunities-section{


padding:120px 0;

background:#F8FAFC;


}

.opportunity-card{


background:#fff;

padding:40px;

border-radius:25px;

box-shadow:var(--shadow-sm);

text-align:center;

height:100%;


}

.opportunity-card.featured{


background:
linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
);

color:#fff;


}

/* =====================================
CTA
===================================== */

.cta-section{


padding:120px 0;

background:
linear-gradient(
    135deg,
    var(--secondary),
    #00A640
);

color:#fff;


}

/* =====================================
FOOTER
===================================== */

.footer{


background:#081120;

color:#fff;

padding:80px 0 30px;


}

/* =====================================
MOBILE
===================================== */

@media(max-width:991px){


.hero-section{
    text-align:center;
}

.dashboard-grid{
    grid-template-columns:1fr;
}

.journey-wrapper{
    flex-direction:column;
}


}






.navbar-logo{
    height:55px;
    width:auto;
    display:block;
}

.brand-name{
    display:block;
    font-size:1.2rem;
    font-weight:800;
    color:#002B6B;
}

.brand-text small{
    display:block;
    font-size:.75rem;
    color:#64748B;
}


.navbar-logo{
    height:60px;
    width:auto;
}

.brand-name{
    display:block;
    font-size:1.25rem;
    font-weight:800;
    color:#002B6B;
    line-height:1.1;
}

.brand-text small{
    color:#64748B;
    font-size:.8rem;
}css
/* =====================================
   PREMIUM NAVBAR
===================================== */

.smart-navbar{

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(0,0,0,.05);

    padding:16px 0;

    transition:.3s ease;
}

.logo-box{

    width:48px;

    height:48px;

    border-radius:14px;

    background:
    linear-gradient(
        135deg,
        #002B6B,
        #008D36
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-weight:800;

    font-size:1rem;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.brand-name{

    font-size:1.1rem;

    font-weight:800;

    color:#002B6B;
}

.brand-text small{

    color:#64748B;

    font-size:.75rem;
}

.navbar-nav{

    gap:10px;
}

.nav-link{

    color:#0F172A !important;

    font-weight:600;

    padding:10px 16px !important;

    border-radius:10px;

    transition:.3s;
}

.nav-link:hover{

    color:#008D36 !important;

    background:#F8FAFC;
}

.navbar-actions{

    display:flex;

    align-items:center;

    gap:12px;
}

.btn-login{

    border:1px solid #CBD5E1;

    color:#002B6B;

    padding:12px 22px;

    border-radius:12px;

    font-weight:600;
}

.btn-login:hover{

    background:#F8FAFC;
}

.btn-register{

    background:#008D36;

    color:#fff;

    padding:12px 24px;

    border-radius:12px;

    font-weight:600;
}

.btn-register:hover{

    background:#006B29;

    color:#fff;
}

@media(max-width:991px){

    .navbar-actions{

        margin-top:20px;

        flex-direction:column;

        width:100%;
    }

    .btn-login,
    .btn-register{

        width:100%;
        text-align:center;
    }
}


/*.navbar-logo{
    height:55px;
    width:auto;
    display:block;
}

.brand-name{
    display:block;
    font-size:1.2rem;
    font-weight:800;
    color:#002B6B;
}

.brand-text small{
    display:block;
    font-size:.75rem;
    color:#64748B;
}
*/

.navbar-logo{
    height:60px;
    width:auto;
}

.brand-name{
    display:block;
    font-size:1.25rem;
    font-weight:800;
    color:#002B6B;
    line-height:1.1;
}

.brand-text small{
    color:#64748B;
    font-size:.8rem;
}



/* =====================================
   FOOTER
===================================== */

.smart-footer{

    background:#081120;

    color:#fff;

    margin-top:0;
}

.footer-cta{

    background:
    linear-gradient(
        135deg,
        #002B6B,
        #008D36
    );

    padding:50px;

    border-radius:30px;

    transform:translateY(-60px);
}

.footer-cta h2{
    font-weight:800;
    margin-bottom:15px;
}

.footer-cta p{
    opacity:.9;
    margin:0;
}

.footer-content{
    padding-top:20px;
    padding-bottom:50px;
}

.footer-logo{
    height:70px;
    width:auto;
}

.footer-description{
    color:#CBD5E1;
    line-height:1.8;
}

.smart-footer h5{
    margin-bottom:20px;
    font-weight:700;
}

.footer-links{
    list-style:none;
    padding:0;
}

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

.footer-links a{

    color:#CBD5E1;

    transition:.3s;
}

.footer-links a:hover{
    color:#7CFF9D;
}

.footer-contact{
    list-style:none;
    padding:0;
}

.footer-contact li{
    margin-bottom:15px;
    color:#CBD5E1;
}

.footer-contact i{
    margin-right:10px;
    color:#7CFF9D;
}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:20px;
}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;
}

.footer-social a:hover{

    background:#008D36;

    transform:translateY(-3px);
}

.footer-bottom{

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

    padding:25px 0;

    color:#94A3B8;
}

@media(max-width:991px){

    .footer-cta{

        text-align:center;

        transform:none;

        margin-bottom:50px;
    }

    .footer-bottom{
        text-align:center;
    }
}



/* =====================================
   FAQ
===================================== */

.accordion-item{
    border:none;
    border-radius:15px !important;
    overflow:hidden;
    margin-bottom:15px;
    box-shadow:var(--shadow-sm);
}

.accordion-button{
    padding:20px 25px;
    font-weight:600;
    color:var(--primary);
}

.accordion-button:not(.collapsed){
    background:#E8F5EE;
    color:var(--secondary);
}

.accordion-body{
    padding:25px;
    color:var(--text);
}





/* =====================================
   CONTACT PAGE
===================================== */

.contact-form-card{

    background:#fff;

    padding:50px;

    border-radius:25px;

    box-shadow:var(--shadow-md);
}

.form-control{

    border:1px solid #E2E8F0;

    padding:14px 18px;

    border-radius:12px;
}

.form-control:focus{

    border-color:#008D36;

    box-shadow:0 0 0 .2rem rgba(0,141,54,.15);
}

.form-label{

    font-weight:600;

    margin-bottom:8px;

    color:var(--primary);
}

.offcanvas{

    max-width:280px;
}