/*==================================================
                GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

/*==================================================
                    RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#F7F4EF;

    color:#1b1b1b;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

/*==================================================
                    COLOR
==================================================*/

:root{

--black:#171717;

--white:#ffffff;

--cream:#F7F4EF;

--gray:#666666;

--light:#ECE7DF;

--border:#E7E2DA;

--shadow:0 18px 40px rgba(0,0,0,.08);

}

/*==================================================
                    HEADER
==================================================*/

header{

position:fixed;

top:20px;

left:50%;

transform:translateX(-50%);

width:92%;

z-index:999;

}

.navbar{

height:82px;

background:rgba(255,255,255,.82);

backdrop-filter:blur(20px);

border-radius:18px;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 35px;

box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.logo h1{

font-family:'Playfair Display',serif;

font-size:34px;

font-weight:700;

}

.logo span{

color:#9d8d7d;

}

.menu{

display:flex;

gap:40px;

}

.menu a{

font-size:15px;

font-weight:500;

color:#444;

position:relative;

transition:.3s;

}

.menu a:hover{

color:black;

}

.menu a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#171717;

transition:.35s;

}

.menu a:hover::after{

width:100%;

}

#darkMode{

width:48px;

height:48px;

border:none;

background:#171717;

color:white;

border-radius:14px;

cursor:pointer;

font-size:18px;

transition:.3s;

}

#darkMode:hover{

transform:rotate(20deg);

}

/*==================================================
                    HERO
==================================================*/

.hero{

min-height:100vh;

display:flex;

align-items:center;

padding-top:130px;

position:relative;

overflow:hidden;

background:#F7F4EF;

}

/* Decoration */

.circle1{

position:absolute;

width:650px;

height:650px;

border-radius:50%;

background:#EFE5D8;

right:-180px;

top:-150px;

opacity:.5;

filter:blur(10px);

}

.circle2{

position:absolute;

width:350px;

height:350px;

border-radius:50%;

background:#DDD4C7;

left:-100px;

bottom:-120px;

opacity:.45;

}

.circle3{

position:absolute;

width:120px;

height:120px;

background:#ffffff;

border-radius:50%;

right:200px;

top:160px;

box-shadow:0 15px 30px rgba(0,0,0,.05);

}

.hero-container{

display:grid;

grid-template-columns:1fr 480px;

align-items:center;

gap:90px;

position:relative;

z-index:5;

}

/*==================================================
                HERO LEFT
==================================================*/

.hero-badge{

display:inline-flex;

align-items:center;

gap:12px;

padding:12px 22px;

background:white;

border-radius:40px;

font-size:14px;

font-weight:600;

box-shadow:var(--shadow);

margin-bottom:30px;

}

.hero-badge span{

width:10px;

height:10px;

background:#00C853;

border-radius:50%;

}

.hero-left h1{

font-size:82px;

line-height:1.05;

font-family:'Playfair Display',serif;

margin-bottom:20px;

}

.hero-left h1 span{

color:#5d5d5d;

}

.hero-left h2{

font-size:30px;

font-weight:500;

margin-bottom:25px;

color:#4e4e4e;

}

.hero-left p{

font-size:18px;

line-height:2;

color:#666;

max-width:620px;

margin-bottom:40px;

}

/*==================================================
                    BUTTON
==================================================*/

.hero-button{

display:flex;

gap:20px;

margin-bottom:35px;

}

.btn{

display:inline-flex;

align-items:center;

gap:10px;

padding:17px 34px;

background:#171717;

color:white;

border-radius:14px;

font-weight:600;

transition:.35s;

}

.btn:hover{

transform:translateY(-6px);

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.btn-outline{

display:inline-flex;

align-items:center;

gap:10px;

padding:17px 34px;

border:2px solid #171717;

border-radius:14px;

color:#171717;

font-weight:600;

transition:.35s;

}

.btn-outline:hover{

background:#171717;

color:white;

}

/*==================================================
                SOCIAL
==================================================*/

.hero-social{

display:flex;

gap:18px;

}

.hero-social a{

width:55px;

height:55px;

display:flex;

justify-content:center;

align-items:center;

background:white;

border-radius:16px;

font-size:20px;

color:#171717;

box-shadow:var(--shadow);

transition:.35s;

}

.hero-social a:hover{

background:#171717;

color:white;

transform:translateY(-6px);

}
/*==================================================
                HERO PHOTO
==================================================*/

.hero-right{

    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;

}

.photo-card{

    width:440px;
    height:560px;

    background:#ffffff;

    padding:15px;

    border-radius:30px;

    position:relative;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.4s;

}

.photo-card:hover{

    transform:translateY(-10px);

}

/* Glow */

.photo-card::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:#EEE4D8;

    right:-70px;

    top:-70px;

    opacity:.7;

}

