@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Advanced Cyberpunk-adjacent Design Tokens */
:root {
  --bg-dark: #05070f;
  --bg-deep: #0a0d1a;
  --bg-card: rgba(13, 18, 36, 0.45);
  --bg-card-hover: rgba(18, 25, 51, 0.7);
  --bg-nav: rgba(5, 7, 15, 0.85);
  
  --primary: #8CC63F; /* Cyber Lime */
  --primary-glow: rgba(140, 198, 63, 0.25);
  --accent: #39B54A; /* Emerald */
  --accent-glow: rgba(57, 181, 74, 0.3);
  --bronze: #8C6239;
  --gold: #C7B299;
  
  --text-primary: #F8FAFC;
  --text-muted: #8A9BB4;
  --text-dark: #0F172A;
  
  --border-glass: rgba(255, 255, 255, 0.05);
  --border-glass-active: rgba(140, 198, 63, 0.35);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  --shadow-glow: 0 0 25px rgba(140, 198, 63, 0.15);
  --shadow-glow-strong: 0 0 45px rgba(140, 198, 63, 0.35);
  --shadow-card: 0 15px 35px -15px rgba(0, 0, 0, 0.6);
  
  --transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-dark);
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(140, 198, 63, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(57, 181, 74, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(199, 178, 153, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Blueprint/Cyber Grid Overlay */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(140, 198, 63, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 198, 63, 0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  pointer-events: none;
  z-index: -2;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  line-height: 1.65;
  color: var(--text-muted);
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-padding {
  padding: 9rem 0;
}

/* Gradient Utilities */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-bronze {
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Header & Navigation */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

header.site-header.scrolled {
  background-color: var(--bg-nav);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.4rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  transition: var(--transition);
}

.site-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2.8rem;
}

.main-navigation a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.6rem 0;
  letter-spacing: 0.02em;
}

.main-navigation a:hover,
.main-navigation li.active a {
  color: var(--text-primary);
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition);
  transform: translateX(-50%);
}

.main-navigation a:hover::after,
.main-navigation li.active a::after {
  width: 100%;
}

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

/* Burger Mobile Menu */
.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 22px;
  position: relative;
  z-index: 1001;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.burger-menu span:nth-child(1) { top: 0; }
.burger-menu span:nth-child(2) { top: 10px; }
.burger-menu span:nth-child(3) { top: 20px; }

.burger-menu.open span:nth-child(1) { transform: rotate(45deg); top: 10px; }
.burger-menu.open span:nth-child(2) { opacity: 0; }
.burger-menu.open span:nth-child(3) { transform: rotate(-45deg); top: 10px; }

/* Buttons with Glowing Accents */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--text-dark);
  border: none;
  box-shadow: 0 4px 20px rgba(140, 198, 63, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(140, 198, 63, 0.07);
  color: var(--primary);
  border: 1px solid rgba(140, 198, 63, 0.2);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(140, 198, 63, 0.16);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* Glassmorphism Panel Cards with Complex Gradient Borders */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 3rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-active);
  transform: translateY(-6px);
  box-shadow: 
    0 25px 50px -15px rgba(0, 0, 0, 0.7), 
    0 0 30px rgba(140, 198, 63, 0.1);
}

/* Section Header */
.section-header {
  margin-bottom: 5.5rem;
  max-width: 800px;
}

.section-header h2 {
  font-size: 3.5rem;
  margin-bottom: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
}

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

/* Hero Section & Interactive Terminal Simulator */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  overflow: hidden;
  background: url('../assets/hero-banner.jpg');
  background-size: cover;
  background-position: right 130px;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 5rem;
  line-height: 1.05;
  margin-bottom: 2rem;
  font-weight: 900;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  max-width: 650px;
}

.hero-ctas {
  display: flex;
  gap: 1.8rem;
}

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

.visual-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 198, 63, 0.22) 0%, transparent 70%);
  filter: blur(35px);
  z-index: -1;
  animation: float 10s ease-in-out infinite alternate;
}

/* Interactive Mock Terminal Visual styling */
.terminal-wrapper {
  width: 100%;
  max-width: 520px;
  height: 400px;
  background: #020308;
  border: 1px solid rgba(140, 198, 63, 0.25);
  border-radius: 12px;
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.95), 0 0 25px rgba(140, 198, 63, 0.05);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(25px);
  animation: float 7s ease-in-out infinite;
  font-family: var(--font-mono);
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.8rem;
}

