/* Hide browser scrollbar */
::-webkit-scrollbar {
    display: none;
}
html, body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Custom Animations and Utilities */


.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B00 0%, #FF9E00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-hover {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(255, 107, 0, 0.1), 0 10px 10px -5px rgba(255, 107, 0, 0.04);
}

.dashboard-mockup {
    perspective: 1000px;
}

.dashboard-card {
    transform: rotateX(5deg) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.dashboard-card:hover {
    transform: rotateX(0deg) rotateY(0deg);
}

/* Banner styling from legacy layout */
.banner {
  background: linear-gradient(
    to bottom,
    #FF8A66,
    #eff0f2
  ); /* Smooth transition from banner to body */
  text-align: center;
  padding: 50px 20px 50px;
  padding-bottom: 10px;
  padding-top: 20px;
  position: relative;
}

.banner-title {
  font-size: 3em;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Adds a shadow to text for better readability */
}


/* Dashboard Sidebar styles (for the mockup) */
.mock-sidebar-item {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #6B7280;
    transition: color 0.2s, background-color 0.2s;
}

.mock-sidebar-item.active {
    background: #FF6B00;
    color: white;
}

.mock-sidebar-item:not(.active):hover {
    color: #FF6B00;
}

/* Legacy Header & Footer Styles */
.navbar-container {
  background-color: #FF8A66;
  padding: 20px 0;
}

.navbar {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  margin: 0 auto;
  width: 90%;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 45px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links .action-btns {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  text-decoration: none; /* Disable underline for buttons */
}

.footer {
  background-color: #FF8A66;
  color: #ffffff;
  padding: 20px 0;
  text-align: right;
}

.footer .container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  max-width: 180px;
  padding: 20px;
}

.social-icons {
  margin-top: 0px;
  padding: 10px;
}

.social-icons a {
  color: #ffffff;
  margin: 0 10px;
  font-size: 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ffffff;
  margin: 0 10px;
  font-size: 20px;
  text-decoration: none;
}

.copyright {
  margin-top: 0px;
  padding: 10px;
}