.photo-card::after{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    border-radius:50%;

    background:#DDD3C8;

    left:-60px;

    bottom:-60px;

    opacity:.6;

}

.photo-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    border-radius:22px;

    position:relative;

    z-index:2;

}

/*==================================================
                STATISTICS
==================================================*/

.statistics{

    margin-top:-70px;

    position:relative;

    z-index:10;

}

.stats-card{

    background:white;

    border-radius:24px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    align-items:center;

    padding:35px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.stat{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

}

.stat .icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#F4F1EC;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    color:#171717;

}

.stat h2{

    font-size:36px;

    font-family:'Playfair Display',serif;

    margin-bottom:5px;

}

.stat p{

    color:#666;

    font-size:15px;

}

.divider{

    width:1px;

    height:70px;

    background:#E6E1D8;

    justify-self:center;

}

/*==================================================
                SECTION HEADER
==================================================*/

section{

    padding:120px 0;

}

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-header span{

    display:inline-block;

    background:white;

    padding:10px 24px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

    margin-bottom:20px;

}

.section-header h2{

    font-size:48px;

    font-family:'Playfair Display',serif;

    margin-bottom:18px;

}

.section-header p{

    max-width:720px;

    margin:auto;

    color:#666;

    line-height:1.9;

}

/*==================================================
                    ABOUT
==================================================*/

.about{

    background:#ffffff;

}

.about-wrapper{

    display:grid;

    grid-template-columns:400px 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    background:#F5F2ED;

    padding:16px;

    border-radius:26px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.about-image img{

    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:18px;

}

.about-content h3{

    font-size:38px;

    font-family:'Playfair Display',serif;

    margin-bottom:25px;

}

.about-content p{

    color:#666;

    line-height:2;

    margin-bottom:20px;

}

.about-information{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:35px;

}

.info-card{

    background:#F8F6F2;

    padding:22px;

    border-radius:18px;

    display:flex;

    gap:18px;

    align-items:center;

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.08);

}

.info-card i{

    width:58px;

    height:58px;

    border-radius:14px;

    background:#171717;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.info-card h4{

    margin-bottom:5px;

    font-size:16px;

}

.info-card p{

    margin:0;

    color:#666;

    font-size:14px;

}
/*==================================================
                EDUCATION
==================================================*/

.education{

    background:#F7F4EF;

}

.education-card{

    background:#ffffff;

    padding:45px;

    border-radius:28px;

    display:flex;

    gap:40px;

    align-items:flex-start;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.35s;

}

.education-card:hover{

    transform:translateY(-10px);

}

.education-year{

    min-width:180px;

    background:#171717;

    color:white;

    padding:18px 25px;

    border-radius:18px;

    text-align:center;

    font-weight:600;

    font-size:18px;

}

.education-detail h3{

    font-size:34px;

    font-family:'Playfair Display',serif;

    margin-bottom:10px;

}

.education-detail h4{

    font-size:20px;

    color:#666;

    margin-bottom:20px;

}

.education-detail p{

    color:#666;

    line-height:2;

}

/*==================================================
                    SKILLS
==================================================*/

.skills{

    background:#ffffff;

}

.skills-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.skill-card{

    background:#ffffff;

    border:1px solid #ECE7DF;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}

.skill-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.skill-card i{

    width:80px;

    height:80px;

    background:#F6F2EC;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:25px;

    font-size:38px;

    color:#171717;

}

.skill-card h3{

    font-size:24px;

    margin-bottom:15px;

    font-family:'Playfair Display',serif;

}

.skill-card p{

    color:#666;

    line-height:1.8;

}

/*==================================================
                LEARNING
==================================================*/

.learning{

    background:#F7F4EF;

}

.learning-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.learning-card{

    background:white;

    padding:35px;

    border-radius:24px;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    position:relative;

    overflow:hidden;

}

.learning-card::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:#F3EEE6;

    border-radius:50%;

    right:-40px;

    top:-40px;

}

.learning-card:hover{

    transform:translateY(-10px);

}