.terminal-title {
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.terminal-body {
  flex-grow: 1;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #38BDF8; /* Terminal bright blue */
  overflow-y: auto;
  padding-right: 0.5rem;
}

.terminal-line {
  margin-bottom: 0.6rem;
  white-space: pre-wrap;
  word-break: break-all;
}

.terminal-prompt {
  color: var(--primary);
}

.terminal-output {
  color: var(--text-primary);
}

.terminal-input-row {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.8rem;
  margin-top: auto;
}

.terminal-input-prompt {
  color: var(--primary);
  margin-right: 0.6rem;
  font-weight: bold;
}

.terminal-input-field {
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  flex-grow: 1;
  caret-color: var(--primary);
}

/* Stats counter bar */
.stats-bar {
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 4rem 0;
  background: rgba(7, 9, 19, 0.6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

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

.stat-num {
  font-size: 4rem;
  font-weight: 900;
  font-family: var(--font-heading);
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(140, 198, 63, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(140, 198, 63, 0.2);
  transition: var(--transition);
}

.glass-card:hover .feature-icon {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(140, 198, 63, 0.5);
  border-color: var(--primary);
}

.features-grid h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--border-glass) 0%, var(--primary) 25%, var(--accent) 75%, var(--border-glass) 100%);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2.5rem 5rem;
  z-index: 2;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 2.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary);
  box-shadow: var(--shadow-glow);
  z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -24px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -24px;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 2.5rem;
  transition: var(--transition);
}

.timeline-item:hover .timeline-content {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
  color: var(--primary);
}

/* Testimonial slider */
.testimonial-slider {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide {
  min-width: 100%;
  padding: 1.2rem;
}

.testimonial-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 4.5rem 3.5rem;
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  font-size: 1.5rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
}

.author-role {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

/* Call To Action Block banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(7, 9, 19, 0.95) 100%);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 6rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 181, 74, 0.15) 0%, transparent 70%);
  filter: blur(25px);
}

.cta-banner h2 {
  font-size: 4rem;
  margin-bottom: 1.6rem;
}

.cta-banner p {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}

/* Footer Section */
footer.site-footer {
  background-color: #03040a;
  border-top: 1px solid var(--border-glass);
  padding: 7rem 0 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 5rem;
  margin-bottom: 6rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary);
}

.footer-col p {
  font-size: 0.95rem;
  margin-bottom: 1.6rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-col a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-detail {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-detail i {
  color: var(--primary);
  margin-top: 0.25rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-glass);
  padding-top: 3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2.2rem;
}

/* About Page layout */
.about-hero {
  padding: 11rem 0 6.5rem;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(140, 198, 63, 0.05) 0%, transparent 60%);
}

.about-hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.6rem;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-story h3 {
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
}

.about-story p {
  margin-bottom: 1.6rem;
  font-size: 1.08rem;
}

.vision-mission-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.vmv-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--primary);
}

/* Team Grid bios */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  margin: 0 auto 2.2rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
  border: 2px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.team-avatar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--accent)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-avatar {
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: var(--shadow-glow);
}

.team-card:hover .team-avatar::after {
  opacity: 1;
}

.team-avatar i {
  font-size: 4.2rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card p {
  font-size: 0.98rem;
  margin-bottom: 1.6rem;
}

/* Solutions page interactive tabs */
.specialties-section {
  background: rgba(7, 9, 19, 0.4);
  padding: 9rem 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.spec-card {
  padding: 2.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-glass);
  transition: var(--transition);
}

.spec-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.spec-header {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.spec-header i {
  color: var(--primary);
  font-size: 1.6rem;
}

.spec-header h3 {
  font-size: 1.35rem;
}

.spec-card p {
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.spec-card .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.spec-card .tech-tag {
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}

.detailed-solutions {
  display: flex;
  flex-direction: column;
  gap: 9rem;
}

.solution-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 7rem;
  align-items: center;
}

.solution-row:nth-child(even) {
  grid-template-columns: 0.85fr 1.15fr;
}

.solution-row:nth-child(even) .solution-text {
  order: 2;
}
.solution-row:nth-child(even) .solution-visual {
  order: 1;
}

.solution-text h3 {
  font-size: 2.8rem;
  margin-bottom: 1.8rem;
}

.solution-text p {
  font-size: 1.12rem;
  margin-bottom: 2.2rem;
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.solution-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.08rem;
}

.solution-list i {
  color: var(--primary);
}

.solution-visual {
  height: 350px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--primary);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.solution-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(140, 198, 63, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(20px);
}

/* Contact Page Estimator UI */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 6rem;
}

.contact-info-panel h3 {
  font-size: 2.2rem;
  margin-bottom: 2.8rem;
}

.estimator-card {
  padding: 3.5rem;
}

.estimator-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.estimator-card > p {
  margin-bottom: 3rem;
}

.estimator-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.grid-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.select-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 1.4rem 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.select-card input[type="radio"],
.select-card input[type="checkbox"] {
  display: none;
}

.select-card span {
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
}

.select-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--primary);
}

