*{

margin:0;

padding:0;

box-sizing:border-box;

font-family:Arial, Helvetica, sans-serif;

}

body{

background:#f5f7fb;

color:#333;

}

header{

background:white;

position:sticky;

top:0;

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

}

nav{

max-width:1100px;

margin:auto;

display:flex;

justify-content:space-between;

align-items:center;

padding:20px;

}

.logo{

color:#4f6ef7;

font-size:30px;

}

nav ul{

display:flex;

list-style:none;

gap:25px;

}

nav a{

text-decoration:none;

color:#333;

font-weight:bold;

}

nav a:hover{

color:#4f6ef7;

}

.hero{

max-width:1100px;

margin:auto;

padding:80px 20px;

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

}

.hero-text{

width:500px;

}

.hero-text h1{

font-size:30px;

}

.hero-text h2{

font-size:50px;

color:#4f6ef7;

margin:10px 0;

}

.hero-text p{

margin:10px 0;

line-height:1.8;

}

.btn{

display:inline-block;

margin-top:20px;

padding:12px 25px;

background:#4f6ef7;

color:white;

text-decoration:none;

border-radius:8px;

}

.btn:hover{

background:#3555e5;

}

.hero-image img{

width:280px;

height:280px;

border-radius:50%;

object-fit:cover;

border:8px solid white;

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

}

section{

max-width:1100px;

margin:60px auto;

padding:20px;

}

section h2{

text-align:center;

font-size:35px;

margin-bottom:30px;

color:#4f6ef7;

}

#about p{

text-align:center;

line-height:1.8;

font-size:18px;

}

.skills-list{

display:grid;

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

gap:20px;

list-style:none;

margin-top:20px;

}

.skills-list li{

background:white;

padding:20px;

text-align:center;

border-radius:10px;

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

font-weight:bold;

}

table{

width:100%;

border-collapse:collapse;

background:white;

}

th{

background:#4f6ef7;

color:white;

padding:15px;

}

td{

padding:15px;

text-align:center;

border:1px solid #ddd;

}

form{

display:flex;

flex-direction:column;

gap:15px;

max-width:600px;

margin:auto;

}

input,textarea{

padding:15px;

border:1px solid #ccc;

border-radius:8px;

font-size:16px;

}

button{

background:#4f6ef7;

color:white;

padding:15px;

border:none;

border-radius:8px;

font-size:16px;

cursor:pointer;

}

button:hover{

background:#3555e5;

}

footer{

background:#4f6ef7;

color:white;

text-align:center;

padding:25px;

margin-top:50px;

}

.about-container{
display:flex;
gap:30px;
align-items:flex-start;
flex-wrap:wrap;
margin-top:40px;
}

.profile-card{
background:white;
padding:20px;
border-radius:20px;
width:300px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.profile-card img{
width:220px;
height:220px;
object-fit:cover;
border-radius:15px;
margin-bottom:15px;
}

.profile-card h3{
margin-bottom:10px;
color:#4f6ef7;
}

.profile-card p{
color:#666;
margin-bottom:20px;
}

.socials{
display:flex;
justify-content:center;
gap:20px;
font-size:25px;
}

.info-grid{
flex:1;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.info-card{
background:white;
padding:20px;
border-radius:18px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

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

.info-card h4{
color:#4f6ef7;
margin-bottom:10px;
}

.info-card p{
color:#555;
line-height:1.5;
}

#activities{

padding:80px 20px;

background:#f7f9ff;

text-align:center;

}

#activities h2{

font-size:48px;

color:#4f6ef7;

margin-bottom:10px;

}

.activity-subtitle{

font-size:18px;

color:#666;

margin-bottom:50px;

}

.activity-container{

display:grid;

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

gap:30px;

max-width:1100px;

margin:auto;

}

.activity-card{

background:white;

padding:30px;

border-radius:20px;

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

transition:.3s;

}

.activity-card:hover{

transform:translateY(-8px);

}

.activity-card h3{

color:#4f6ef7;

margin-bottom:25px;

font-size:22px;

}

.activity-card input{

width:100%;

margin-bottom:20px;

}

.activity-card button{

background:#4f6ef7;

color:white;

border:none;

padding:12px 25px;

border-radius:10px;

cursor:pointer;

font-size:16px;

transition:.3s;

}

.activity-card button:hover{

background:#3555e5;

}

.hero{

display:flex;

justify-content:space-between;

align-items:center;

max-width:1200px;

margin:80px auto;

padding:20px;

gap:50px;

flex-wrap:wrap;

}

.hero-left{

flex:1;

}

.badge{

display:inline-block;

background:#f8dff5;

color:#3c8d82;

padding:10px 18px;

border-radius:30px;

font-weight:bold;

margin-bottom:20px;

}

.hero-left h1{

font-size:50px;

color:#222;

margin-bottom:10px;

}

.hero-left h2{

font-size:60px;

color:#7d5ff4;

margin-bottom:20px;

}

.subtitle{

font-size:22px;

font-weight:600;

margin-bottom:15px;

}

.hero-left p{

font-size:18px;

line-height:1.8;

color:#555;

}

.hero-buttons{

margin-top:30px;

display:flex;

gap:20px;

}

.btn-primary{

background:#7c5cff;

color:white;

padding:15px 30px;

border-radius:50px;

text-decoration:none;

font-weight:bold;

}

.btn-secondary{

border:2px solid #7c5cff;

color:#7c5cff;

padding:15px 30px;

border-radius:50px;

text-decoration:none;

font-weight:bold;

}

.social-links{

margin-top:40px;

display:flex;

gap:20px;

font-size:28px;

}

.hero-right img{

width:350px;

height:350px;

border-radius:50%;

object-fit:cover;

border:10px solid #f8dff5;

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

}

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

#activities{
    padding:80px 10%;
    background:#f8f9ff;
    text-align:center;
}

