/* _content/Web/Components/Layout/GlobalAlert.razor.rz.scp.css */
/* Global Alert Styles (component-scoped) */
.modern-alert[b-lmwx78phv5] {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--white-95);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 20px 40px var(--black-10);
  border: 1px solid var(--white-20);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2000; /* higher than navbar (1000) */
  animation: slideIn-b-lmwx78phv5 0.3s ease;
}

.success-alert[b-lmwx78phv5] {
  border-left: 4px solid var(--accent-green);
}

.error-alert[b-lmwx78phv5] {
  border-left: 4px solid var(--accent-red);
}

.warning-alert[b-lmwx78phv5] {
  border-left: 4px solid var(--accent-yellow);
}

.info-alert[b-lmwx78phv5] {
  border-left: 4px solid var(--primary-purple);
}

.alert-icon[b-lmwx78phv5] {
  width: 50px;
  height: 50px;
  background: var(--gradient-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.success-alert .alert-icon[b-lmwx78phv5] {
  background: var(--gradient-success);
}
.error-alert .alert-icon[b-lmwx78phv5] {
  background: var(--gradient-danger);
}
.warning-alert .alert-icon[b-lmwx78phv5] {
  background: var(--gradient-warning);
}
.info-alert .alert-icon[b-lmwx78phv5] {
  background: var(--gradient-primary);
}

.alert-icon i[b-lmwx78phv5] {
  font-size: 1.5rem;
  color: white;
}

.alert-content h4[b-lmwx78phv5] {
  margin: 0 0 5px 0;
  color: var(--secondary-text-dark);
  font-size: 1.1rem;
  font-weight: 600;
}

.alert-content p[b-lmwx78phv5] {
  margin: 0;
  color: var(--secondary-text-medium);
  font-size: 0.95rem;
}

@keyframes slideIn-b-lmwx78phv5 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .modern-alert[b-lmwx78phv5] {
    left: 20px;
    right: 20px;
  }
}
/* _content/Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-s2i2o7u8yo] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-s2i2o7u8yo] {
    flex: 1;
}

.sidebar[b-s2i2o7u8yo] {
    background-image: var(--gradient-secondary);
}

.top-row[b-s2i2o7u8yo] {
    background: var(--bg-hero-gradient);
    border-bottom: 1px solid var(--primary-purple-20);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-s2i2o7u8yo]  a, .top-row[b-s2i2o7u8yo]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
        color: var(--secondary-text-dark);
    }

    .top-row[b-s2i2o7u8yo]  a:hover, .top-row[b-s2i2o7u8yo]  .btn-link:hover {
        text-decoration: underline;
        color: var(--primary-purple-dark);
    }

    .top-row[b-s2i2o7u8yo]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-s2i2o7u8yo] {
        justify-content: space-between;
    }

    .top-row[b-s2i2o7u8yo]  a, .top-row[b-s2i2o7u8yo]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-s2i2o7u8yo] {
        flex-direction: row;
    }

    .sidebar[b-s2i2o7u8yo] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-s2i2o7u8yo] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-s2i2o7u8yo]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-s2i2o7u8yo], article[b-s2i2o7u8yo] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-s2i2o7u8yo] {
    background: var(--gradient-light);
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-s2i2o7u8yo] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

    .layout-root[b-s2i2o7u8yo] {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .content-wrapper[b-s2i2o7u8yo] {
        flex: 1 0 auto;
        display: block;
    }

    /* Footer Styles */
    .footer[b-s2i2o7u8yo] {
        background: var(--gradient-primary);
        color: #fff;
        text-align: center;
        padding: 12px 20px;
        margin-top: auto;
    }
    .footer-content[b-s2i2o7u8yo] {
        font-size: 0.9rem;
    }
/* _content/Web/Components/Layout/NavMenu.razor.rz.scp.css */
/* Modern Navbar Styles */
.modern-navbar[b-ut59ukakmh] {
  background: var(--white-95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--primary-purple-10);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-container[b-ut59ukakmh] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

.modern-logo[b-ut59ukakmh] {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: auto;
}

.modern-logo:hover[b-ut59ukakmh] {
  transform: translateY(-2px);
}

.logo-icon[b-ut59ukakmh] {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon[b-ut59ukakmh]::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 14px;
  z-index: -1;
  opacity: 0.3;
}

.logo-icon i[b-ut59ukakmh] {
  font-size: 1.5rem;
  color: white;
}

.logo-text[b-ut59ukakmh] {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-text-dark);
  font-family: var(--font-heading);
}

.modern-nav-links[b-ut59ukakmh] {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: auto;
}

.modern-nav-link[b-ut59ukakmh] {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-text-medium);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modern-nav-link[b-ut59ukakmh]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-purple-10),
    transparent
  );
  transition: left 0.5s ease;
}

.modern-nav-link:hover[b-ut59ukakmh]::before {
  left: 100%;
}

.modern-nav-link:hover[b-ut59ukakmh] {
  color: var(--primary-purple);
  background: var(--primary-purple-10);
  transform: translateY(-2px);
}

.nav-icon[b-ut59ukakmh] {
  font-size: 0.9rem;
  opacity: 0.8;
}

.modern-nav-link:hover .nav-icon[b-ut59ukakmh] {
  opacity: 1;
  color: var(--primary-purple);
}

.navbar-actions[b-ut59ukakmh] {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: auto;
}

/* Modern Theme Toggle */
.modern-theme-toggle[b-ut59ukakmh] {
  background: var(--primary-purple-10);
  border: 1px solid var(--primary-purple-20);
  color: var(--primary-purple);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.modern-theme-toggle:hover[b-ut59ukakmh] {
  background: var(--primary-purple-20);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--primary-purple-20);
}

.toggle-icon[b-ut59ukakmh] {
  font-size: 1rem;
}

/* Language Buttons */
.btn-lang[b-ut59ukakmh] {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  padding: 0;
}

.btn-lang:hover[b-ut59ukakmh] {
  transform: scale(1.2);
}

.flag-icon[b-ut59ukakmh] {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0 2px 4px var(--black-20);
}

/* Modern Hamburger Menu */
.modern-hamburger[b-ut59ukakmh] {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--primary-purple-10);
  border: 1px solid var(--primary-purple-20);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.modern-hamburger:hover[b-ut59ukakmh] {
  background: var(--primary-purple-20);
  transform: translateY(-2px);
}

