/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: 'Poppins', sans-serif;
  background:#000;
  color:#fff;
}

/* NAVBAR */
.navbar{
  width:100%;
  padding:20px 0;
  position:fixed;
  top:0;
  left:0;
  display:flex;
  justify-content:center;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
  z-index:1000;
}

.menu{
  display:flex;
  gap:40px;
}

.menu a{
  text-decoration:none;
  color:#fff;
  font-size:16px;
  position:relative;
  transition:0.3s;
} 
 /* .navbar{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 10%;
  background:#000;
  z-index:1000;
} */

/* LOGO */
.logo img{
  width:50px;   /* adjust if needed */
}

/* MENU */
.menu a{
  margin:0 15px;
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}



.menu a:hover{
  color:#d4af37;
}
/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.hamburger span{
  width:25px;
  height:3px;
  background:#d4af37;
  margin:4px 0;
  transition:0.3s;
}

/* MOBILE VIEW */
@media(max-width:768px){

  .hamburger{
    display:flex;
  }

  .menu{
    position:absolute;
    top:70px;
    right:0;
    width:100%;
    background:#000;
    flex-direction:column;
    text-align:center;
    display:none;
    padding:20px 0;
  }

  .menu a{
    display:block;
    margin:15px 0;
  }

  /* SHOW MENU */
  .menu.active{
    display:flex;
  }
}

/* HERO */
.hero{
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background: url("bg-cover.jpg") no-repeat center center/cover;
  padding:0 10%;
}

/* LEFT */
.hero-left{
  max-width:550px;
}

.hero-left h1{
  font-size:60px;
  line-height:1.2;
}

.hero-left span{
  color:#d4af37;
  text-shadow:0 0 15px rgba(212,175,55,0.5);
}

/* subtle text animation */
.hero-left h1 span{
  animation: glow 2s infinite alternate;
}

@keyframes glow{
  from{
    text-shadow:0 0 5px #d4af37;
  }
  to{
    text-shadow:0 0 20px #d4af37;
  }
}

.hero-left p{
  margin:20px 0;
  color:#aaa;
}

/* BUTTON */
.btn{
  display:inline-block;
  padding:12px 25px;
  border:1px solid #d4af37;
  color:#d4af37;
  text-decoration:none;
  transition:0.3s;
}

.btn:hover{
  background:#d4af37;
  color:#000;
  box-shadow:0 0 20px #d4af37;
}

/* RIGHT IMAGE */
.hero-right{
  display:flex;
  justify-content:center;
  align-items:center;
}

/* Circle container */
.image-circle{
  width:350px;
  height:350px;
  border-radius:50%;
  overflow:hidden;
  position:relative;
}

/* glowing border effect */
.image-circle::before{
  content:'';
  position:absolute;
  top:-5px;
  left:-5px;
  width:calc(100% + 10px);
  height:calc(100% + 10px);
  border-radius:50%;
  /* background:linear-gradient(45deg,#d4af37,transparent,#d4af37); */
  z-index:-1;
  animation: rotate 6s linear infinite;
}

@keyframes rotate{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}

.image-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* floating animation */
.image-circle{
  animation: float 3s ease-in-out infinite;
  
}

@keyframes float{
  0%{transform:translateY(0);}
  50%{transform:translateY(-15px);}
  100%{transform:translateY(0);}
}

 .about{
  padding:100px 10%;
  background:#000;
  justify-content: center;
}

.about h2{
  text-align:center;
  font-size:32px;
  margin-bottom:40px;
}

