* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: radial-gradient(circle at right, #0ff, #020c1b, #020c1b);
  color: white;
}

/* NAVBAR */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: rgba(0,0,0,0.3);
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: white;
  font-size: 16px;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 28px;
}

.hero-text span {
  color: #00ffff;
}

.hero-text p {
  margin-top: 20px;
  line-height: 1.6;
  color: #ccc;
}

.social-links {
  margin: 25px 0;
  display: flex;
}

.social-links i{
  border: 2px solid cyan;
  border-radius: 50%;
  padding: 10px;
  margin-right: 10px;
  color: cyan;
  cursor: pointer;
}

/* Glow Button */
.button-more {
  margin-top: 20px;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  color: #000;
  background: #00f2ff;
  box-shadow: 0 0 15px #00f2ff, 0 0 40px #00f2ff;
  transition: 0.3s;
}

.button-more:hover {
  box-shadow: 0 0 30px #00f2ff, 0 0 70px #00f2ff;
  transform: scale(1.05);
}


/* IMAGE GLOW */
.hero-img .glow {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(45deg, cyan, purple);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 40px cyan;
}

.hero-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}



/* ABOUT & SERVICES */
#about,#services{
display:flex;
flex-wrap:wrap;
padding:60px 8%;
}
.university{
  color: #00ffff;
  font-size: 25px;
}

#about h2,#services h2{
  padding: 1rem;
}

#about img,#services img{
width:50%;
object-fit:cover;
}

#about div,#services div{
width:50%;
padding:20px;
}

/* SKILLS */
#skills{
  padding:60px 8%}

  .skill-head{
    text-align: center;
  }

#skills h2{
padding: 1rem;
}

.skill-bar{
background:#222;
border-radius:10px;
margin-bottom:15px;
}

img:hover{
  transform: scale(1.1);
  transition: 0.8s;
}

.skill-bar div{
background:#00f7ff;
height:20px;
border-radius:10px;
}

.circles{
display:flex;
justify-content: space-between;
gap:20px;
margin-top:20px;
flex-wrap:wrap;
}

.circle{
width:120px;
height:120px;
border-radius:50%;
border:10px solid #00f7ff;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

/* PROJECTS */
#project{
  text-align: center;
}
.projects{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:60px 8%;
}

.project{
position:relative;
}

.project img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

.project p{
position:absolute;
bottom:0;
background:rgba(0,0,0,0.7);
width:100%;
padding:10px;
}

.project-links{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.specific-project{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 1rem;
  margin-bottom:1rem ;
  gap: 1rem;
}
.specific-project button{
  background:#00f7ff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

/* CONTACT */
#contact{
background:linear-gradient(rgba(0,0,0,0.6)),url("/assets/prestontash.jpg");
background-size:cover;
padding:60px 8%;
}

.contact{
  text-align: center;
  color:white;
padding: 1rem;
}
.contact-links{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-links button{
  background:#00f7ff;
  border: none;
  padding:5px 10px;
  border-radius: 0.5rem;
}

.contact-links a{
margin:5px;
color:black;
text-decoration:none;
}

form input,form textarea{
width:100%;
padding:10px;
margin:10px 0;
}

form button{
padding:10px 20px;
border:none;
background:#00f7ff;
cursor:pointer;
}

.call-btn{
margin-top:10px;
padding:10px 20px;
background:#00f7ff;
border:none;
cursor:pointer;
}
.caution{
  color: black;
}
label{
  color: white;
}

/* FOOTER */
footer{
text-align:center;
padding:20px;
background:#020b17;
}

 /*ANIMATION*/ 
.animate{
opacity:0;
transform:translateY(-40px);
}

.animate.show{
animation:bounceIn 0.9s ease forwards;
}

@keyframes bounceIn{
to{
opacity: 1;
transform: translateY(0);
}}
