body{
margin:0;
font-family:'Poppins', sans-serif;
}

/* Header Section */

.cert-header{
background: url('certificate.jpg') no-repeat center/cover;
color:white;
text-align:center;
padding:100px 20px;
}

.cert-header h1{
font-family: 'Playfair Display', serif;
font-size: 60px;
font-style: italic;
font-weight: 600;
letter-spacing: 1px;
}

.line{
width:80px;
height:4px;
background:#e6b85c;
margin:10px auto;
}
.navbar{
position:absolute;
top:0;
left:0;
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
background:transparent;
z-index:1000;
padding:10px 20px;
}


/* LOGO */

.logo{
display:flex;
align-items:center;
color:white;
font-size:20px;
font-weight:bold;
}

.logo img{
height:40px;
margin-right:10px;
}

.cert-section {
    padding: 50px 20px;
    background: #f5f5f5;
    text-align: center;
}

.cert-section h1 {
    font-size: 40px;
    margin-bottom: 40px;
}

.cert-card {
    max-width: 800px;
    margin: 25px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.cert-card img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.cert-card h2 {
    font-family:Georgia, serif;
    font-size:30px;
    color:#1f4f5a;
    font-weight:bold;
    margin-bottom:20px;
}

.cert-desc {
    font-family:Georgia, serif;
    font-size:18px;
    color:#2f3e46;
    font-style:italic;
    line-height:1.6;
    max-width:700px;
    margin:auto;

}
/* MENU BUTTONS */ 
.menu{
display:flex;
justify-content:center;
gap:20px;
margin-top:50px;
flex-wrap:wrap;
}

.menu a{
padding:12px 28px;
background:#8b7355;
color:white;
text-decoration:none;
font-family: 'poppins', 'sans-serif';
font-size:16px;
border-radius:6px;
transition:0.3s;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.menu a:hover{
background:#6f5a44;
}

/* SOCIAL ICONS */

.social{
margin-top:40px;
}

.social a{
font-size:28px;
margin:15px;
text-decoration:none;
}
.social a:hover{
transform:scale(1.2);
transition:0.3s;
}
.linkedin i{
color:#0077b5;
}

.email i{
color:#d44638;
}

.github i{
color:#000000;
}

/* FOOTER */

footer{
margin-top:60px;
padding:50px 0;
text-align:center;
background:#f1f5f9;
}

/* RESPONSIVE DESIGN */

@media (max-width:768px){

.navbar{
flex-direction:column;
align-items:flex-start;
}

}