/* General Smooth Scroll Behavior */
html {
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
}

/* Body Styling */
body {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  padding: 100px 20px;
  background: linear-gradient(to right, #000000, #1f1f1f);
}

/* Linked Icons Styling */
.hero a {
  text-decoration: none !important;
  cursor: pointer;
}

.hero a i {
  transition: transform 0.2s ease, color 0.3s ease;
}

.hero a:hover i {
  color: #0d6efd;
  transform: scale(1.2);
}

/* Headings */
h2 {
  color: #0d6efd;
  font-weight: 600;
  border-bottom: 2px solid #0d6efd;
  margin-bottom: 20px;
  padding-bottom: 6px;
}

/* Navbar Hover Effects */
.navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #0d6efd;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Button Hover */
.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
  transition: all 0.3s ease;
}

/* AOS Animation Fallback */
[data-aos] {
  transition-property: transform, opacity;
  transition-duration: 0.6s;
}

/* List Cleanup - default */
ul {
  list-style: none;
  padding-left: 0;
}

/* Restore bullets for specific sections */
#projects ul,
#experience ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 1rem;
}

#projects ul li,
#experience ul li {
  margin-bottom: 5px;
}

/* Footer Styling */
footer {
  font-size: 0.9rem;
}

/* Link Styling */
a {
  color: #0d6efd;
}

a:hover {
  text-decoration: underline;
}
