/* style.css */
/* ========== CORPORATE TECH COLOR SCHEME ========== */
:root {
  --primary-deep-navy: #0a2540;
  --electric-blue: #0d6efd;
  --background-soft: #f6f8fc;
  --text-charcoal: #1a2e4b;
  --text-secondary: #5e6f8d;
  --card-white: #ffffff;
  --border-light: rgba(13, 110, 253, 0.15);
  --hover-glow: rgba(13, 110, 253, 0.2);
  --accent-teal: #20c997;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jura", sans-serif;
  background: var(--background-soft);
  color: var(--text-charcoal);
  line-height: 1.5;
}

/* ========== TYPOGRAPHY & LINKS ========== */
a {
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ========== NAVBAR ========== */
.navbar {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  padding: 0.75rem 0;
}
.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary-deep-navy);
  font-size: 1.5rem;
}
.nav-link {
  color: var(--text-charcoal);
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.nav-link.active {
  color: var(--electric-blue);
  border-bottom: 2px solid var(--electric-blue);
}
.navbar-toggler {
  border-color: var(--electric-blue);
}

/* ========== PROFILE CIRCLE ========== */
.profile-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #e4eaf5;
  border-radius: 50%;
  color: var(--primary-deep-navy);
  transition: all 0.2s;
}
.profile-circle:hover {
  background-color: var(--electric-blue);
  color: white;
}

/* ========== BUTTONS ========== */
.btn-primary-modern {
  background: var(--primary-deep-navy);
  color: white;
  border-radius: 40px;
  font-weight: 500;
  padding: 0.75rem 2rem;
  display: inline-block;
  transition: 0.2s;
  border: none;
}
.btn-primary-modern:hover {
  background: #1d3b5c;
  color: white;
}

.btn-outline-modern {
  background: transparent;
  border: 1.5px solid var(--primary-deep-navy);
  color: var(--primary-deep-navy);
  border-radius: 40px;
  font-weight: 500;
  padding: 0.75rem 2rem;
  display: inline-block;
  transition: 0.2s;
}
.btn-outline-modern:hover {
  background: var(--primary-deep-navy);
  color: white;
}

/* ========== PAGE HEADERS & ACCENT ========== */
.page-header,
.page-header-terms,
.page-header-about,
.page-header-blog,
.page-header-contact,
.page-header-products,
.page-header-privacy {
  padding: 50px 0 20px;
}
.accent-line {
  width: 70px;
  height: 4px;
  background: var(--electric-blue);
  margin: 20px 0;
  border-radius: 4px;
}
.accent-line.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ========== CARDS (GENERIC) ========== */
.codester-card,
.product-card,
.release-card,
.about-card,
.contact-card,
.sidebar-widget,
.form-container,
.product-detail-card,
.policy-section,
.terms-section {
  background: var(--card-white);
  border-radius: 28px;
  box-shadow: 0 12px 28px -8px rgba(10, 37, 64, 0.08);
  border: 1px solid var(--border-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.codester-card:hover,
.product-card:hover,
.release-card:hover,
.about-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 38px -10px var(--hover-glow);
}

/* ========== PRODUCT CARDS (index & products) ========== */
.card-img-top,
.product-img,
.release-img,
.blog-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid #e9ecf3;
}
.release-img,
.blog-img {
  height: 140px;
}
.card-body,
.product-body,
.release-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
  color: var(--primary-deep-navy);
}
.product-description {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  flex-grow: 1;
}
.action-row,
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  border-top: 1px dashed #d0d9eb;
  padding-top: 12px;
}
.price-tag {
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary-deep-navy);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.2rem 1rem;
  border-radius: 40px;
  border: 1px solid rgba(13, 110, 253, 0.25);
}
.download-btn {
  background: var(--electric-blue);
  color: white;
  border-radius: 30px;
  padding: 0.4rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--electric-blue);
}
.download-btn:hover {
  background: #0b5ed7;
  color: white;
}

/* ========== FEATURED HEADER ========== */
.featured-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(13, 110, 253, 0.15);
  padding-bottom: 12px;
  margin-bottom: 28px;
}
.text-accent {
  color: var(--electric-blue);
}

