/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
}

/* Navbar */
.navbar {
  background: #111;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 8rem 1rem 5rem;
  text-align: center;
}

.hero span {
  color: #007bff;
}

/* Sections */
.section {
  padding: 5rem 1rem;
  border-bottom: 2px solid #fff;
}

.about {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

/* Experience */
.experience h2 {
  margin-bottom: 2rem;
}

.experience{
  border-bottom: 2px solid #fff;
}

.exp-card {
  background: #111;
  border-left: 5px solid #222;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.exp-card h3 {
  margin-bottom: 0.3rem;
}

.company {
  color: #bbb;
  font-weight: 600;
}

.duration {
  display: block;
  font-size: 0.9rem;
  color: #007bff;
  margin: 0.3rem 0;
}

.skills-text {
  color: #999;
  font-size: 0.9rem;
}

.skills {
  color: #fff;
  font-size: 0.9rem;
}

.skills h2 {
  margin-bottom: 2rem;
}

.skills-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.skills-grid h4 {
  color: #007bff;
  margin-bottom: 0.5rem;
}

/* Projects */

.projects{
  border-bottom: 2px solid #fff;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #222;
  padding: 1.5rem;
  border-radius: 10px;
}

/* Buttons */
.btn-outline {
  display: inline-block;
  margin-top: 1rem;
  border: 2px solid #007bff;
  color: #007bff;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
}

.btn-outline:hover {
  background: #007bff;
  color: #fff;
}

/* Footer */
footer {
  background: #111;
  text-align: center;
  padding: 1rem;
  color: #aaa;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

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


/* Contact */
.contact a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.contact a:hover {
  color: #007bff;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #007bff;
  color: white;
  margin-right: 10px;
}

  .single-project-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;

  /* background: linear-gradient(145deg, #1b1b1b, #222); */
  background: #111;
  border-radius: 16px;
  padding: 2rem;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}

/* Left content */
.project-left {
  max-width: 70%;
}

.project-left h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.project-left p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

/* Right icon */
.project-right {
  font-size: 4.5rem;
  color: #007bff;
  opacity: 0.9;
}

/* Button reuse */
.btn-outline {
  border: 2px solid #007bff;
  color: #007bff;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #007bff;
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .single-project-card {
    flex-direction: column;
    text-align: center;
  }

  .project-left {
    max-width: 100%;
  }

  .project-right {
    font-size: 3.5rem;
  }
}
