*{
  margin:0;
  padding:0; 
  box-sizing:border-box;
  font-family:Poppins;
}
body{
  background: linear-gradient(135deg,#020617,#0f172a,#1e3a8a);
  color:white;
  min-height:100vh;
  transition:all 0.5s ease;
}
.gradient-text{
  background:linear-gradient(45deg,#2563eb,#38bdf8);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 10%;
  background:rgba(0,0,0,0.4);
  position:sticky;
  top:0;
  z-index:999;
}
.links,.ul2{
  display:flex;
  list-style:none;
}
.ul2{
  gap:25px;
}
.links a,.ul2 a{
  text-decoration:none;
  color:white;
  transition:0.3s;
}
.links a:hover,.ul2 a:hover{
  color:#38bdf8;
}
.lic button{
  width: 100%;
  fill:#fff;
  transition:0.3s;
  background-color: transparent;
  border: none;
  padding-bottom: 0;
}
.lic button:hover{
  fill:#38bdf8;
}
.ul2{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 350px;
  z-index: 999;
  background:rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding-top: 20px;
  
}
.ul2 li{
  width: 100%;
  height: 40px;
}
.ul2 li a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.lic{
  display: none;
}
.hideOnMob{
  display: block;
}
.social-links{
  position:fixed;
  top:50%;
  right:10px;
  display:flex;
  flex-direction:column;
  gap:20px;
  transform:translateY(-50%);
  z-index:999;
}
.social-links a img{
  width:35px;
  transition:0.3s;
}
.social-links a.social-facebook img:hover{
  content:url("images/facebook-new1.png");
  transform:scale(1.2);
}
.social-links a.social-linkedin img:hover{
  content:url("images/linkedin1.png");
  transform:scale(1.2);
}
.social-links a.social-instagram img:hover{
  content:url("images/instagram-new2.png");
  transform:scale(1.2);
}
.social-links a.social-x img:hover{
  content:url("images/twitter1.png");
  transform:scale(1.2);
}
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:100px 10%;
  flex-wrap:wrap;
}
.hero h1{
  font-size:50px;
}
.hero p{
  margin:10px 0;
  color:#cbd5f5;
}
.hero button{
  padding:12px 25px;
  border:none;
  border-radius:6px;
  cursor:pointer;
  color:white;
  background:linear-gradient(45deg,#2563eb,#38bdf8);
  transition:0.3s;
  margin-bottom: 30px;
}
.hero button:hover{
  transform:scale(1.1);
  background:linear-gradient(45deg,#1d4ed8,#60a5fa);
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
}
.hero img{
  width:350px;
  border-radius:20px;
  transition:0.4s;
  margin: auto;
  box-shadow:0 10px 25px rgba(46, 188, 235, 0.977);
}
.hero img:hover{
  transform:scale(1.05);
}
.hero-btn{
  display: flex;
  justify-content: space-evenly;
  margin-top: 30px;
}
section{
  text-align:center;
  padding:100px 10%;
  transition:all 0.5s ease;
}
.section-animate{
  opacity:0;
  transform:translateY(30px);
  transition:all 0.8s ease-out;
}
.section-animate.visible{
  opacity:1;
  transform:translateY(0);
}
.education-grid,.services-grid,.skill-container{
  display:grid;
  gap:20px;
  margin-top:30px;
}
.education-grid{
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
}
.edu-card,.service-card,.card,.cert{
  background:rgba(255,255,255,0.05);
  padding:20px;
  border-radius:10px;
  transition:0.4s;
  text-align:center;
}
.edu-card:hover,.service-card:hover,.card:hover,.cert:hover{
  transform:scale(1.05);
  box-shadow:0 15px 30px rgba(3, 188, 239, 0.4);
  background:#2563eb;
  color:white;
}
.cert-flex{
  display:flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top:60px;
}
.cert img{
  width:300px;
  height: 90%;
  object-fit:cover;
  border-radius:8px;
  transition:all 0.4s ease;
  margin-bottom: 10px;
}
.cert img:hover{
  transform:scale(1.1);
  opacity:0.9;
  box-shadow:0 15px 30px rgba(0, 0, 0, 0.6);
}
.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:40px;
}
.project{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  padding:20px;
  border-radius:10px;
  transition:0.4s;
}
.project:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 30px rgba(3, 188, 239, 0.4);
  background:#2563eb;
  color:white;
}
.project img{
  width:100%;
  height: 200px;
  border-radius:10px;
  transition:all 0.4s ease;
  margin-bottom: 20px;
}
.project img:hover{
  transform:scale(1.1);
  opacity:0.9;
  box-shadow:0 15px 30px rgba(0, 0, 0, 0.6);
}
.project-btn{
  display:inline-block;
  margin-top:10px;
  padding:8px 15px;
  border-radius:6px;
  background:linear-gradient(45deg,#2563eb,#38bdf8);
  color:white;
  text-decoration:none;
  transition:0.3s;
}
.project-btn:hover{
  transform:scale(1.1);
  background:linear-gradient(45deg,#1d4ed8,#60a5fa);
}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:30px;
}
.testimonial-card{
  background:rgba(255,255,255,0.05);
  padding:20px;
  border-radius:10px;
  transition:0.4s;
}
.testimonial-card:hover{
  transform:scale(1.05);
  box-shadow:0 15px 30px rgba(3, 188, 239, 0.4);
  background:#2563eb;
}
.testimonial-card .client{
  width:100px;
  border-radius:50%;
  margin-bottom:10px;
}
.stars{
  color:gold;
  margin:5px 0;
}
.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  margin-top:30px;
}
.contact-item{
  display:flex;
  justify-content: center;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,0.05);
  padding:15px;
  border-radius:10px;
  transition:0.3s;
}
.contact-item img{
  width:30px;
}
.contact-item:hover{
  transform:scale(1.05);
  box-shadow:0 15px 30px rgba(3, 188, 239, 0.4);
  background:#2563eb;
}
.contact form{
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:25px;
}
.form-group{
  position:relative;
  display:flex;
  flex-direction:column;
}
.form-group input,.form-group textarea{
  padding:15px;
  border-radius:8px;
  border:2px solid rgba(255,255,255,0.2);
  background:rgba(0,0,0,0.1);
  color:white;
  font-size:16px;
  outline:none;
  transition:0.3s;
  resize:none;
}
.form-group label{
  position:absolute;
  top:50%;
  left:15px;
  transform:translateY(-50%);
  color:rgba(255,255,255,0.5);
  pointer-events:none;
  transition:0.3s;
  background:linear-gradient(135deg,#020617,#0f172a,#1e3a8a);
  padding:0 5px;
}
.form-group input:focus,.form-group textarea:focus{
  border-color:#38bdf8;
  background:rgba(56,189,248,0.1);
}
.form-group input:focus + label,.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,.form-group textarea:not(:placeholder-shown) + label{
  top:-10px;
  font-size:12px;
  color:#38bdf8;
}
.contact button{
  padding:15px 30px;
  font-size:16px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  background:linear-gradient(45deg,#2563eb,#38bdf8);
  color:white;
  transition:0.3s;
}
.contact button:hover{
  background:linear-gradient(45deg,#1d4ed8,#60a5fa);
  transform:scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
}
footer{
  text-align:center;
  padding:20px;
  background:rgba(0,0,0,0.4);
  transition:all 0.3s ease;
}
@media(max-width:1450px){
  .hideOnMob{
    display: none;
  }
  .lic{
    display: block;
  }
}
@media(min-width:1450px){
  .links{
    gap:25px;
  }
}
@media(max-width:750px){
  .hero img{
    width: 200px;
    margin-bottom: 50px;
  }
  .hero h1{
    font-size: 32px;
  }
  .cert{
    margin-top: 20px;
  }
}
