:root {
  --primary: #0a0a0a;
  --accent-primary: #2DC582;
  --accent-secondary: #009BFF;
  --accent-tertiary: #FFC400;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --surface: #111111;
  --surface-light: #1a1a1a;
  --border: #333333;
  --gradient-primary: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  --gradient-secondary: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  --gradient-tertiary: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.7);
  --glow: 0 0 20px rgba(0, 188, 212, 0.3);
  --glow-secondary: 0 0 20px rgba(233, 30, 99, 0.3);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "Helvetica";
  background-color: var(--primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
  font-weight: bold;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  font-weight: light;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}


.gradient-text-word,
.gradient-text.word {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--text-primary);
    background-clip: text;
}


a{
    text-decoration: none;
}
/* Navigation */
.navbar {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  max-width: 100%;
  /* Enhanced glass morphism with stronger blur and more transparent background */
  /* background: rgba(10, 10, 10, 0.05);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.15); */
  /* Fully rounded corners for floating effect */
  border-radius: 10px;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05) inset; */
  z-index: 1000;
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  width: 100%;
  gap: 1rem;
}

.nav-logo {
  margin-left: -5rem;
  margin-top: -1rem;
}

.prism-logo {
  margin-right: -5rem;
  margin-top: -1rem;
}

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

.user-section {
  margin-top: -1rem;
}

.kpoint-logo {
  height: 3.75rem;
  width: auto;
  display: block;
}

.logo {
  height: 1.5rem;
  width: auto;
  display: block;
  margin-right: 1rem;
}

