/* ===== GLOBAL ===== */
/* 
.container{
    max-width: 1200px;
max-width:90%;
margin:auto;
padding:0 0;
} */

section{
padding:100px 0px;
}

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

.hero{

    width:100vw;

margin-left:calc(50% - 50vw);
margin-right:calc(50% - 50vw);
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
url("/static/images/trust_1.jpg");

background-size: cover;
background-position: center;
background-repeat: no-repeat;
/* background:#f7f9fc; */
color: white;
text-align:center;
padding:140px 20px;
}

.hero h1{
font-size:48px;
font-weight:700;
margin-bottom:20px;
}

.hero p{
max-width:650px;
margin:auto;
font-size:18px;
color:white;
line-height:1.6;
}

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

.stats{
padding:70px 20px;
/* background:#f8fafc; */
text-align:center;
}

.stats-title{
font-size:34px;
font-weight:700;
margin-bottom:40px;
background:linear-gradient(90deg,#00b386,#00d4a5);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* GRID */

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:35px;
max-width:900px;
margin:auto;
justify-content:center;
}

/* CARD */

.stat-card{
background:white;
padding:40px 20px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:all 0.3s ease;
}

.stat-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 35px rgba(0,0,0,0.15);
}

/* ICON */

.stat-icon{
font-size:32px;
color:#00b386;
margin-bottom:10px;
}

/* NUMBER */

.stat-card h2{
font-size:40px;
font-weight:700;
color:#111;
margin-bottom:5px;
}

/* LABEL */

.stat-card p{
color:#777;
font-size:15px;
}

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

.values{
    
padding:70px 20px;
background:#f8fafc;
text-align:center;
}

.section-title{
font-size:36px;
font-weight:700;
margin-bottom:10px;
background:linear-gradient(90deg,#00b386,#00d4a5);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.values-subtitle{
color:#666;
margin-bottom:60px;
}

/* GRID */

.values-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:35px;
justify-content:center;
}

/* CARD */

.value-card{
background:white;
padding:35px 25px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:all 0.3s ease;
}

.value-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 35px rgba(0,0,0,0.15);
}

/* ICON */

.value-icon{
font-size:32px;
color:#00b386;
margin-bottom:15px;
}

/* TITLE */

.value-card h3{
font-size:20px;
margin-bottom:10px;
}

/* TEXT */

.value-card p{
color:#666;
font-size:15px;
line-height:1.6;
}

/* TEAM SECTION */

.team{
padding:25px 20px;
background:#f8fafc;
text-align:center;
}

.section-title{
font-size:36px;
font-weight:700;
margin-bottom:10px;
background:linear-gradient(90deg,#00b386,#00d4a5);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.team-subtitle{
color:#666;
margin-bottom:60px;
font-size:16px;
}

/* GRID */

.team-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
justify-content:center;
}

/* CARD */

.team-card{
background:white;
padding:40px 25px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:all 0.3s ease;
margin-bottom: 30px;
}

.team-card:hover{
transform:translateY(-10px);
box-shadow:0 12px 35px rgba(0,0,0,0.15);
}

/* IMAGE */

.team-img{
display:flex;
justify-content:center;
margin-bottom:15px;
}

.team-img img{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
border:4px solid #00b386;
}

/* NAME */

.team-card h4{
font-size:20px;
margin-top:10px;
margin-bottom:5px;
}

/* ROLE BADGE */

.role{
display:inline-block;
padding:5px 14px;
background:#e6f9f4;
color:#00a87a;
border-radius:20px;
font-size:14px;
}

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

.join{
/* background:#f7f9fc; */


background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
url("/static/images/join_us.jpg");

background-size: cover;
background-position: center;
background-repeat: no-repeat;
color:white;

text-align:center;
padding:120px 20px;
}

.join h2{
font-size:34px;
margin-bottom:10px;
}

.join p{
color:white;
color:#cbd5e1;
margin-bottom:25px;
}

.join-btn{
display:inline-block;
padding:14px 32px;
background:#00b386;
color:white;
border-radius:6px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.join-btn:hover{
background:#009973;
}

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

@media(max-width:768px){

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

section{
padding:70px 0;
}


.stats-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.stat-card{
width:220px;
}

.values-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.value-card{
width:260px;
}

.team-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.team-card{
width:260px;
}


}