.select-card.selected {
  background: rgba(140, 198, 63, 0.13);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(140, 198, 63, 0.08);
}

.select-card.selected span {
  color: var(--primary);
}

.tier-detail {
  font-size: 0.78rem !important;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 400 !important;
}

/* Headcount Sliders details */
.slider-control {
  position: relative;
  padding-top: 0.6rem;
}

.slider-control input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.slider-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(140, 198, 63, 0.6);
  transition: var(--transition);
}

.slider-control input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.22);
}

.slider-val {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
  font-size: 1.25rem;
  float: right;
}

/* Custom dropdown and text inputs */
.input-field {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 1rem 1.4rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  outline: none;
  transition: var(--transition);
}

.input-field:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(140, 198, 63, 0.08);
}

select.input-field {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238CC63F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.2rem;
  padding-right: 3rem;
}

select.input-field option {
  background-color: var(--bg-deep);
  color: var(--text-primary);
}

.row-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

/* Calculation summary panel */
.calc-summary {
  margin-top: 1.2rem;
  padding-top: 2.2rem;
  border-top: 1px dashed var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 6rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.6rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-trigger i {
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.open .faq-trigger i {
  transform: rotate(180deg);
}

.faq-item.open {
  border-color: rgba(140, 198, 63, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-content-inner {
  padding: 0 2.2rem 2rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Blog Catalog Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 2.25fr 0.75fr;
  gap: 6rem;
}

.blog-main {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.blog-post-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.blog-post-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.blog-post-img-mock {
  height: 320px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(140, 198, 63, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary);
  border-bottom: 1px solid var(--border-glass);
}

.blog-post-content {
  padding: 3.5rem;
}

.blog-meta {
  display: flex;
  gap: 2.2rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.blog-meta i {
  color: var(--primary);
}

.blog-post-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.4rem;
  line-height: 1.25;
}

.blog-post-content p {
  font-size: 1.08rem;
  margin-bottom: 2.2rem;
}

/* Sidebar Widgets */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.sidebar-widget {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 2.5rem;
}

.sidebar-widget h4 {
  font-size: 1.35rem;
  margin-bottom: 1.8rem;
  position: relative;
}

.sidebar-widget h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.search-widget {
  display: flex;
  gap: 0.6rem;
}

.search-widget input {
  flex-grow: 1;
}

.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-weight: 500;
}

.category-list a:hover {
  color: var(--primary);
}

.category-count {
  background: rgba(255, 255, 255, 0.04);
  padding: 0.25rem 0.7rem;
  border-radius: 12px;
  font-size: 0.8rem;
  color: var(--text-primary);
}

/* Newsletter Widget Card */
.newsletter-card {
  text-align: center;
}

.newsletter-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.4rem;
}

.newsletter-card p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* Vacancies list search and application portal */
.search-bar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 14px;
  border: 1px solid var(--border-glass);
  margin-bottom: 4.5rem;
  align-items: center;
}

.search-input-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.search-input-wrap label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrap input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.015);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  outline: none;
}

.checkbox-wrap input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkbox-wrap input[type="checkbox"]:checked::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--bg-dark);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-wrap span {
  font-size: 0.98rem;
}

.jobs-container {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.job-card {
  padding: 2.5rem 3.5rem;
  cursor: pointer;
}

.job-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.job-info-left h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.job-card:hover .job-info-left h3 {
  color: var(--primary);
}

.job-tags {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.job-tag {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.job-tag.tag-fulltime { background: rgba(57, 181, 74, 0.13); color: #4ade80; border: 1px solid rgba(57, 181, 74, 0.22); }
.job-tag.tag-freelance { background: rgba(140, 198, 63, 0.13); color: var(--primary); border: 1px solid rgba(140, 198, 63, 0.22); }
.job-tag.tag-remote { background: rgba(56, 189, 248, 0.13); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.22); }
.job-tag.tag-location { background: rgba(255, 255, 255, 0.05); color: var(--text-muted); border: 1px solid var(--border-glass); }

.job-expand-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.job-card.open .job-expand-btn {
  transform: rotate(180deg);
  background: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
}

.job-details-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-top: 1px solid transparent;
  margin-top: 0;
}

.job-card.open .job-details-expand {
  border-top: 1px solid var(--border-glass);
  margin-top: 2.2rem;
  padding-top: 2.2rem;
}

.job-desc-inner {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 5rem;
}

.job-desc-inner h4 {
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.job-desc-inner ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
  padding-left: 0.6rem;
}

.job-desc-inner ul li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.job-desc-inner ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.job-apply-form-box {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 2.5rem;
}

.job-apply-form-box h4 {
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
}

.job-apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* File Upload drag and drop zone */
.file-upload-zone {
  border: 2px dashed var(--border-glass);
  border-radius: 8px;
  padding: 2.5rem 1.2rem;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition);
  position: relative;
}

.file-upload-zone:hover,
.file-upload-zone.dragover {
  border-color: var(--primary);
  background: rgba(140, 198, 63, 0.05);
}

.file-upload-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-zone i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.file-upload-zone p {
  font-size: 0.88rem;
  color: var(--text-primary);
}

.file-upload-zone span.file-name-display {
  display: block;
  margin-top: 0.6rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

/* Open Role Process Steps Tracker inside vacancies list */
.role-tracker {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 1.8rem;
  margin-top: 2rem;
}

.role-tracker h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.tracker-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 1rem;
}

.tracker-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--border-glass);
  z-index: 1;
}

