body{
font-family:'Inter', sans-serif;
}

/* HERO */
.hero-title{
font-size:3rem;
font-weight:700;
color:#111827;
}

.hero-subtitle{
color:#6b7280;
font-size:1.2rem;
}

.hero-desc{
color:#4b5563;
font-size:1rem;
}

/* BUTTON */
.btn-invest{
background:#16a34a;
color:white;
border-radius:50px;
font-weight:600;
padding:10px 25px;
}

.btn-invest:hover{
background:#15803d;
color:white;
}

/* RESPONSIVE */
@media(max-width:768px){
.hero-title{
font-size:2.2rem;
}
}

/* ================================ */
/* Title */

.section-title h2{
font-size:2.2rem;
color:#111827;
}

.brand-text{
color:#16a34a;
}

.subtitle{
color:#6b7280;
font-size:1.05rem;
margin-top:8px;
}

.title-line{
width:70px;
height:4px;
background:linear-gradient(90deg,#16a34a,#22c55e);
margin:14px auto 0;
border-radius:10px;
}

/* =========================
FEATURE CARD DESIGN
========================= */

.feature-card{
background:#ffffff;
border:none;
border-radius:16px;
padding:35px 25px;
transition:all .35s ease;
position:relative;
overflow:hidden;
cursor:pointer;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.feature-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(90deg,#16a34a,#22c55e);
transform:scaleX(0);
transform-origin:left;
transition:transform .4s ease;
}

.feature-card:hover{
transform:translateY(-10px) scale(1.03);
box-shadow:
0 25px 50px rgba(0,0,0,0.15),
0 0 40px rgba(135,206,250,0.45),
0 0 80px rgba(135,206,250,0.25);
}

.feature-card:hover::before{
transform:scaleX(1);
}

/* Icon */

.feature-icon{
width:70px;
height:70px;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
border-radius:50%;
font-size:30px;
background:linear-gradient(135deg,#22c55e,#16a34a);
color:white;
margin-bottom:18px;
box-shadow:0 10px 25px rgba(34,197,94,.3);
}

.feature-card h5{
font-weight:600;
margin-bottom:10px;
}

.feature-card p{
font-size:0.95rem;
color:#6b7280;
}


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

/* HERO IMAGE */

.hero-img{
max-height:420px;
width:100%;
object-fit:contain;
}

/* BUTTON CONTAINER */

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}


/* TABLETS */
@media (max-width: 992px){

.hero-title{
font-size:2.4rem;
}

.hero-subtitle{
font-size:1.1rem;
}

.hero-desc{
font-size:0.95rem;
}

}


/* MOBILE */
@media (max-width: 768px){

.hero-title{
font-size:2rem;
line-height:1.3;
text-align:center;
}

.hero-subtitle,
.hero-desc{
text-align:center;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

.hero-buttons .btn{
width:100%;
max-width:280px;
}

.hero-img{
max-height:260px;
margin-top:25px;
}

.section-title h2{
font-size:1.8rem;
}

.subtitle{
font-size:0.95rem;
}

.feature-card{
padding:25px 20px;
}

}


/* SMALL MOBILE */

@media (max-width: 480px){

.hero-title{
font-size:1.7rem;
}

.section-title h2{
font-size:1.6rem;
}

}


/* BUTTON RESPONSIVE */

.hero-buttons .btn{
font-size:1rem;
padding:12px 28px;
}

/* Tablet */
@media (max-width: 992px){

.hero-buttons .btn{
font-size:0.95rem;
padding:11px 24px;
}

}

/* Mobile */
@media (max-width: 768px){

.hero-buttons .btn{
font-size:0.9rem;
padding:10px 20px;
}

}

/* Small mobile */
@media (max-width: 480px){

.hero-buttons .btn{
font-size:0.85rem;
padding:9px 18px;
}

}


/* ============================================ Funds================= */

.fund-card{

background:white;
padding:18px;
border-radius:10px;
margin-bottom:15px;

box-shadow:0 8px 20px rgba(0,0,0,0.06);

transition:0.3s;

}

.fund-card:hover{

transform:translateY(-4px);

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

}

/* =====================trust section ============== */

.trust-section{
background:#f8fafc;
}

.trust-box{
padding:20px;
border-radius:12px;
transition:0.3s;
}

.trust-box:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}