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

/* ==========================================
   1. DESIGN TOKENS & RESPONSIVE THEMES
   ========================================== */
:root {
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Accent Colors (Vibrant Neon Theme by Default) */
  --brand-primary: #00f0ff;     /* Neon Cyan */
  --brand-secondary: #d946ef;   /* Neon Magenta/Purple */
  --accent-color: var(--brand-primary);
  --accent-gradient: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  --accent-glow: rgba(0, 240, 255, 0.3);

  /* UI Colors - Neon Dark Theme */
  --bg-base: #040814;
  --bg-surface: rgba(10, 15, 30, 0.6);
  --bg-surface-solid: #080c1b;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(0, 240, 255, 0.5);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-inverse: #040814;
  
  --card-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 240, 255, 0.05);
  --nav-bg: rgba(4, 8, 20, 0.75);
  
  --scrollbar-thumb: #1e293b;
  --scrollbar-track: #040814;

  /* Transition timings */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Browser UI settings */
  color-scheme: dark;
}

/* ==========================================
   2. GLOBAL RESETS & TYPOGRAPHY
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Typography rules using guidance */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  text-wrap: balance; /* Balanced headings */
}

p, li, blockquote {
  text-wrap: pretty; /* Prevents orphans on body copy */
}

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

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

/* Custom Scrollbars */
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
scrollbar-width: thin;

@supports not (scrollbar-color: auto) {
  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 5px;
  }
  ::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
  }
}

/* ==========================================
   3. NEON BACKGROUND BLOBS
   ========================================== */
.neon-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  -webkit-filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
  animation: floatAnim 18s infinite alternate ease-in-out;
}

.blob-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
  top: -5%;
  left: -5%;
}

.blob-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--brand-secondary) 0%, transparent 70%);
  top: 40%;
  right: -10%;
  animation-duration: 22s;
  animation-delay: -4s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
  bottom: -5%;
  left: 20%;
  animation-duration: 16s;
  animation-delay: -8s;
}

@keyframes floatAnim {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, 80px) scale(1.15);
  }
  100% {
    transform: translate(-40px, -30px) scale(0.9);
  }
}

/* ==========================================
   4. LAYOUT UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.glass {
  background: var(--bg-surface);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

/* ==========================================
   5. NAVIGATION BAR
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 2rem;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-svg {
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.logo:hover .logo-svg {
  transform: scale(1.1) rotate(5deg);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Language Selector */
.lang-selector {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  color: var(--text-main);
  border-color: var(--brand-primary);
  background: rgba(0, 240, 255, 0.05);
}

.lang-btn.active {
  background: var(--accent-gradient);
  color: #040814;
  border-color: transparent;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  position: absolute;
  left: 4px;
  transition: var(--transition-smooth);
}

.menu-toggle span:nth-child(1) { top: 10px; }
.menu-toggle span:nth-child(2) { top: 16px; }
.menu-toggle span:nth-child(3) { top: 22px; }

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 16px;
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 16px;
}

/* ==========================================
   6. HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.cta-group {
  display: flex;
  gap: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #040814;
  border: none;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--accent-glow);
}

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

.btn-secondary:hover {
  border-color: var(--brand-primary);
  background: rgba(0, 240, 255, 0.05);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  aspect-ratio: 16 / 9;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-frame:hover .hero-image {
  transform: scale(1.03);
}

/* ==========================================
   7. ABOUT US SECTION
   ========================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  color: var(--brand-primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-header h2 {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}

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

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.stat-card {
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.feature-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

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

/* ==========================================
   8. PORTFOLIO (OUR APPS)
   ========================================== */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.app-card {
  overflow: hidden;
  transition: var(--transition-bounce);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.app-img-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--border-color);
}

.app-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 240, 255, 0.15);
  border-color: var(--border-focus);
}

.app-card:hover .app-img {
  transform: scale(1.05);
}