.hamburger-line[b-ut59ukakmh] {
  width: 20px;
  height: 2px;
  background: var(--primary-purple);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.modern-hamburger.active .hamburger-line:nth-child(1)[b-ut59ukakmh] {
  transform: rotate(45deg) translate(5px, 5px);
}

.modern-hamburger.active .hamburger-line:nth-child(2)[b-ut59ukakmh] {
  opacity: 0;
}

.modern-hamburger.active .hamburger-line:nth-child(3)[b-ut59ukakmh] {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav[b-ut59ukakmh] {
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  background: var(--white-95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--primary-purple-10);
  flex-direction: column;
  padding: 20px;
  gap: 0;
  box-shadow: 0 10px 30px var(--black-10);
}

.mobile-nav-link[b-ut59ukakmh] {
  width: 100%;
  padding: 15px 20px;
  justify-content: flex-start;
  border-radius: 12px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.mobile-nav-link .nav-icon[b-ut59ukakmh] {
  font-size: 1.1rem;
  margin-right: 12px;
}

.mobile-theme-toggle[b-ut59ukakmh] {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--primary-purple-10);
}

.mobile-theme-toggle .modern-theme-toggle[b-ut59ukakmh] {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar-container[b-ut59ukakmh] {
    flex-direction: row;
    justify-content: space-between;
  }

  .modern-nav-links:not(.mobile-nav)[b-ut59ukakmh] {
    display: none;
  }

  .navbar-actions[b-ut59ukakmh] {
    display: none;
  }

  .modern-hamburger[b-ut59ukakmh] {
    display: flex;
  }

  /* Add padding to body when navbar is fixed */
  body[b-ut59ukakmh] {
    padding-top: 75px;
  }
}

/* Dark theme variants */
:root[data-theme="dark"] .modern-navbar[b-ut59ukakmh] {
  background: rgba(26, 26, 46, 0.95);
  border-bottom-color: var(--white-10);
}

:root[data-theme="dark"] .logo-text[b-ut59ukakmh] {
  color: var(--primary-light);
}

:root[data-theme="dark"] .modern-nav-link[b-ut59ukakmh] {
  color: var(--secondary-text-light);
}

:root[data-theme="dark"] .modern-nav-link:hover[b-ut59ukakmh] {
  color: var(--primary-purple);
  background: var(--primary-purple-20);
}

:root[data-theme="dark"] .modern-theme-toggle[b-ut59ukakmh] {
  background: var(--primary-purple-20);
  border-color: var(--primary-purple-30);
}

:root[data-theme="dark"] .modern-hamburger[b-ut59ukakmh] {
  background: var(--primary-purple-20);
  border-color: var(--primary-purple-30);
}

:root[data-theme="dark"] .mobile-nav[b-ut59ukakmh] {
  background: rgba(26, 26, 46, 0.98);
  border-bottom-color: var(--white-10);
}
/* _content/Web/Components/Pages/Home.razor.rz.scp.css */
/* Homepage Container */
.homepage-container[b-oovckuxxru] {
  padding-top: 75px; /* Account for fixed navbar */
}

/* Modern Hero Section */
.hero-section[b-oovckuxxru] {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 0 60px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-background[b-oovckuxxru] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-gradient[b-oovckuxxru] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
}

.hero-particles[b-oovckuxxru] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(102, 126, 234, 0.1)"/><circle cx="5" cy="15" r="0.5" fill="rgba(102, 126, 234, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-dots)"/></svg>');
  animation: float-b-oovckuxxru 20s ease-in-out infinite;
}

@keyframes float-b-oovckuxxru {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-content[b-oovckuxxru] {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge[b-oovckuxxru] {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title[b-oovckuxxru] {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.hero-subtitle[b-oovckuxxru] {
  font-size: 1.2rem;
  color: var(--secondary-text-medium);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-actions[b-oovckuxxru] {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-btn[b-oovckuxxru] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.primary-btn[b-oovckuxxru] {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 10px 30px var(--primary-purple-30);
}

.primary-btn:hover[b-oovckuxxru] {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--primary-purple-40);
}

.secondary-btn[b-oovckuxxru] {
  background: var(--primary-purple-10);
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple-20);
}

.secondary-btn:hover[b-oovckuxxru] {
  background: var(--primary-purple-20);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--primary-purple-20);
}

.hero-stats[b-oovckuxxru] {
  display: flex;
  gap: 40px;
}

.stat-item[b-oovckuxxru] {
  text-align: center;
}

.stat-number[b-oovckuxxru] {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 5px;
}

.stat-label[b-oovckuxxru] {
  font-size: 0.9rem;
  color: var(--secondary-text-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-visual[b-oovckuxxru] {
  position: relative;
  height: 500px;
  z-index: 2;
}

.floating-elements[b-oovckuxxru] {
  position: relative;
  width: 100%;
  height: 100%;
}

.tech-card[b-oovckuxxru] {
  position: absolute;
  background: var(--white-90);
  backdrop-filter: blur(20px);
  border: 1px solid var(--primary-purple-20);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px var(--black-10);
  transition: all 0.3s ease;
  animation: techFloat-b-oovckuxxru 8s ease-in-out infinite;
}

.tech-card:hover[b-oovckuxxru] {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 50px var(--black-15);
}

.tech-card i[b-oovckuxxru] {
  font-size: 2.5rem;
  color: var(--primary-purple);
}

.tech-card span[b-oovckuxxru] {
  font-weight: 600;
  color: var(--secondary-text-dark);
  font-size: 0.9rem;
}

.tech-card:nth-child(1)[b-oovckuxxru] {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.tech-card:nth-child(2)[b-oovckuxxru] {
  top: 30%;
  right: 10%;
  animation-delay: 2s;
}

.tech-card:nth-child(3)[b-oovckuxxru] {
  bottom: 30%;
  left: 10%;
  animation-delay: 4s;
}

.tech-card:nth-child(4)[b-oovckuxxru] {
  bottom: 10%;
  right: 30%;
  animation-delay: 6s;
}

@keyframes techFloat-b-oovckuxxru {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-20px) rotate(-2deg);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title[b-oovckuxxru] {
    font-size: 3rem;
  }

  .hero-section[b-oovckuxxru] {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section[b-oovckuxxru] {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 80vh;
    padding: 40px 20px;
  }

  .hero-title[b-oovckuxxru] {
    font-size: 2.5rem;
  }

  .hero-actions[b-oovckuxxru] {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn[b-oovckuxxru] {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-stats[b-oovckuxxru] {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-visual[b-oovckuxxru] {
    height: 300px;
    order: -1;
  }

  .tech-card[b-oovckuxxru] {
    padding: 15px;
  }

  .tech-card i[b-oovckuxxru] {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title[b-oovckuxxru] {
    font-size: 2rem;
  }

  .hero-subtitle[b-oovckuxxru] {
    font-size: 1rem;
  }

  .hero-actions[b-oovckuxxru] {
    gap: 15px;
  }

  .hero-btn[b-oovckuxxru] {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .stat-number[b-oovckuxxru] {
    font-size: 2rem;
  }

  .stat-label[b-oovckuxxru] {
    font-size: 0.8rem;
  }
}

/* Dark theme variants */
:root[data-theme="dark"] .hero-title[b-oovckuxxru] {
  color: var(--primary-light);
}

:root[data-theme="dark"] .hero-subtitle[b-oovckuxxru],
:root[data-theme="dark"] .stat-label[b-oovckuxxru] {
  color: var(--secondary-text-light);
}

:root[data-theme="dark"] .tech-card[b-oovckuxxru] {
  background: rgba(26, 26, 46, 0.9);
  border-color: var(--white-10);
}

:root[data-theme="dark"] .tech-card span[b-oovckuxxru] {
  color: var(--primary-light);
}
/* _content/Web/Components/Pages/PostDetails.razor.rz.scp.css */
h1[b-xcivsh4lyu] {
    margin-bottom: .5rem;
}

.post-details-page[b-xcivsh4lyu] {
    /* Prevent nav menu overlap on desktop where body isn't padded */
    padding-top: 90px; /* approx navbar height incl. shadow */
}

.post-details[b-xcivsh4lyu] {
    margin-top: 1rem;
}

.post-hero[b-xcivsh4lyu] {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: center;
    background: var(--gradient-light);
    padding: 20px;
    border-radius: 16px;
}

.post-header-image[b-xcivsh4lyu] { height: 180px; overflow: hidden; border-radius: 12px; }
.post-header-image img[b-xcivsh4lyu] { width: 100%; height: 100%; object-fit: cover; display: block; }

.post-title[b-xcivsh4lyu] { font-size: 2rem; margin: 0 0 8px 0; color: var(--secondary-text-dark); font-weight: 800; }

.post-details .meta[b-xcivsh4lyu] {
    color: var(--secondary-text-medium);
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.meta .chip[b-xcivsh4lyu] {
    background: var(--primary-purple-10);
    color: var(--primary-purple);
    padding: 6px 12px;
    border-radius: 16px;
    border: 1px solid var(--primary-purple-20);
    font-size: 0.85rem;
}

.post-details .post-actions[b-xcivsh4lyu] {
    padding: 20px;
}

.post-details .content[b-xcivsh4lyu] {
    margin-top: 1rem;
    line-height: 1.8;
    background: var(--white-95);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 18px 36px var(--black-10);
    border: 1px solid var(--white-20);
}

.post-details .content img[b-xcivsh4lyu] {
    max-width: 100%;
    height: auto;
}

.post-details .tags[b-xcivsh4lyu] {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px;
}

.post-details .tag[b-xcivsh4lyu] {
    background: var(--primary-purple-10);
    color: var(--primary-purple);
    border-radius: 16px;
    padding: 6px 12px;
    border: 1px solid var(--primary-purple-20);
    font-size: 0.85rem;
}

.post-actions[b-xcivsh4lyu] { margin: 14px 0; }
.back-link[b-xcivsh4lyu] { color: var(--secondary-text-medium); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.back-link:hover[b-xcivsh4lyu] { color: var(--primary-purple-dark); }

/* Dark mode tweaks */
:root[data-theme="dark"] .post-details .meta[b-xcivsh4lyu] { color: #a0aec0; }
:root[data-theme="dark"] .post-details .content[b-xcivsh4lyu] { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); box-shadow: 0 18px 36px rgba(0,0,0,0.35); }
:root[data-theme="dark"] .post-title[b-xcivsh4lyu] { color: #e2e8f0; }
/* _content/Web/Components/Pages/PostsList.razor.rz.scp.css */
h1[b-fwmuskpqji] {
    margin-bottom: 1rem;
}

.posts-page[b-fwmuskpqji] {
    /* Prevent nav menu overlap on desktop where body isn't padded */
    padding-top: 90px; /* approx navbar height incl. shadow */
}

.posts-list[b-fwmuskpqji] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 40px;
}

.post-item[b-fwmuskpqji] {
    background: var(--white-95);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 18px 36px var(--black-10);
    border: 1px solid var(--white-20);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.post-item:hover[b-fwmuskpqji] {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px var(--black-15);
    border-color: var(--primary-purple-30);
}

.post-item h2[b-fwmuskpqji] {
    font-size: 1.35rem;
    margin: 0 0 0.5rem 0;
    font-weight: 800;
    color: var(--secondary-text-dark);
}

/* Title link styling */
.post-item h2 a[b-fwmuskpqji] {
    color: var(--secondary-text-dark);
    text-decoration: none;
}

.post-item h2 a:hover[b-fwmuskpqji] {
    color: var(--primary-purple-dark);
}

.post-item .meta[b-fwmuskpqji] {
    color: var(--secondary-text-medium);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.post-item .meta .date[b-fwmuskpqji] {
    color: var(--secondary-text-light);
}

.post-item .meta .category[b-fwmuskpqji] {
    background: var(--primary-purple-10);
    color: var(--primary-purple);
    padding: 4px 10px;
    border-radius: 14px;
    border: 1px solid var(--primary-purple-20);
}

.post-card-media[b-fwmuskpqji] {
    height: 200px;
    position: relative;
    background: var(--primary-purple-10);
}

.post-card-media img[b-fwmuskpqji] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-card-placeholder[b-fwmuskpqji] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
}

.post-card-placeholder i[b-fwmuskpqji] { font-size: 2rem; }

.post-item .meta .tag[b-fwmuskpqji] {
    background: var(--primary-purple-10);
    border-radius: 16px;
    padding: 4px 10px;
    margin-right: 4px;
    border: 1px solid var(--primary-purple-20);
    color: var(--primary-purple);
    font-size: 0.8rem;
}

.post-item .excerpt[b-fwmuskpqji] {
    margin-top: 8px;
    color: var(--secondary-text-medium);
    line-height: 1.55;
}

.pagination[b-fwmuskpqji] {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 1rem;
}

.pagination span[b-fwmuskpqji] {
    color: var(--secondary-text-medium);
}

.pagination .btn-link[b-fwmuskpqji] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    background: var(--gradient-primary);
    box-shadow: 0 10px 30px var(--primary-purple-30);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    border: none;
}

.pagination .btn-link[disabled][b-fwmuskpqji] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination .btn-link:not([disabled]):hover[b-fwmuskpqji] {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px var(--primary-purple-40);
}

:root[data-theme="dark"] .post-item[b-fwmuskpqji] {
    background: rgba(26, 26, 46, 0.9);
    color: #e2e8f0;
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 18px 36px rgba(0,0,0,0.35);
}

:root[data-theme="dark"] .post-item .meta[b-fwmuskpqji] {
    color: #a0aec0;
}

/* Responsive */
@media (max-width: 1024px) {
    .posts-list[b-fwmuskpqji] { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .posts-list[b-fwmuskpqji] { grid-template-columns: 1fr; }
}
/* _content/Web/Components/Sections/AboutUsSection.razor.rz.scp.css */
/* Font utilities */
h1[b-2xv9anu12y], h2[b-2xv9anu12y], h3[b-2xv9anu12y], h4[b-2xv9anu12y], h5[b-2xv9anu12y], h6[b-2xv9anu12y] { font-family: var(--font-heading); }

/* General Styles */
.about-us-container[b-2xv9anu12y] {
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Hero Section */
.about-hero[b-2xv9anu12y] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.about-hero[b-2xv9anu12y]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content[b-2xv9anu12y] {
    z-index: 2;
    position: relative;
}

.hero-badge[b-2xv9anu12y] {
    display: inline-block;
    background: var(--white-20);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid var(--white-30);
}

.hero-badge span[b-2xv9anu12y] {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title[b-2xv9anu12y] {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description[b-2xv9anu12y] {
    font-size: 1.2rem;
    color: var(--white-90);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-stats[b-2xv9anu12y] {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item[b-2xv9anu12y] {
    text-align: center;
}

.stat-number[b-2xv9anu12y] {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat-label[b-2xv9anu12y] {
    font-size: 0.9rem;
    color: var(--white-80);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual[b-2xv9anu12y] {
    position: relative;
    height: 400px;
    z-index: 2;
}

.floating-elements[b-2xv9anu12y] {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card[b-2xv9anu12y] {
    position: absolute;
    background: var(--white-15);
    backdrop-filter: blur(20px);
    border: 1px solid var(--white-20);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: float-b-2xv9anu12y 6s ease-in-out infinite;
}

.floating-card i[b-2xv9anu12y] {
    font-size: 2rem;
    color: var(--accent-gold);
}

.floating-card span[b-2xv9anu12y] {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.card-1[b-2xv9anu12y] {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2[b-2xv9anu12y] {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3[b-2xv9anu12y] {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float-b-2xv9anu12y {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Mission Section */
.about-mission[b-2xv9anu12y] {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.mission-content[b-2xv9anu12y] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-title[b-2xv9anu12y] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-text-dark);
    margin-bottom: 24px;
}

.mission-description[b-2xv9anu12y] {
    font-size: 1.1rem;
    color: var(--secondary-text-medium);
    line-height: 1.7;
    margin-bottom: 30px;
}

.mission-features[b-2xv9anu12y] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item[b-2xv9anu12y] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i[b-2xv9anu12y] {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.feature-item span[b-2xv9anu12y] {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-text-dark);
}

.mission-visual[b-2xv9anu12y] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-circle[b-2xv9anu12y] {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-b-2xv9anu12y 3s ease-in-out infinite;
}

.mission-circle[b-2xv9anu12y]::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border: 2px solid var(--primary-purple-30);
    border-radius: 50%;
    animation: ripple-b-2xv9anu12y 3s ease-in-out infinite;
}

.circle-content[b-2xv9anu12y] {
    text-align: center;
    color: white;
}

.circle-content i[b-2xv9anu12y] {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.circle-content span[b-2xv9anu12y] {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse-b-2xv9anu12y {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ripple-b-2xv9anu12y {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* Team Section */
.about-team[b-2xv9anu12y] {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
}

.about-team[b-2xv9anu12y]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.team-header[b-2xv9anu12y] {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.team-title[b-2xv9anu12y] {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.team-subtitle[b-2xv9anu12y] {
    font-size: 1.2rem;
    color: var(--white-80);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid[b-2xv9anu12y] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.modern-card[b-2xv9anu12y] {
    background: var(--white-10);
    backdrop-filter: blur(20px);
    border: 1px solid var(--white-20);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-card[b-2xv9anu12y]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white-10), transparent);
    transition: left 0.5s ease;
}

.modern-card:hover[b-2xv9anu12y]::before {
    left: 100%;
}

.modern-card:hover[b-2xv9anu12y] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--black-20);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-icon[b-2xv9anu12y] {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.card-icon i[b-2xv9anu12y] {
    font-size: 2.2rem;
    color: var(--secondary-dark-blue);
}

.modern-card h3[b-2xv9anu12y] {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.modern-card p[b-2xv9anu12y] {
    font-size: 1rem;
    color: var(--white-80);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.card-features[b-2xv9anu12y] {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.feature-tag[b-2xv9anu12y] {
    background: var(--gold-20);
    color: var(--accent-gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--gold-30);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero[b-2xv9anu12y] {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 20px;
    }
    
    .hero-title[b-2xv9anu12y] {
        font-size: 2.5rem;
    }
    
    .hero-stats[b-2xv9anu12y] {
        justify-content: center;
        gap: 20px;
    }
    
    .mission-content[b-2xv9anu12y] {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-grid[b-2xv9anu12y] {
        grid-template-columns: 1fr;
    }
    
    .team-title[b-2xv9anu12y] {
        font-size: 2.2rem;
    }
}

/* Dark theme variants */
:root[data-theme="dark"] .about-hero[b-2xv9anu12y] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

:root[data-theme="dark"] .about-mission[b-2xv9anu12y] {
    background: linear-gradient(135deg, #0f0f23 0%, #16213e 100%);
}

:root[data-theme="dark"] .mission-title[b-2xv9anu12y],
:root[data-theme="dark"] .feature-item span[b-2xv9anu12y] {
    color: var(--primary-light);
}

:root[data-theme="dark"] .mission-description[b-2xv9anu12y] {
    color: var(--secondary-text-light);
}

:root[data-theme="dark"] .about-team[b-2xv9anu12y] {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}
/* _content/Web/Components/Sections/ContactSection.razor.rz.scp.css */
/* Font utilities */
h1[b-bykmwa0tqh],
h2[b-bykmwa0tqh],
h3[b-bykmwa0tqh],
h4[b-bykmwa0tqh],
h5[b-bykmwa0tqh],
h6[b-bykmwa0tqh] {
  font-family: var(--font-heading);
}

/* Contact Section */
.contact-container[b-bykmwa0tqh] {
  padding: 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.contact-container[b-bykmwa0tqh]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(102, 126, 234, 0.1)"/><circle cx="10" cy="10" r="0.5" fill="rgba(102, 126, 234, 0.05)"/><circle cx="30" cy="30" r="0.5" fill="rgba(102, 126, 234, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
  pointer-events: none;
}

.contact-hero[b-bykmwa0tqh] {
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  z-index: 2;
}

.contact-badge[b-bykmwa0tqh] {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-title[b-bykmwa0tqh] {
  font-size: 2.8rem;
  color: var(--secondary-text-dark);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-subtitle[b-bykmwa0tqh] {
  font-size: 1.2rem;
  color: var(--secondary-text-medium);
  margin-bottom: 0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid[b-bykmwa0tqh] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
  position: relative;
  z-index: 2;
}

.modern-contact-card[b-bykmwa0tqh] {
  background: var(--white-90);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px var(--black-10);
  border: 1px solid var(--white-20);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modern-contact-card[b-bykmwa0tqh]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-purple-10),
    transparent
  );
  transition: left 0.5s ease;
}

.modern-contact-card:hover[b-bykmwa0tqh]::before {
  left: 100%;
}

.modern-contact-card:hover[b-bykmwa0tqh] {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px var(--black-15);
}

.details-header[b-bykmwa0tqh],
.form-header[b-bykmwa0tqh] {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.details-icon[b-bykmwa0tqh],
.form-icon[b-bykmwa0tqh] {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details-icon i[b-bykmwa0tqh],
.form-icon i[b-bykmwa0tqh] {
  font-size: 1.8rem;
  color: white;
}

.details-header h2[b-bykmwa0tqh],
.form-header h2[b-bykmwa0tqh] {
  font-size: 1.8rem;
  color: var(--secondary-text-dark);
  margin: 0;
  font-weight: 700;
}

.contact-info[b-bykmwa0tqh] {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.info-item[b-bykmwa0tqh] {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--primary-purple-10);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-item:hover[b-bykmwa0tqh] {
  background: var(--primary-purple-20);
  transform: translateX(5px);
}

.info-icon[b-bykmwa0tqh] {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i[b-bykmwa0tqh] {
  font-size: 1.2rem;
  color: white;
}

.info-content[b-bykmwa0tqh] {
  display: flex;
  flex-direction: column;
}

.info-label[b-bykmwa0tqh] {
  font-size: 0.9rem;
  color: var(--secondary-text-medium);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value[b-bykmwa0tqh] {
  font-size: 1.1rem;
  color: var(--secondary-text-dark);
  font-weight: 600;
  margin-top: 2px;
}

.social-links[b-bykmwa0tqh] {
  position: relative;
  z-index: 2;
}

.social-links h3[b-bykmwa0tqh] {
  font-size: 1.2rem;
  color: var(--secondary-text-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.social-icons[b-bykmwa0tqh] {
  display: flex;
  gap: 15px;
}

.social-link[b-bykmwa0tqh] {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover[b-bykmwa0tqh] {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--primary-purple-30);
}

.social-link i[b-bykmwa0tqh] {
  font-size: 1.2rem;
}

/* Modern Form Styles */
.modern-form[b-bykmwa0tqh] {
  position: relative;
  z-index: 2;
}

.modern-form-group[b-bykmwa0tqh] {
  margin-bottom: 25px;
}

.modern-label[b-bykmwa0tqh] {
  display: block;
  font-weight: 600;
  color: var(--secondary-text-dark);
  margin-bottom: 8px;
  font-size: 1rem;
}

.input-wrapper[b-bykmwa0tqh],
.textarea-wrapper[b-bykmwa0tqh] {
  position: relative;
}

/* Ensure wrappers expand and inputs take full width */
.contact-form .input-wrapper[b-bykmwa0tqh],
.contact-form .textarea-wrapper[b-bykmwa0tqh] {
  width: 100%;
  display: block;
}

.input-icon[b-bykmwa0tqh] {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-purple);
  font-size: 1rem;
  z-index: 3;
}

.textarea-wrapper .input-icon[b-bykmwa0tqh] {
  top: 20px;
  transform: none;
}

/* Use ::deep to pierce Blazor CSS isolation for child components like InputText/InputTextArea */
[b-bykmwa0tqh] .modern-input,
[b-bykmwa0tqh] .modern-textarea {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid var(--primary-purple-10);
  border-radius: 12px;
  font-size: 1rem;
  background: var(--white-80);
  transition: all 0.3s ease;
  font-family: inherit;
}

/* High-specificity override to beat global inputs if any */
.contact-form[b-bykmwa0tqh]  .modern-input,
.contact-form[b-bykmwa0tqh]  .modern-textarea {
  box-sizing: border-box;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: var(--secondary-text-dark);
  padding: 14px 16px 14px 45px;
  border-radius: 12px;
}

[b-bykmwa0tqh] .modern-input:focus,
[b-bykmwa0tqh] .modern-textarea:focus {
  outline: none;
  border-color: var(--primary-purple);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--primary-purple-15);
}

[b-bykmwa0tqh] .modern-input::placeholder,
[b-bykmwa0tqh] .modern-textarea::placeholder {
  color: var(--secondary-text-light);
}

/* Textarea sizing and behavior */
.contact-form[b-bykmwa0tqh]  .modern-textarea {
  min-height: 140px;
  line-height: 1.5;
  resize: vertical;
}

/* Hover state for a bit more feedback */
.contact-form[b-bykmwa0tqh]  .modern-input:hover,
.contact-form[b-bykmwa0tqh]  .modern-textarea:hover {
  border-color: #c7d2fe; /* light indigo */
}

.modern-submit-btn[b-bykmwa0tqh] {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-submit-btn:hover[b-bykmwa0tqh] {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--primary-purple-30);
}

.modern-submit-btn i[b-bykmwa0tqh] {
  font-size: 1rem;
}

/* Modern Alert Styles */
.modern-alert[b-bykmwa0tqh] {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--white-95);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 20px 40px var(--black-10);
  border: 1px solid var(--white-20);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2000;
  animation: slideIn-b-bykmwa0tqh 0.3s ease;
}

.success-alert[b-bykmwa0tqh] {
  border-left: 4px solid var(--accent-green);
}

.alert-icon[b-bykmwa0tqh] {
  width: 50px;
  height: 50px;
  background: var(--gradient-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-icon i[b-bykmwa0tqh] {
  font-size: 1.5rem;
  color: white;
}

.alert-content h4[b-bykmwa0tqh] {
  margin: 0 0 5px 0;
  color: var(--secondary-text-dark);
  font-size: 1.1rem;
  font-weight: 600;
}

.alert-content p[b-bykmwa0tqh] {
  margin: 0;
  color: var(--secondary-text-medium);
  font-size: 0.95rem;
}

@keyframes slideIn-b-bykmwa0tqh {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title[b-bykmwa0tqh] {
    font-size: 2.2rem;
  }

  .contact-grid[b-bykmwa0tqh] {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px 60px;
  }

  .modern-contact-card[b-bykmwa0tqh] {
    padding: 30px 25px;
  }

  .modern-alert[b-bykmwa0tqh] {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 20px;
    z-index: 2000;
  }
}

/* Dark theme variants */
:root[data-theme="dark"] .contact-container[b-bykmwa0tqh] {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

:root[data-theme="dark"] .contact-title[b-bykmwa0tqh],
:root[data-theme="dark"] .details-header h2[b-bykmwa0tqh],
:root[data-theme="dark"] .form-header h2[b-bykmwa0tqh] {
  color: var(--primary-light);
}

:root[data-theme="dark"] .contact-subtitle[b-bykmwa0tqh],
:root[data-theme="dark"] .info-label[b-bykmwa0tqh],
:root[data-theme="dark"] .info-value[b-bykmwa0tqh] {
  color: var(--secondary-text-light);
}

:root[data-theme="dark"] .modern-contact-card[b-bykmwa0tqh] {
  background: rgba(26, 26, 46, 0.9);
  border-color: var(--white-10);
}
/* _content/Web/Components/Sections/CookieBanner.razor.rz.scp.css */
.cookie-banner[b-bsaazqf55o] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 1100; /* above navbar/footer */
    animation: slideUp-b-bsaazqf55o 320ms ease-out;
}

.cookie-inner[b-bsaazqf55o] {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white-95);
    backdrop-filter: blur(14px);
    border: 1px solid var(--white-20);
    box-shadow: 0 18px 36px var(--black-10);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-text[b-bsaazqf55o] {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .cookie-text i[b-bsaazqf55o] {
        color: var(--primary-purple);
        font-size: 1.1rem;
    }

    .cookie-text p[b-bsaazqf55o] {
        margin: 0;
        color: var(--secondary-text-dark);
        font-size: 0.95rem;
    }

.cookie-actions[b-bsaazqf55o] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-banner .btn[b-bsaazqf55o] {
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.95rem;
}

.accept-btn[b-bsaazqf55o] {
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 30px var(--primary-purple-30);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .accept-btn:hover[b-bsaazqf55o] {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px var(--primary-purple-40);
    }

.policy-link[b-bsaazqf55o] {
    background: transparent;
    color: var(--primary-purple);
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--primary-purple-20);
    font-weight: 600;
}

    .policy-link:hover[b-bsaazqf55o] {
        background: var(--primary-purple-10);
    }

@keyframes slideUp-b-bsaazqf55o {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-inner[b-bsaazqf55o] {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cookie-actions[b-bsaazqf55o] {
        justify-content: flex-end;
    }
}

/* Dark theme */
:root[data-theme="dark"] .cookie-inner[b-bsaazqf55o] {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 18px 36px rgba(0,0,0,0.35);
}

:root[data-theme="dark"] .cookie-text p[b-bsaazqf55o] {
    color: #e2e8f0;
}

:root[data-theme="dark"] .policy-link[b-bsaazqf55o] {
    color: #c7b5ff;
    border-color: rgba(118, 75, 162, 0.35);
}
/* _content/Web/Components/Sections/PortfolioSection.razor.rz.scp.css */
/* Font utilities */
h1[b-sr8sz9mand], h2[b-sr8sz9mand], h3[b-sr8sz9mand], h4[b-sr8sz9mand], h5[b-sr8sz9mand], h6[b-sr8sz9mand] { font-family: var(--font-heading); }

/* Portfolio Section */
.portfolio-container[b-sr8sz9mand] {
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-container[b-sr8sz9mand]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(102, 126, 234, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.portfolio-hero[b-sr8sz9mand] {
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    z-index: 2;
}

.portfolio-badge[b-sr8sz9mand] {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-title[b-sr8sz9mand] {
    font-size: 2.8rem;
    color: var(--secondary-text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.portfolio-subtitle[b-sr8sz9mand] {
    font-size: 1.2rem;
    color: var(--secondary-text-medium);
    margin-bottom: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.portfolio-grid[b-sr8sz9mand] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    position: relative;
    z-index: 2;
}

.modern-portfolio-card[b-sr8sz9mand] {
    background: var(--white-90);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--black-10);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--white-20);
    position: relative;
}

.modern-portfolio-card:hover[b-sr8sz9mand] {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--black-15);
}

.modern-portfolio-card.featured[b-sr8sz9mand] {
    border: 2px solid var(--primary-purple);
    transform: scale(1.02);
}

.modern-portfolio-card.featured:hover[b-sr8sz9mand] {
    transform: scale(1.02) translateY(-10px);
}

.portfolio-image[b-sr8sz9mand] {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img[b-sr8sz9mand] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-portfolio-card:hover .portfolio-image img[b-sr8sz9mand] {
    transform: scale(1.1);
}

.portfolio-overlay[b-sr8sz9mand] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-portfolio-card:hover .portfolio-overlay[b-sr8sz9mand] {
    opacity: 1;
}

.overlay-content[b-sr8sz9mand] {
    text-align: center;
    color: white;
}

.overlay-content i[b-sr8sz9mand] {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.overlay-content span[b-sr8sz9mand] {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-badge[b-sr8sz9mand] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-accent);
    color: #1a1a2e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.portfolio-content[b-sr8sz9mand] {
    padding: 25px;
    text-align: left;
}

.project-category[b-sr8sz9mand] {
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.portfolio-content h3[b-sr8sz9mand] {
    font-size: 1.4rem;
    margin: 0 0 12px 0;
    color: var(--secondary-text-dark);
    font-weight: 700;
}

.portfolio-content p[b-sr8sz9mand] {
    font-size: 1rem;
    color: var(--secondary-text-medium);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.tags[b-sr8sz9mand] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-primary[b-sr8sz9mand] {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tag-secondary[b-sr8sz9mand] {
    background: var(--primary-purple-10);
    color: var(--primary-purple);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--primary-purple-20);
}

.tag-accent[b-sr8sz9mand] {
    background: var(--green-10);
    color: var(--accent-green);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--green-20);
}

.portfolio-cta[b-sr8sz9mand] {
    text-align: center;
    padding: 40px 20px 80px;
    position: relative;
    z-index: 2;
}

.portfolio-btn[b-sr8sz9mand] {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px var(--primary-purple-30);
}

.portfolio-btn:hover[b-sr8sz9mand] {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--primary-purple-40);
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-title[b-sr8sz9mand] {
        font-size: 2.2rem;
    }
    
    .portfolio-grid[b-sr8sz9mand] {
        grid-template-columns: 1fr;
        padding: 0 20px 40px;
    }
    
    .modern-portfolio-card.featured[b-sr8sz9mand] {
        transform: none;
    }
    
    .modern-portfolio-card.featured:hover[b-sr8sz9mand] {
        transform: translateY(-10px);
    }
}

/* Dark theme variants */
:root[data-theme="dark"] .portfolio-container[b-sr8sz9mand] {
    background-color: var(--primary-dark);
}

:root[data-theme="dark"] .portfolio-item[b-sr8sz9mand] {
    background: #222;
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

:root[data-theme="dark"] .portfolio-content h3[b-sr8sz9mand] {
    color: var(--primary-light);
}

:root[data-theme="dark"] .portfolio-content p[b-sr8sz9mand] {
    color: var(--primary-light);
    opacity: 0.85;
}

:root[data-theme="dark"] .tags span[b-sr8sz9mand] {
    background-color: rgba(41, 121, 255, 0.18);
}
/* _content/Web/Components/Sections/PostsSection.razor.rz.scp.css */
/* Font alignment */
h1[b-rbcy13bil6], h2[b-rbcy13bil6], h3[b-rbcy13bil6], h4[b-rbcy13bil6], h5[b-rbcy13bil6], h6[b-rbcy13bil6] { font-family: var(--font-heading); }

/* Container with subtle gradient and pattern, matching portfolio/services vibe */
.posts-container[b-rbcy13bil6] {
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e6ecff 100%);
    position: relative;
    overflow: hidden;
}

.posts-container[b-rbcy13bil6]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="12" height="12" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="1" fill="rgba(102, 126, 234, 0.18)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

/* Header */
.posts-hero[b-rbcy13bil6] {
    text-align: center;
    padding: 80px 20px 50px;
    position: relative;
    z-index: 2;
}

.posts-badge[b-rbcy13bil6] {
    display: inline-block;
    background: var(--gradient-primary);
    color: #ffffff !important;
    padding: 8px 24px;
    border-radius: 999px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px;
}

.posts-title[b-rbcy13bil6] {
    font-size: 2.6rem;
    margin: 0 0 12px 0;
    color: var(--secondary-text-dark);
    font-weight: 800;
}

.posts-subtitle[b-rbcy13bil6] {
    font-size: 1.1rem;
    color: var(--secondary-text-medium);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid */
.posts-grid[b-rbcy13bil6] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    position: relative;
    z-index: 2;
}

/* Card */
.modern-post-card[b-rbcy13bil6] {
    background: var(--white-95);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--white-20);
    box-shadow: 0 18px 36px var(--black-10);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    height: 100%;
}

.modern-post-card:hover[b-rbcy13bil6] {
    transform: translateY(-8px);
    box-shadow: 0 26px 52px var(--black-15);
    border-color: var(--primary-purple-30);
}

.post-card-link[b-rbcy13bil6] { display: block; color: inherit; text-decoration: none; }

.post-card-media[b-rbcy13bil6] {
    height: 200px;
    position: relative;
    background: var(--primary-purple-10);
}

.post-card-media img[b-rbcy13bil6] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-card-placeholder[b-rbcy13bil6] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
}

.post-card-placeholder i[b-rbcy13bil6] { font-size: 2rem; }

.post-card-content[b-rbcy13bil6] {
    padding: 20px 22px 22px;
}

.post-card-meta[b-rbcy13bil6] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-text-medium);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.post-card-title[b-rbcy13bil6] {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-text-dark);
    margin: 0 0 8px 0;
}

.post-card-excerpt[b-rbcy13bil6] {
    color: var(--secondary-text-medium);
    margin: 0 0 14px 0;
    line-height: 1.55;
}

.post-card-tags[b-rbcy13bil6] { display: flex; flex-wrap: wrap; gap: 8px; }
.post-card-tags .tag[b-rbcy13bil6] {
    background: var(--primary-purple-10);
    color: var(--primary-purple);
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.8rem;
    border: 1px solid var(--primary-purple-20);
}

/* Actions */
.posts-actions[b-rbcy13bil6] {
    text-align: center;
    padding: 10px 20px 70px;
}

.posts-container .posts-actions .posts-btn[b-rbcy13bil6],
.posts-actions a.posts-btn[b-rbcy13bil6],
a.posts-btn[b-rbcy13bil6] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px var(--primary-purple-30);
    text-decoration: none ;
}


.posts-actions .posts-btn:hover[b-rbcy13bil6],
a.posts-btn:hover[b-rbcy13bil6],
.posts-actions .posts-btn.active[b-rbcy13bil6],
a.posts-btn.active[b-rbcy13bil6] {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--primary-purple-40);
}

.posts-actions .posts-btn:focus-visible[b-rbcy13bil6],
a.posts-btn:focus-visible[b-rbcy13bil6] {
    outline: 3px solid var(--primary-purple-30);
    outline-offset: 2px;
}

:root[data-theme="dark"] .posts-actions .posts-btn[b-rbcy13bil6],
:root[data-theme="dark"] a.posts-btn[b-rbcy13bil6] {
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

/* Responsive */
@media (max-width: 768px) {
    .posts-title[b-rbcy13bil6] { font-size: 2.1rem; }
    .posts-grid[b-rbcy13bil6] { grid-template-columns: 1fr; padding-bottom: 40px; }
}

/* Dark theme */
:root[data-theme="dark"] .posts-container[b-rbcy13bil6] { background: linear-gradient(135deg, #1b1b2d 0%, #24243e 100%); }
:root[data-theme="dark"] .modern-post-card[b-rbcy13bil6] { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); box-shadow: 0 18px 36px rgba(0,0,0,0.35); }
:root[data-theme="dark"] .post-card-title[b-rbcy13bil6] { color: #e2e8f0; }
:root[data-theme="dark"] .post-card-excerpt[b-rbcy13bil6], :root[data-theme="dark"] .post-card-meta[b-rbcy13bil6] { color: #a0aec0; }
:root[data-theme="dark"] .post-card-tags .tag[b-rbcy13bil6] { background: rgba(118, 75, 162, 0.18); color: #c7b5ff; border-color: rgba(118, 75, 162, 0.35); }

/* Skeleton styles */
.posts-skeleton .skeleton-card[b-rbcy13bil6] {
    background: var(--white-95);
    border: 1px solid var(--white-20);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 36px var(--black-10);
}

.skeleton-media[b-rbcy13bil6] {
    height: 200px;
    background: var(--primary-purple-10);
}

.skeleton-content[b-rbcy13bil6] { padding: 18px 22px 22px; }
.skeleton-line[b-rbcy13bil6] {
    height: 14px;
    background: rgba(0,0,0,0.08);
    border-radius: 8px;
    margin-bottom: 10px;
}
.skeleton-line.w-40[b-rbcy13bil6] { width: 40%; }
.skeleton-line.w-60[b-rbcy13bil6] { width: 60%; }
.skeleton-line.w-80[b-rbcy13bil6] { width: 80%; }

.shimmer[b-rbcy13bil6] {
    position: relative;
    overflow: hidden;
}
.shimmer[b-rbcy13bil6]::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    height: 100%; width: 150%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shimmer-b-rbcy13bil6 1.3s infinite;
}

@keyframes shimmer-b-rbcy13bil6 {
    100% { left: 150%; }
}
/* _content/Web/Components/Sections/ServicesSection.razor.rz.scp.css */
/* Font utilities */
h1[b-z0rit7twf9], h2[b-z0rit7twf9], h3[b-z0rit7twf9], h4[b-z0rit7twf9], h5[b-z0rit7twf9], h6[b-z0rit7twf9] { font-family: var(--font-heading); }

.services-container[b-z0rit7twf9] {
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.services-container[b-z0rit7twf9]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.4 50,28.9 25,43.4 0,28.9 0,14.4" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
    pointer-events: none;
}

.services-hero[b-z0rit7twf9] {
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    z-index: 2;
}

.services-badge[b-z0rit7twf9] {
    display: inline-block;
    background: var(--white-20);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid var(--white-30);
}

.services-badge span[b-z0rit7twf9] {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-title[b-z0rit7twf9] {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.services-subtitle[b-z0rit7twf9] {
    font-size: 1.2rem;
    color: var(--white-90);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid[b-z0rit7twf9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
    position: relative;
    z-index: 2;
}

.modern-service-card[b-z0rit7twf9] {
    background: var(--white-95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px var(--black-10);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--white-20);
}

.modern-service-card[b-z0rit7twf9]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-purple-10), transparent);
    transition: left 0.5s ease;
}

.modern-service-card:hover[b-z0rit7twf9]::before {
    left: 100%;
}

.modern-service-card:hover[b-z0rit7twf9] {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--black-15);
    border-color: var(--primary-purple-30);
}


.service-header[b-z0rit7twf9] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-icon[b-z0rit7twf9] {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon[b-z0rit7twf9]::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
}

.service-icon i[b-z0rit7twf9] {
    font-size: 2.2rem;
    color: white;
}

.service-badge[b-z0rit7twf9] {
    background: var(--primary-purple);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-title[b-z0rit7twf9] {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--secondary-text-dark);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-description[b-z0rit7twf9] {
    color: var(--secondary-text-medium);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.service-features[b-z0rit7twf9] {
    margin: 25px 0;
    position: relative;
    z-index: 2;
}

.feature[b-z0rit7twf9] {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature i[b-z0rit7twf9] {
    width: 20px;
    height: 20px;
    background: var(--gradient-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.feature span[b-z0rit7twf9] {
    color: var(--secondary-text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-action[b-z0rit7twf9] {
    margin-top: auto;
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.service-btn[b-z0rit7twf9] {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-btn:hover[b-z0rit7twf9] {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--primary-purple-30);
}


/* Responsive Design */
@media (max-width: 768px) {
    .services-title[b-z0rit7twf9] {
        font-size: 2.2rem;
    }
    
    .services-grid[b-z0rit7twf9] {
        grid-template-columns: 1fr;
        padding: 0 20px 60px;
    }
    
}

/* Dark mode support (opt-in via data-theme="dark") */
:root[data-theme="dark"] .services-container[b-z0rit7twf9] {
    background-color: var(--primary-dark);
    color: var(--primary-light);
}

:root[data-theme="dark"] .service-card[b-z0rit7twf9] {
    background: var(--primary-dark);
    color: var(--primary-light);
}

:root[data-theme="dark"] .service-title[b-z0rit7twf9] {
    color: var(--primary-light);
}

:root[data-theme="dark"] .service-description[b-z0rit7twf9],
:root[data-theme="dark"] .feature span[b-z0rit7twf9] {
    color: var(--primary-light);
    opacity: 0.85;
}

:root[data-theme="dark"] .section-title[b-z0rit7twf9] {
    color: var(--primary-light);
}

:root[data-theme="dark"] .section-subtitle[b-z0rit7twf9] {
    color: var(--primary-light);
    opacity: 0.85;
}

:root[data-theme="dark"] .service-icon[b-z0rit7twf9] {
    background: transparent;
    box-shadow: inset 0 0 0 2px var(--primary-blue); /* keep the ring visible in dark mode */
}


.service-item[b-z0rit7twf9] {
    background: var(--primary-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px var(--black-10);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover[b-z0rit7twf9] {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px var(--black-20);
}

.service-item i[b-z0rit7twf9] {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-item h3[b-z0rit7twf9] {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-item p[b-z0rit7twf9] {
    font-size: 1rem;
    color: var(--primary-dark);
    opacity: 0.8;
}

/* Subsection Styling */
.service-subsection[b-z0rit7twf9] {
    margin-top: 20px;
    background-color: var(--primary-light);
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-blue);
    text-align: left;
}

.service-subsection h4[b-z0rit7twf9] {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.service-subsection ul[b-z0rit7twf9] {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.service-subsection ul li[b-z0rit7twf9] {
    font-size: 1rem;
    color: var(--primary-dark);
    opacity: 0.85;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-subsection ul li[b-z0rit7twf9]::before {
    content: "\2022";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* General Section Title Styling */
.services-container h1[b-z0rit7twf9] {
    font-size: 2.8rem; /* Bigger and more impactful */
    font-weight: 700; /* Bold for emphasis */
    text-align: center; /* Center the text */
    color: var(--primary-dark);
    margin-bottom: 10px; /* Add spacing below the title */
    text-transform: uppercase; /* Optional: make it all caps */
}

/* Subtitle Styling */
.services-container > p[b-z0rit7twf9] {
    font-size: 1.4rem; /* Slightly larger for readability */
    color: var(--primary-dark);
    opacity: 0.8; /* Softer appearance while retaining contrast */
    text-align: center; /* Center-align the subtitle */
    margin-bottom: 30px; /* Add space below the subtitle */
    line-height: 1.6; /* Improve readability */
}

/* Add Spacing Around the Entire Section */
.services-container[b-z0rit7twf9] {
    padding-top: 40px; /* Space above the section */
    padding-bottom: 40px; /* Space below the section */
}
/* _content/Web/Components/Sections/TestimonialsSection.razor.rz.scp.css */
/* Font utilities */
h1[b-mzqyu92zgt], h2[b-mzqyu92zgt], h3[b-mzqyu92zgt], h4[b-mzqyu92zgt], h5[b-mzqyu92zgt], h6[b-mzqyu92zgt] { font-family: var(--font-heading); }

/* Testimonials Section */
.testimonials-container[b-mzqyu92zgt] {
    padding: 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-container[b-mzqyu92zgt]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="5" cy="5" r="0.5" fill="white" opacity="0.05"/><circle cx="15" cy="15" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    pointer-events: none;
}

.testimonials-hero[b-mzqyu92zgt] {
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    z-index: 2;
}

.testimonials-badge[b-mzqyu92zgt] {
    display: inline-block;
    background: var(--white-20);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--white-30);
}

.testimonials-title[b-mzqyu92zgt] {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.testimonials-subtitle[b-mzqyu92zgt] {
    font-size: 1.2rem;
    color: var(--white-80);
    margin-bottom: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid[b-mzqyu92zgt] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    position: relative;
    z-index: 2;
}

.modern-testimonial-card[b-mzqyu92zgt] {
    background: var(--white-10);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--white-20);
    box-shadow: 0 20px 40px var(--black-10);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-testimonial-card[b-mzqyu92zgt]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white-10), transparent);
    transition: left 0.5s ease;
}

.modern-testimonial-card:hover[b-mzqyu92zgt]::before {
    left: 100%;
}

.modern-testimonial-card:hover[b-mzqyu92zgt] {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--black-20);
    border-color: rgba(255, 255, 255, 0.4);
}

.modern-testimonial-card.featured[b-mzqyu92zgt] {
    border: 2px solid var(--accent-gold);
    transform: scale(1.02);
}

.modern-testimonial-card.featured:hover[b-mzqyu92zgt] {
    transform: scale(1.02) translateY(-10px);
}

.testimonial-header[b-mzqyu92zgt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.quote-icon[b-mzqyu92zgt] {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i[b-mzqyu92zgt] {
    font-size: 1.5rem;
    color: var(--secondary-dark-blue);
}

.rating[b-mzqyu92zgt] {
    display: flex;
    gap: 4px;
}

.rating i[b-mzqyu92zgt] {
    color: var(--accent-gold);
    font-size: 1rem;
}

.featured-badge[b-mzqyu92zgt] {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gradient-accent);
    color: #1a1a2e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.testimonial-text[b-mzqyu92zgt] {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--white-90);
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.testimonial-author[b-mzqyu92zgt] {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.author-avatar[b-mzqyu92zgt] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.author-avatar img[b-mzqyu92zgt] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--gradient-primary);
}

.author-info h4[b-mzqyu92zgt] {
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    color: white;
    font-weight: 600;
}

.author-info span[b-mzqyu92zgt] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-title[b-mzqyu92zgt] {
        font-size: 2.2rem;
    }
    
    .testimonials-grid[b-mzqyu92zgt] {
        grid-template-columns: 1fr;
        padding: 0 20px 40px;
    }
    
    .modern-testimonial-card.featured[b-mzqyu92zgt] {
        transform: none;
    }
    
    .modern-testimonial-card.featured:hover[b-mzqyu92zgt] {
        transform: translateY(-10px);
    }
    
    .testimonial-header[b-mzqyu92zgt] {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Dark theme variants */
:root[data-theme="dark"] .testimonials-container[b-mzqyu92zgt] {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}
