
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f4f6f8;
    padding-bottom:80px;
}

/* HEADER */
.header{
    background: linear-gradient(135deg, #b7e227, #dccee0);
    padding:18px;
    color:white;
    font-size:18px;
    font-weight:bold;
    text-align:center;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

/* MAIN */
h2{
    margin:20px;
    color:#111827;
}

/* FOOTER NAV */
.footer{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:white;
    box-shadow:0 -2px 15px rgba(0,0,0,0.1);
    padding:10px 0;
}

.footer ul{
    display:flex;
    justify-content:space-around;
    align-items:center;
}

.footer li{
    list-style:none;
    text-align:center;
    flex:1;
    padding:8px 0;
    transition:0.2s;
    border-radius:10px;
}

.footer li i{
    font-size:18px;
    color:#6b7280;
    display:block;
    margin-bottom:4px;
}

.footer li a{
    text-decoration:none;
    font-size:12px;
    color:#6b7280;
}

/* ACTIVE / HOVER EFFECT */
.footer li:hover{
    background:#ecfdf5;
}

.footer li:hover i,
.footer li:hover a{
    color:#3e2af3;
}

/* ACTIVE STYLE (Home example) */
.active i,
.active a{
    color:#3e2af3;
    font-weight:bold;
}
/* PAGE */
.page{
    padding:15px;
}

/* PROFILE WRAPPER */
.profile{
    width:100%;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    background:white;
}

/* IMAGE AREA */
.me {
    width: 100%;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    background: radial-gradient(circle at top, #abe000, #ece3e3);
    overflow: hidden;
}

/* animated background glow */
.me::before,
.me::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    animation:floatGlow 6s infinite ease-in-out;
}

.me::after{
    width:200px;
    height:200px;
    animation-delay:2s;
    background:rgba(255,255,255,0.12);
}

/* IMAGE (NOT ROUND) */
.me img {
    width: 100%;
    max-width: 240px;
    /* height: 240px; */
    /* object-fit: cover; */
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
    transform: translateY(20px);
    animation: popIn 0.8s ease-out;
    margin-bottom: 65px;
}

/* INFO BOX */
.info-box{
       background: #303030;
    color:white;
    padding:22px;
    border-radius:20px 20px 0 0;
    margin-top:-12px;
    position:relative;
    box-shadow:0 -10px 25px rgba(0,0,0,0.08);
    z-index: 100;
}

/* subtle top glow line */
.info-box::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:60px;
    height:4px;
    background:rgba(255,255,255,0.5);
    border-radius:10px;
}

/* NAME */
.info-box h3{
    font-size:20px;
    margin-bottom:12px;
    letter-spacing:0.5px;
}

/* TAGS */
.tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.tags span{
    background:rgba(255,255,255,0.15);
    padding:7px 12px;
    border-radius:12px;
    font-size:12px;
    border:1px solid rgba(255,255,255,0.2);
    backdrop-filter:blur(6px);
    transition:0.2s;
}

.tags span:hover{
    transform:translateY(-2px);
    background:rgba(255,255,255,0.25);
}

/* ANIMATIONS */
@keyframes floatGlow{
    0%{
        transform:translateY(0px) scale(1);
        opacity:0.4;
    }
    50%{
        transform:translateY(-20px) scale(1.1);
        opacity:0.7;
    }
    100%{
        transform:translateY(0px) scale(1);
        opacity:0.4;
    }
}

@keyframes popIn{
    from{
        transform:translateY(40px) scale(0.9);
        opacity:0;
    }
    to{
        transform:translateY(20px) scale(1);
        opacity:1;
    }
}


/* GRID WRAPPER */
.sims{
    width:100%;
    max-width:1000px;
    margin:40px auto;
    padding:15px;

    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:14px;

    animation:fadeIn 0.8s ease-in-out;
}

/* IMAGE CARDS */
.sims img{
    width:100%;
    height:160px;
    padding: 10px;

    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);

    transition:all 0.3s ease;
    cursor:pointer;

    transform:translateY(0);
}

/* HOVER EFFECT (premium feel) */
.sims img:hover{
    transform:translateY(-6px) scale(1.03);
    box-shadow:0 18px 35px rgba(0,0,0,0.18);
    filter:brightness(1.05);
}

/* subtle floating animation */
.sims img{
    animation:float 4s ease-in-out infinite;
}

.sims img:nth-child(2){ animation-delay:0.5s; }
.sims img:nth-child(3){ animation-delay:1s; }
.sims img:nth-child(4){ animation-delay:1.5s; }

/* GRID RESPONSIVE (still grid on mobile) */
@media (max-width:900px){
    .sims{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media (max-width:600px){
    .sims{
        grid-template-columns:repeat(2, 1fr);
    }

    .sims img{
        height:140px;
    }
}

@media (max-width:400px){
    .sims{
        grid-template-columns:repeat(2, 1fr); /* still grid, not stacked */
        gap:10px;
    }

    .sims img{
        height:120px;
    }
}

/* ANIMATIONS */
@keyframes float{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-4px);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.section-title{
    display:flex;
    gap:12px;
    align-items:center;
    flex-wrap:wrap;
}

.network-tab01{
    padding:10px 18px;
    border-radius:30px;
    background:#f1f1f1;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

.network-tab01.active{
    background:#7d2ae8;
    color:#fff;
}

.network-tab01:hover{
    background:#dcdcdc;
}

.network-tab01.active:hover{
    background:#6920c5;
}

/* GRID */
.works-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

/* CARD */
.work-card{
    background:white;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    display:flex;
    flex-direction:column;
}

.work-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.work-card img{
    width:100%;
    height:140px;
}

/* TITLE */
.work-card h3{
    padding:10px;
    font-size:14px;
    color:#111827;
}

/* BUTTON */
.call-btn{
    margin-top:auto;
    background:#16a34a;
    color:white;
    text-decoration:none;
    padding:12px;
    text-align:center;
    font-size:13px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;
    transition:0.2s;
}

.call-btn:hover{
    background:#15803d;
}

/* RESPONSIVE */
@media(max-width:600px){
    .works-grid{
        grid-template-columns:1fr;
    }
}

.section-title{
    margin:20px 0;
    font-size:18px;
    color:#111827;
}

/* GRID */
.account-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

/* CARD */
.account-card{
    background:white;
    padding:15px;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    text-align:center;
}

.account-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

/* LOGO */
.account-card img{
    width:60px;
    height:60px;
    object-fit:contain;
    margin-bottom:10px;
}

/* TITLE */
.account-card h3{
    font-size:14px;
    color:#111827;
    margin-bottom:10px;
}

/* TEXT */
.account-card p{
    font-size:12px;
    color:#374151;
    margin:3px 0;
}

/* RESPONSIVE */
@media(max-width:600px){
    .account-grid{
        grid-template-columns:1fr;
    }
}

.social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    background-color: black;
    padding: 10px;
    border-radius: 11px;
}
/* icon buttons */
.social a{
    width:42px;
    height:42px;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.25);
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:12px;
    color:white;
    font-size:16px;
    transition:0.25s;
    backdrop-filter:blur(6px);
    text-decoration:none;
}

/* hover effect */
.social a:hover{
    transform:translateY(-4px) scale(1.1);
    background:white;
    color:#16a34a;
}