.logo-edith {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-subtitle {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 188, 212, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
  background: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.services-background {
  z-index: 0;
  pointer-events: none;
}

.gradient-orb {
  animation: morphing 8s ease-in-out infinite, float 6s ease-in-out infinite;
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.orb-1 {
  animation: morphing 8s ease-in-out infinite, float 6s ease-in-out infinite;
  animation-delay: 0s, 0s;
  width: 350px;
  height: 350px;
  background: var(--accent-primary);
  top: 20%;
  left: 5%;
}

.orb-2 {
  animation: morphing 10s ease-in-out infinite reverse, float 8s ease-in-out infinite;
  animation-delay: 0s, 0s;
  width: 350px;
  height: 350px;
  background: var(--accent-secondary);
  top: 60%;
  right: 5%;
}

/* .orb-3 {
  animation: morphing 12s ease-in-out infinite, float 10s ease-in-out infinite;
  animation-delay: 4s, 4s;
  width: 250px;
  height: 250px;
  background: var(--accent-primary);
  bottom: 20%;
  left: 60%;
} */

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes morphing {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: light;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--gradient-primary);
  position: relative;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent-primary);
  border-bottom: 2px solid var(--accent-primary);
  transform: rotate(45deg);
}

/* Company Logos Section */
.company-logos {
  padding: 60px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logos-container {
  text-align: center;
  margin-bottom: 2rem;
}

.logos-container h3 {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 400;
}

.logos-slider {
  overflow: hidden;
  position: relative;
  height: 80px;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}

.logo-item {
  height: 60px;
  width: 120px;
  background: var(--surface-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo-item:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.logo-item img {
  max-height: 40px;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  transition: filter 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%) brightness(1);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.get-started-btn {
    /* background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary)); */
    /* color: white; */
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.get-started-btn img {
    height: 20px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
} 


/* Footer */
.footer {
  background: var(--surface);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-primary);
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--surface-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.social-link:hover {
  background: var(--gradient-primary);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-muted);
  margin: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--surface);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  /* Navigation Mobile */
  .navbar {
    width: 95%;
    top: 10px;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }

  .nav-logo {
    margin-left: 0;
    margin-top: 0;
  }

  .prism-logo {
    margin-right: 0;
    margin-top: 0;
  }

  .kpoint-logo {
    height: 2.5rem;
  }

  .logo {
    height: 1.2rem;
  }

  /* Hero Section Mobile */
  .hero {
    min-height: 80vh;
    padding: 80px 0 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* Services Section Mobile */
  .services-section {
    padding: 100px 0 30px;
  }

  .services-grid-detailed {
    gap: 1.5rem;
  }

  .service-card-detailed {
    padding: 1.5rem;
  }

  .service-header h3 {
    font-size: 1.3rem;
  }

  /* Edith Card Mobile */
  .edith-card-layout {
    gap: 1.5rem;
  }

  .edith-card-body {
    flex-direction: column;
    gap: 1.5rem;
  }

  .edith-card-content .service-features {
    margin-left: 0;
  }

  .edith-card-media .edith-preview-image {
    margin-left: 0;
  }

  .edith-card-media {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .edith-preview-image {
    width: 100%;
    max-width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .edith-subtext {
    font-size: 0.95rem;
  }

  /* General Content */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats {
    justify-content: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .logos-track {
    gap: 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 15px;
  }

  section {
    padding: 60px 0;
  }

  /* Buttons Mobile */
  .btn {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
  }

  /* Footer Mobile */
  .footer-tagline {
    font-size: 1.1rem;
    margin-top: 4rem;
  }

  /* Lab Updates Mobile */
  .lab-updates-section {
    padding: 40px 0 30px;
  }

  .lab-updates-content {
    padding: 0 15px;
  }

  .lab-updates-content h2 {
    font-size: 2rem;
    margin: 1rem 0 0.75rem;
  }

  .lab-updates-content p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .lab-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }

  /* Gradient Orbs Mobile */
  .gradient-orb {
    filter: blur(80px);
  }

  .orb-1 {
    width: 250px;
    height: 250px;
  }

  .orb-2 {
    width: 250px;
    height: 250px;
  }

  /* Auth Mobile */
  .signin-content {
    padding: 2rem 1.5rem;
    width: 92vw;
  }

  .signin-header {
    margin-bottom: 2rem;
  }

  .signin-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .signin-subtitle {
    font-size: 1rem;
  }

  .kpoint-logo-signin {
    height: 3rem;
    margin-bottom: 1rem;
  }

  .signin-note {
    font-size: 0.8rem;
  }

  .user-section {
    gap: 0.5rem;
    margin-top: 0;
  }

  .user-name {
    display: none;
  }

  .nav-right {
    gap: 1rem;
  }

  .sign-out-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
  }

  .prism-logo {
    margin-top: 0;
  }

  /* Blogs Drawer Mobile */
  .blogs-drawer {
    width: 320px;
    left: -320px;
  }

  .drawer-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .drawer-header h2 {
    font-size: 1.5rem;
  }

  .drawer-subtitle {
    padding: 0 1.5rem 1rem;
    font-size: 0.9rem;
  }

  .blogs-list {
    padding: 1rem 1.5rem 1.5rem;
  }

  .blog-card {
    padding: 1.25rem;
  }

  .blog-image {
    height: 120px;
  }

  .drawer-toggle-btn {
    padding: 0.85rem 0.4rem;
  }
}

@media (max-width: 480px) {
  /* Navigation Extra Small */
  .navbar {
    width: 98%;
    top: 5px;
  }

  .nav-container {
    padding: 0.5rem 0.75rem;
  }

  .kpoint-logo {
    height: 2rem;
  }

  .logo {
    height: 1rem;
  }

  /* Hero Extra Small */
  .hero {
    min-height: 70vh;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 5px;
  }

  .hero-buttons {
    width: 100%;
    padding: 0 10px;
  }

  /* Services Extra Small */
  .services-section {
    padding: 80px 0 20px;
  }

  .service-card-detailed {
    padding: 1.25rem;
  }

  .service-header h3 {
    font-size: 1.2rem;
  }

  .service-features li {
    font-size: 0.9rem;
  }

  /* Edith Card Extra Small */
  .edith-card-content .service-features {
    margin-left: 0;
  }

  .edith-card-media .edith-preview-image {
    margin-left: 0;
  }

  .edith-subtext {
    font-size: 0.9rem;
  }

  .edith-preview-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
  }

  .edith-card-media {
    width: 100%;
    padding: 0;
  }

  /* Typography Extra Small */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  p {
    font-size: 0.95rem;
  }

  /* Buttons Extra Small */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .btn-large {
    padding: 1rem 1.75rem;
    font-size: 0.95rem;
  }

  /* Cards Extra Small */
  .service-card {
    padding: 1.25rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  /* Footer Extra Small */
  .footer-tagline {
    font-size: 1rem;
    margin-top: 3rem;
  }

  /* Lab Updates Extra Small */
  .lab-updates-section {
    padding: 30px 0 20px;
  }

  .lab-updates-content {
    padding: 0 10px;
  }

  .lab-updates-content h2 {
    font-size: 1.75rem;
    margin: 0.75rem 0 0.5rem;
  }

  .lab-updates-content p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .lab-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.7rem;
  }

  /* Container Extra Small */
  .container {
    padding: 0 10px;
  }

  section {
    padding: 40px 0;
  }

  /* Gradient Orbs Extra Small */
  .orb-1 {
    width: 200px;
    height: 200px;
  }

  .orb-2 {
    width: 200px;
    height: 200px;
  }

  /* Auth Extra Small */
  .signin-content {
    padding: 1.5rem 1rem;
    width: 96vw;
    border-radius: 1.5rem;
  }

  .signin-header {
    margin-bottom: 1.5rem;
  }

  .signin-title {
    font-size: 1.75rem;
    line-height: 1.15;
    margin: 1rem 0 0.75rem;
  }

  .signin-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .kpoint-logo-signin {
    height: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .signin-form {
    gap: 1rem;
  }

  .signin-note {
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }

  .sign-out-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .nav-right {
    gap: 0.75rem;
  }

  .user-section {
    margin-top: 0;
  }

  .prism-logo {
    margin-top: 0;
  }

  #googleSignInButton {
    transform: scale(0.95);
  }

  /* Blogs Drawer Extra Small */
  .blogs-drawer {
    width: 280px;
    left: -280px;
  }

  .drawer-header {
    padding: 1.25rem 1.25rem 0.75rem;
  }

  .drawer-header h2 {
    font-size: 1.3rem;
  }

  .drawer-close-btn {
    width: 32px;
    height: 32px;
  }

  .drawer-subtitle {
    padding: 0 1.25rem 0.75rem;
    font-size: 0.85rem;
  }

  .blogs-list {
    padding: 0.75rem 1.25rem 1.25rem;
  }

  .blog-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .blog-image {
    height: 100px;
  }

  .blog-title {
    font-size: 1rem;
  }

  .blog-excerpt {
    font-size: 0.85rem;
  }

  .drawer-toggle-btn {
    padding: 0.75rem 0.35rem;
  }

  .drawer-toggle-btn i {
    font-size: 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}

/* Loading Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading {
  animation: spin 1s linear infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--surface);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* Magnetic Button Effect */
.btn-magnetic {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.btn-magnetic::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.btn-magnetic:hover::before {
  left: 100%;
}

.btn-magnetic:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 188, 212, 0.4);
}

/* Performance Optimizations */
* {
  will-change: auto;
}

.hero,
.service-card,
.btn {
  will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Optimize images */
img {
  max-width: 100%;
  height: auto;
  /* loading: lazy; */
}

/* About Page */
/* About Page Specific Styles */

/* Page Header */
.page-header {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--surface), var(--surface-light));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.1;
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}


/* Services Page Specific Styles */

/* Services Section */
.services-section {
  padding: 160px 0 40px;
  /* background: linear-gradient(135deg, var(--surface), var(--surface-light)); */
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.05;
  z-index: 1;
}

.services-grid-detailed {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.services-grid-detailed > .service-card-detailed:first-child {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .services-grid-detailed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid-detailed > .service-card-detailed:first-child {
    grid-column: 1 / -1;
  }
}

/* Tool Picker Section */
.usage-section {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(147, 51, 234, 0.08));
  position: relative;
  overflow: hidden;
}

.usage-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.usage-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 2rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.usage-context {
  font-weight: 500;
  color: var(--text-primary);
}

.usage-arrow {
  color: var(--accent-primary);
  font-size: 1.2rem;
}

.usage-tools {
  font-weight: 600;
  color: var(--text-secondary);
}

/* Lab Updates Section */
.lab-updates-section {
  padding: 60px 0 40px;
  position: relative;
  background: transparent;
  z-index: 2;
}

.lab-updates-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.lab-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  /* background: rgba(255, 196, 0, 0.15); */
  /* border: 1px solid rgba(255, 196, 0, 0.4); */
  color: var(--accent-tertiary);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: bold;
}

.lab-updates-content h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin: 1.5rem 0 1rem;
}

.lab-updates-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.lab-divider {
  display: block;
  width: 72px;
  height: 2px;
  margin: 1.75rem auto 1.25rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 999px;
  opacity: 0.8;
}

/* Site Footer */
.site-footer {
  /* background: var(--surface-light); */
  /* border-top: 1px solid var(--border); */
  padding: 20px 0 20px;
  text-align: center;
}

.footer-tagline {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text-primary);
  margin-top: 6rem;
}

