/*
Theme Name: Janah UAV
Theme URI: https://janahuav.com
Author: Janah UAV Development Team
Author URI: https://janahuav.com
Description: Custom WordPress theme for Janah UAV - Saudi-based autonomous UAV systems company
Version: 1.0
License: Proprietary
Text Domain: janah-uav
*/

/* CSS Variables for Dark Aerospace Theme */
:root {
  --janah-primary: #0052ff;
  --janah-accent: #00d4ff;
  --janah-dark: #0a0a0a;
  --janah-light: #ffffff;
  --janah-saudi-green: #006C35;
  --janah-text-light: rgba(255, 255, 255, 0.9);
  --janah-text-muted: rgba(255, 255, 255, 0.7);
  --janah-border: rgba(255, 255, 255, 0.1);
  --janah-gradient: linear-gradient(135deg, var(--janah-primary) 0%, var(--janah-accent) 100%);
}

/* Global Styles */
body {
  background-color: var(--janah-dark);
  color: var(--janah-text-light);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--janah-light);
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--janah-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--janah-primary);
}

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

/* Glassmorphism Effects */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 82, 255, 0.2);
}

/* Animated Gradients */
.gradient-bg {
  background: linear-gradient(45deg, var(--janah-primary), var(--janah-accent));
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--janah-border);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 0.5rem 0;
  background: rgba(10, 10, 10, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--janah-light);
}

/* Navigation */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-menu a {
  color: var(--janah-text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--janah-accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  background: var(--janah-gradient);
  color: var(--janah-light);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3);
  color: var(--janah-light);
}

.language-toggle {
  background: transparent;
  border: 1px solid var(--janah-border);
  color: var(--janah-text-light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-toggle:hover {
  border-color: var(--janah-accent);
  color: var(--janah-accent);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--janah-text-muted);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: backwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: backwards;
}

.btn-secondary {
  background: transparent;
  color: var(--janah-light);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--janah-light);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--janah-light);
  color: var(--janah-dark);
  transform: translateY(-2px);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--janah-text-muted);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Capability Cards */
.capability-card {
  text-align: center;
  padding: 2rem;
}

.capability-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--janah-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--janah-light);
  transition: transform 0.3s ease;
}

.capability-card:hover .capability-icon {
  transform: rotate(10deg) scale(1.1);
}

.capability-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.capability-description {
  color: var(--janah-text-muted);
}

/* Solution Cards */
.solution-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 82, 255, 0.3);
}

.solution-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px; /* ####### New Mutaz */ 
}

.solution-card:hover .solution-image {
  transform: scale(1.05);
}

.solution-content {
  padding: 2rem;
}

.solution-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 82, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--janah-accent);
}

/* Solutions Grid Layout */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  grid-gap: 2rem; /* For older browser support */
  border-radius: 12px; /* ####### New Mutaz */ 
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Ensure grid gap works */
.content-section .solutions-grid {
  display: grid !important;
  gap: 2rem !important;
  grid-gap: 2rem !important;
}

/* Solution card specific feature list */
.solution-card .feature-list {
  margin: 1.5rem 0;
}

.solution-card .feature-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  border-bottom: none;
  font-size: 0.95rem;
}

.solution-card .feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--janah-accent);
  font-size: 1rem;
}

.solution-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--janah-light);
}

.solution-card p {
  margin-bottom: 1rem;
  color: var(--janah-text-muted);
  line-height: 1.6;
}

.solution-description {
  color: var(--janah-text-muted);
  margin-bottom: 1.5rem;
}

.solution-link {
  color: var(--janah-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.solution-link:hover {
  gap: 1rem;
}

/* Stats Section */
.stats-section {
  background: rgba(0, 82, 255, 0.05);
  border-top: 1px solid var(--janah-border);
  border-bottom: 1px solid var(--janah-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--janah-accent);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--janah-text-muted);
}

/* CTA Section */
.cta-section {
  background: var(--janah-gradient);
  padding: 4rem 0;
  text-align: center;
  border-radius: 24px;
  margin: 5rem 0;
}

.cta-title {
  color: var(--janah-light);
  margin-bottom: 1rem;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.btn-white {
  background: var(--janah-light);
  color: var(--janah-primary);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  color: var(--janah-primary);
}

/* Footer */
.site-footer {
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid var(--janah-border);
  padding: 3rem 0 1.5rem;
  margin-top: 5rem;
}

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

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

.footer-description {
  color: var(--janah-text-muted);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.footer-menu h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu a {
  color: var(--janah-text-muted);
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--janah-accent);
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Typing Effect */
.typing-text {
  display: inline-block;
  overflow: hidden;
  border-right: 3px solid var(--janah-accent);
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--janah-accent) }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--janah-light);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* Arabic Support */
.rtl {
  direction: rtl;
  text-align: right;
}

.rtl .header-container {
  flex-direction: row-reverse;
}

.rtl .nav-menu {
  flex-direction: row-reverse;
}

.rtl .hero-buttons {
  flex-direction: row-reverse;
}

.rtl .solution-link {
  flex-direction: row-reverse;
}

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

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

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: loading 1.5s infinite;
}

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

