/*=========================
 GOOGLE FONTS
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

/*=========================
 RESET
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b1120;
    color:#ffffff;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*=========================
 NAVBAR
=========================*/

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#08101d;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 8%;

    z-index:1000;

    box-shadow:0 5px 15px rgba(0,0,0,.3);

}

.logo{

    color:#FFD369;

    font-size:30px;

    font-weight:700;

    font-family:'Playfair Display',serif;

}

.nav-links{

    display:flex;

    gap:30px;

}

.nav-links a{

    color:white;

    transition:.3s;

    font-size:15px;

}

.nav-links a:hover,
.nav-links a.active{

    color:#FFD369;

}

/*=========================
 HERO
=========================*/

.hero{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:140px 8% 80px;

    gap:60px;

}

.hero-text{

    flex:1;

}

.small-title{

    color:#FFD369;

    letter-spacing:3px;

    margin-bottom:20px;

}

.hero h1{

    font-size:65px;

    font-family:'Playfair Display',serif;

    margin-bottom:20px;

    line-height:1.1;

}

.hero h3{

    font-size:30px;

    font-weight:500;

    margin-bottom:15px;

}

.hero-description{

    color:#d6d6d6;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn{

    background:#FFD369;

    color:#111;

    padding:14px 30px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    transform:translateY(-5px);

}

.btn-outline{

    border:2px solid #FFD369;

    color:#FFD369;

    padding:14px 30px;

    border-radius:40px;

    transition:.3s;

}

.btn-outline:hover{

    background:#FFD369;

    color:#111;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:350px;

    height:350px;

    object-fit:cover;

    border-radius:50%;

    border:6px solid #FFD369;

    box-shadow:0 0 40px rgba(255,211,105,.3);

}

/*=========================
 COMMON SECTION
=========================*/

section{

    padding:90px 8%;

}

.section-heading{

    margin-bottom:50px;

}

.section-heading span{

    color:#FFD369;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

}

.section-heading h2{

    font-size:40px;

    margin-top:10px;

    font-family:'Playfair Display',serif;

}

/*=========================
 ABOUT
=========================*/

.content-box{

    background:#121b2d;

    padding:35px;

    border-radius:15px;

    box-shadow:0 5px 15px rgba(0,0,0,.3);

}

.content-box p{

    color:#dddddd;

    font-size:17px;

}

/*=========================
 EDUCATION
=========================*/

.timeline{

    display:grid;

    gap:25px;

}

.timeline-card{

    background:#121b2d;

    padding:25px;

    border-left:5px solid #FFD369;

    border-radius:10px;

    transition:.3s;

}

.timeline-card:hover{

    transform:translateX(8px);

}

.timeline-card h3{

    margin-bottom:10px;

}

.timeline-card span{

    color:#FFD369;

    font-weight:600;

}
/*=========================
 CERTIFICATIONS
=========================*/

.card-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.card{

    background:#121b2d;

    padding:30px;

    border-radius:15px;

    text-align:center;

    transition:.3s;

    border:1px solid rgba(255,255,255,.08);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.card i{

    font-size:40px;

    color:#FFD369;

    margin-bottom:20px;

}

.card h3{

    font-size:20px;

    margin-bottom:12px;

}

.card p{

    color:#cfcfcf;

}

.card span{

    color:#FFD369;

    font-weight:600;

}

.cert-card{

    text-align:left;

}

.cert-image{

    width:100%;

    height:180px;

    object-fit:cover;

    border-radius:10px;

    margin-bottom:20px;

    border:1px solid rgba(255,255,255,.08);

}

.cert-card h3{

    text-align:left;

}

.cert-card p,
.cert-card span{

    text-align:left;

    display:block;

}

/*=========================
 ABOUT / STRENGTHS
=========================*/

.strengths-list{

    margin-top:25px;

    list-style:none;

    padding:0;

}

.strengths-list li{

    color:#dddddd;

    font-size:16px;

    margin:12px 0;

    display:flex;

    align-items:flex-start;

    gap:10px;

}

.strengths-list li i{

    color:#FFD369;

    margin-top:5px;

}

/*=========================
 SKILLS
=========================*/

.skills-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.skill-box{

    background:#121b2d;

    padding:30px;

    border-radius:15px;

    transition:.3s;

}

.skill-box:hover{

    transform:translateY(-8px);

}

.skill-box h3{

    color:#FFD369;

    margin-bottom:20px;

}

.skill-box ul li{

    margin:12px 0;

    color:#dddddd;

}

/*=========================
 PROJECTS
=========================*/

.project-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.project-card{

    background:#121b2d;

    padding:30px;

    border-radius:15px;

    transition:.3s;

}

.project-card:hover{

    transform:translateY(-8px);

}

.project-card h3{

    color:#FFD369;

    margin-bottom:20px;

}

.project-card p{

    color:#d8d8d8;

    margin-bottom:15px;

}

/*=========================
 CONTACT
=========================*/

.contact-box{

    background:#121b2d;

    padding:35px;

    border-radius:15px;

}

.contact-box p{

    margin:20px 0;

    font-size:18px;

}

.contact-box i{

    color:#FFD369;

    margin-right:12px;

}

.contact-box a{

    color:white;

    transition:.3s;

}

.contact-box a:hover{

    color:#FFD369;

}

/*=========================
 FOOTER
=========================*/

footer{

    background:#08101d;

    text-align:center;

    padding:40px 20px;

    margin-top:60px;

}

footer h2{

    color:#FFD369;

    font-family:'Playfair Display',serif;

    margin-bottom:15px;

}

footer p{

    color:#cfcfcf;

    margin:8px 0;

}

/*=========================
 SCROLLBAR
=========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#FFD369;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#08101d;

}

/*=========================
 RESPONSIVE
=========================*/

@media(max-width:992px){

.hero{

    flex-direction:column-reverse;

    text-align:center;

}

.hero-buttons{

    justify-content:center;

}

.hero h1{

    font-size:50px;

}

.hero h3{

    font-size:24px;

}

.hero-image img{

    width:280px;

    height:280px;

}

}

@media(max-width:768px){

.navbar{

    flex-direction:column;

    padding:20px;

}

.nav-links{

    flex-wrap:wrap;

    justify-content:center;

    margin-top:20px;

    gap:15px;

}

.hero{

    padding-top:180px;

}

.section-heading h2{

    font-size:32px;

}

.hero h1{

    font-size:42px;

}

.hero-buttons{

    flex-direction:column;

    align-items:center;

}

.btn,

.btn-outline{

    width:220px;

    text-align:center;

}

.card-container,

.skills-container,

.project-container{

    grid-template-columns:1fr;

}

}

@media(max-width:480px){

.hero h1{

    font-size:34px;

}

.hero h3{

    font-size:20px;

}

.section-heading h2{

    font-size:28px;

}

.content-box,

.skill-box,

.project-card,

.card,

.contact-box{

    padding:22px;

}

}