*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #eef2ff;
    color: #334155;
    line-height: 1.6;
    overflow-x: hidden;
}

header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 48px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #dbeafe;
}

.logo {
    font-family: 'Lobster', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #2563eb;
    text-decoration: none;
}

.menu {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

.menu a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    transition: 0.3s;
    padding: 4px 0;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.menu a:hover {
    color: #2563eb;
}

.menu a:hover::after {
    width: 100%;
    
}

.menu a:active {
    color: #1d4ed8;
}

.menu a:active::after {
    background: #1d4ed8;
    width: 100%;
    
}

.hero {
    min-height:auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('assets/bg.jpg') center/cover fixed;
    padding-top: 80px;
}

.hero::before {
  content: 'PORTFOLIO';
  position: absolute;
  top: 50%;
  left:10%;
  transform: translateY(-50%);
  font-family: 'Bungee', sans-serif;
  font-weight: 900;
  font-size: 200px;
  color: #bfdbfe;;
  opacity: 0.35;
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 25px;
    padding: 30px 5px;
    width: 100%;
}

.hero-left { 
    flex: 1; 
    
}

.hero-hello {
    font-size: 16px;
    font-weight: 300;
    color: #94a3b8;
    margin-bottom: 4px;
}

.hero-name {
    font-family: 'Bungee', sans-serif;
    font-size: 80px;
    font-weight: 500;
    color: #1e3a5f;
    line-height: 0.95;
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.hero-name span {
    color: #2563eb;
    position: relative;
}

.hero-name span::after {
    content: '';
    position: absolute;
    bottom: 13px;
    left: 0;
    right: 0;
    height: 4px;
    background: #facc15;
    border-radius: 2px;
}

.hero-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top:20px;
    margin-bottom: 20px;
}

.hero-roles span {
    background: rgba(255,255,255,0.8);
    border: 1px solid #dbeafe;
    color: #1e3a5f;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
}

.hero-desc {
    font-size: 15px;
    font-weight: 400;
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 12px;
    margin-top:0;
    margin-bottom: 10px;
}

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-outline {
    background: white;
    color: #1e3a5f;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1.5px solid #dbeafe;
    transition: 0.2s;
}

.btn-outline:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 36px;
    border-top: 1px solid rgba(37,99,235,0.15);
    padding-top: 24px;
    grid-column: 1 / -1;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
}

.hero-stats span {
    font-size: 12px;
    font-weight: 300;
    color: #94a3b8;
}

.hero-right { 
    flex: 0 0 450px; 
    display: flex; 
    margin-left: 0;
    align-items: center; 
    justify-content: center; 
}

.profile-wrap {
    position: relative;
    width: 320px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card {
    border-radius: 24px;
    width: 280px;
    height: 380px;
    transform: none;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #dce8f5;
    border: 3px solid #dce8f5;
    box-shadow: 0 0 0 8px #dce8f5, 0 20px 60px rgba(30,58,95,0.15);
   
}

.profile-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}


.float-tag {
    position: absolute;
    background: #f1f5f9;
    color: #1e3a5f;
    border: 1px solid #cbd5e1;
    border-radius: 30px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}

.tag-tl { top: 20px;  left: 0px; }
.tag-tr { top: 150px;  right: 0px; }
.tag-br { bottom: 20px; right: 0px; }

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 70px 0;
}

.section-alt {
    background: white;
}

.section-header {
    margin-bottom: 36px;
}

.section-title {
    font-family: 'Bungee', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: #dbeafe;
    border-radius: 1px;
}

.section-title.center {
    justify-content: center;
}

.section-title.center::after {
    display: none;
}

.section-sub {
    font-size: 14px;
    font-weight: 400;
    color: #94a3b8;
}

/* ABOUT */
#about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 14px;
    line-height: 1.8;
}

.about-text strong {
    color: #2563eb;
    font-weight: 600;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 9px 12px;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.info-table td:first-child {
    color: #94a3b8;
    font-weight: 500;
    width: 35%;
}

.status-badge {
    background: #dcfce7;
    color: #166534;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* SKILLS */
#skills {
    background: url('assets/technicalskill.jpg') center/cover no-repeat;
}

#skills .section-title {
    color: white;
}

#skills .section-sub {
    color: rgba(255, 255, 255, 0.8);
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.skill-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 22px;
    transition: 0.2s;
}

.skill-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
}

.skill-card h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tags span {
    background: white;
    color: #334155;
    font-size: 13px;
    font-weight: 400;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #dbeafe;
}

#education {
    background: #1e3a5f;
}

#education .section-title {
    color: white;
}

#education .section-title::after {
    background: rgba(255,255,255,0.15);
}

#education .section-sub {
    color: rgba(255,255,255,0.5);
}

.edu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.edu-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    transition: 0.2s;
}

.edu-item:hover {
    background: rgba(255,255,255,0.10);
}

.edu-year {
    background: #2563eb;
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    margin-top: 4px;
}

.edu-school {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.edu-degree {
    font-size: 13px;
    font-style: italic;
    color: #93c5fd;
    margin-bottom: 10px;
}

.edu-body ul {
    list-style: none;
}

.edu-body li {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    padding-left: 14px;
    position: relative;
    margin-bottom: 4px;
    line-height: 1.6;
}

.edu-body li::before {
    content: '·';
    position: absolute;
    left: 2px;
    color: #93c5fd;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cert-card {
    display: flex;
    align-items: center;
    background: #eef2ff;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 16px 24px;
    flex: 1;
    min-width: 220px;
    transition: 0.2s;
}

.cert-card:hover {
    border-color: #2563eb;
    transform: translateY(-3px);
}

.cert-card p {
    font-size: 14px;
    font-weight: 500;
    color: #1e3a5f;
}

.lang-grid {
    display: flex;
    gap: 16px;
}

.lang-card {
    background: white;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    flex: 1;
    transition: 0.2s;
}

.lang-flag {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.lang-name {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.lang-level {
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 500;
    padding: 3px 12px;
    border-radius: 20px;
    border: 1px solid #dbeafe;
    display: inline-block;
}

.section-contact {
    background: #eef2ff;
    text-align: center;
}

.contact-desc {
    font-size: 15px;
    font-weight: 400;
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #1e3a5f;
    border: 1.5px solid #dbeafe;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.contact-btn:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-2px);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    font-weight: 300;
    color: #94a3b8;
    border-top: 1px solid #dbeafe;
}

footer span {
    color: #2563eb;
    font-weight: 600;
}
