/* ==========================================
NOVA CAPITAL WEBSITE
STYLE.CSS
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;
}

body{

background:#f5f7fb;

color:#222;

line-height:1.6;

}

.container{

width:90%;

max-width:1200px;

margin:auto;

}

/* ==========================================
HEADER
========================================== */

.main-header{

background:#1565C0;

padding:18px 0;

position:sticky;

top:0;

z-index:999;

box-shadow:0 3px 10px rgba(0,0,0,.15);

}

.main-header .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo h2{

color:#fff;

font-size:30px;

font-weight:bold;

letter-spacing:1px;

}

nav{

display:flex;

align-items:center;

gap:25px;

}

nav a{

color:#fff;

text-decoration:none;

font-weight:600;

transition:.3s;

}

nav a:hover{

color:#FFD54F;

}

.login-btn,
.register-btn{

padding:10px 22px;

border-radius:8px;

text-decoration:none;

font-weight:bold;

}

.login-btn{

background:#fff;

color:#1565C0;

}

.register-btn{

background:#FFD54F;

color:#222;

}
/* ==========================================
HERO SECTION
========================================== */

.hero-section{

background:linear-gradient(135deg,#1565C0,#0D47A1);

color:#fff;

padding:80px 0;

}

.hero-section .container{

display:flex;

justify-content:space-between;

align-items:center;

gap:50px;

flex-wrap:wrap;

}

.hero-left{

flex:1;

min-width:300px;

}

.hero-left h1{

font-size:48px;

margin-bottom:20px;

line-height:1.2;

}

.hero-left p{

font-size:18px;

margin-bottom:30px;

opacity:.95;

}

.hero-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.hero-right{

flex:1;

display:flex;

justify-content:center;

min-width:300px;

}

.hero-card{

background:#fff;

color:#222;

padding:35px;

border-radius:18px;

width:320px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.20);

}

.hero-card h3{

color:#1565C0;

margin-bottom:10px;

}

.hero-card h2{

font-size:32px;

margin-bottom:15px;

}

.hero-stats{

display:flex;

justify-content:space-between;

margin-top:25px;

}

/* ==========================================
SECTION
========================================== */

.section-title{

text-align:center;

font-size:34px;

margin-bottom:15px;

color:#1565C0;

}

.section-subtitle{

text-align:center;

margin-bottom:40px;

color:#666;

}

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

.register-btn,
.login-btn{

display:inline-block;

padding:12px 28px;

border-radius:8px;

font-weight:bold;

text-decoration:none;

transition:.3s;

}

.register-btn:hover,
.login-btn:hover{

transform:translateY(-3px);

box-shadow:0 8px 18px rgba(0,0,0,.15);

}

/* ==========================================
PLANS SECTION
========================================== */

.plans-section{

padding:70px 0;

background:#f8f9fc;

}

.plans-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:25px;

}

.plan-card{

background:#fff;

padding:30px;

border-radius:15px;

text-align:center;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s;

}

.plan-card:hover{

transform:translateY(-8px);

box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.plan-card h3{

color:#1565C0;

margin-bottom:15px;

}

.plan-card h2{

font-size:34px;

margin-bottom:10px;

}

.plan-card p{

font-size:18px;

color:#28a745;

font-weight:bold;

margin-bottom:10px;

}

.plan-card span{

display:block;

margin-bottom:20px;

color:#777;

}

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

.about-section{

padding:70px 0;

}

.features-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:25px;

}

.feature-card{

background:#fff;

padding:30px;

border-radius:15px;

text-align:center;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s;

}

.feature-card:hover{

transform:translateY(-6px);

}

.feature-card i{

font-size:42px;

color:#1565C0;

margin-bottom:15px;

}

.feature-card h3{

margin-bottom:12px;

}

/* ==========================================
PLATFORM STATS
========================================== */

.stats-section{

padding:70px 0;

background:#1565C0;

color:#fff;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

margin-top:40px;

}

.stat-box{

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

padding:30px;

border-radius:15px;

text-align:center;

backdrop-filter:blur(6px);

}

.stat-box h2{

font-size:36px;

margin-bottom:10px;

}

/* ==========================================
REFERRAL
========================================== */

.referral-section{

padding:70px 0;

background:#f7f7f7;

}

.referral-card{

background:#fff;

padding:50px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.10);

}

.referral-card h2{

color:#1565C0;

margin-bottom:20px;

}

.referral-card p{

margin-bottom:25px;

}

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

.faq-section{

padding:70px 0;

}

.faq-item{

background:#fff;

padding:25px;

margin-bottom:20px;

border-left:5px solid #1565C0;

border-radius:10px;

box-shadow:0 4px 12px rgba(0,0,0,.08);

}

.faq-item h3{

margin-bottom:12px;

color:#1565C0;

}

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

.contact-section{

padding:70px 0;

background:#f8f9fc;

text-align:center;

}

.contact-box{

margin-top:30px;

}

.contact-box p{

margin:12px 0;

font-size:18px;

}

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

.main-footer{

background:#0D47A1;

color:#fff;

padding:35px 0;

text-align:center;

}

.footer-links{

margin-top:15px;

}

.footer-links a{

color:#fff;

text-decoration:none;

margin:0 12px;

}

.footer-links a:hover{

color:#FFD54F;

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:768px){

.main-header .container{

flex-direction:column;

gap:15px;

}

nav{

flex-wrap:wrap;

justify-content:center;

}

.hero-left h1{

font-size:34px;

}

.hero-section .container{

flex-direction:column;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-card{

width:100%;

}

.section-title{

font-size:28px;

}

}

.download-app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.download-app-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ==========================================
   NOVA CAPITAL - APP DOWNLOAD BUTTON
========================================== */

.download-app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    background: #16a34a;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.download-app-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}


/* ==========================================
   APP DOWNLOAD SECTION
========================================== */

.app-download-section {
    padding: 70px 20px;
}

.app-download-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 45px 25px;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #111827,
        #1f2937
    );
    color: #ffffff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.app-download-card h2 {
    margin-bottom: 15px;
}

.app-download-card p {
    max-width: 680px;
    margin: 0 auto 25px;
    line-height: 1.7;
    opacity: 0.9;
}

.app-download-btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    background: #16a34a;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.app-download-btn-large:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* ==========================================
   INVESTMENT NOTICE
========================================== */

.notice-section {
    padding: 10px 20px 40px;
}

.risk-note {
    max-width: 850px;
    margin: 0 auto;
    padding: 18px 20px;
    border-radius: 10px;
    background: #fff8e1;
    color: #5f4500;
    line-height: 1.6;
    font-size: 14px;
}


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

@media (max-width: 768px) {

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .app-download-card {
        padding: 35px 20px;
    }

    .app-download-btn-large {
        width: 100%;
        box-sizing: border-box;
    }

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

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

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

}


@media (max-width: 480px) {

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

    .app-download-section {
        padding: 50px 15px;
    }

    .app-download-card h2 {
        font-size: 24px;
    }

}