/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI', sans-serif;
}

body{
background:linear-gradient(
135deg,
#061224,
#0b1f3d,
#0e2a52,
#0b1f3d,
#061224
);
background-size:300% 300%;
animation:metalFlow 15s ease infinite;
color:#ffffff;
line-height:1.6;
overflow-x:hidden;
}

/* METALLIC BACKGROUND ANIMATION */
@keyframes metalFlow{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

/* NAVBAR */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:rgba(10,25,50,0.85);
backdrop-filter:blur(10px);
position:sticky;
top:0;
z-index:1000;
}

.logo img{
height:48px;
}

nav{
display:flex;
gap:30px;
}

nav a{
color:#7ee2a8;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#ffffff;
}

/* HERO SECTION */
.hero{
position:relative;
height:100vh;
background:url("hero-bg.png") center center / cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
to bottom,
rgba(6,18,36,0.85),
rgba(6,18,36,0.75)
);
}

.hero-content{
position:relative;
z-index:1;
max-width:800px;
}

.hero-content h1{
font-size:52px;
margin-bottom:25px;
color:#7ee2a8;
}

.hero-content p{
font-size:20px;
margin-bottom:35px;
color:#d7f5e8;
}

/* BUTTON */
.btn{
background:linear-gradient(45deg,#1f7a55,#27a66d);
color:white;
padding:16px 34px;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:0.3s;
display:inline-block;
}

.btn:hover{
transform:scale(1.05);
box-shadow:0 10px 30px rgba(39,166,109,0.5);
}

/* SECTION */
.section{
padding:100px 8%;
text-align:center;
}

.section h2{
font-size:34px;
margin-bottom:40px;
color:#7ee2a8;
}

/* CARD GRID */
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:35px;
}

/* CARD */
.card{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.1);
border-radius:18px;
overflow:hidden;
transition:0.4s;
display:flex;
flex-direction:column;
}

.card img{
width:100%;
height:190px;
object-fit:cover;
}

.card-content{
padding:25px;
font-size:16px;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

/* FOUNDERS */
.founders{
display:flex;
justify-content:center;
gap:100px;
flex-wrap:wrap;
margin-top:40px;
}

.founder{
text-align:center;
}

.founder img{
width:170px;
height:170px;
border-radius:50%;
object-fit:cover;
border:5px solid #27a66d;
margin-bottom:20px;
}

.founder h3{
margin-bottom:8px;
color:#7ee2a8;
}

/* SOCIAL PAGE */
.social-links{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-top:40px;
}

.social-links a{
padding:14px 26px;
border-radius:30px;
background:linear-gradient(45deg,#1f7a55,#27a66d);
text-decoration:none;
color:white;
font-weight:500;
transition:0.3s;
}

.social-links a:hover{
transform:scale(1.1);
box-shadow:0 10px 30px rgba(39,166,109,0.5);
}

/* FOOTER */
footer{
padding:30px;
text-align:center;
background:rgba(0,0,0,0.4);
color:#7ee2a8;
margin-top:40px;
}

/* ========================= */
/* MOBILE RESPONSIVENESS */
/* ========================= */

@media(max-width:992px){

.hero-content h1{
font-size:40px;
}

.hero-content p{
font-size:18px;
}

.section{
padding:80px 6%;
}

}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:10px;
}

nav{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.hero{
height:90vh;
}

.hero-content h1{
font-size:28px;
}

.hero-content p{
font-size:15px;
}

.section{
padding:60px 5%;
}

.cards{
grid-template-columns:1fr;
}

.founders{
gap:40px;
}

.founder img{
width:140px;
height:140px;
}

.btn{
padding:12px 22px;
font-size:14px;
}

}