/* ========== RELEASE / BLOG CARDS ========== */
.release-title,
.blog-title {
  font-weight: 700;
  color: var(--primary-deep-navy);
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}
.release-meta,
.blog-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.release-meta i,
.blog-meta i {
  color: var(--electric-blue);
}
.read-link {
  color: var(--electric-blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.read-link:hover {
  color: var(--primary-deep-navy);
}
.badge-new {
  background: var(--electric-blue);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  font-weight: 600;
}
.bg-accent {
  background: var(--electric-blue);
  color: white;
}

/* ========== FEATURED STORY ========== */
.featured-story {
  background: linear-gradient(145deg, var(--card-white), #f0f4fe);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  margin-bottom: 3rem;
}
.featured-story .badge {
  background: var(--electric-blue);
  color: white;
  font-size: 0.8rem;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  display: inline-block;
}
.featured-story h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-deep-navy);
}
.featured-story .story-meta {
  color: var(--text-secondary);
  margin: 1rem 0;
}

/* ========== CATEGORY TABS ========== */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.category-tab {
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 40px;
  padding: 0.4rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-charcoal);
  transition: 0.2s;
}
.category-tab:hover,
.category-tab.active {
  background: var(--electric-blue);
  color: white;
  border-color: var(--electric-blue);
}

/* ========== SIDEBAR WIDGETS ========== */
.sidebar-widget {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h5 {
  font-weight: 700;
  color: var(--primary-deep-navy);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.popular-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: center;
}
.popular-post img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}
.popular-post h6 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.popular-post .date {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* ========== PAGINATION ========== */
.pagination-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.page-link-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.8rem;
  border-radius: 40px;
  background: var(--card-white);
  border: 1px solid var(--border-light);
  color: var(--text-charcoal);
  font-weight: 500;
  transition: 0.2s;
}
.page-link-custom:hover,
.page-link-custom.active {
  background: var(--electric-blue);
  color: white;
  border-color: var(--electric-blue);
}
.page-link-custom.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ========== FILTER BAR (PRODUCTS) ========== */
.filter-bar {
  background: var(--card-white);
  border-radius: 60px;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  border: 1px solid var(--border-light);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.filter-select {
  background: var(--background-soft);
  border: 1px solid var(--border-light);
  border-radius: 40px;
  padding: 0.4rem 1.5rem 0.4rem 1rem;
  font-size: 0.9rem;
  color: var(--text-charcoal);
  cursor: pointer;
}
.filter-option {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-charcoal);
  border: 1px solid transparent;
}
.filter-option:hover,
.filter-option.active {
  background: var(--electric-blue);
  color: white;
  border-color: var(--electric-blue);
}

/* ========== ABOUT PAGE SPECIFIC ========== */
.about-card {
  padding: 2rem;
  height: 100%;
  text-align: center;
}
.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--electric-blue);
  padding: 3px;
}
.value-icon {
  font-size: 2.5rem;
  color: var(--electric-blue);
  margin-bottom: 1rem;
}

/* ========== CONTACT PAGE SPECIFIC ========== */
.contact-card {
  padding: 2rem;
  height: 100%;
  text-align: center;
}
.contact-icon {
  font-size: 2.8rem;
  color: var(--electric-blue);
  margin-bottom: 1rem;
}
.form-control,
.form-select {
  border-radius: 50px;
  border: 1px solid var(--border-light);
  padding: 0.75rem 1.2rem;
  font-family: "Jura", sans-serif;
  background-color: var(--background-soft);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}
.btn-submit {
  background: var(--electric-blue);
  color: white;
  border-radius: 50px;
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  border: none;
  transition: 0.2s;
}
.btn-submit:hover {
  background: var(--primary-deep-navy);
  color: white;
}
.form-container {
  padding: 2.5rem;
}

/* ========== TERMS & PRIVACY PAGES ========== */
.terms-section,
.policy-section {
  padding: 2rem;
  margin-bottom: 2rem;
}
.terms-section h3,
.policy-section h3 {
  color: var(--primary-deep-navy);
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}
.terms-section h4,
.policy-section h4 {
  color: var(--primary-deep-navy);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}
