*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #ffffff;
  color: #111827;
  padding-top: 80px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* LOGO */
.logo img {
  width: 110px;   
  height: 100px;  
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #2563eb;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: #111827;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #2563eb;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #2563eb;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HERO  */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("./images/bg.jpg") center/cover no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  gap: 50px;
}

.hero-text h1 {
  font-size: 50px;
  color: #111827;
  text-shadow: 0 5px 14px rgba(0, 0, 0, 0.6);
}

.hero-text p {
  margin: 15px 0;
  font-size: 20px;
  color: #070707;
  text-shadow: 0 5px 14px rgba(117, 172, 164, 0.6);
  width: 600px;
  font-style:no;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #080808;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.btn:hover {
  background: #1d4ed8;
}

.hero-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #2563eb;
}
/* 
/SECTIONS/ */
.section {
  padding: 80px 50px;
}

.section h2 {
  color: #111827;
  margin-bottom: 20px;
}
.projects-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* CARD */
.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #080808;
  transition: 0.3s;
}
.card a{
    background-color: #070707;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
}

/* PROJECT IMAGE */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* PROJECT BUTTON */
.project-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
/*CIRCLE SKILLS */

.circle-skills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(#070707 calc(var(--percent) * 1%), #e5e7eb 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
}

.circle:hover {
  transform: scale(1.08);
}

/* inner white center */
.circle .inner {
  width: 110px;
  height: 110px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.circle h3 {
  margin: 0;
  font-size: 18px;
  color: #111827;
}

.circle p {
  font-size: 14px;
  color: #4b5563;
  margin-top: 4px;
}

/* hover effect */
.skill-bar:hover .bar span {
  filter: brightness(1.1);
}

/* optional small animation feel */
.skill-bar {
  transition: transform 0.3s ease;
}

.skill-bar:hover {
  transform: translateY(-3px);
}

/* ICON STYLE */
.skills-grid i {
  color: #fafcff;
  font-size: 18px;
}

/* CONTACT */
.contact-text {
  margin: 10px 0 20px;
  color: #4b5563;
}
#contact {
  text-align: center;
}
.social-links {
  justify-content: center; 
}
.contact-text {
  text-align: center;
}

.location,
.availability {
  text-align: center;
  color: #4b5563;
  font-size: 16px;
  margin-top: 5px;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-links a img {
  width: 42px;
  height: 42px;
  background: #ffffff;
  padding: 8px;
  border-radius: 50%;
  border: 2px solid #050505;
  display: block;
  transition: 0.3s;
}

.social-links a img:hover {
  transform: scale(1.15);
}
/* Responsive */

@media (max-width: 768px) {

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .projects-container {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    width: 200px;
    height: 200px;
  }

  .navbar {
    padding: 15px 20px;
  }
}
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

/* ================= STATS SECTION ================= */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-box {
  background: #928f8f;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  text-align: center;

  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: #080808;
}

.stat-box h3 {
  font-size: 28px;
  color: #020202;
}

.stat-box p {
  margin-top: 8px;
  color: #212222;
  font-weight: 500;
}

/* TOOLS & TECHNOLOGIES */

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.tools-list li {
  list-style: none;
  background: #ffffff;
  color: #f1f3f8;

  padding: 10px 16px;
  border-radius: 8px;
  background-color: #050505;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  transition: 0.3s ease;
}

.tools-list li:hover {
  border-color: #0d0d0e;
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.08);
}

/* Optional icon style */
.tools-list i {
  color: #2563eb;
  font-size: 16px;
}