/* === Smooth scroll with Stylish Scrollbar === */
html,
body {
  scroll-behavior: smooth;
  overflow: auto;
  -ms-overflow-style: none; /* IE & Edge: use custom scrollbar workaround */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #ffc107 #1a1a1a; /* thumb + track */
}

/* Chrome, Safari, Edge */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a; /* dark background */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffc107, #e67e22); /* golden gradient */
  border-radius: 10px;
  border: 2px solid #1a1a1a; /* padding illusion */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f39c12, #d35400); /* brighter hover */
}

/* Base Typography */
body {
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #ddd;
}

/* Button Styles */
.btn-rounded {
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
}

.btn-yellow {
  background-color: #ffc107;
  color: #000;
  border: none;
}

.btn-yellow:hover {
  background-color: #ffb300;
  color: #000;
}

/* Utility Spacing */
.section-padding {
  padding: 4rem 0;
}

.text-light-muted {
  color: #ccc !important;
}

.text-yellow {
  color: #ffc107;
}

/* Global Card Reset */
.card-img-top {
  height: 230px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

/* Responsive Utilities */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .btn-rounded {
    width: 100%;
  }
}

/* Global Link Styling */
a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #ffc107;
}

.scroll-top-btn i {
  font-size: 18px;
  color: #ffc107;
}

.scroll-top-btn:hover {
  background-color: #ffc107;
  color: #000;
}
