/**
* Halo Soft - Professional Brand Style
* Based on Evolve Theme from Halo Strony
* Light, modern, professional theme with green accent
*/

/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
  /* Typography */
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Inter", sans-serif;

  /* Global Colors - Matching Evolve Theme */
  --background-color: #ffffff;
  --default-color: #2d3748;
  --heading-color: #1a202c;
  --accent-color: #48bb78;
  --accent-hover: #38a169;
  --accent-color-rgb: 72, 187, 120;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --border-color: #e2e8f0;
  --shadow-color: rgba(0, 0, 0, 0.05);
  --light-bg: #f7fafc;

  /* Navigation Colors */
  --nav-color: #2d3748;
  --nav-hover-color: #48bb78;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #2d3748;
  --nav-dropdown-hover-color: #48bb78;

  /* Spacing */
  --section-padding: 100px;
  --section-padding-mobile: 60px;
}

/* Light Background Preset */
.light-background {
  --background-color: #f7fafc;
  --surface-color: #ffffff;
}

/*--------------------------------------------------------------
# General Styling & Reset
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: -0.5px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  line-height: 1.8;
  color: var(--default-color);
}

ul {
  color: var(--default-color);
}

img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Main Layout Structure
--------------------------------------------------------------*/
body > .container {
  flex: 1 0 auto;
  position: relative;
}

main {
  flex: 1;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  background-color: var(--background-color) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 20px var(--shadow-color);
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--heading-color);
}

.navbar-brand img {
  max-height: 48px;
  width: auto;
}

.navbar-nav .nav-item {
  margin: 0 4px;
}

.navbar-light .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link {
  color: var(--nav-color) !important;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 15px;
  margin: 0 2px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: var(--accent-color) !important;
  background-color: rgba(72, 187, 120, 0.1);
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
  background-color: rgba(72, 187, 120, 0.1);
}

.navbar-toggler {
  border: none;
  padding: 0.6rem;
  background: rgba(72, 187, 120, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(72, 187, 120, 0.15);
}

.navbar-toggler:focus {
  box-shadow: none;
  background: rgba(72, 187, 120, 0.15);
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2348bb78' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
  background-color: var(--background-color);
}

@media (max-width: 575px) {
  .navbar-collapse {
    padding: 1rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px var(--shadow-color);
  }
}

/*--------------------------------------------------------------
# Dropdown Menu
--------------------------------------------------------------*/
.dropdown-menu {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  min-width: 160px;
}

.dropdown-item {
  color: var(--default-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(72, 187, 120, 0.1);
  color: var(--accent-color);
}

.dropdown-toggle {
  color: var(--nav-color) !important;
  border-color: var(--border-color) !important;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
  font-weight: 600;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
  border: none;
  color: var(--contrast-color);
  box-shadow: 0 4px 14px rgba(72, 187, 120, 0.25);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: linear-gradient(135deg, var(--accent-hover) 0%, #2f855a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72, 187, 120, 0.35);
  color: var(--contrast-color);
}

.btn-light {
  background: var(--background-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-light:hover,
.btn-light:focus {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.btn-outline-light {
  border-color: var(--border-color);
  color: var(--default-color);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: rgba(72, 187, 120, 0.1);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 187, 120, 0.25);
  outline: none;
}

/*--------------------------------------------------------------
# Hero Section - Animated
--------------------------------------------------------------*/
.hero-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.06) 0%, rgba(56, 161, 105, 0.03) 50%, rgba(72, 187, 120, 0.08) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  border-radius: 24px;
  margin-bottom: 3rem;
  border: 1px solid rgba(72, 187, 120, 0.15);
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating shapes */
.hero-section .floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-section .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.15) 0%, rgba(72, 187, 120, 0.05) 100%);
  animation: float 20s ease-in-out infinite;
}

.hero-section .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  animation-delay: 0s;
  animation-duration: 25s;
}

.hero-section .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -30px;
  animation-delay: -5s;
  animation-duration: 20s;
}

.hero-section .shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation-delay: -10s;
  animation-duration: 18s;
}

.hero-section .shape-4 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 15%;
  animation-delay: -7s;
  animation-duration: 22s;
  border-radius: 30%;
  transform: rotate(45deg);
}

.hero-section .shape-5 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  right: 20%;
  animation-delay: -3s;
  animation-duration: 15s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) rotate(5deg) scale(1.05);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) rotate(-3deg) scale(0.95);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-25px) rotate(8deg) scale(1.02);
    opacity: 0.9;
  }
}

/* Glowing orb effect */
.hero-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(72, 187, 120, 0.12) 0%, transparent 60%);
  animation: pulse 6s ease-in-out infinite;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(56, 161, 105, 0.1) 0%, transparent 60%);
  animation: pulse 8s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Hero content container */
.hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

/* Text animations */
.hero-section h1,
.hero-section .display-4,
.hero-section .display-5 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.hero-section .lead {
  font-size: 1.15rem;
  color: var(--default-color);
  margin-bottom: 2rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-section .hero-buttons {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button hover glow */
.hero-section .btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-section .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.hero-section .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.hero-section .btn {
  position: relative;
  z-index: 2;
}

/* Particle dots */
.hero-section .particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-section .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 15s ease-in-out infinite;
}

.hero-section .particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.hero-section .particle:nth-child(2) { top: 20%; left: 80%; animation-delay: -2s; }
.hero-section .particle:nth-child(3) { top: 60%; left: 10%; animation-delay: -4s; }
.hero-section .particle:nth-child(4) { top: 80%; left: 70%; animation-delay: -6s; }
.hero-section .particle:nth-child(5) { top: 40%; left: 50%; animation-delay: -8s; }
.hero-section .particle:nth-child(6) { top: 70%; left: 30%; animation-delay: -10s; }
.hero-section .particle:nth-child(7) { top: 30%; left: 60%; animation-delay: -12s; }
.hero-section .particle:nth-child(8) { top: 90%; left: 40%; animation-delay: -14s; }

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) translateX(10px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px) translateX(-15px);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-40px) translateX(5px);
    opacity: 0.7;
  }
}

