body{
margin:0;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
background-image: url("pexels-3.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color:white;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 10%;
background:#0c0202;
}
.profile-pic{
width:180px;
height:180px;
border-radius:50%;
object-fit:cover;
display:block;
margin:auto;
}

nav a{
color:white;
margin:15px;
text-decoration:none;
}

.hero{
height:60vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}

.name{
font-size:60px;
color:#fffefe;
}

.btn{
margin-top:20px;
padding:10px 20px;
background:#fdfeff;
color:black;
cursor:pointer;
}

section{
padding:80px 10%;
text-align:center;
}

.skills-container{
display:flex;
justify-content:center;
flex-wrap:wrap;
}

.skill{
padding:15px;
margin:10px;
background:#1e293b;
border-radius:10px;
transition:0.3s;
}

.skill:hover{
transform:scale(1.1);
background:#150202;
color:rgb(255, 255, 255);
}

.projects-container{
display:flex;
justify-content:center;
flex-wrap:wrap;
}
#certifications {
  padding: 60px 20px;
  text-align: center;
}

#certifications h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #00f7ff;
}

.cert-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.cert-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 247, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  width: 260px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.15);
  transition: 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(245, 110, 61, 0.948);
}

.cert-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 15px;
}

.cert-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #ffffff;
}

.cert-card p {
  color: #b0faff;
  font-size: 16px;
}

.card{
background:#1e293b;
padding:20px;
margin:15px;
border-radius:10px;
width:250px;
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
}
.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:100px 10%;
}
.social-icons{
text-align:center;
margin-top:20px;
}

.social-icons a{
font-size:30px;
margin:10px;
color:white;
background:#333;
padding:10px;
border-radius:50%;
display:inline-block;
}

.social-icons a:hover{
background:#00ffcc;
color:black;
}