.about-container{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.about-text{
  color:#aaa;
  line-height:1.8;
  margin-bottom:20px;
  justify-content: center;
}


.experience-line{
  color:#d4af37;
  margin-bottom:25px;
  font-weight:500;
}


.about-points{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:15px;
  margin-bottom:40px;
  transform:translateX(-20px);
  animation:slideIn 0.6s ease forwards;
}

.about-points span{
  border:1px solid rgba(212,175,55,0.3);
  padding:8px 15px;
  border-radius:20px;
  font-size:14px;
  transition:0.3s;
}

.about-points span:hover{
  background:#d4af37;
  color:#000;
}


.education-card{
  background:#111;
  padding:25px;
  border-radius:12px;
  border:1px solid rgba(212,175,55,0.2);
  transition:0.3s;
  max-width:500px;
  margin:auto;
}

.education-card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 20px rgba(212,175,55,0.25);
}


.edu-header{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:10px;
}

.edu-header i{
  color:#d4af37;
}

.education-card h3{
  color:#d4af37;
}

.education-card h4{
  color:#fff;
} 
.skills{
  padding:50px 10%;
  background:#000;
}

/* CENTER TITLE */
.skills-title{
  text-align:center;
  font-size:32px;
  margin-bottom:40px;
}

/* GRID */
.skills-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* BOX */
.skill-box{
  background:#111;
  padding:25px;
  border-radius:12px;
  border:1px solid rgba(212,175,55,0.2);
  transition:0.3s;
}

/* SIMPLE HOVER */
.skill-box:hover{
  transform:translateY(-5px);
  box-shadow:0 0 15px rgba(212,175,55,0.15);
}

/* TITLE */
.skill-box h3{
  text-align:center;
  color:#d4af37;
  margin-bottom:20px;
}

/* ITEMS */
.skill-items{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
}

/* ITEM */
.skill-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px;
  background:#000;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.05);
  transition:0.3s;
}

/* ICON */
.skill-item i{
  color:#d4af37;
  font-size:30px;
}

/* TEXT */
.skill-item span{
  font-size:14px;
}

/* CLEAN HOVER */
.skill-item:hover{
  background:#d4af37;
  color:#000;
}

.skill-item:hover i{
  color:#000;
}
.projects{
  padding:100px 10%;
  background:#000;
}
.section-title{
   text-align:center;
  font-size:32px;
  margin-bottom:40px;
}
.projects-container{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

/* CARD */
.project-card{
  background:#111;
  padding:20px;
  border-radius:12px;
  border:1px solid rgba(212,175,55,0.2);
  transition:0.3s;
}

/* HOVER */
.project-card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 20px rgba(212,175,55,0.2);
}

/* IMAGE */
.project-card img{
  width:100%;
  border-radius:10px;
  margin-bottom:15px;
}

/* TITLE */
.project-card h3{
  color:#fff;
  margin-bottom:10px;
}

/* DESCRIPTION */
.project-card p{
  color:#aaa;
  font-size:14px;
  margin-bottom:15px;
}

/* TAGS */
.project-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:15px;
}

.project-tags span{
  background:#000;
  border:1px solid rgba(212,175,55,0.3);
  padding:5px 10px;
  border-radius:20px;
  font-size:12px;
}

/* LINKS */
.project-links a{
  color:#d4af37;
  font-size:18px;
  margin-right:15px;
  transition:0.3s;
}

.project-links a:hover{
  color:#fff;
}
.footer{
  background:#000;
  padding:60px 10% 20px;
  border-top:1px solid rgba(212,175,55,0.2);
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-bottom:30px;
}

/* HEADINGS */
.footer h3,
.footer h4{
  color:#d4af37;
  margin-bottom:15px;
}

/* TEXT */
.footer p{
  color:#aaa;
  font-size:14px;
  line-height:1.6;
}

/* LINKS */
.footer a{
  display:block;
  color:#aaa;
  text-decoration:none;
  margin-bottom:10px;
  font-size:14px;
  transition:0.3s;
}

/* ICON LINKS */
.footer a i{
  margin-right:8px;
  color:#d4af37;
}

/* HOVER */
.footer a:hover{
  color:#d4af37;
  transform:translateX(5px);
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:15px;
}

.footer-bottom p{
  font-size:13px;
  color:#777;
}
section{
  scroll-margin-top:80px; /* adjust based on navbar height */
}