/*--------------------------------------------------------------
# Section Titles & Badges
--------------------------------------------------------------*/
.badge.bg-success {
  background-color: rgba(72, 187, 120, 0.1) !important;
  color: var(--accent-color) !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.badge.bg-opacity-10 {
  background-color: rgba(72, 187, 120, 0.1) !important;
}

.text-success {
  color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Service Cards - Glassmorphism Style
--------------------------------------------------------------*/
.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.08) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 50px rgba(72, 187, 120, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.7);
  border-color: rgba(72, 187, 120, 0.3);
}

.service-card .card-body {
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.service-card .card-img-top {
  border-radius: 24px 24px 0 0;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .card-img-top {
  transform: scale(1.05);
}

.service-card .card-title {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
}

.service-card .card-text {
  color: var(--default-color);
  line-height: 1.7;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Service Icons
--------------------------------------------------------------*/
.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
  border-radius: 20px;
  color: white;
  box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon i {
  font-size: 2rem;
  line-height: 1;
}

.service-card:hover .service-icon {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 12px 28px rgba(72, 187, 120, 0.4);
}

/*--------------------------------------------------------------
# Glass Panel
--------------------------------------------------------------*/
.glass-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glass-panel:hover {
  box-shadow:
    0 12px 48px rgba(72, 187, 120, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.7);
  border-color: rgba(72, 187, 120, 0.2);
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(72, 187, 120, 0.3);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonial {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 4px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.testimonial::before {
  content: "\201C";
  font-size: 4rem;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.1;
  font-family: Georgia, serif;
  color: var(--accent-color);
  line-height: 1;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(72, 187, 120, 0.1);
  border-color: rgba(72, 187, 120, 0.2);
}

.testimonial p {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: var(--default-color);
  line-height: 1.8;
}

.testimonial .fw-bold {
  color: var(--heading-color);
}

.testimonial .small.text-muted {
  color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Technology Partners
--------------------------------------------------------------*/
.partner-logo {
  height: 110px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(0.12) contrast(1000%);
  box-shadow: none !important;
  -webkit-filter: grayscale(100%) brightness(0.12) contrast(1000%);
}

.partner-logo:hover img {
  opacity: 1;
  transform: scale(1.08);
  filter: grayscale(100%) brightness(0.2) contrast(1000%);
  box-shadow: none !important;
}

/* Individual logo sizing for visual balance */
.partner-logo img[alt="AWS"] {
  height: 109px;
}

.partner-logo img[alt="Azure"] {
  height: 38px;
}

.partner-logo img[alt="Google Cloud"] {
  height: 73px;
}

.partner-logo img[alt="Oracle"] {
  height: 38px;
}

/*--------------------------------------------------------------
# Contact Info Icons (Circle Icons)
--------------------------------------------------------------*/
.bg-success.bg-opacity-10.rounded-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: rgba(72, 187, 120, 0.1) !important;
  flex-shrink: 0;
}

.bg-success.bg-opacity-10.rounded-circle i {
  font-size: 1.25rem;
  line-height: 1;
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.form-control {
  border-radius: 12px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-color);
  background: var(--background-color);
  color: var(--default-color);
  transition: all 0.3s ease;
  font-size: 15px;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow:
    0 0 0 3px rgba(72, 187, 120, 0.15),
    0 4px 20px rgba(72, 187, 120, 0.08);
  background: var(--surface-color);
}

.form-label {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 14px;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: var(--light-bg);
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
  flex-shrink: 0;
}

.footer h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer p {
  color: var(--default-color);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer a {
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--accent-hover);
}

.footer ul {
  padding-left: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer hr {
  border-color: var(--border-color);
  opacity: 0.3;
  margin: 1.5rem 0;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(72, 187, 120, 0.1);
  color: var(--accent-color);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icons a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.text-muted {
  color: #718096 !important;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.rounded {
  border-radius: 16px !important;
}

.shadow-lg {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
}

hr {
  opacity: 0.1;
  border-color: var(--border-color);
}

.alert-success {
  background: rgba(72, 187, 120, 0.1);
  color: var(--accent-hover);
  border-color: rgba(72, 187, 120, 0.3);
  border-radius: 12px;
}

/*--------------------------------------------------------------
# Check Icons
--------------------------------------------------------------*/
.bi-check-circle-fill.text-success,
.bi-check-circle.text-success {
  color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Map Styling
--------------------------------------------------------------*/
.ratio iframe {
  border-radius: 16px;
  filter: none;
}

/*--------------------------------------------------------------
# Team Section - Expandable Cards
--------------------------------------------------------------*/
.team-card {
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(72, 187, 120, 0.15);
  border-color: var(--accent-color);
}

.team-card-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.team-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #38a169 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
  transition: all 0.3s ease;
}

.team-card:hover .team-card-icon {
  transform: scale(1.05) rotate(5deg);
}

.team-card-icon i {
  font-size: 2rem;
  color: white;
}

.team-card-info {
  flex: 1;
  min-width: 0;
}

.team-card-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.25rem 0;
}

.team-card-info .role {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 600;
  margin: 0;
}

.team-card-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.team-card-toggle i {
  font-size: 1rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

/* Hidden checkbox for expand/collapse */
.team-card-checkbox {
  display: none;
}

/* Expandable content */
.team-card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.5rem;
}

.team-card-checkbox:checked ~ .team-card-content {
  max-height: 400px;
  padding: 0 1.5rem 1.5rem;
}

.team-card-checkbox:checked ~ .team-card-header .team-card-toggle {
  background: var(--accent-color);
}

.team-card-checkbox:checked ~ .team-card-header .team-card-toggle i {
  color: white;
  transform: rotate(180deg);
}

.team-card-description {
  color: var(--body-color);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.team-card-funfact {
  background: linear-gradient(135deg, var(--accent-color-light) 0%, rgba(72, 187, 120, 0.1) 100%);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.team-card-funfact i {
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.team-card-funfact p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--heading-color);
  font-style: italic;
}

/* Mobile optimization for team cards */
@media (max-width: 767px) {
  .team-card-header {
    padding: 1.25rem;
  }

  .team-card-icon {
    width: 56px;
    height: 56px;
  }

  .team-card-icon i {
    font-size: 1.5rem;
  }

  .team-card-info h4 {
    font-size: 1rem;
  }

  .team-card-info .role {
    font-size: 0.85rem;
  }

  .team-card-content {
    padding: 0 1.25rem;
  }

  .team-card-checkbox:checked ~ .team-card-content {
    padding: 0 1.25rem 1.25rem;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-item .display-4 {
  color: var(--accent-color);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .hero-section {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .hero-section h1,
  .hero-section .display-4,
  .hero-section .display-5 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .service-card .card-body {
    padding: 1.5rem;
  }

  .glass-panel {
    border-radius: 20px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-padding: 60px;
  }

  html {
    font-size: 15px;
  }

  .hero-section {
    padding: 30px 20px;
    margin-bottom: 2rem;
    border-radius: 16px;
  }

  .hero-section h1,
  .hero-section .display-4,
  .hero-section .display-5 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero-section .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-section .btn {
    padding: 0.6rem 1.2rem;
    margin-bottom: 0.5rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .service-card {
    border-radius: 16px;
    margin-bottom: 1rem;
  }

  .service-card .card-body {
    padding: 1.25rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .glass-panel {
    border-radius: 16px;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .testimonial::before {
    font-size: 3rem;
  }

  .contact-form {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .partner-logo {
    height: 45px;
    margin-bottom: 0.5rem;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .footer h5 {
    margin-top: 1.5rem;
  }
}

@media (max-width: 575px) {
  .hero-section .btn {
    display: block;
    width: 100%;
    margin-right: 0 !important;
  }

  .hero-section .d-flex.gap-3 {
    flex-direction: column;
  }

  .row.align-items-center {
    text-align: center;
  }

  .row.align-items-center ul {
    text-align: left;
    padding-left: 0;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .hero-section h1,
  .hero-section .display-4,
  .hero-section .display-5 {
    font-size: 1.5rem;
  }

  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/*--------------------------------------------------------------
# Portfolio Section - Expandable Cards
--------------------------------------------------------------*/
.portfolio-card-expandable {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card-expandable:hover {
  box-shadow: 0 20px 50px rgba(72, 187, 120, 0.12);
}

.portfolio-checkbox {
  display: none;
}

.portfolio-header {
  cursor: pointer;
  display: block;
  transition: all 0.3s ease;
}

.portfolio-header:hover {
  background: rgba(72, 187, 120, 0.02);
}

.portfolio-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
  border-radius: 16px;
  margin: 1rem;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-header:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.portfolio-category {
  background: var(--accent-color);
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-summary h3 {
  color: var(--heading-color);
  font-weight: 700;
  transition: color 0.3s ease;
}

.portfolio-header:hover .portfolio-summary h3 {
  color: var(--accent-color);
}

.expand-icon {
  width: 40px;
  height: 40px;
  background: rgba(72, 187, 120, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.expand-icon i {
  color: var(--accent-color);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.portfolio-checkbox:checked ~ .portfolio-header .expand-icon {
  background: var(--accent-color);
}

.portfolio-checkbox:checked ~ .portfolio-header .expand-icon i {
  color: white;
  transform: rotate(180deg);
}

/* Quick Stats */
.portfolio-quick-stats .quick-stat {
  text-align: center;
  padding: 0.5rem;
  background: var(--light-bg);
  border-radius: 10px;
}

.quick-stat .stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.quick-stat .stat-label {
  font-size: 0.7rem;
  color: var(--default-color);
  opacity: 0.8;
}

.portfolio-tech-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.portfolio-tech-mini .badge {
  font-size: 0.65rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
}

/* Expandable Details */
.portfolio-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-checkbox:checked ~ .portfolio-details {
  max-height: 3000px;
}

/* Detail Boxes */
.detail-box {
  padding: 1.25rem;
  border-radius: 16px;
  height: 100%;
}

.challenge-box {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 193, 7, 0.03) 100%);
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.solution-box {
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.08) 0%, rgba(72, 187, 120, 0.03) 100%);
  border: 1px solid rgba(72, 187, 120, 0.2);
}

.detail-box-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.detail-box-header i {
  font-size: 1.25rem;
}

.detail-box-header h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.detail-box p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.challenge-list,
.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.challenge-list li,
.solution-list li {
  font-size: 0.85rem;
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.challenge-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: bold;
}

.solution-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Feature Cards */
.feature-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(72, 187, 120, 0.1);
  transform: translateY(-3px);
}

.feature-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  display: block;
}

.feature-card h6 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--default-color);
  opacity: 0.85;
  margin: 0;
  line-height: 1.5;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color), rgba(72, 187, 120, 0.2));
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--accent-color);
  border-radius: 50%;
  border: 3px solid var(--surface-color);
  box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.2);
}

.timeline-content {
  background: var(--light-bg);
  padding: 1rem;
  border-radius: 12px;
  border-left: 3px solid var(--accent-color);
}

.timeline-date {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content h6 {
  margin: 0 0 0.25rem 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.timeline-content p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--default-color);
  opacity: 0.85;
}

/* Result Cards */
.result-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.result-card:hover {
  border-color: var(--accent-color);
}

.result-number {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  line-height: 1.2;
}

.result-label {
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
  margin-top: 0.25rem;
  color: var(--heading-color);
}

.result-detail {
  font-size: 0.7rem;
  color: var(--default-color);
  opacity: 0.7;
  display: block;
  margin-top: 0.15rem;
}

/* Tech Stack */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tech-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--default-color);
  margin-right: 0.25rem;
}

.tech-stack .badge {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.35rem 0.6rem;
}

/* Client Quote */
.client-quote {
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.06) 0%, rgba(56, 161, 105, 0.03) 100%);
  border: 1px solid rgba(72, 187, 120, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  margin-top: 1rem;
}

.client-quote > i.bi-quote {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.15;
  line-height: 1;
}

.client-quote blockquote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
  margin: 0 0 1rem 0;
  padding-left: 1rem;
  position: relative;
  z-index: 1;
}

.quote-author {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
}

.quote-author strong {
  font-size: 0.9rem;
  color: var(--heading-color);
}

.quote-author span {
  font-size: 0.8rem;
  color: var(--accent-color);
}

/* Portfolio Filter Buttons */
.portfolio-filter {
  border-radius: 25px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0.25rem;
}

.portfolio-filter.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.portfolio-filter.active .badge {
  background: rgba(255, 255, 255, 0.25) !important;
  color: white !important;
  font-weight: 600;
}

.portfolio-filter:hover:not(.active) {
  background: rgba(72, 187, 120, 0.1);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* Portfolio Item Animation */
.portfolio-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Mobile Optimization for Portfolio */
@media (max-width: 991px) {
  .portfolio-image-wrapper {
    height: 180px;
    margin: 0.75rem;
  }
}

@media (max-width: 767px) {
  .portfolio-image-wrapper {
    height: 200px;
    margin: 0;
    border-radius: 16px 16px 0 0;
  }

  .portfolio-summary {
    padding: 1rem !important;
  }

  .quick-stat .stat-value {
    font-size: 1.1rem;
  }

  .portfolio-filter {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }

  .detail-box {
    padding: 1rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .feature-card i {
    font-size: 1.5rem;
  }

  .timeline {
    padding-left: 25px;
  }

  .timeline-marker {
    left: -21px;
    width: 12px;
    height: 12px;
  }

  .result-number {
    font-size: 1.25rem;
  }

  .client-quote {
    padding: 1rem;
  }

  .client-quote blockquote {
    font-size: 0.85rem;
  }

  .tech-stack {
    gap: 0.5rem;
  }

  .tech-group {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .btn-group.flex-wrap {
    justify-content: center;
  }

  .portfolio-filter {
    flex: 0 0 auto;
  }

  .expand-icon {
    width: 36px;
    height: 36px;
  }

  .quick-stat .stat-value {
    font-size: 1rem;
  }

  .quick-stat .stat-label {
    font-size: 0.65rem;
  }
}

/*--------------------------------------------------------------
# Portfolio - Extended Styles for Unique Project Presentations
--------------------------------------------------------------*/

/* Story Intro Section */
.story-intro {
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.05) 0%, rgba(72, 187, 120, 0.02) 100%);
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid var(--accent-color);
}

.lead-story {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--heading-color);
  line-height: 1.7;
}

.story-highlight-box {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.story-highlight-box i {
  font-size: 2rem;
  color: #e53e3e;
  margin-bottom: 0.5rem;
}

.story-highlight-box .highlight-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #c53030;
}

.story-highlight-box .highlight-label {
  font-size: 0.85rem;
  color: #742a2a;
}

/* Technical Challenge Box */
.technical-challenge-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #f59e0b;
}

.technical-challenge-box h5 {
  color: #92400e;
  margin-bottom: 0.75rem;
}

.technical-challenge-box p {
  color: #78350f;
  margin-bottom: 0;
}

.challenge-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}

.challenge-stat .challenge-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.challenge-stat .challenge-label {
  font-size: 0.8rem;
  color: #666;
}

/* Before/After Cards */
.before-after-card {
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}

.before-after-card.before {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
}

.before-after-card.after {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
}

.before-after-card h6 {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.before-after-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.before-after-card ul li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.25rem;
}

.before-after-card.before ul li::before {
  content: "\2716";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
}

.before-after-card.after ul li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Problem Stat Cards */
.problem-stat-card {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  height: 100%;
  border: 1px solid #fecaca;
}

.problem-stat-card .problem-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #dc2626;
}

.problem-stat-card .problem-label {
  display: block;
  font-size: 0.85rem;
  color: #7f1d1d;
  font-weight: 500;
}

.problem-stat-card .problem-detail {
  display: block;
  font-size: 0.75rem;
  color: #991b1b;
  margin-top: 0.25rem;
  font-style: italic;
}

/* User Journey */
.user-journey {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--light-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.journey-step:hover {
  background: rgba(72, 187, 120, 0.1);
  transform: translateX(5px);
}

.journey-step .step-number {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.journey-step .step-content h6 {
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.journey-step .step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* Insight Box */
.insight-box {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #3b82f6;
}

.insight-box h5 {
  color: #1e40af;
  margin-bottom: 1rem;
}

.insight-box p {
  color: #1e3a8a;
  margin-bottom: 0.75rem;
}

.insight-box p:last-child {
  margin-bottom: 0;
}

/* Featured Quote */
.client-quote.featured-quote {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2f855a 100%);
  color: white;
  padding: 2rem;
}

.client-quote.featured-quote blockquote {
  color: white;
  font-size: 1.15rem;
}

.client-quote.featured-quote .bi-quote {
  color: rgba(255, 255, 255, 0.3);
}

.client-quote.featured-quote .quote-author strong,
.client-quote.featured-quote .quote-author span {
  color: rgba(255, 255, 255, 0.9);
}

/* Metric Cards */
.metric-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.metric-card .metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.metric-card .metric-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Gamification Cards */
.gamification-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.gamification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.gamification-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #2f855a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.gamification-icon i {
  font-size: 1.5rem;
  color: white;
}

.gamification-card h6 {
  margin-bottom: 0.5rem;
}

.gamification-card p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.gamification-stat {
  display: inline-block;
  background: rgba(72, 187, 120, 0.1);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Integrations Grid */
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light-bg);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.integration-item:hover {
  background: rgba(72, 187, 120, 0.1);
  border-color: var(--accent-color);
}

.integration-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.integration-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* User Reviews */
.user-review {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
  height: 100%;
}

.review-stars {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.user-review p {
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.review-author {
  font-size: 0.85rem;
  color: #888;
}

/* Security Highlight */
.security-highlight {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--accent-color);
}

.security-highlight h5 {
  color: #166534;
  margin-bottom: 0.75rem;
}

.security-highlight p {
  color: #15803d;
  margin-bottom: 0;
}

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #166534;
}

.security-badge i {
  color: var(--accent-color);
  font-size: 1rem;
}

/* Security Features */
.security-feature {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
  height: 100%;
}

.security-feature i {
  font-size: 2rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 1rem;
}

.security-feature h6 {
  margin-bottom: 0.5rem;
}

.security-feature p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

/* Capabilities List */
.capabilities-list {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 1.5rem;
}

.capability-group {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capability-group li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: #555;
}

.capability-group .capability-header {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
  border-bottom: 2px solid var(--accent-color);
}

/* ROI Calculator */
.roi-calculator {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--accent-color);
}

.roi-calculator h5 {
  color: #166534;
  margin-bottom: 1.5rem;
  text-align: center;
}

.roi-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.roi-item .roi-label {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.roi-item .roi-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
}

.roi-item.savings .roi-value {
  color: var(--accent-color);
}

.roi-item.revenue .roi-value {
  color: #3b82f6;
}

.roi-item.investment .roi-value {
  color: #8b5cf6;
}

.roi-item .roi-detail {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.25rem;
}

/* Chaos Visualization */
.chaos-visualization {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.chaos-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid #fecaca;
}

.chaos-item i {
  font-size: 1.5rem;
  color: #dc2626;
}

.chaos-item span:not(.chaos-percent) {
  font-size: 0.9rem;
  color: #7f1d1d;
}

.chaos-percent {
  background: #dc2626;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Integration Diagram */
.integration-diagram {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 2rem;
}

.integration-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.flow-item i {
  font-size: 2rem;
  color: var(--accent-color);
}

.flow-item span {
  font-weight: 600;
  font-size: 0.9rem;
}

.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent-color);
}

.flow-arrow i {
  font-size: 1.5rem;
}

.flow-arrow span {
  font-size: 0.75rem;
  color: #666;
}

.integration-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.integration-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  border: 1px solid var(--border-color);
}

.integration-feature i {
  color: var(--accent-color);
}

/* Problem Highlight */
.problem-highlight {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid #fca5a5;
}

.big-problem-number {
  font-size: 4rem;
  font-weight: 800;
  color: #dc2626;
  line-height: 1;
}

.big-problem-label {
  font-size: 1rem;
  color: #7f1d1d;
  font-weight: 500;
}

.problem-highlight h5 {
  color: #991b1b;
  margin-bottom: 0.75rem;
}

.problem-highlight p {
  color: #7f1d1d;
  margin-bottom: 0;
}

/* SMS Flow */
.sms-flow {
  max-width: 400px;
  margin: 0 auto;
}

.sms-message {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 16px;
  position: relative;
}

.sms-message.outgoing {
  background: var(--accent-color);
  color: white;
  border-bottom-right-radius: 4px;
  margin-left: 20%;
}

.sms-message.incoming {
  background: #e5e7eb;
  color: #1f2937;
  border-bottom-left-radius: 4px;
  margin-right: 20%;
}

.sms-time {
  font-size: 0.7rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.sms-content {
  font-size: 0.9rem;
}

.sms-stats {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0.7;
}

.sms-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  color: #166534;
}

.sms-result i {
  font-size: 1.25rem;
}

/* Doctor Pain Points */
.doctor-pain {
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}

.doctor-pain.before {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
}

.doctor-pain.after {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
}

.doctor-pain h6 {
  margin-bottom: 1rem;
}

.doctor-pain p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.time-stat {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

.doctor-pain.before .time-stat {
  background: #fecaca;
  color: #991b1b;
}

.doctor-pain.after .time-stat {
  background: #bbf7d0;
  color: #166534;
}

/* Patient Quote */
.client-quote.patient-quote {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-left: 4px solid #3b82f6;
}

.client-quote.patient-quote .bi-quote {
  color: rgba(59, 130, 246, 0.3);
}

/* AI Demo Box */
.ai-demo-box {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border-radius: 16px;
  padding: 2rem;
  color: white;
}

.ai-demo-input {
  margin-bottom: 1rem;
}

.ai-demo-input .demo-label {
  font-size: 0.8rem;
  opacity: 0.7;
  display: block;
  margin-bottom: 0.5rem;
}

.demo-cv {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.demo-cv i {
  font-size: 1.25rem;
  color: #a78bfa;
}

.ai-demo-process {
  text-align: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.ai-demo-process i {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.25rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.ai-demo-process span {
  font-size: 0.85rem;
}

.ai-demo-output {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

.ai-score {
  text-align: center;
  margin-bottom: 1rem;
}

.score-value {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.score-label {
  font-size: 0.9rem;
  opacity: 0.7;
}

.ai-reasoning h6 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.ai-reasoning ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-reasoning ul li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.ai-reasoning ul li i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ai-reasoning ul li i.text-success {
  color: #4ade80 !important;
}

.ai-reasoning ul li i.text-danger {
  color: #f87171 !important;
}

/* Transformation Cards */
.transformation-card {
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
}

.transformation-card.before {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid #fca5a5;
}

.transformation-card.after {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #86efac;
}

.transformation-card h6 {
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.transformation-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.t-stat {
  text-align: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}

.t-stat .t-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}

.transformation-card.before .t-value {
  color: #dc2626;
}

.transformation-card.after .t-value {
  color: var(--accent-color);
}

.t-stat .t-label {
  font-size: 0.7rem;
  color: #666;
}

/* Onboarding Modules */
.onboarding-modules {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.module-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.module-item:hover {
  transform: translateX(5px);
  border-color: var(--accent-color);
}

.module-day {
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.module-name {
  flex: 1;
  font-weight: 500;
}

.module-type {
  font-size: 0.8rem;
  color: #888;
  background: var(--light-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

/* Pain/Success Points */
.pain-point,
.success-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
}

.pain-point {
  background: #fecaca;
  color: #991b1b;
}

.success-point {
  background: #bbf7d0;
  color: #166534;
}

.pain-point i,
.success-point i {
  font-size: 1.1rem;
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 767px) {
  .story-intro {
    padding: 1.25rem;
  }

  .lead-story {
    font-size: 1rem;
  }

  .story-highlight-box .highlight-number {
    font-size: 1.5rem;
  }

  .before-after-card {
    padding: 1rem;
  }

  .user-journey .journey-step {
    flex-direction: column;
    text-align: center;
  }

  .gamification-card {
    padding: 1rem;
  }

  .gamification-icon {
    width: 50px;
    height: 50px;
  }

  .gamification-icon i {
    font-size: 1.25rem;
  }

  .security-highlight {
    padding: 1.25rem;
  }

  .security-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
  }

  .roi-calculator {
    padding: 1.25rem;
  }

  .roi-item .roi-value {
    font-size: 1.5rem;
  }

  .chaos-visualization {
    flex-direction: column;
    align-items: stretch;
  }

  .chaos-item {
    justify-content: center;
  }

  .integration-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .big-problem-number {
    font-size: 3rem;
  }

  .sms-flow {
    max-width: 100%;
  }

  .sms-message.outgoing {
    margin-left: 10%;
  }

  .sms-message.incoming {
    margin-right: 10%;
  }

  .ai-demo-box {
    padding: 1.25rem;
  }

  .score-value {
    font-size: 2.5rem;
  }

  .transformation-stats {
    grid-template-columns: 1fr;
  }

  .module-item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .module-name {
    width: 100%;
    order: 1;
  }

  .module-day {
    order: 0;
  }

  .module-type {
    order: 2;
  }
}

/*--------------------------------------------------------------
# Print Styles
--------------------------------------------------------------*/
@media print {
  .navbar,
  .footer,
  .btn {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .hero-section,
  .glass-panel,
  .service-card,
  .card {
    background: white !important;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}

/*--------------------------------------------------------------
# PROJECT 8: Escape Room - Live Dashboard Styles
--------------------------------------------------------------*/
.live-dashboard-demo {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 16px;
  padding: 1.5rem;
  color: white;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.pulse-dot {
  animation: pulse-glow 2s infinite;
  font-size: 0.6rem;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.dashboard-time {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.dash-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-card.highlight {
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.2) 0%, rgba(72, 187, 120, 0.1) 100%);
  border-color: rgba(72, 187, 120, 0.3);
}

.dash-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.1;
}

.dash-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.dash-trend {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.dash-trend.positive {
  color: #4ade80;
}

.occupancy-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-top: 0.75rem;
  overflow: hidden;
}

.occupancy-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color) 0%, #22c55e 100%);
  border-radius: 3px;
  transition: width 1s ease;
}

.rooms-active {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.room-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.room-dot.active {
  background: var(--accent-color);
  box-shadow: 0 0 8px rgba(72, 187, 120, 0.5);
}

/* Disaster Story Box */
.disaster-story-box {
  display: flex;
  gap: 1.5rem;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid #fca5a5;
  border-radius: 16px;
  padding: 1.5rem;
}

.disaster-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disaster-icon i {
  font-size: 1.75rem;
  color: white;
}

.disaster-content h5 {
  color: #991b1b;
  margin-bottom: 0.75rem;
}

.disaster-content p {
  color: #7f1d1d;
  margin-bottom: 1rem;
}

.disaster-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.d-stat {
  text-align: center;
}

.d-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #dc2626;
}

.d-label {
  font-size: 0.75rem;
  color: #991b1b;
}

/* Load Test Results */
.load-test-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.test-metric {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.metric-name {
  font-weight: 500;
  color: #333;
}

.metric-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.metric-value.good {
  color: var(--accent-color);
}

.metric-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color) 0%, #22c55e 100%);
  border-radius: 4px;
  transition: width 1s ease;
}

.metric-fill.error {
  background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.metric-target {
  display: block;
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.5rem;
}

/* Architecture Highlights */
.architecture-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.arch-item {
  display: flex;
  gap: 1rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.arch-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.arch-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #22c55e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arch-icon i {
  font-size: 1.25rem;
  color: white;
}

.arch-content h6 {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.arch-content p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Feature Card Compact */
.feature-card-compact {
  display: flex;
  gap: 1rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card-compact:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(72, 187, 120, 0.1);
}

.feature-card-compact > i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.feature-card-compact h6 {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.feature-card-compact p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
}

/*--------------------------------------------------------------
# PROJECT 9: E-learning - Learning Analytics Styles
--------------------------------------------------------------*/
/* Compliance Alert Box */
.compliance-alert-box {
  display: flex;
  gap: 1.5rem;
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  border: 2px solid #fcd34d;
  border-radius: 16px;
  padding: 1.5rem;
}

.compliance-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-icon i {
  font-size: 1.75rem;
  color: white;
}

.compliance-content h5 {
  color: #92400e;
  margin-bottom: 0.75rem;
}

.compliance-content p {
  color: #78350f;
  margin-bottom: 1rem;
}

.compliance-deadline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  color: #92400e;
}

/* Learning Analytics Demo */
.learning-analytics-demo {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
}

.analytics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.analytics-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.analytics-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-weight: 600;
}

.analytics-badge.complete {
  background: rgba(72, 187, 120, 0.15);
  color: var(--accent-color);
}

.progress-ring-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.progress-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-ring-bg {
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 3;
}

.progress-ring-fill {
  fill: none;
  stroke: var(--accent-color);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.analytics-detail {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #666;
}

.time-breakdown {
  text-align: center;
  padding: 1rem 0;
}

.time-item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.time-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.time-unit {
  font-size: 1rem;
  color: #666;
}

.time-label {
  font-size: 0.8rem;
  color: #888;
  margin-left: 0.25rem;
}

.time-compare {
  margin-top: 0.75rem;
}

.old-time {
  font-size: 0.8rem;
  color: #ef4444;
  text-decoration: line-through;
}

.expiry-alerts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.expiry-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
}

.expiry-item.urgent {
  background: #fef2f2;
  border-left: 3px solid #ef4444;
}

.expiry-item.warning {
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
}

.expiry-count {
  font-size: 1.5rem;
  font-weight: 700;
}

.expiry-item.urgent .expiry-count {
  color: #dc2626;
}

.expiry-item.warning .expiry-count {
  color: #d97706;
}

.expiry-label {
  font-size: 0.85rem;
  color: #666;
}

.analytics-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #666;
}

/* Engagement Heatmap */
.engagement-heatmap {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  overflow-x: auto;
}

.heatmap-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.heatmap-label {
  width: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #666;
  flex-shrink: 0;
}

.heatmap-cell {
  flex: 1;
  height: 32px;
  border-radius: 4px;
  min-width: 60px;
}

.heatmap-cell.very-low { background: #f3f4f6; }
.heatmap-cell.low { background: #dcfce7; }
.heatmap-cell.medium { background: #86efac; }
.heatmap-cell.high { background: #4ade80; }
.heatmap-cell.very-high { background: #16a34a; }

.heatmap-times {
  display: flex;
  gap: 0.5rem;
  margin-left: 40px;
  margin-top: 0.75rem;
}

.heatmap-times span {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: #888;
  min-width: 60px;
}

/* Learning Paths */
.learning-paths {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.path-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  position: relative;
}

.path-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.path-icon {
  font-size: 2rem;
}

.path-header h6 {
  margin: 0;
  font-weight: 600;
}

.path-modules {
  font-size: 0.85rem;
  color: #666;
}

.path-progress {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.path-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #9ca3af;
  flex-shrink: 0;
}

.path-step.completed {
  background: var(--accent-color);
  color: white;
}

.path-step.current {
  background: white;
  border: 3px solid var(--accent-color);
  color: var(--accent-color);
}

.path-step.final {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
}

.path-step.final.completed {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
}

.path-line {
  flex: 1;
  height: 3px;
  background: #e5e7eb;
  min-width: 20px;
}

.path-line.completed {
  background: var(--accent-color);
}

.path-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #22c55e 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Knowledge Retention */
.retention-comparison {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.retention-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  width: 220px;
}

.retention-card.old {
  border-color: #fca5a5;
}

.retention-card.new {
  border-color: #86efac;
}

.retention-card h6 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.retention-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 120px;
  gap: 0.5rem;
}

.retention-bar {
  width: 40px;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
  transition: height 1s ease;
}

.retention-card.old .retention-bar {
  background: linear-gradient(180deg, #fca5a5 0%, #f87171 100%);
}

.retention-card.new .retention-bar {
  background: linear-gradient(180deg, #86efac 0%, #4ade80 100%);
}

.retention-bar span {
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.retention-labels {
  display: flex;
  justify-content: space-around;
  margin-top: 0.5rem;
}

.retention-labels span {
  font-size: 0.65rem;
  color: #888;
  width: 40px;
  text-align: center;
}

.retention-vs {
  font-size: 1.5rem;
  color: #ccc;
}

.retention-insight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(72, 187, 120, 0.1);
  border-radius: 8px;
  font-weight: 600;
  color: var(--accent-color);
}

/* Language Grid */
.language-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  min-width: 160px;
}

.lang-flag {
  font-size: 1.75rem;
}

.lang-name {
  font-weight: 500;
}

.lang-users {
  margin-left: auto;
  background: var(--light-bg);
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #666;
}

/*--------------------------------------------------------------
# Floating Mobile Menu Button
--------------------------------------------------------------*/
.floating-menu-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #22c55e 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(72, 187, 120, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(72, 187, 120, 0.5);
}

.floating-menu-btn:active {
  transform: translateY(0);
}

.floating-menu-btn i {
  font-size: 1.2rem;
}

.floating-menu-btn.hidden {
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
}

/*--------------------------------------------------------------
# Mobile Expand Buttons for Portfolio
--------------------------------------------------------------*/
.mobile-expand-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.08) 0%, rgba(72, 187, 120, 0.04) 100%);
  border: 1px solid rgba(72, 187, 120, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-expand-btn:hover,
.mobile-expand-btn:active {
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.15) 0%, rgba(72, 187, 120, 0.08) 100%);
  border-color: var(--accent-color);
  transform: translateX(4px);
}

.mobile-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #22c55e 100%);
  border-radius: 10px;
  flex-shrink: 0;
}

.mobile-btn-icon i {
  color: white;
  font-size: 1rem;
}

.mobile-btn-text {
  flex: 1;
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.mobile-expand-btn > i.bi-chevron-right {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.mobile-expand-btn:hover > i.bi-chevron-right,
.mobile-expand-btn:active > i.bi-chevron-right {
  transform: translateX(4px);
}

/* Hide mobile expand button when project is expanded */
.portfolio-checkbox:checked ~ .portfolio-header .mobile-expand-btn {
  opacity: 0.5;
}

.portfolio-checkbox:checked ~ .portfolio-header .mobile-expand-btn .mobile-btn-text::after {
  content: " ✓";
  color: var(--accent-color);
}

/* Mobile Responsiveness for New Project Elements */
@media (max-width: 767px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .disaster-story-box {
    flex-direction: column;
    text-align: center;
  }

  .disaster-stats {
    justify-content: center;
  }

  .analytics-row {
    grid-template-columns: 1fr;
  }

  .compliance-alert-box {
    flex-direction: column;
    text-align: center;
  }

  .retention-comparison {
    flex-direction: column;
  }

  .retention-vs {
    transform: rotate(90deg);
  }

  .path-progress {
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .lang-item {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px;
  }

  .arch-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-card-compact {
    flex-direction: column;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Blog Styles
--------------------------------------------------------------*/

/* Blog Card */
.blog-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(72, 187, 120, 0.15);
}

.blog-card-image {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
  overflow: hidden;
}

.blog-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.blog-card-category {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #718096;
}

.blog-card-meta i {
  color: var(--accent-color);
}

.blog-card-title {
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--accent-color);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.blog-card-author {
  font-size: 0.85rem;
  color: #718096;
}

.blog-card-author i {
  color: var(--accent-color);
}

/* Blog Article Page */
.blog-article-header {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article-meta {
  font-size: 0.95rem;
}

.blog-article-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-size: 1.5rem;
}

.blog-article-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  font-size: 1.25rem;
}

.blog-article-content p {
  margin-bottom: 1.25rem;
}

.blog-article-content ul,
.blog-article-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.blog-article-content li {
  margin-bottom: 0.5rem;
}

.blog-article-content strong {
  color: var(--heading-color);
}

.blog-article-content a {
  color: var(--accent-color);
  text-decoration: underline;
}

.blog-article-content a:hover {
  color: var(--accent-hover);
}

/* Breadcrumb Styling */
.breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #718096;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #cbd5e0;
}

/* Pagination */
.pagination .page-link {
  border: 1px solid var(--border-color);
  color: var(--default-color);
  padding: 0.5rem 1rem;
  margin: 0 2px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.pagination .page-link:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.pagination .page-item.active .page-link {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

/* Blog Filter Buttons */
.blog-filter-btn {
  border-radius: 20px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/*--------------------------------------------------------------
# Blog Article UX Elements
--------------------------------------------------------------*/

/* Blog Highlight Box */
.blog-highlight-box {
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.08) 0%, rgba(72, 187, 120, 0.03) 100%);
  border: 2px solid rgba(72, 187, 120, 0.2);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.blog-highlight-box.warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.03) 100%);
  border-color: rgba(245, 158, 11, 0.3);
}

.blog-highlight-box.warning .highlight-number {
  color: #d97706;
}

.blog-highlight-box .highlight-icon {
  font-size: 2rem;
  color: var(--accent-color);
  opacity: 0.8;
}

.blog-highlight-box.warning .highlight-icon {
  color: #d97706;
}

.blog-highlight-box .highlight-content {
  display: flex;
  flex-direction: column;
}

.blog-highlight-box .highlight-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.1;
}

.blog-highlight-box .highlight-label {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.8;
}

/* Blog Timeline */
.blog-timeline {
  position: relative;
  padding-left: 30px;
  margin: 2rem 0;
}

.blog-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color) 0%, rgba(72, 187, 120, 0.2) 100%);
}

.blog-timeline .timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
  padding-left: 25px;
}

.blog-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.blog-timeline .timeline-marker {
  position: absolute;
  left: -22px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--accent-color);
}

.blog-timeline .timeline-content {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-color);
}

.blog-timeline .timeline-date {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-timeline .timeline-content h6 {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.blog-timeline .timeline-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* Blog Stats Row */
.blog-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.blog-stats-row .stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease;
}

.blog-stats-row .stat-card:hover {
  transform: translateY(-3px);
}

.blog-stats-row .stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.2;
}

.blog-stats-row .stat-label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.25rem;
}

.blog-stats-row .stat-detail {
  display: block;
  font-size: 0.7rem;
  color: #999;
  margin-top: 0.25rem;
}

/* Blog Before/After Comparison */
.blog-before-after {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.blog-before-after .before-card,
.blog-before-after .after-card {
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.blog-before-after .before-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
  border-color: rgba(239, 68, 68, 0.2);
}

.blog-before-after .after-card {
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.05) 0%, rgba(72, 187, 120, 0.02) 100%);
  border-color: rgba(72, 187, 120, 0.2);
}

