/* ==========================================
   NOVAVEST CAPITAL
   Premium Global Styles
========================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    background:#eef3fb;
    color:#222;
    line-height:1.6;
}

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

/* Header */

header{
    background:linear-gradient(90deg,#071739,#0c2c69);
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#FFD700;
    font-size:30px;
    font-weight:700;
}

.logo span{
    color:#ffffff;
}

.menu a{
    color:#fff;
    margin-left:20px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.menu a:hover{
    color:#FFD700;
}

/* Hero */

.hero{
    background:linear-gradient(135deg,#071739,#123d91);
    color:#fff;
    padding:90px 20px;
    text-align:center;
}

.hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    font-size:18px;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    margin:8px;
    transition:.3s;
}

.btn-primary{
    background:#FFD700;
    color:#071739;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    background:#ffffff;
    color:#071739;
}

.btn-secondary:hover{
    transform:translateY(-3px);
}

/* Section */

section{
    padding:60px 0;
}

.section-title{
    text-align:center;
    font-size:34px;
    color:#071739;
    margin-bottom:40px;
}

/* Cards */

.card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

/* Investment Card */

.plan-name{
    color:#071739;
    font-size:22px;
    font-weight:bold;
    margin-bottom:15px;
}

.price{
    color:#FFD700;
    font-size:30px;
    font-weight:bold;
}

.daily{
    color:#10b981;
    margin-top:10px;
    font-weight:600;
}

.validity{
    color:#444;
    margin:12px 0;
}

/* Announcement */

.notice{
    background:#FFD700;
    color:#071739;
    padding:14px;
    text-align:center;
    font-weight:bold;
}

/* Footer */

footer{
    background:#071739;
    color:#fff;
    text-align:center;
    padding:25px;
}

/* Mobile */

@media(max-width:768px){

.hero h1{
    font-size:30px;
}

.menu{
    display:none;
}

.logo{
    font-size:24px;
}

.btn{
    display:block;
    width:100%;
    margin:10px 0;
    text-align:center;
}

}