/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f4f8fc;
    color:#333;
}

/* =========================
   NAVBAR
========================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    z-index:1000;
}

.navbar{

    width:90%;
    margin:auto;

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    font-size:28px;

    font-weight:700;

    color:#0066ff;

}

.navbar ul{

    display:flex;

    list-style:none;

}

.navbar ul li{

    margin-left:35px;

}

.navbar ul li a{

    text-decoration:none;

    color:#333;

    font-weight:500;

    transition:.3s;

}

.navbar ul li a:hover{

    color:#0066ff;

}

/* =========================
 HERO
========================= */

.hero{

    width:90%;

    margin:auto;

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}

.hero-text{

    flex:1;

}

.hero-text h4{

    color:#0066ff;

    font-size:22px;

}

.hero-text h1{

    font-size:60px;

    margin:10px 0;

}

.hero-text h3{

    color:#555;

    margin-bottom:20px;

}

.hero-text p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.hero-image{

    flex:1;

    text-align:center;

}

.hero-image img{

    width:380px;

    border-radius:25px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

/* BUTTON */

.button-group{

    display:flex;

    gap:20px;

}

.btn{

    display:inline-block;

    padding:14px 28px;

    background:#0066ff;

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    transition:.3s;

}

.btn:hover{

    background:#004ecc;

}

.btn2{

    display:inline-block;

    padding:14px 28px;

    border:2px solid #0066ff;

    color:#0066ff;

    text-decoration:none;

    border-radius:10px;

    transition:.3s;

}

.btn2:hover{

    background:#0066ff;

    color:white;

}

/* =========================
   ABOUT
========================= */

.about{
    padding:100px 8%;
    background:#fff;
}

.container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    width:350px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:40px;
    color:#0066ff;
    margin-bottom:20px;
}

.about-text p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

/* =========================
   TITLE
========================= */

.title{
    text-align:center;
    margin-bottom:60px;
}

.title h2{
    font-size:40px;
    color:#0066ff;
}

.title p{
    color:#666;
    margin-top:10px;
}

/* =========================
   SKILLS
========================= */

.skills{
    padding:100px 8%;
    background:#f7f9fc;
}

.skill-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    color:#0066ff;
    margin-bottom:20px;
}

.card ul{
    padding-left:20px;
}

.card li{
    margin-bottom:12px;
    color:#555;
}

/* =========================
   PROJECT
========================= */

.project{
    padding:100px 8%;
    background:#fff;
}

.project-container{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.project-image{
    flex:1;
}

.project-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.project-content{
    flex:1;
}

.project-content h3{
    color:#0066ff;
    font-size:32px;
    margin-bottom:20px;
}

.project-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.tags{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.tags span{
    background:#0066ff;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
}
/* =========================
   EXPERIENCE
========================= */

.experience{
    padding:100px 8%;
    background:#f7f9fc;
}

.experience-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.exp-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.exp-card:hover{
    transform:translateY(-10px);
}

.exp-card h3{
    color:#0066ff;
    margin-bottom:15px;
}

.exp-card p{
    color:#666;
    line-height:1.8;
}

/* =========================
   CONTACT
========================= */

.contact{
    padding:100px 8%;
    text-align:center;
    background:#0066ff;
    color:#fff;
}

.contact h2{
    font-size:42px;
    margin-bottom:20px;
}

.contact p{
    margin:10px 0;
    font-size:18px;
}

.contact .btn{
    display:inline-block;
    margin-top:25px;
    background:#fff;
    color:#0066ff;
}

.contact .btn:hover{
    background:#f0f0f0;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#003d99;
    color:#fff;
    text-align:center;
    padding:20px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

.hero,
.container,
.project-container{
    flex-direction:column;
    text-align:center;
}

.hero{
    padding-top:120px;
}

.hero-text h1{
    font-size:45px;
}

.hero-image img,
.about-image img{
    width:280px;
}

.button-group{
    justify-content:center;
}

}

@media(max-width:768px){

.navbar{
    flex-direction:column;
    height:auto;
    padding:20px 0;
}

.navbar ul{
    flex-wrap:wrap;
    justify-content:center;
    margin-top:20px;
}

.navbar ul li{
    margin:10px;
}

.hero-text h1{
    font-size:35px;
}

.title h2,
.about-text h2,
.contact h2{
    font-size:30px;
}

.btn,
.btn2{
    width:100%;
    text-align:center;
}

.button-group{
    flex-direction:column;
}

}

.social-icons{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a{
    font-size: 35px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover{
    color: #ffd700;
    transform: scale(1.2);
}