.terms-section p,
.terms-section li,
.policy-section p,
.policy-section li {
  color: var(--text-secondary);
  line-height: 1.6;
}
.terms-section ul,
.policy-section ul {
  padding-left: 1.2rem;
}
.terms-section li,
.policy-section li {
  margin-bottom: 0.4rem;
}
.terms-section .lead,
.policy-section .lead {
  font-size: 1.1rem;
  color: var(--text-charcoal);
}
.last-updated {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ========== BLOG DETAIL / PRODUCT INNER ========== */
.article-container {
  max-width: 800px;
  margin: 0 auto;
}
.article-title,
.product-title-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-deep-navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.author-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--electric-blue);
}
.article-main-img,
.product-feature-image img {
  width: 100%;
  border-radius: 28px;
  margin-bottom: 2rem;
  border: 1px solid var(--border-light);
}
.article-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-charcoal);
}
.article-body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-deep-navy);
  margin: 2rem 0 1rem;
}
.article-body h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-deep-navy);
  margin: 1.5rem 0 0.8rem;
}
.article-body p {
  margin-bottom: 1.2rem;
}
.article-body blockquote {
  border-left: 4px solid var(--electric-blue);
  padding: 1rem 1.5rem;
  background: rgba(13, 110, 253, 0.04);
  border-radius: 0 20px 20px 0;
  margin: 1.5rem 0;
  font-style: italic;
}
.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.article-body li {
  margin-bottom: 0.4rem;
}
.article-body code {
  background: #eef2f6;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  color: var(--electric-blue);
}
.article-tags {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.tag {
  background: rgba(13, 110, 253, 0.08);
  color: var(--electric-blue);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}
.tag:hover {
  background: var(--electric-blue);
  color: white;
}
.author-box {
  background: var(--card-white);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  margin: 2.5rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.author-box img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--electric-blue);
}
.comments-section {
  margin-top: 3rem;
}
.comment {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e4eaf5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-deep-navy);
  font-weight: 700;
  flex-shrink: 0;
}
.comment-name {
  font-weight: 700;
  color: var(--primary-deep-navy);
}
.comment-date {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-left: 1rem;
}
.comment-text {
  margin-top: 0.3rem;
  color: var(--text-charcoal);
}
.reply-link {
  color: var(--electric-blue);
  font-size: 0.9rem;
  font-weight: 600;
}
.reply-link:hover {
  text-decoration: underline;
}

/* ========== PRODUCT INNER SPECIFIC ========== */
.product-detail-card {
  padding: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.price-large {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-deep-navy);
}
.old-price-large {
  font-size: 1.4rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-left: 0.8rem;
}
.badge-save {
  background: #dc3545;
  color: white;
  font-size: 1rem;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  margin-left: 1rem;
  font-weight: 600;
  display: inline-block;
}
.full-description {
  margin: 1.8rem 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-charcoal);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.feature-list li {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.feature-list i {
  color: var(--electric-blue);
  font-size: 1.2rem;
}
.view-deal-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--electric-blue);
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  transition: 0.2s;
  border: 1px solid var(--electric-blue);
  margin: 1rem 0 0.5rem;
}
.view-deal-cta:hover {
  background: var(--primary-deep-navy);
  border-color: var(--primary-deep-navy);
  color: white;
}
.more-deals-banner {
  background: linear-gradient(145deg, var(--card-white), #f0f4fe);
  border-radius: 60px;
  padding: 3rem 2rem;
  border: 1px solid var(--border-light);
  text-align: center;
}
.btn-outline-green {
  border: 2px solid var(--electric-blue);
  color: var(--electric-blue);
  border-radius: 60px;
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  transition: 0.2s;
  background: transparent;
  display: inline-block;
}
.btn-outline-green:hover {
  background: var(--electric-blue);
  color: white;
}
.affiliate-note {
  background: rgba(13, 110, 253, 0.04);
  border-radius: 40px;
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
  border: 1px dashed var(--border-light);
}

/* ========== FOOTER ========== */
.footer-bar {
  background: var(--electric-blue);
  padding: 1.5rem 0;
}
.footer-deep {
  background: var(--primary-deep-navy);
  padding: 3rem 0 2rem;
}
.footer-deep a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer-deep a:hover {
  color: white;
}
hr {
  opacity: 0.2;
}
/* ==================== AUTH PAGES STYLES ==================== */

/* Auth Card */
.auth-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-white);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-light);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    color: var(--primary-deep-navy);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-secondary);
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-deep-navy);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    font-family: 'Jura', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
}