.blog-before-after h6 {
  margin-bottom: 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-before-after ul {
  margin: 0;
  padding-left: 1.25rem;
}

.blog-before-after li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Blog Questions List */
.blog-questions-list {
  margin: 2rem 0;
}

.blog-questions-list .question-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--light-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.blog-questions-list .question-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(72, 187, 120, 0.1);
}

.blog-questions-list .question-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #2f855a 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.blog-questions-list .question-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: var(--heading-color);
}

.blog-questions-list .question-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.blog-questions-list .question-content .red-flag {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: rgba(239, 68, 68, 0.05);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #b91c1c;
}

/* Blog CTA Box */
.blog-cta-box {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2f855a 100%);
  border-radius: 16px;
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
  color: white;
}

.blog-cta-box h5 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.blog-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 1rem;
}

/* Blog Code Box */
.blog-code-box {
  background: #1e293b;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  overflow-x: auto;
}

.blog-code-box code {
  color: #e2e8f0;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

/* Share Buttons */
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.share-btn:hover {
  transform: translateY(-2px);
  color: white;
}

.share-btn-linkedin {
  background: #0077b5;
}

.share-btn-linkedin:hover {
  background: #005885;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
}

.share-btn-facebook {
  background: #1877f2;
}

.share-btn-facebook:hover {
  background: #0d5fc7;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blog-card-image {
    height: 140px;
  }

  .blog-card-body {
    padding: 1rem;
  }

  .blog-card-title {
    font-size: 1rem;
  }

  .blog-article-content {
    font-size: 1rem;
    padding: 1.5rem !important;
  }

  .blog-article-content h2 {
    font-size: 1.3rem;
  }

  .blog-article-content h3 {
    font-size: 1.1rem;
  }

  .blog-highlight-box {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .blog-highlight-box .highlight-number {
    font-size: 1.75rem;
  }

  .blog-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-stats-row .stat-value {
    font-size: 1.4rem;
  }

  .blog-before-after {
    grid-template-columns: 1fr;
  }

  .blog-questions-list .question-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-timeline {
    padding-left: 20px;
  }

  .blog-timeline .timeline-item {
    padding-left: 15px;
  }

  .blog-cta-box {
    padding: 1.5rem;
  }
}