.app-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.app-category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-primary);
}

.app-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(217, 70, 239, 0.08);
  color: var(--brand-secondary);
  border: 1px solid rgba(217, 70, 239, 0.2);
}

.app-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.app-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

/* Custom CSS Store Badges */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #080c1a;
  color: #ffffff;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
  flex: 1;
}

.store-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-btn-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #94a3b8;
}

.store-btn-title {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.store-btn:hover {
  background: #10182f;
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.1);
}

/* ==========================================
   9. CONTACT SECTION
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

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

.contact-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  color: #040814;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px var(--accent-glow);
}

.info-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.info-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form-container {
  padding: 2.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
  font-weight: 500;
}

.form-status.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: block;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
  display: block;
}

/* ==========================================
   10. FOOTER & LEGAL VERIFICATION BLOCK
   ========================================== */
footer {
  background: var(--bg-surface-solid);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-links-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-link:hover {
  color: var(--brand-primary);
  padding-left: 4px;
}

.footer-legal-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.legal-card {
  padding: 1.25rem;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-card-border {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
}

.legal-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
}

.legal-item:last-child {
  border-bottom: none;
}

.legal-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.legal-value {
  color: var(--text-main);
  line-height: 1.4;
  word-break: break-word;
}

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

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

/* ==========================================
   11. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
  h1 { font-size: 3.25rem; }
  .hero-grid { gap: 2rem; }
  .about-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1100;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-surface-solid);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    flex-direction: column;
    padding: 100px 2rem 2rem 2rem;
    transition: var(--transition-smooth);
    z-index: 1050;
    align-items: center;
    border-left: 1px solid var(--border-color);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-group {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .apps-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.25rem; }
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  .store-buttons {
    flex-direction: column;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================
   12. TECH STACK SHOWCASE & MAP INTEGRATION
   ========================================== */
.tech-stack-section {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border-color);
}

.tech-stack-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.tech-card {
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-bounce);
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-focus);
  box-shadow: 0 15px 30px rgba(0, 240, 255, 0.1);
}

.tech-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

/* Glowing tech icon colors */
.tech-icon.flutter {
  color: #02569B;
  border: 1px solid rgba(2, 86, 155, 0.2);
  box-shadow: inset 0 0 12px rgba(2, 86, 155, 0.1);
}
.tech-card:hover .tech-icon.flutter {
  background: rgba(2, 86, 155, 0.1);
  box-shadow: 0 0 20px rgba(2, 86, 155, 0.4);
}

.tech-icon.firebase {
  color: #FFCA28;
  border: 1px solid rgba(255, 202, 40, 0.2);
  box-shadow: inset 0 0 12px rgba(255, 202, 40, 0.1);
}
.tech-card:hover .tech-icon.firebase {
  background: rgba(255, 202, 40, 0.1);
  box-shadow: 0 0 20px rgba(255, 202, 40, 0.4);
}

.tech-icon.native {
  color: #3DDC84;
  border: 1px solid rgba(61, 220, 132, 0.2);
  box-shadow: inset 0 0 12px rgba(61, 220, 132, 0.1);
}
.tech-card:hover .tech-icon.native {
  background: rgba(61, 220, 132, 0.1);
  box-shadow: 0 0 20px rgba(61, 220, 132, 0.4);
}

.tech-icon.design {
  color: #D946EF;
  border: 1px solid rgba(217, 70, 239, 0.2);
  box-shadow: inset 0 0 12px rgba(217, 70, 239, 0.1);
}
.tech-card:hover .tech-icon.design {
  background: rgba(217, 70, 239, 0.1);
  box-shadow: 0 0 20px rgba(217, 70, 239, 0.4);
}

.tech-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.tech-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.map-card {
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition-bounce);
}

.map-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 10px 25px rgba(0, 240, 255, 0.15);
}

/* Responsive Tech Grid and Map styling overrides */
@media (max-width: 968px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}
