@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
a{
    text-decoration:none;
}
ul{
    list-style:none;
}
body{
    font-family:'Poppins',sans-serif;
    background:#f8f5ef;
    color:#333;
    padding:20px;
}
section,
header,
footer{
    max-width:1200px;
    margin:auto;
}
footer{
    background:white;
    border-radius:25px;
    padding:30px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}
footer h3{
    font-family:'Playfair Display',serif;
    color:#25204f;
    margin-bottom:10px;
}
footer p{
    color:#666;
}
.navbar{
    max-width:1200px;
    margin:auto;
    margin-bottom:30px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#fff;
    padding:25px 50px;
    border-radius:25px;

    box-shadow:0 5px 20px rgba(0,0,0,.05);
}
.logo{
    font-family:'Playfair Display',serif;
    font-size:32px;
    color:#25204f;
}
nav{
    display:flex;
    gap:35px;
}
nav a{
    color:#555;
    font-size:15px;
    font-weight: 500;
    transition:.3s;
}
nav a:hover{
    color:#25204f;
}
.hero{
    background:#f5d54c;
    border-radius:30px;

    padding:60px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;

    margin-bottom:25px;
}
.hero-text{
    flex:1;
}
.hero-text p{
    margin-bottom:10px;
    font-size:18px;
}
.hero-text h1{
    font-family:'Playfair Display',serif;
    font-size:72px;
    color:#25204f;
    margin-bottom:20px;
}
.hero-text h4{
    font-size:28px;
    font-weight:500;
    line-height:1.5;
    margin-bottom:30px;
}
.hero-text a{
    display:inline-block;
    background:#25204f;
    color:white;
    padding:15px 35px;
    border-radius:50px;
    font-weight:500;
    transition:.3s;
}
.hero-text a:hover{
    transform:translateY(-3px);
}
.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}
.hero-image img{
    width:350px;
    height:450px;
    object-fit:cover;

    border-radius:180px;
    border:6px solid rgba(255,255,255,.5);
}
.about-preview,
.skills-preview,
.certificates{
    background:white;

    border-radius:25px;

    padding:35px;

    margin-bottom:25px;

    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.about-preview h3,
.skills-preview h3,
.certificates h3{
    font-family:'Playfair Display',serif;
    color:#25204f;
    font-size:32px;
    margin-bottom:15px;
}

.about-preview p,
.skills-preview p,
.certificates p{
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}

.about-preview a,
.skills-preview a{
    display:inline-block;
    margin-top:10px;

    background:#f5d54c;
    color:#25204f;

    padding:12px 25px;
    border-radius:50px;
    font-weight:600;
}
.skill-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:15px;
    margin-top:20px;
}
.skill-list span{
    background:#faf8f4;
    border:1px solid #ece7dd;
    padding:18px;
    border-radius:15px;
    text-align:center;
    font-weight:500;
    transition:.3s;
}
.skill-list span:hover{
    background:#f5d54c;
    transform:translateY(-3px);
}
.certificate-container{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}
.certificate-card{
    background:#faf8f4;
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
    border:1px solid #ece7dd;
}
.certificate-card:hover{
    transform:translateY(-5px);
}
.certificate-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}
.certificate-card h4{
    padding:15px 20px 5px;
    color:#25204f;
}
.certificate-card p{
    padding:0 20px 20px;
}
.contact-cta{
    background:#f2ebdc;
    border-radius:25px;
    text-align:center;
    padding:60px 40px;
    margin-bottom:25px;
}
.contact-cta h2{
    font-family:'Playfair Display',serif;
    color:#25204f;
    font-size:42px;
    margin-bottom:15px;
}
.contact-cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:25px;
    color:#555;
    line-height:1.8;
}
.contact-cta a{
    display:inline-block;
    background:#25204f;
    color:white;
    padding:15px 35px;
    border-radius:50px;
    font-weight:500;
}
@media(max-width:900px){
    .navbar{
        flex-direction:column;
        gap:20px;
    }
    nav{
        flex-wrap:wrap;
        justify-content:center;
    }
    .hero{
        flex-direction:column;
        text-align:center;
    }
    .hero-text h1{
        font-size:55px;
    }
    .hero-text h4{
        font-size:22px;
    }
    .hero-image img{
        width:280px;
        height:360px;
    }
}
@media(max-width:600px){
    body{
        padding:10px;
    }
    .hero{
        padding:35px;
    }
    .hero-text h1{
        font-size:42px;
    }
    .hero-text h4{
        font-size:18px;
    }
    .logo{
        font-size:26px;
    }
}
.about{
    max-width:1200px;
    margin:auto;
    background:white;
    border-radius:30px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    margin-bottom:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
}
.about-text{
    flex:1;
}
.section-tag{
    color:#9c8db3;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:15px;
}
.about-text h1{
    font-family:'Playfair Display',serif;
    font-size:72px;
    color:#25204f;
    margin-bottom:25px;
}
.about-text p{
    line-height:1.9;
    color:#555;
    margin-bottom:15px;
}
.about-photo{
    flex:1;
    display:flex;
    justify-content:center;
}
.about-photo img{
    width:380px;
    height:500px;
    object-fit:cover;
    border-radius:40px;
    border:8px solid #f5d54c;
}
.personal-info{
    max-width:1200px;
    margin:auto;
    margin-bottom:25px;
}
.personal-info h2{
    font-family:'Playfair Display',serif;
    color:#25204f;
    margin-bottom:20px;
}
.info-container{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.info-card{
    background:white;
    padding:25px;
    border-radius:20px;
    border:1px solid #ece7dd;
    transition:.3s;
}
.info-card:hover{
    transform:translateY(-5px);
}
.info-card h4{
    color:#25204f;
    margin-bottom:10px;
}
.study-journey{
    max-width:1200px;
    margin:auto;
    margin-bottom:25px;
}
.study-journey h2{
    font-family:'Playfair Display',serif;
    color:#25204f;
    margin-bottom:20px;
}
.journey-container{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.journey-card{
    background:#f7f2fa;
    padding:25px;
    border-radius:20px;
    border:1px solid #ece7dd;
}
.journey-card h4{
    color:#25204f;
    margin-bottom:10px;
}
.skills-tools{
    max-width:1200px;
    margin:auto;
    background:white;
    border-radius:25px;
    padding:40px;
    margin-bottom:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
}
.skills-tools h2{
    font-family:'Playfair Display',serif;
    color:#25204f;
    margin-bottom:15px;
}
.skills-tools p{
    color:#555;
    margin-bottom:30px;
}
.skills-group,
.tools-group{
    margin-top:30px;
}
.skills-group h3,
.tools-group h3{
    margin-bottom:20px;
    color:#25204f;
}
.skills-container,
.tools-container{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(180px,1fr));

    gap:20px;
}
.skill-card,
.tool-card{
    background:#faf8f4;
    border:1px solid #ece7dd;
    border-radius:18px;
    padding:25px;
    text-align:center;
    transition:.3s;
}
.skill-card:hover,
.tool-card:hover{
    transform:translateY(-5px);
    background:#f5d54c;
}
.skill-card i,
.tool-card i{
    font-size:42px;
    margin-bottom:15px;
    color:#25204f;
}
.motivation{
    max-width:1200px;
    margin:auto;
    background:#fff8df;
    border-radius:25px;
    padding:50px;
    margin-bottom:25px;
}
.motivation h2{
    font-family:'Playfair Display',serif;
    color:#25204f;
    margin-bottom:15px;
}
.motivation h3{
    margin-bottom:15px;
    color:#25204f;
}
.motivation p{
    color:#555;
    line-height:1.8;
}
.quote{
    max-width:1200px;
    margin:auto;
    background:#f5ecd0;
    border-radius:25px;
    padding:50px;
    margin-bottom:25px;
    text-align:center;
}

.quote blockquote{
    font-family:'Playfair Display',serif;
    font-size:30px;
    line-height:1.7;
    color:#25204f;
}
.work-hero{
    max-width:1200px;
    margin:auto;
    background:#f5f0fa;
    border-radius:30px;
    padding:70px;
    margin-bottom:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.section-tag{
    display:inline-block;
    background:#ffffff;
    color:#7f6fa5;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.work-hero h1{
    font-family:'Playfair Display',serif;
    font-size:68px;
    color:#25204f;
    margin-bottom:20px;
}
.work-hero p{
    max-width:700px;
    line-height:1.9;
    color:#555;
}
.project-list{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
    margin-bottom:40px;
}
.project-card{
    background:white;
    border-radius:25px;
    padding:35px;
    border:1px solid #ece7dd;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
}
.project-card:hover{
    transform:translateY(-8px);
}
.project-card h3{
    font-family:'Playfair Display',serif;
    color:#25204f;
    font-size:30px;

    margin-bottom:15px;
}
.project-card p{
    color:#666;
    line-height:1.8;

    margin-bottom:25px;
}
.project-card a{
    display:inline-block;

    background:#25204f;
    color:white;

    padding:12px 28px;

    border-radius:50px;

    font-size:14px;
    font-weight:500;

    transition:.3s;
}
.project-card a:hover{
    transform:translateX(5px);
}
.project-list > a:last-child{
    grid-column:1/-1;
    justify-self:center;
    background:#f5d54c;
    color:#25204f;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    margin-top:10px;
    transition:.3s;
}
.project-list > a:last-child:hover{
    transform:translateY(-3px);
}
.work-closing{
    max-width:1200px;
    margin:auto;
    background:#f4ebd2;
    border-radius:25px;
    padding:60px;
    text-align:center;
    margin-bottom:30px;
}
.work-closing h2{
    font-family:'Playfair Display',serif;
    color:#25204f;
    font-size:42px;
    margin-bottom:20px;
}
.work-closing p{
    max-width:750px;
    margin:auto;
    color:#555;
    line-height:1.9;
}
.portfolio-header{
    max-width:1200px;
    margin:auto;
    background:#f5f0fa;
    border-radius:30px;
    padding:70px;
    margin-bottom:35px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}
.portfolio-header p:first-child{
    display:inline-block;
    background:white;
    color:#7f6fa5;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}
.portfolio-header h1{
    font-family:'Playfair Display',serif;
    font-size:68px;
    color:#25204f;
    margin-bottom:20px;
}
.portfolio-header p:last-child{
    max-width:700px;
    line-height:1.9;
    color:#555;
}
.portfolio-project{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    background:white;
    padding:35px;
    border-radius:25px;
    margin-bottom:25px;
    border:1px solid #ece7dd;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
    transition:.4s;
}

.portfolio-project:hover{
    transform:translateY(-5px);
}
.project-image{
    overflow:hidden;
    border-radius:20px;
}
.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}
.portfolio-project:hover img{
    transform:scale(1.05);
}
.project-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.project-content h2{
    font-family:'Playfair Display',serif;
    color:#25204f;
    font-size:40px;
    margin-bottom:15px;
}
.project-content p{
    line-height:1.9;
    color:#555;

    margin-bottom:20px;
}
.project-content h4{
    color:#25204f;
    margin-bottom:15px;
}
.project-content ul{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.project-content li{
    background:#f5f0fa;
    color:#5e4b8b;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:500;
}
.portfolio-closing{
    max-width:1200px;
    margin:auto;
    background:#f4ebd2;
    border-radius:25px;
    padding:60px;
    text-align:center;
    margin-top:35px;
    margin-bottom:30px;
}
.portfolio-closing h2{
    font-family:'Playfair Display',serif;
    color:#25204f;
    font-size:42px;
    margin-bottom:15px;
}
.portfolio-closing p{
    max-width:750px;
    margin:auto;
    line-height:1.9;
    color:#555;
}
.contact-header{
    max-width:1200px;
    margin:auto;
    background:#f5f0fa;
    border-radius:30px;
    padding:70px;
    margin-bottom:30px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}
.contact-header p:first-child{
    display:inline-block;
    background:white;
    color:#7f6fa5;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.contact-header h1{
    font-family:'Playfair Display',serif;
    font-size:68px;
    color:#25204f;
    margin-bottom:20px;
}

.contact-header p:last-child{
    max-width:700px;
    margin:auto;
    line-height:1.9;
    color:#555;
}
.contact-links{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-bottom:35px;
}
.contact-card{
    background:white;
    padding:35px;
    border-radius:25px;
    border:1px solid #ece7dd;
    text-align:center;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
}
.contact-card:hover{
    transform:translateY(-8px);
}
.contact-card i{
    font-size:42px;
    color:#25204f;
    margin-bottom:20px;
}
.contact-card h3{
    font-family:'Playfair Display',serif;
    color:#25204f;
    margin-bottom:15px;
    font-size:28px;
}
.contact-card a{
    color:#666;
    font-weight:500;
    word-break:break-word;
    transition:.3s;
}
.contact-card a:hover{
    color:#25204f;
}
.contact-closing{
    max-width:1200px;
    margin:auto;
    background:#f4ebd2;
    border-radius:25px;
    padding:60px;
    text-align:center;
    margin-bottom:30px;
}
.contact-closing h2{
    font-family:'Playfair Display',serif;
    font-size:42px;
    color:#25204f;
    margin-bottom:15px;
}
.contact-closing p{
    max-width:700px;
    margin:auto;
    line-height:1.9;
    color:#555;
}