/* Saudi Flag Integration */
.saudi-flag {
  display: inline-block;
  width: 30px;
  height: 20px;
  background: var(--janah-saudi-green);
  position: relative;
  border-radius: 2px;
  vertical-align: middle;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--janah-gradient);
  border: none;
  border-radius: 50%;
  color: var(--janah-light);
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 82, 255, 0.3);
}

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

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(0, 82, 255, 0.4);
}

/* Form Styles */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--janah-text-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--janah-border);
  border-radius: 8px;
  color: var(--janah-text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--janah-accent);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-success {
  background: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.3);
  color: #27c93f;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
}

.form-success i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* Animation States */
.section,
.glass-card,
.solution-card,
.capability-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible,
.glass-card.visible,
.solution-card.visible,
.capability-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations for grid items */
.grid > *:nth-child(1) { transition-delay: 0.1s; }
.grid > *:nth-child(2) { transition-delay: 0.2s; }
.grid > *:nth-child(3) { transition-delay: 0.3s; }
.grid > *:nth-child(4) { transition-delay: 0.4s; }

/* Hero content animation */
.hero-content.animate-in .hero-title,
.hero-content.animate-in .hero-subtitle,
.hero-content.animate-in .hero-buttons {
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
}

.hero-content.animate-in .hero-subtitle {
  animation-delay: 0.2s;
}

.hero-content.animate-in .hero-buttons {
  animation-delay: 0.4s;
}

/* Mobile Menu Styles */
@media (max-width: 1024px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid var(--janah-border);
    border-bottom: 1px solid var(--janah-border);
    padding: 1rem 0;
    display: none;
  }
  
  .nav-menu li {
    display: block;
    text-align: center;
    padding: 0.5rem 0;
  }
  
  .mobile-menu-toggle.active i::before {
    content: "\f00d";
  }
  
  .header-cta {
    display: none;
  }
}

/* Page Templates */
.page-header {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  padding: 8rem 0 4rem;
  margin-top: 80px;
  text-align: center;
  border-bottom: 1px solid var(--janah-border);
}

.page-title {
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--janah-text-muted);
  max-width: 800px;
  margin: 0 auto;
}

/* Content Area */
.content-area {
  padding: 4rem 0;
}

.content-section {
  margin-bottom: 4rem;
}

.content-section:last-child {
  margin-bottom: 0;
}

/* Feature Lists */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 1rem 0 1rem 3rem;
  position: relative;
  border-bottom: 1px solid var(--janah-border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--janah-accent);
  font-size: 1.25rem;
}

/* Icon Grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.icon-item {
  text-align: center;
}

.icon-item i {
  font-size: 3rem;
  color: var(--janah-accent);
  margin-bottom: 1rem;
  display: block;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 2rem;
  color: var(--janah-text-muted);
}

.breadcrumbs a {
  color: var(--janah-text-muted);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--janah-accent);
}

.breadcrumbs span {
  margin: 0 0.5rem;
}

/* Dashboard Preview Styles */
.dashboard-preview {
  background: rgba(0, 82, 255, 0.05);
  border: 1px solid var(--janah-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.dashboard-header {
  background: rgba(10, 10, 10, 0.8);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--janah-border);
}

.dashboard-body {
  padding: 2rem;
}

/* Technology Features Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tech-card {
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: var(--janah-accent);
}

.tech-icon {
  font-size: 3rem;
  color: var(--janah-accent);
  margin-bottom: 1rem;
}

.tech-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list li {
  color: var(--janah-text-muted);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.tech-list li:before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--janah-accent);
}