.footer-note {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .usage-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .usage-arrow {
    display: none;
  }

  .usage-tools {
    color: var(--text-primary);
  }

  .lab-card {
    padding: 2.25rem;
  }
}

.service-card-detailed {
  /* Enhanced glass morphism with stronger blur and more refined transparency */
  background: rgba(26, 26, 26, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* More rounded corners for enhanced glass effect */
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 1px 0 rgba(255, 255, 255, 0.1)
    inset;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.service-card-detailed::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: var(--gradient-primary); */
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card-detailed::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  /* transition: left 0.5s ease; */
  pointer-events: none;
}

.service-card-detailed:hover::before {
  transform: scaleX(1);
}

.service-card-detailed:hover::after {
  left: 100%;
}

.service-card-detailed:hover {
  transform: translateY(-10px);
  /* Subtle hover glow */
  box-shadow: 0 4px 14px rgba(0, 155, 255, 0.18), 0 0 4px rgba(0, 155, 255, 0.22),
    0 0 0 1px rgba(0, 155, 255, 0.18) inset, 0 2px 0 rgba(255, 255, 255, 0.1) inset;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(26, 26, 26, 0.2);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.edith-card-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: stretch;
}

.edith-card-intro {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.edith-card-intro .service-header {
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
  flex-direction: column;
  gap: 0.4rem;
}

.edith-tagline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 0 0 0.75rem 1.5rem;
  font-weight: bold;
  text-align: left;
}

@media (max-width: 640px) {
  .edith-tagline {
    margin-left: 0;
    text-align: center;
    font-size: 0.9rem;
  }
}

.edith-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.edith-card-content {
  flex: 1 1 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.edith-card-content .service-features {
  margin-left: 1.5rem;
}

.edith-card-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.edith-card-media .input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.edith-card-media .edith-preview-image {
  margin-left: -1.5rem;
}

.edith-preview-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.1rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.input-panel,
.output-panel {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.prompt-input {
  width: 100%;
  min-height: 130px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.6;
  resize: vertical;
  font-family: inherit;
  outline: none;
}

.prompt-input::placeholder {
  color: var(--text-muted);
}

.input-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.enhance-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.75rem;
  border-radius: 0.5rem;
  border: none;
  background: linear-gradient(135deg, #3b82f6, #9333ea);
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  position: relative;
  overflow: hidden;
}

.enhance-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 155, 255, 0.35);
}

.enhance-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid var(--text-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.clear-btn {
  padding: 0.9rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.clear-btn:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.output-panel {
  gap: 1.25rem;
}

.output-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.output-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.copy-btn:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.16);
}

.enhanced-output {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.edith-subtext {
  color: var(--text-secondary);
  margin: 0 auto;
  line-height: 1.6;
  max-width: 640px;
}

@media (max-width: 767px) {
  .edith-card-layout {
    gap: 1.5rem;
  }

  .edith-card-body {
    gap: 1.5rem;
  }

  .edith-card-content {
    text-align: center;
    align-items: center;
  }

  .edith-card-content .service-features {
    margin-left: 0;
    text-align: left;
  }

  .edith-card-media .edith-preview-image {
    margin-left: 0;
  }

  .edith-card-media {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .edith-preview-image {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .edith-subtext {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .edith-card-body {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .edith-card-content {
    flex: 1 1 50%;
    align-items: flex-start;
  }

  .edith-card-media {
    flex: 1 1 50%;
    align-items: center;
    justify-content: center;
  }

  .edith-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-icon-large {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  /* More rounded corners for icons to match glass morphism theme */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
  transition: all 0.3s ease;
}

.service-card-detailed:hover .service-icon-large {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0, 188, 212, 0.4);
}

.service-header h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 0;
  text-align: center;
  font-weight: bold;
}

.service-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-decoration: none;
  font-weight: light;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-features li i {
  width: 1rem;
  height: 0.8rem;
  flex-shrink: 0;
  display: inline-block;
  background: url("assets/prism-star.svg") no-repeat center/contain;
  font-style: normal;
  margin-top: 0.4rem;
}

.service-features li i::before {
  content: "" !important;
}

.service-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  padding: 0.4rem 0.8rem;
  /* More rounded corners for tech tags to match glass morphism theme */
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}


@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

.step-content {
  background: var(--surface-light);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid var(--border);
  flex: 1;
  transition: all 0.3s ease;
}

.process-step:hover .step-content {
  transform: translateX(10px);
  box-shadow: var(--shadow);
  border-color: var(--accent-primary);
}

.step-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}


/* Mobile Responsive for Services */
@media (max-width: 768px) {
  .services-grid-detailed {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card-detailed {
    padding: 1.5rem;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .service-icon-large {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .process-steps::before {
    left: 20px;
  }

  .process-step {
    gap: 1rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .step-content {
    padding: 1rem;
  }

  .tech-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .service-card-detailed {
    padding: 1rem;
  }

  .service-header h3 {
    font-size: 1.3rem;
  }

  .step-content h3 {
    font-size: 1.1rem;
  }

  .tech-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

/* LLM Chat Container */
.llm-chat-container {
  width: 100%;
  height: auto;
  padding: 1rem;
  margin-top: -1rem;
}

.llm-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.llm-feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 100px;
  height: 100px;
  width: 220px;
  min-width: 220px;
}

.edith-card-media .llm-feature-item {
  width: 150px;
  min-width: 150px;
  height: 48px;
  min-height: 48px;
  padding: 0.5rem;
}

@media (max-width: 767px) {
  .llm-feature-item {
    width: 180px;
    min-width: 180px;
    min-height: 110px;
    height: 110px;
    padding: 0.75rem;
  }

  .edith-card-media .llm-feature-item {
    width: 130px;
    min-width: 130px;
    height: 42px;
    min-height: 42px;
    padding: 0.4rem;
  }
}

.llm-feature-item:hover {
  background: rgba(26, 26, 26, 0.5);
  /* border-color: var(--accent-primary); */
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 188, 212, 0.18);
}

/* .clickable-llm-item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.clickable-llm-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.clickable-llm-item:hover::before {
  left: 100%;
} */

.llm-image-notebooklm {
  width: 100%;
  height: 100%;
  /* max-width: 150px; */
  /* max-height: 150px; */
  object-fit: contain;
  transition: all 0.3s ease;
}


.llm-image {
  width: 85%;
  height: 85%;
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.llm-image-edith {
  width: 90%;
  height: 90%;
  /* max-width: 150px; */
  /* max-height: 150px; */
  object-fit: contain;
  transition: all 0.3s ease;
}

.llm-feature-item:hover .llm-image {
  transform: scale(1.1);
}

.llm-feature-item:hover .llm-image-edith {
  transform: scale(1.1);
}

.llm-feature-item:hover .llm-image-notebooklm {
  transform: scale(1.1);
}

/* LLM Chat Container Mobile Responsive */
@media (max-width: 768px) {
  .llm-chat-container {
    padding: 0.5rem;
  }

  .llm-feature-item {
    padding: 0.6rem;
    min-height: 200px;
    height: 200px;
  }

  .llm-feature-item:hover {
    background: rgba(26, 26, 26, 0.5);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 18px rgba(0, 188, 212, 0.18);
  }

  .llm-feature-item:hover .llm-image,
  .llm-feature-item:hover .llm-image-edith,
  .llm-feature-item:hover .llm-image-notebooklm {
    transform: scale(1.1);
  }

  .llm-image {
    max-width: 100px;
    max-height: 100px;
  }
}

@media (max-width: 480px) {
  .llm-feature-item {
    padding: 0.5rem;
    min-height: 100px;
    height: 100px;
  }

  .llm-feature-item:hover {
    background: rgba(26, 26, 26, 0.5);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 18px rgba(0, 188, 212, 0.18);
  }

  .llm-feature-item:hover .llm-image,
  .llm-feature-item:hover .llm-image-edith,
  .llm-feature-item:hover .llm-image-notebooklm {
    transform: scale(1.1);
  }

  .llm-image {
    max-width: 90px;
    max-height: 90px;
  }
}

/* Career Journey Visualization */

.career-journey-visual {
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-container {
  width: 100%;
  height: 100%;
  position: relative;
  /* background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9)); */
  border-radius: 25px;
  /* border: 1px solid rgba(0, 188, 212, 0.3); */
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.journey-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: 
    radial-gradient(circle at 20% 20%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(156, 39, 176, 0.1) 0%, transparent 50%); */
  z-index: 1;
}

/* Career Path */
.career-path {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 2rem;
}

/* .path-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #00bcd4, #e91e63, #9c27b0);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
} */

.career-milestone {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  /* background: rgba(26, 26, 26, 0.6); */
  border-radius: 15px;
  border: 1px solid rgba(0, 188, 212, 0.2);
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(5px);
}

.career-milestone:nth-child(even) {
  flex-direction: row-reverse;
  margin-left: auto;
  width: 80%;
}

.career-milestone:nth-child(odd) {
  margin-right: auto;
  width: 80%;
}



.milestone-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #00bcd4, #e91e63);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
  transition: all 0.3s ease;
}

.career-milestone:hover .milestone-icon {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.5);
}

.milestone-content {
  flex: 1;
}

.milestone-content h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.milestone-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #00bcd4;
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
  left: var(--position);
  top: 20%;
}

.floating-icon:nth-child(even) {
  top: 60%;
  animation-duration: 8s;
}

.floating-icon:nth-child(3n) {
  top: 40%;
  animation-duration: 7s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
    opacity: 0.9;
  }
}

/* Enhanced Mobile Responsive */
@media (max-width: 1024px) {
  .career-journey-visual {
    height: 450px;
  }
  
  .career-milestone {
    width: 85%;
  }
  
  .milestone-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
  
  .milestone-content h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .career-journey-visual {
    height: 400px;
  }
  
  .career-path {
    padding: 1.5rem;
  }
  
  .career-milestone {
    width: 90% !important;
    flex-direction: row !important;
    margin: 0.5rem auto !important;
    padding: 0.8rem;
    gap: 1rem;
  }
  
  .career-milestone:nth-child(even) {
    flex-direction: row !important;
  }
  
  .career-milestone:nth-child(even):hover {
    transform: translateX(5px) scale(1.02) !important;
  }
  
  .career-milestone:hover {
    transform: translateX(5px) scale(1.02) !important;
  }
  
  .milestone-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .milestone-content h4 {
    font-size: 1rem;
  }
  
  .milestone-content p {
    font-size: 0.8rem;
  }
  
  .floating-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .path-line {
    width: 2px;
  }
}

@media (max-width: 600px) {
  .career-journey-visual {
    height: 350px;
  }
  
  .career-path {
    padding: 1rem;
  }
  
  .career-milestone {
    width: 95% !important;
    padding: 0.6rem;
    gap: 0.8rem;
  }
  
  .milestone-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .milestone-content h4 {
    font-size: 0.9rem;
  }
  
  .milestone-content p {
    font-size: 0.75rem;
  }
  
  .floating-icon {
    width: 25px;
    height: 25px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .career-journey-visual {
    height: 320px;
  }
  
  .career-path {
    padding: 0.8rem;
  }
  
  .career-milestone {
    width: 98% !important;
    padding: 0.5rem;
    gap: 0.6rem;
  }
  
  .milestone-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .milestone-content h4 {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
  }
  
  .milestone-content p {
    font-size: 0.7rem;
    line-height: 1.3;
  }
  
  .floating-icon {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }
  
  .path-line {
    width: 1.5px;
  }
}

@media (max-width: 360px) {
  .career-journey-visual {
    height: 300px;
  }
  
  .career-path {
    padding: 0.6rem;
  }
  
  .career-milestone {
    padding: 0.4rem;
    gap: 0.5rem;
  }
  
  .milestone-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .milestone-content h4 {
    font-size: 0.8rem;
  }
  
  .milestone-content p {
    font-size: 0.65rem;
  }
  
  .floating-icon {
    width: 18px;
    height: 18px;
    font-size: 0.5rem;
  }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #00bcd4;
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
  left: var(--position);
  top: 20%;
}

.floating-icon:nth-child(even) {
  top: 60%;
  animation-duration: 8s;
}

.floating-icon:nth-child(3n) {
  top: 40%;
  animation-duration: 7s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
    opacity: 0.9;
  }
}

/* Enhanced Mobile Responsive */
@media (max-width: 1024px) {
  .career-journey-visual {
    height: 450px;
  }

  .career-milestone {
    width: 85%;
  }

  .milestone-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .milestone-content h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .career-journey-visual {
    height: 400px;
  }

  .career-path {
    padding: 1.5rem;
  }

  .career-milestone {
    width: 90% !important;
    flex-direction: row !important;
    margin: 0.5rem auto !important;
    padding: 0.8rem;
    gap: 1rem;
  }

  .career-milestone:nth-child(even) {
    flex-direction: row !important;
  }

  .career-milestone:nth-child(even):hover {
    transform: translateX(5px) scale(1.02) !important;
  }

  .career-milestone:hover {
    transform: translateX(5px) scale(1.02) !important;
  }

  .milestone-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .milestone-content h4 {
    font-size: 1rem;
  }

  .milestone-content p {
    font-size: 0.8rem;
  }

  .floating-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .path-line {
    width: 2px;
  }
}

@media (max-width: 600px) {
  .career-journey-visual {
    height: 350px;
  }

  .career-path {
    padding: 1rem;
  }

  .career-milestone {
    width: 95% !important;
    padding: 0.6rem;
    gap: 0.8rem;
  }

  .milestone-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .milestone-content h4 {
    font-size: 0.9rem;
  }

  .milestone-content p {
    font-size: 0.75rem;
  }

  .floating-icon {
    width: 25px;
    height: 25px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .career-journey-visual {
    height: 320px;
  }

  .career-path {
    padding: 0.8rem;
  }

  .career-milestone {
    width: 98% !important;
    padding: 0.5rem;
    gap: 0.6rem;
  }

  .milestone-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .milestone-content h4 {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
  }

  .milestone-content p {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .floating-icon {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }

  .path-line {
    width: 1.5px;
  }
}

@media (max-width: 360px) {
  .career-journey-visual {
    height: 300px;
  }

  .career-path {
    padding: 0.6rem;
  }

  .career-milestone {
    padding: 0.4rem;
    gap: 0.5rem;
  }

  .milestone-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .milestone-content h4 {
    font-size: 0.8rem;
  }

  .milestone-content p {
    font-size: 0.65rem;
  }

  .floating-icon {
    width: 18px;
    height: 18px;
    font-size: 0.5rem;
  }
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.loading-screen.fade-out {
  animation: fadeOut 1s ease-in-out forwards;
}

.loading-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-logo {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  animation: logoFloat 3s ease-in-out infinite;
}

.loading-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 188, 212, 0.8));
  animation: logoGlow 2s ease-in-out infinite alternate;
}

.loading-logo::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: logoRotate 4s linear infinite;
}

.loading-logo::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 50%;
  animation: logoPulse 2s ease-in-out infinite;
}

.loading-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  animation: textGlow 2s ease-in-out infinite alternate;
}

.loading-progress {
  width: 200px;
  height: 4px;
  /* background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary)); */
  background: var(--text-muted);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loading-bar {
  height: 100%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
  animation: progressFill 3s ease-in-out infinite;
  position: relative;
}

.loading-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 1.5s ease-in-out infinite;
}

.loading-percentage {
  font-size: 0.9rem;
  color: var(--accent-primary);
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Particle Effects */
.loading-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 50%;
  animation: particleFloat 6s linear infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  left: 20%;
  animation-delay: 1s;
}
.particle:nth-child(3) {
  left: 30%;
  animation-delay: 2s;
}
.particle:nth-child(4) {
  left: 40%;
  animation-delay: 3s;
}
.particle:nth-child(5) {
  left: 50%;
  animation-delay: 4s;
}
.particle:nth-child(6) {
  left: 60%;
  animation-delay: 5s;
}
.particle:nth-child(7) {
  left: 70%;
  animation-delay: 0.5s;
}
.particle:nth-child(8) {
  left: 80%;
  animation-delay: 1.5s;
}
.particle:nth-child(9) {
  left: 90%;
  animation-delay: 2.5s;
}
.particle:nth-child(10) {
  left: 15%;
  animation-delay: 3.5s;
}
.particle:nth-child(11) {
  left: 25%;
  animation-delay: 4.5s;
}
.particle:nth-child(12) {
  left: 35%;
  animation-delay: 5.5s;
}
.particle:nth-child(13) {
  left: 45%;
  animation-delay: 0.2s;
}
.particle:nth-child(14) {
  left: 55%;
  animation-delay: 1.2s;
}
.particle:nth-child(15) {
  left: 65%;
  animation-delay: 2.2s;
}

/* Geometric Shapes */
.loading-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.shape {
  position: absolute;
  opacity: 0.1;
  animation: shapeRotate 8s linear infinite;
}

.shape-1 {
  top: 20%;
  left: 10%;
  width: 60px;
  height: 60px;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  animation-delay: 0s;
}

.shape-2 {
  top: 60%;
  right: 15%;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-secondary);
  transform: rotate(45deg);
  animation-delay: 2s;
}

