/* -----------------------------
   Global Theme Variables
------------------------------ */
:root {
  --gradient-primary: linear-gradient(135deg, #667eea, #764ba2);
  --gradient-alt: linear-gradient(135deg, #6a11cb, #2575fc);
  --gradient-accent: linear-gradient(45deg, #ff8a00, #e52e71);
  --accent: #ffcc00;
  --text-muted: #555;
}

/* -----------------------------
   Backgrounds & Text Utilities
------------------------------ */
.bg-gradient-primary {
  background: var(--gradient-primary);
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  color: var(--accent);
}

.bg-gradient-pill {
  background: var(--gradient-alt);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
}

.text-muted {
  color: var(--text-muted) !important;
}

.role-accent {
  background: var(--gradient-alt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* -----------------------------
   Hero Section
------------------------------ */
.hero {
  height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  padding: 0 20px;
}

.hero-section {
  background: var(--gradient-primary);
  padding: 4rem 0;
  min-height: 300px;
}

/* -----------------------------
   Section Styling
------------------------------ */
.section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
}

/* -----------------------------
   Feature / Card Styles
------------------------------ */
.feature-box,
.glass-card {
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 1rem;
}

.feature-box:hover,
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

/* -----------------------------
   Responsive Tweaks
------------------------------ */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 20px;
    text-align: center;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

   .glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}
.glass-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0d6efd;
}
.tech-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    font-weight: 500;
}
.tech-list li i {
      color: #28a745 !important;
    width: 22px; /* Perfect alignment */
    text-align: center;
    margin-right: 6px;
    transition: transform 0.2s ease, color 0.3s ease;
}
.tech-list li:hover i {
    transform: scale(1.3);
    color: #198754;
}


/*animation on dashboard*/

.animation-row {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*