.tracker-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  flex: 1;
  text-align: center;
}

.step-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.tracker-step.active .step-node {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.step-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.tracker-step.active .step-label {
  color: var(--text-primary);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .hero-grid, .about-intro-grid, .solution-row, .solution-row:nth-child(even), .contact-grid, .blog-layout {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  
  .solution-row:nth-child(even) .solution-text { order: 1; }
  .solution-row:nth-child(even) .solution-visual { order: 2; }
  
  .hero-visual {
    height: 420px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
  
  .features-grid, .vision-mission-values, .team-grid, .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1.2rem 0;
  }
  
  .burger-menu {
    display: block;
  }
  
  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: #03040a;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    transition: var(--transition-slow);
    padding: 7rem 3.5rem;
  }
  
  .main-navigation.open {
    right: 0;
  }
  
  .main-navigation ul {
    flex-direction: column;
    gap: 2.2rem;
  }
  
  .main-navigation a {
    font-size: 1.3rem;
  }
  
  .header-cta {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero {
    background: 
      linear-gradient(to bottom, rgba(5, 7, 15, 0.85) 0%, rgba(5, 7, 15, 0.5) 45%, rgba(5, 7, 15, 0.95) 100%),
      url('../assets/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
  
  .section-header h2 {
    font-size: 2.6rem;
  }
  
  .process-timeline::before {
    left: 2rem;
  }
  
  .timeline-item {
    width: 100%;
    padding: 1.8rem 1.8rem 1.8rem 4.5rem;
    text-align: left !important;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-badge {
    left: 0 !important;
  }
  
  .job-desc-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .grid-select {
    grid-template-columns: 1fr;
  }
  
  .tracker-steps::before {
    display: none;
  }
  
  .tracker-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  
  .tracker-step {
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    text-align: left;
  }
  
  .step-node {
    margin-bottom: 0;
  }
}

@media (max-width: 580px) {
  .stats-grid, .features-grid, .vision-mission-values, .team-grid, .specialties-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .cta-banner h2 {
    font-size: 2.5rem;
  }
  
  .search-bar-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-submit button {
    width: 100%;
  }
}

/* Glassmorphic Captcha widget styles */
.captcha-container {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 0.8rem 1.4rem;
  max-width: 320px;
  backdrop-filter: blur(12px);
}

.captcha-checkbox-wrap {
  position: relative;
  width: 24px;
  height: 24px;
}

.captcha-checkbox {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-glass);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.captcha-checkbox:checked {
  border-color: var(--primary);
  background: var(--primary);
  cursor: default;
}

.captcha-checkbox:checked::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--bg-dark);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.captcha-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid transparent;
  border-top-color: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 1;
}

.captcha-checkbox-wrap.loading .captcha-checkbox {
  opacity: 0;
}

.captcha-checkbox-wrap.loading .captcha-spinner {
  opacity: 1;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.captcha-label {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.captcha-brand {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  gap: 0.2rem;
}

.captcha-brand i {
  color: var(--primary);
  font-size: 1rem;
}

.btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* Hero Banner Image styles */
.hero-banner-wrapper {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card), 0 0 30px rgba(140, 198, 63, 0.05);
  background: rgba(13, 18, 36, 0.45);
  backdrop-filter: blur(16px);
  padding: 8px;
  animation: float 8s ease-in-out infinite;
  transition: var(--transition-slow);
  z-index: 2;
}

.hero-banner-wrapper:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.95), var(--shadow-glow);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