#activities h2{
    font-size:42px;
    color:#4f6ef7;
    margin-bottom:10px;
}

.activity-subtitle{
    color:#666;
    font-size:18px;
    margin-bottom:40px;
}

.activity-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.upload-card{
    background:#ffffff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:0.3s;
}

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

.upload-card h3{
    color:#4f6ef7;
    margin-bottom:20px;
}

.upload-area{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    border:2px dashed #4f6ef7;
    border-radius:15px;
    padding:40px 20px;
    cursor:pointer;
    transition:0.3s;
}

.upload-area:hover{
    background:#eef3ff;
}

.upload-icon{
    font-size:50px;
    margin-bottom:15px;
}

.upload-area p{
    font-size:18px;
    font-weight:bold;
    color:#333;
}

.upload-area small{
    margin-top:10px;
    color:#777;
}

input[type="file"]{
    display:none;
}

.activity-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
margin-top:40px;
}

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

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

.upload-area{
display:block;
border:2px dashed #6c63ff;
padding:40px 20px;
border-radius:15px;
cursor:pointer;
transition:.3s;
}

.upload-area:hover{
background:#f5f6ff;
}

.upload-icon{
font-size:60px;
margin-bottom:15px;
}

.upload-area h4{
font-size:28px;
margin-bottom:10px;
}

.upload-area p{
color:#666;
word-break:break-word;
}

.buttons{
margin-top:20px;
display:flex;
justify-content:center;
gap:15px;
}

.buttons button{
padding:10px 25px;
border:none;
border-radius:8px;
background:#4f6ef7;
color:white;
cursor:pointer;
font-size:16px;
transition:.3s;
}

.buttons button:hover{
background:#3555e5;
}

/* ACTIVITIES SECTION */

#activities{
    padding:80px 20px;
    text-align:center;
}

.activity-subtitle{
    color:#666;
    margin-bottom:40px;
    font-size:18px;
}

.activity-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.activity-card{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

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

.activity-icon{
    font-size:60px;
    margin-bottom:15px;
}

.activity-card h3{
    color:#4f6ef7;
    margin-bottom:15px;
}

.activity-card p{
    color:#666;
    line-height:1.6;
    margin-bottom:20px;
}

.activity-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}

.view-btn,
.download-btn{
    text-decoration:none;
    padding:12px 25px;
    border-radius:10px;
    color:white;
    font-weight:bold;
    transition:0.3s;
}

.view-btn{
    background:#4f6ef7;
}

.download-btn{
    background:#28a745;
}

.view-btn:hover{
    background:#3555e5;
}

.download-btn:hover{
    background:#218838;
}

#activities{
    padding:80px 20px;
    background:#f7f9ff;
    text-align:center;
}

.activity-subtitle{
    color:#666;
    margin-bottom:40px;
    font-size:18px;
}

.activity-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.upload-card{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

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

.upload-card h3{
    color:#4f6ef7;
    margin-bottom:15px;
}

.activity-name{
    font-size:24px;
    font-weight:bold;
    margin-bottom:20px;
    color:#333;
}

.activity-icon{
    font-size:70px;
    margin-bottom:15px;
}

.file-name{
    color:#666;
    margin-bottom:20px;
    word-wrap:break-word;
}

.activity-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}

.view-btn,
.download-btn{
    text-decoration:none;
    color:white;
    padding:12px 25px;
    border-radius:8px;
    font-weight:bold;
}

.view-btn{
    background:#4f6ef7;
}

.view-btn:hover{
    background:#3555e5;
}

.download-btn{
    background:#28a745;
}

.download-btn:hover{
    background:#1f8a38;
}