.learning-card i{

    width:75px;

    height:75px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#171717;

    color:white;

    border-radius:18px;

    font-size:32px;

    margin-bottom:25px;

    position:relative;

    z-index:2;

}

.learning-card h3{

    font-size:28px;

    font-family:'Playfair Display',serif;

    margin-bottom:15px;

    position:relative;

    z-index:2;

}

.learning-card p{

    color:#666;

    line-height:1.9;

    position:relative;

    z-index:2;

}
/*==================================================
                    PROJECTS
==================================================*/

.projects{
    background:#ffffff;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;
}

.project-card{

    background:#fff;

    border-radius:28px;

    padding:35px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

    overflow:hidden;

    border:1px solid #ECE7DF;

}

.project-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:6px;

    background:#171717;

}

.project-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.project-icon{

    width:80px;

    height:80px;

    background:#F5F2EC;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:#171717;

    margin-bottom:25px;

}

.project-card h3{

    font-family:'Playfair Display',serif;

    font-size:30px;

    margin-bottom:15px;

}

.project-card p{

    color:#666;

    line-height:1.9;

    margin:20px 0;

}

.tech{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:20px;

}

.tech span{

    background:#F4F1EC;

    padding:8px 15px;

    border-radius:10px;

    font-size:13px;

    font-weight:500;

}

.status{

    display:inline-block;

    padding:8px 16px;

    border-radius:10px;

    font-size:13px;

    font-weight:600;

}

.completed{

    background:#E8F5E9;

    color:#2E7D32;

}

.progress{

    background:#FFF3E0;

    color:#EF6C00;

}

/*==================================================
                    CONTACT
==================================================*/

.contact{

    background:#F7F4EF;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:360px 1fr;

    gap:45px;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-item{

    background:white;

    padding:25px;

    border-radius:20px;

    display:flex;

    align-items:center;

    gap:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.contact-item:hover{

    transform:translateY(-8px);

}

.contact-item i{

    width:60px;

    height:60px;

    background:#171717;

    color:white;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

}

.contact-item h3{

    margin-bottom:5px;

}

.contact-item p{

    color:#666;

    line-height:1.7;

}

/*==================================================
                CONTACT FORM
==================================================*/

.contact-form{

    background:white;

    padding:40px;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:16px;

    border:1px solid #DDD;

    border-radius:14px;

    background:#FAFAFA;

    font-size:15px;

    font-family:'Poppins',sans-serif;

}

.contact-form input:focus,

.contact-form textarea:focus{

    outline:none;

    border-color:#171717;

    background:white;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    padding:18px;

    background:#171717;

    color:white;

    border:none;

    border-radius:14px;

    font-size:16px;

    cursor:pointer;

    transition:.35s;

}

.contact-form button:hover{

    background:#333;

    transform:translateY(-4px);

}

/*==================================================
                    FOOTER
==================================================*/

footer{

    background:#171717;

    color:white;

    padding:70px 0;

    text-align:center;

}

.footer-content h2{

    font-size:42px;

    font-family:'Playfair Display',serif;

    margin-bottom:15px;

}

.footer-content span{

    color:#C2B8A7;

}

.footer-content p{

    color:#CFCFCF;

    margin-bottom:25px;

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-bottom:30px;

}

.footer-social a{

    width:55px;

    height:55px;

    border-radius:15px;

    background:#2D2D2D;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:20px;

    transition:.35s;

}

.footer-social a:hover{

    background:white;

    color:#171717;

    transform:translateY(-6px);

}

.copyright{

    color:#999;

    font-size:14px;

}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

.hero-container,
.about-wrapper,
.contact-wrapper{

grid-template-columns:1fr;

}

.hero-right{

order:-1;

}

.stats-card{

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.divider{

display:none;

}

.about-information{

grid-template-columns:1fr;

}

.education-card{

flex-direction:column;

}

}

@media(max-width:768px){

.menu{

display:none;

}

.hero-left h1{

font-size:54px;

}

.hero-left h2{

font-size:24px;

}

.hero-button{

flex-direction:column;

}

.hero-button a{

width:100%;

justify-content:center;

}

.stats-card{

grid-template-columns:1fr;

}

.skills-grid,
.learning-grid,
.project-grid{

grid-template-columns:1fr;

}

.section-header h2{

font-size:36px;

}

.photo-card{

width:100%;

height:500px;

}

.about-image img{

height:420px;

}

}
