/* Updated CSS: style.css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #0f172a;
  color: #e0f2fe;
  line-height: 1.6;
}

header {
  background-color: #0f172a;
  border-bottom: 1px solid #1e293b;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #94a3b8;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #38bdf8;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

#hero {
  background-color: #1e293b;
  text-align: center;
  padding: 80px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-text h2 {
  font-size: 32px;
  color: #38bdf8;
}

.hero-text p {
  font-size: 18px;
  color: #cbd5e1;
  margin-top: 10px;
}

.hero-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #38bdf8;
}

.about-box {
  background-color: #1e293b;
  padding: 30px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}


#skills {
  padding: 60px 20px;
  background-color: #0f172a;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #e2e8f0;
  font-weight: bold;
  letter-spacing: 1px;
}

.skills-box {
  background-color: #1e293b;
  padding: 40px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.skill-category {
  margin-bottom: 40px;
}

.skill-category h3 {
  font-size: 1.5rem;
  color: #38bdf8;
  border-left: 4px solid #38bdf8;
  padding-left: 10px;
  margin-bottom: 20px;
}

.skill {
  margin-bottom: 25px;
}

.skill span {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.progress-bar {
  background-color: #333;
  height: 10px;
  border-radius: 10px;
  position: relative;
}

.progress {
  background-color: #00d0ff;
  height: 100%;
  border-radius: 10px;
  transition: width 0.5s ease-in-out;
}

.percentage {
  position: absolute;
  right: 0;
  top: -25px;
  font-size: 1rem;
  color: #00d0ff;
}

#What I Offer {
  padding: 50px 20px;
  background-color: #0f172a;
  color: #e2e8f0;
  text-align: center;
}
.services-box {
  background-color: #1e293b;
  padding: 30px;
  border-radius: 12px;
  max-width: 1000px;
  margin: 0 auto;
}


#services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #e2e8f0;
}

.circle-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.circle {
  background-color: #1e293b;
  border: 2px solid #38bdf8;
  color: #e2e8f0;
  font-weight: bold;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.circle:hover {
  transform: scale(1.05);
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: #1e293b;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  color: #e2e8f0;
  box-shadow: 0 0 10px #38bdf8;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}


.project {
  margin-bottom: 30px;
  border: 1px solid #334155;
  border-radius: 5px;
  padding: 20px;
  background-color: #1e293b;
}



.project h3 {
  margin-bottom: 10px;
  color: #38bdf8;
}

.project p {
  color: #cbd5e1;
}


#contact {
  padding: 50px 20px;
  text-align: center;
  background-color: #1e293b;
  color: #26b0eb;
}

#contact h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #cbd5e1; /* Neon effect */
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

#contact input,
#contact textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
}

#contact button {
  background-color: #38bdf8;
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#contact button:hover {
  background-color: #249fd3;
}
.form-success {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #0f172a;
  color: #22c55e;
  border-left: 4px solid #22c55e;
  border-radius: 5px;
  font-size: 15px;
}


.social-icons {
  margin-top: 30px;
}
.social-icons p {
  color: #fff;
  font-size: 1.2em;
  margin: 0 10px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 1.5em;
  color: #26b0eb;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
}