.shape-3 {
  bottom: 30%;
  left: 20%;
  width: 50px;
  height: 50px;
  border: 2px solid var(--accent-primary);
  border-radius: 10px;
  animation-delay: 4s;
}

.shape-4 {
  top: 40%;
  right: 30%;
  width: 30px;
  height: 30px;
  border: 2px solid var(--accent-secondary);
  border-radius: 50%;
  animation-delay: 6s;
}

/* Loading Animations */
@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(0, 188, 212, 0.8));
  }
  100% {
    filter: drop-shadow(0 0 30px rgba(0, 188, 212, 1)) drop-shadow(0 0 40px rgba(78, 205, 196, 0.6));
  }
}

@keyframes logoRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
  }
  100% {
    text-shadow: 0 0 20px rgba(0, 188, 212, 0.8), 0 0 30px rgba(78, 205, 196, 0.4);
  }
}

@keyframes progressFill {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) scale(1);
  }
  100% {
    transform: translateY(-10vh) scale(0);
    opacity: 0;
  }
}

@keyframes shapeRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* Loading States */
/* (REMOVED: .loading-state-1 to .loading-state-5 rules) */

/* Responsive Loading */
@media (max-width: 768px) {
  .loading-logo {
    width: 100px;
    height: 100px;
  }

  .loading-text {
    font-size: 1.2rem;
  }

  .loading-progress {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .loading-logo {
    width: 80px;
    height: 80px;
  }

  .loading-text {
    font-size: 1rem;
  }

  .loading-progress {
    width: 120px;
  }
}



.highlight {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-1 {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sign-in Page Styles */
.signin-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.signin-container {
  position: relative;
  z-index: 2001;
}

.signin-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 450px;
  width: 90vw;
}

.signin-header {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.signin-header .nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.kpoint-logo-signin {
  height: 4rem;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.signin-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 1.5rem 0 1rem;
}

.signin-subtitle {
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.6;
  white-space: nowrap;
}

.signin-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.signin-note {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* User Section Styles */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.user-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-name {
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 500;
}

.sign-out-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #9ca3af;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sign-out-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

/* Utilities */
.hidden {
  display: none !important;
}

.main-content-wrapper {
  display: block;
}

/* Blogs Drawer Toggle Button */
.drawer-toggle-btn {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  border: none;
  padding: 1rem 0.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  cursor: pointer;
  z-index: 1500;
  transition: all 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.drawer-toggle-btn:hover {
  padding-left: 0.75rem;
  box-shadow: 3px 0 15px rgba(59, 130, 246, 0.4);
}

.drawer-toggle-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.drawer-toggle-btn.active i {
  transform: rotate(180deg);
}

/* Blogs Drawer */
.blogs-drawer {
  position: fixed;
  left: -400px;
  top: 0;
  width: 400px;
  height: 100vh;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1600;
  transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
}

.blogs-drawer.open {
  left: 0;
}

.drawer-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  z-index: 10;
}

.drawer-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.drawer-close-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.4);
}

.drawer-subtitle {
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Blogs List */
.blogs-list {
  padding: 1rem 2rem 2rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.blog-image {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--accent-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.blog-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--accent-secondary);
  gap: 0.75rem;
}

.blog-link i {
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* Blogs Placeholder */
.blogs-placeholder {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-muted);
}

.blogs-placeholder i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
  opacity: 0.5;
}

.blogs-placeholder p {
  font-size: 0.95rem;
  margin: 0;
}

/* Drawer Overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1550;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}
