/* General Reset */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #121212;
  color: #eaeaea;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background: linear-gradient(90deg, #333, #000);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.navbar-brand img {
  max-width: 180px;
}
.navbar-nav .nav-link {
  color: #eaeaea;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
  color: #00aaff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #444, #222);
  color: #f8f9fa;
}
.hero img{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00aaff;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.1rem;
  font-weight: 300;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #00aaff;
  margin-bottom: 20px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #00aaff;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* About Section */
#about {
  background-color: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
}
#about p {
  font-size: 1rem;
  line-height: 1.8;
  color: #cccccc;
}

/* Skills Section */
#skills {
  background-color: #181818;
  padding: 60px 20px;
}
#skills .card {
  background-color: #222;
  border: none;
  border-radius: 8px;
  color: #eaeaea;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
#skills .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}
#skills h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
#skills p {
  font-size: 0.9rem;
  color: #cccccc;
}

/* Projects Section */
#projects {
  padding: 60px 20px;
}
#projects .card {
  background-color: #222;
  border: none;
  border-radius: 8px;
  color: #eaeaea;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
#projects .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}
#projects h5 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #00aaff;
}
#projects p {
  font-size: 0.9rem;
  color: #cccccc;
}

/* Contact Section */
#contact {
  background-color: #181818;
  padding: 60px 20px;
  text-align: center;
}
#contact p {
  font-size: 1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 30px;
}
#contact .btn-primary {
  background-color: #00aaff;
  border: none;
  padding: 10px 20px;
  transition: background-color 0.3s;
}
#contact .btn-primary:hover {
  background-color: #0077cc;
}
#contact .btn-outline-light {
  border: 1px solid #00aaff;
  color: #00aaff;
  padding: 10px 20px;
  transition: background-color 0.3s, color 0.3s;
}
#contact .btn-outline-light:hover {
  background-color: #00aaff;
  color: #fff;
}

/* Footer */
footer {
  background-color: #333;
  color: #eaeaea;
  padding: 20px 0;
  text-align: center;
}
footer p {
  margin: 0;
  font-size: 0.9rem;
  color: #cccccc;
}