/* Auth Button */
.btn-auth {
    width: 100%;
    padding: 0.75rem;
    background: var(--electric-blue);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-auth:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.alert-danger {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

/* Password Hint */
.password-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checkbox-group label a {
    color: var(--electric-blue);
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

/* Forgot Password Link */
.forgot-link {
    text-align: right;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.forgot-link a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.forgot-link a:hover {
    color: var(--electric-blue);
}

/* Demo Credentials */
.demo-credentials {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    text-align: center;
}

.demo-credentials p {
    margin-bottom: 0.25rem;
    color: var(--text-secondary);
}

.demo-credentials code {
    background: #e9ecef;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: monospace;
    color: var(--primary-deep-navy);
}

/* ==================== DASHBOARD STYLES ==================== */

/* Dashboard Card */
.dashboard-card {
    background: var(--card-white);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* Welcome Header */
.welcome-header {
    background: linear-gradient(135deg, var(--primary-deep-navy) 0%, #1e3a8a 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.welcome-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.welcome-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

/* Stat Card */
.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-white);
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Dashboard Buttons */
.btn-dashboard {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--electric-blue);
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-dashboard:hover {
    background: #0b5ed7;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-outline-dashboard {
    background: transparent;
    border: 1px solid var(--electric-blue);
    color: var(--electric-blue);
}

.btn-outline-dashboard:hover {
    background: var(--electric-blue);
    color: white;
}

/* Recent Items */
.recent-item {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recent-item:last-child {
    border-bottom: none;
}

.recent-item-title {
    font-weight: 600;
    color: var(--primary-deep-navy);
}

.recent-item-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==================== PROFILE CIRCLE ==================== */
.profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--electric-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-circle:hover {
    background: #0b5ed7;
    transform: scale(1.05);
    color: white;
}

.profile-circle i {
    font-size: 1.2rem;
}

/* ==================== RESPONSIVE AUTH PAGES ==================== */
@media (max-width: 768px) {
    .auth-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .welcome-header {
        padding: 1.5rem;
        margin: 0 1rem 2rem 1rem;
    }
    
    .welcome-header h1 {
        font-size: 1.5rem;
    }
    
    .dashboard-card {
        margin: 0 1rem 1.5rem 1rem;
    }
    
    .stat-card {
        margin: 0 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .auth-header h2 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.6rem 0.8rem;
    }
    
    .btn-auth {
        padding: 0.6rem;
    }
    
    .checkbox-group label {
        font-size: 0.8rem;
    }
    
    .demo-credentials {
        font-size: 0.75rem;
    }
    
    .demo-credentials code {
        font-size: 0.7rem;
    }
}
/* ==================== PROFILE DROPDOWN STYLES ==================== */

.profile-dropdown {
    position: relative;
    display: inline-block;
}

.profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--electric-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile-circle:hover {
    background: #0b5ed7;
    transform: scale(1.05);
    color: white;
}

.profile-circle i {
    font-size: 1.2rem;
}

.dropdown-menu-custom {
    position: absolute;
    top: 50px;
    right: 0;
    background: var(--card-white);
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.profile-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-custom {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-charcoal);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-item-custom:hover {
    background: rgba(13,110,253,0.1);
    color: var(--electric-blue);
    text-decoration: none;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 0.25rem 0;
}

.dropdown-header {
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--primary-deep-navy);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
    background: rgba(13,110,253,0.05);
}

/* Responsive Dropdown */
@media (max-width: 768px) {
    .dropdown-menu-custom {
        position: fixed;
        top: auto;
        right: 1rem;
        left: auto;
        min-width: 180px;
    }
}

/* Mobile Navigation Adjustments */
@media (max-width: 991px) {
    .profile-dropdown {
        margin-top: 0.5rem;
    }
    
    .dropdown-menu-custom {
        position: absolute;
        top: 45px;
        right: 0;
        left: auto;
    }
}
