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

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

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

.nav-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.btn {
  border: 2px solid #007bff;
  color: #007bff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

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

.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;
}


/* Hero */
.hero {
  text-align: center;
  padding: 8rem 1rem 5rem;
  background: black;
  /* background: linear-gradient(135deg, #2b2b2b, #1b1b1b); */
  border-bottom: 2px solid #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #007bff;
}

.hero p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Sections */
.section {
  padding: 5rem 1rem;
  max-width: 1100px;
  margin: auto;
}

.section.dark {
  background: #111;
}

/* Projects */
.project-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: #111;
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-content h4 {
  margin-bottom: 0.8rem;
  color: #fff;
}

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

.card img {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.logo-image {
  height: 120px;  /* Set your desired height */
  object-fit: contain; /* Ensures the whole image fits inside */
}

.btn-outline {
  border: 2px solid #007bff;
  color: #007bff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

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

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

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

/* 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;
}

/* Footer */
footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}
