
/* ==========================================
   Forsko - Mobile Screen Overflow Prevention
   ========================================== */
html, body {
  overflow-x: hidden !important; /* Horizontally bahar jane se rokega */
  width: 100% !important;
  max-width: 100% !important;
  margin: 0;
  padding: 0;
}

/* Force Box Sizing for All Elements */
*, *::before, *::after {
  box-sizing: border-box !important;
}

/* Images & Media max-width Fix */
img, video, iframe, svg {
  max-width: 100% !important;
  height: auto;
}

/* ==========================================================================
   Forsko - Master CSS Stylesheet
   Theme: Dark Slate (#0F172A) | Sky Blue (#3B82F6) | Accent Cyan (#60A5FA)
   ========================================================================== */

:root {
  --dark-blue: #0F172A;
  --dark-blue-card: #29497e;
  --dark-blue-deep: #0B1120;
  --sky-blue: #3B82F6;
  --sky-blue-hover: #2563EB;
  --sky-blue-light: rgba(59, 130, 246, 0.15);
  --white: #FFFFFF;
  --light-gray: #F8FAFC;
  --border-gray: #E2E8F0;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 20px -3px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 25px rgba(59, 130, 246, 0.35);

  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.sub-badge {
  color: var(--sky-blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
}



/* 1. Fix Global Body Background (Prevents any white gaps on the page) */
body {
  background-color: #0b1120 !important; /* Matches dark hero theme */
  margin: 0;
  padding: 0;
}

/* 2. Seamless Section Transitions (Removes top/bottom margins) */
.hero {
  margin-bottom: 0 !important;
}

.search-section {
  margin-top: 0 !important;
  background-color: #0b1120 !important;
  padding-top: 50px; /* Gives nice spacing above the search bar */
}

/* Glowing Divider - Line and Dot Only (No Background) */
.glowing-divider {
  position: relative;
  width: 100%;
  height: 0.01rem; /* Reduced height for clean spacing */
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important; /* Removes dark box and dot pattern */
  overflow: visible;
  margin: 10px 0;
  padding: 0;
  border: none;
}


/* Horizontal Line with Glowing Blue Gradient */
.divider-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.2) 15%,
    rgba(59, 130, 246, 0.7) 50%,
    rgba(59, 130, 246, 0.2) 85%,
    transparent 100%
  );
}





.logo span {
  font-family: "Exo 2", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

/* Button UI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.btn-primary {
  background-color: var(--sky-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  background-color: var(--sky-blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ==========================================================================
   1. Sticky Navbar
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(15, 23, 42, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-fast);
}

.navbar.scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--sky-blue);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}


/* ==========================================================================
   Forsko - Glassmorphism Floating Action Button (FAB)
   ========================================================================== */

/* Main Container - Fixed Bottom Right */
.fab-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none; /* Allows clicks through empty overlay spaces */
}

/* Main Blue Circular Button */
.fab-main-btn {
  pointer-events: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.45), 0 0 15px rgba(59, 130, 246, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s ease, 
              background-color 0.3s ease;
  outline: none;
}

.fab-main-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6), 0 0 25px rgba(59, 130, 246, 0.4);
}

.fab-main-btn:active {
  transform: scale(0.96);
}

/* Icon Rotation & Swap Transition */
.fab-icon-open,
.fab-icon-close {
  position: absolute;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.25s ease;
}

.fab-icon-open {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.fab-icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

/* Active State Trigger Button */
.fab-container.active .fab-main-btn {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.3);
}

.fab-container.active .fab-icon-open {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.fab-container.active .fab-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  color: #3B82F6;
}

/* Expandable Menu Container */
.fab-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 14px;
}

/* Individual Glassmorphism Menu Item */
.fab-menu-item {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.88);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

/* Staggered Entrance Delay when Active */
.fab-container.active .fab-menu-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fab-container.active .fab-menu-item:nth-child(6) { transition-delay: 0.02s; }
.fab-container.active .fab-menu-item:nth-child(5) { transition-delay: 0.05s; }
.fab-container.active .fab-menu-item:nth-child(4) { transition-delay: 0.08s; }
.fab-container.active .fab-menu-item:nth-child(3) { transition-delay: 0.11s; }
.fab-container.active .fab-menu-item:nth-child(2) { transition-delay: 0.14s; }
.fab-container.active .fab-menu-item:nth-child(1) { transition-delay: 0.17s; }

/* Menu Item Text Label (Glassmorphism Pill) */
.fab-item-label {
  background: rgba(30, 41, 59, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

/* Menu Item Circular Icon Badge */
.fab-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #3B82F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

/* Item Hover Effects */
.fab-menu-item:hover .fab-item-label {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.5);
  color: #FFFFFF;
  transform: translateX(-3px);
}

.fab-menu-item:hover .fab-item-icon {
  background: #3B82F6;
  border-color: #3B82F6;
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Responsive Touch Adjustments */
@media (max-width: 640px) {
  .fab-container {
    bottom: 20px;
    right: 20px;
  }

  .fab-main-btn {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
  }

  .fab-item-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .fab-item-label {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

/* Fix Mobile Hamburger Drawer Layering */
@media (max-width: 768px) {
  .nav-menu {
    z-index: 10000 !important;
    position: fixed;
    top: 74px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 74px);
    background-color: #0F172A;
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    gap: 20px;
    transition: left 0.3s ease-in-out;
  }

  .nav-menu.active {
    left: 0 !important;
  }
}

/* Fix FAB Overlay Layering */
.fab-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999 !important;
  pointer-events: none;
}

.fab-main-btn {
  pointer-events: auto !important;
}

.fab-menu-item {
  pointer-events: none;
}

.fab-container.active .fab-menu-item {
  pointer-events: auto !important;
}

/* ==========================================================================
   Forsko - Hyper-Interactive Latest Updates Feed
   Features: Glass Shimmer Beam, Spring Transitions, Pulsing Dots & Micro-FX
   ========================================================================== */

.updates-section {
  padding: 90px 0;
  background-color: #0b1120;
  position: relative;
}

.updates-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 3 Cards Horizontal Grid */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 45px;
}

/* Glassmorphic Interactive Card */
.update-card {
  background: rgba(30, 41, 59, 0.55);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  /* Spring transition for Apple/Framer feel */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              border-color 0.3s ease,
              box-shadow 0.4s ease,
              background-color 0.3s ease;
  cursor: pointer;
}

/* 1. Glass Reflection Shimmer Beam (Sweeps across on hover) */
.update-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 55%
  );
  transform: rotate(30deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.update-card:hover::after {
  transform: rotate(30deg) translate(100%, 100%);
}

/* 2. Top Glowing Gradient Border Accent */
.update-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, #60a5fa, transparent);
  opacity: 0;
  transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
}

.update-card:hover::before {
  opacity: 1;
  left: 0;
  right: 0;
}

/* 3. Card Hover & Click Micro-Interactions */
.update-card:hover {
  transform: translateY(-8px) scale(1.015);
  background: rgba(30, 41, 59, 0.75);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 
              0 0 30px rgba(59, 130, 246, 0.25);
}

.update-card:active {
  transform: translateY(-2px) scale(0.98); /* Click compression feedback */
}

.update-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

/* 4. Live Status Badges & Pulsing Dot */
.update-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

.update-card:hover .update-badge {
  transform: scale(1.05);
}

.badge-new {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  animation: livePulse 1.8s infinite ease-in-out;
}

@keyframes livePulse {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.badge-updated {
  background-color: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.badge-announcement {
  background-color: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.badge-practical {
  background-color: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

/* 5. Date Icon Interaction */
.update-date {
  color: #94a3b8;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.update-date i {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.update-card:hover .update-date i {
  transform: rotate(360deg);
  color: #3b82f6;
}

/* 6. Typography Transitions */
.update-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.update-card:hover .update-title {
  color: #60a5fa;
}

.update-desc {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 22px;
}

/* 7. Interactive Open Button */
.update-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-update-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-update-open:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6), 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-update-open:active {
  transform: scale(0.95);
}

.btn-update-open i {
  font-size: 0.8rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-update-open:hover i {
  transform: translateX(6px) scale(1.1);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .updates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .updates-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .updates-section {
    padding: 60px 0;
  }
}





/* ==========================================================================
   Forsko - Interactive Hero Section Stylesheet
   Features: 3D Parallax Tilt, Radar Pulse, Glass Shimmer & Button Micro-FX
   ========================================================================== */

.hero {
  background: radial-gradient(circle at top right, #1E293B, var(--dark-blue, #0f172a));
  color: var(--white, #ffffff);
  padding: 90px 24px 100px 24px;
  position: relative;
  overflow: hidden;
}

/* Ambient Aurora & Floating Light Blobs */
.hero-aurora-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.12) 0%,
    transparent 50%,
    rgba(37, 99, 235, 0.08) 100%
  );
  pointer-events: none;
}

.hero-ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.4;
}

.blob-left {
  top: 10%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.25);
  animation: blobFloat 10s ease-in-out infinite alternate;
}

.blob-right {
  bottom: 5%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.2);
  animation: blobFloat 12s ease-in-out infinite alternate-reverse;
}

@keyframes blobFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.1); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* 1. Live Radar Pulse Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(59, 130, 246, 0.12);
  color: var(--sky-blue, #3b82f6);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.hero-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.5);
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background-color: var(--sky-blue, #3b82f6);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--sky-blue, #3b82f6);
}

.pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--sky-blue, #3b82f6);
  animation: radarPulse 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes radarPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Typography */
.hero-heading {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  font-family: 'Exo 2', sans-serif;
}

.hero-heading .highlight {
  background: linear-gradient(135deg, #60A5FA 0%, var(--sky-blue, #3b82f6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  font-size: 1.12rem;
  color: var(--text-light, #94a3b8);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}

/* 2. Interactive Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.6), 0 6px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-3px) scale(1.02);
}

.btn-arrow {
  font-size: 0.85rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-btn-primary:hover .btn-arrow {
  transform: translateX(6px) scale(1.15);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-rocket {
  font-size: 0.9rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-btn-secondary:hover .btn-rocket {
  transform: translateY(-3px) rotate(-12deg) scale(1.2);
  color: #60a5fa;
}

.btn:active {
  transform: translateY(0) scale(0.97) !important;
}

/* ==========================================================================
   3. Code Window Illustration & 3D Tilt Parallax
   ========================================================================== */

.hero-illustration {
  position: relative;
  display: flex;
  justify-content: center;
}

.illustration-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(30px);
}

/* Glassmorphism Code Window */
.code-window {
  background-color: rgba(11, 17, 32, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 450px;
  overflow: hidden;
  position: relative;
  /* 3D Tilt */
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s ease, 
              border-color 0.3s ease;
  cursor: pointer;
}

.code-window:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7), 0 0 30px rgba(59, 130, 246, 0.3);
}

/* Glass Shimmer Sweep */
.code-glass-sweep {
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 55%
  );
  transform: rotate(30deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.code-window:hover .code-glass-sweep {
  transform: rotate(30deg) translate(100%, 100%);
}

/* Mouse Light Spotlight */
.code-spotlight-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    300px circle at var(--code-x, 50%) var(--code-y, 50%),
    rgba(59, 130, 246, 0.18),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.code-window:hover .code-spotlight-light {
  opacity: 1;
}

.window-header {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot.red { background-color: #EF4444; }
.dot.yellow { background-color: #F59E0B; }
.dot.green { background-color: #10B981; }

.window-title {
  font-size: 0.8rem;
  color: var(--text-light, #94a3b8);
  font-family: monospace;
}

.window-body {
  padding: 22px;
  font-family: 'Consolas', 'Fira Code', monospace;
  font-size: 0.9rem;
  line-height: 1.65;
}

.window-body pre {
  margin: 0;
  color: #E2E8F0;
}

.kwd { color: #38BDF8; font-weight: 600; }
.cls { color: #FACC15; font-weight: 600; }
.func { color: #4ADE80; }
.typ { color: #F472B6; }

/* 4. Micro-Interactive Floating Badges */
.float-badge {
  position: absolute;
  background: rgba(30, 41, 59, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  animation: float 4s ease-in-out infinite;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 3;
  cursor: pointer;
}

.badge-icon {
  color: var(--sky-blue, #3b82f6);
  font-size: 0.95rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.float-badge:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.float-badge:hover .badge-icon {
  transform: scale(1.25) rotate(10deg);
}

.badge-1 {
  top: 8%;
  right: -12px;
}

.badge-2 {
  bottom: 8%;
  left: -12px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-subheading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .badge-1 { right: 5%; }
  .badge-2 { left: 5%; }
}

@media (max-width: 640px) {
  .hero-heading {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .float-badge {
    font-size: 0.78rem;
    padding: 8px 14px;
  }
  
  .badge-1 { top: -15px; right: 0; }
  .badge-2 { bottom: -15px; left: 0; }
}

/* ==========================================================================
   Forsko - Interactive Search Section & Dropdown Styles
   Theme: Dark Navy (#0F172A) | Sky Blue (#3B82F6) | Glassmorphism
   ========================================================================== */

.search-section {
  position: relative;
  background-color: var(--dark-blue, #0b1120);
  padding: 60px 0 80px 0;
  z-index: 100;
}

.search-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.search-header {
  text-align: center;
  margin-bottom: 28px;
}

.search-header .header-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--sky-blue, #3b82f6);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.search-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white, #ffffff);
  font-family: 'Exo 2', sans-serif;
  letter-spacing: -0.5px;
}

/* Glassmorphic Search Card Bar */
.search-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 60px;
  padding: 6px 6px 6px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 10;
}

.search-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.45), 0 20px 40px rgba(0, 0, 0, 0.5);
}

.search-main-icon {
  color: #64748b;
  font-size: 1.25rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.search-card:focus-within .search-main-icon {
  color: var(--sky-blue, #3b82f6);
  transform: scale(1.1);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 500;
  color: #0f172a;
  font-family: inherit;
  background: transparent;
  caret-color: var(--sky-blue, #3b82f6);
  min-width: 0;
}

.search-input::placeholder {
  color: #94a3b8;
}

/* Clear Input (X) Button */
.search-clear-btn {
  background: #e2e8f0;
  color: #475569;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.search-clear-btn:hover {
  background: #cbd5e1;
  color: #0f172a;
  transform: scale(1.1);
}

/* Ctrl + K Shortcut Badge */
.search-shortcut-badge {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 3px 8px;
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
  -webkit-user-select: none;
  user-select: none;
  flex-shrink: 0;
}

.search-shortcut-badge kbd {
  font-family: inherit;
}

.search-shortcut-badge .plus {
  color: #94a3b8;
  font-size: 0.65rem;
}

/* Search Action Button */
.search-button {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  border: none;
  padding: 12px 26px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
  flex-shrink: 0;
}

.search-button:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.search-button:active {
  transform: scale(0.96);
}

.search-btn-arrow {
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.search-button:hover .search-btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Live Glassmorphism Search Dropdown
   ========================================================================== */

.search-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 24px;
  right: 24px;
  background-color: rgba(30, 41, 59, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.7), 0 0 30px rgba(59, 130, 246, 0.3);
  max-height: 420px;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
  animation: dropdownSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.search-dropdown.hidden {
  display: none !important;
}

.search-dropdown::-webkit-scrollbar {
  width: 6px;
}
.search-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

/* Search Item Card */
.search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.search-item:hover,
.search-item.is-selected {
  background: rgba(59, 130, 246, 0.22);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateX(6px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.search-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--sky-blue, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.search-item:hover .search-item-icon,
.search-item.is-selected .search-item-icon {
  background: var(--sky-blue, #3b82f6);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.search-item-content {
  flex: 1;
  min-width: 0;
}

.search-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.search-item-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.search-item-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-item-arrow {
  color: #64748b;
  font-size: 0.9rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.search-item:hover .search-item-arrow,
.search-item.is-selected .search-item-arrow {
  color: #60a5fa;
  transform: translateX(5px);
}

/* Text Search Matching Highlight */
mark.search-highlight {
  background-color: rgba(59, 130, 246, 0.4);
  color: #ffffff;
  border-radius: 3px;
  padding: 0 4px;
  font-weight: 700;
}

/* Category Badges */
.category-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-syllabus { background: rgba(59, 130, 246, 0.2); color: #60A5FA; border: 1px solid rgba(59, 130, 246, 0.4); }
.badge-notes { background: rgba(16, 185, 129, 0.2); color: #34D399; border: 1px solid rgba(16, 185, 129, 0.4); }
.badge-pyqs { background: rgba(249, 115, 22, 0.2); color: #FB923C; border: 1px solid rgba(249, 115, 22, 0.4); }
.badge-question-bank { background: rgba(168, 85, 247, 0.2); color: #C084FC; border: 1px solid rgba(168, 85, 247, 0.4); }
.badge-paper-pattern { background: rgba(239, 68, 68, 0.2); color: #F87171; border: 1px solid rgba(239, 68, 68, 0.4); }
.badge-practicals { background: rgba(20, 184, 166, 0.2); color: #2DD4BF; border: 1px solid rgba(20, 184, 166, 0.4); }
.badge-resources { background: rgba(148, 163, 184, 0.2); color: #CBD5E1; border: 1px solid rgba(148, 163, 184, 0.4); }

/* Empty Search State */
.search-empty-state {
  text-align: center;
  padding: 32px 16px;
  color: #94a3b8;
}

.search-empty-icon {
  font-size: 2.2rem;
  color: #3b82f6;
  margin-bottom: 12px;
  opacity: 0.8;
}

.search-empty-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

/* Responsive Styles */
@media (max-width: 640px) {
  .search-shortcut-badge {
    display: none; /* Hide Ctrl+K on mobile */
  }

  .search-heading {
    font-size: 1.8rem;
  }

  .search-card {
    padding: 6px 6px 6px 16px;
  }

  .search-button {
    padding: 10px 18px;
    font-size: 0.88rem;
  }

  .search-dropdown {
    left: 12px;
    right: 12px;
  }
}

/* ==========================================================================
   Forsko - Unique & Distinct Backgrounds for Every Section
   ========================================================================== */

/* 1. Hero Section - Deep Indigo / Violet Dark Gradient */
.hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #0F172A 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 2. Search Section - Deep Navy */
.search-section {
  background-color: #0F172A !important;
}

/* 3. Explore Forsko (Bento Grid) - Dark Zinc / Charcoal Blue */
.bento-section {
  background-color: #111827 !important;
  background-image: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 70%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 4. Latest Updates Timeline - Dark Purple / Violet Theme */
.updates-section {
  background-color: #16132A !important;
  background-image: radial-gradient(circle at 100% 50%, rgba(139, 92, 246, 0.15), transparent 60%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 5. Today's Study Tip - Dark Emerald / Teal Theme */
.study-tip-section {
  background-color: #022C22 !important;
  background-image: radial-gradient(circle at 0% 50%, rgba(16, 185, 129, 0.15), transparent 60%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 6. Statistics Section - Deep Blue-Gray */
.stats-section {
  background-color: #0B1120 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-section .stat-card {
  background-color: rgba(30, 41, 59, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* ==========================================================================
   Forsko - Interactive About Section Styles
   Features: Glassmorphism, 3D Parallax Tilt, Gradient Text & Glowing Aura
   ========================================================================== */

.about-section {
  position: relative;
  background-color: #0b1120; /* Dark Navy background matching homepage */
  padding: 100px 24px;
  overflow: hidden;
}

/* Ambient Background Ambient Glow */
.about-ambient-glow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
  filter: blur(60px);
}

.about-container {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Sub-Badge */
.sub-badge-wrapper {
  margin-bottom: 14px;
}

.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sub-badge i {
  color: #60a5fa;
  font-size: 0.8rem;
}

/* Headings & Text */
.about-heading {
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.25;
  font-family: 'Exo 2', 'Inter', sans-serif;
  letter-spacing: -0.5px;
}

.title-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  color: #94a3b8;
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Interactive Glass Highlight Items */
.about-highlights {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glass-chip {
  background: rgba(65, 120, 221, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 164, 199, 0.381);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  /* Spring transition for smooth hover feel */
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background-color 0.3s ease;
  cursor: pointer;
}

.glass-chip:hover {
  transform: translateY(-4px) translateX(6px);
  background: rgba(36, 169, 227, 0.8);
  border-color: rgba(15, 58, 127, 0.699);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(59, 130, 246, 0.2);
}

.highlight-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  color: #0f3169;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
}

.glass-chip:hover .highlight-icon-box {
  transform: scale(1.1) rotate(8deg);
  background: #154465;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.highlight-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.glass-chip:hover .highlight-info h4 {
  color: #3410d3;
}

.highlight-info p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Right Column: 3D Interactive Visual Card
   ========================================================================== */

.about-card-visual {
  background: linear-gradient(135deg, rgba(74, 102, 147, 0.75), rgba(15, 23, 42, 0.9));
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 55px 36px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-card-visual:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.3);
}

/* Glass Reflection Sweep Beam */
.card-glass-reflection {
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 55%
  );
  transform: rotate(30deg);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.about-card-visual:hover .card-glass-reflection {
  transform: rotate(30deg) translate(100%, 100%);
}

/* Mouse Light Spotlight */
.card-spotlight-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    300px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(59, 130, 246, 0.2),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-card-visual:hover .card-spotlight-light {
  opacity: 1;
}

/* Floating Badges */
.about-float-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 3;
}

.about-float-badge i {
  color: #3b82f6;
  font-size: 0.82rem;
}

.badge-top-right {
  top: 18px;
  right: 18px;
  animation: floatTop 4s ease-in-out infinite alternate;
}

.badge-bottom-left {
  bottom: 18px;
  left: 18px;
  animation: floatBottom 4s ease-in-out infinite alternate-reverse;
}

@keyframes floatTop {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

@keyframes floatBottom {
  0% { transform: translateY(0); }
  100% { transform: translateY(6px); }
}

/* Visual Box Main Icon Wrapper */
.main-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.about-card-visual .main-icon {
  font-size: 3.8rem;
  color: #3b82f6;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.icon-aura-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #3b82f6;
  filter: blur(30px);
  opacity: 0.4;
  border-radius: 50%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-card-visual:hover .main-icon {
  transform: scale(1.12) translateY(-4px);
  color: #60a5fa;
}

.about-card-visual:hover .icon-aura-glow {
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(1.3);
}

.about-card-visual h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: 'Exo 2', 'Inter', sans-serif;
  color: #ffffff;
}

.about-card-visual p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-heading {
    font-size: 2rem;
  }

  .about-card-visual {
    padding: 40px 24px;
  }
}

/* ==========================================================================
   4. Bento Grid Section
   ========================================================================== */


.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 8px;
}

/* ==========================================================================
   4. Hyper-Interactive Bento Grid Section
   Features: 3D Parallax Tilt, Glass Shimmer Sweep, Light Spotlight & Spring FX
   ========================================================================== */

.bento-section {
  padding: 100px 24px;
  background-color: var(--dark-blue, #0b1120);
  position: relative;
  overflow: hidden;
}

/* Ambient Section Glow */
.bento-ambient-glow {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.bento-header {
  text-align: center;
  margin-bottom: 50px;
}

.header-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--sky-blue, #3b82f6);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.header-pill-badge i {
  color: #60a5fa;
  font-size: 0.85rem;
}

.bento-main-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white, #ffffff);
  font-family: 'Exo 2', sans-serif;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.title-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-light, #94a3b8);
  font-size: 1.05rem;
}

/* Bento Grid System */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-span-1 { grid-column: span 1; }
.bento-span-2 { grid-column: span 2; }

/* Bento Glass Card */
.bento-card {
  background: rgba(30, 41, 59, 0.65);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg, 20px);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  color: var(--white, #ffffff);
  text-decoration: none !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  /* Spring physics transition */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              border-color 0.3s ease,
              box-shadow 0.4s ease,
              background-color 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
}

/* Top Border Accent Line */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--sky-blue, #3b82f6), #60a5fa, transparent);
  opacity: 0;
  transition: opacity 0.35s ease, left 0.35s ease, right 0.35s ease;
}

/* Glass Radial Glow Effect */
.bento-glass-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.4s ease;
}

/* Glass Reflection Sweep Beam */
.bento-shine-sweep {
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 55%
  );
  transform: rotate(30deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.bento-card:hover .bento-shine-sweep {
  transform: rotate(30deg) translate(100%, 100%);
}

/* Mouse Light Spotlight Overlay */
.bento-card-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    300px circle at var(--bento-x, 50%) var(--bento-y, 50%),
    rgba(59, 130, 246, 0.18),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover .bento-card-spotlight {
  opacity: 1;
}

/* Hover & Active Press States */
.bento-card:hover {
  transform: translateY(-8px) scale(1.015);
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.5), 0 0 35px rgba(59, 130, 246, 0.3);
}

.bento-card:hover::before {
  opacity: 1;
  left: 0;
  right: 0;
}

.bento-card:hover .bento-glass-glow {
  transform: scale(1.4);
}

.bento-card:active {
  transform: translateY(-2px) scale(0.98); /* Click compression feedback */
}

/* Bento Top Header & Badge */
.bento-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.bento-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md, 12px);
  background-color: rgba(59, 130, 246, 0.15);
  color: var(--sky-blue, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background-color 0.3s ease,
              color 0.3s ease,
              box-shadow 0.3s ease;
}

.bento-icon {
  font-size: 1.7rem;
}

.bento-card:hover .bento-icon-wrapper {
  background-color: var(--sky-blue, #3b82f6);
  color: var(--white, #ffffff);
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.bento-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sky-blue, #3b82f6);
  background-color: rgba(59, 130, 246, 0.12);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.bento-card:hover .bento-badge {
  transform: scale(1.05);
  background-color: rgba(59, 130, 246, 0.2);
}

/* Bento Body */
.bento-card-body {
  margin-bottom: 24px;
  flex-grow: 1;
}

.bento-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white, #ffffff);
  margin-bottom: 10px;
  font-family: 'Exo 2', sans-serif;
  transition: color 0.3s ease;
}

.bento-card:hover .bento-title {
  color: #60a5fa;
}

.bento-desc {
  color: var(--text-light, #94a3b8);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Bento Footer Action Text & Arrow */
.bento-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sky-blue, #3b82f6);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.bento-card:hover .bento-card-footer {
  color: #60a5fa;
}

.bento-arrow {
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bento-card:hover .bento-arrow {
  transform: translateX(8px) scale(1.15);
  color: #60a5fa;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .bento-span-2 {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bento-span-1,
  .bento-span-2 {
    grid-column: span 1 !important;
  }

  .bento-card {
    padding: 26px 20px;
  }

  .bento-main-title {
    font-size: 2rem;
  }
}




/* ==========================================================================
   Forsko - Interactive Statistics Section Styles
   Features: Glassmorphism, 3D Parallax Tilt, Ease-Out Counters & Neon Glow
   ========================================================================== */

.stats-section {
  position: relative;
  background-color: var(--dark-blue-deep, #0b1120);
  padding: 90px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

/* Background Ambient Glow */
.stats-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

/* 4 Card Grid Container */
.stats-container {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Glassmorphic 3D Stat Card */
.stat-card {
  background: rgba(30, 41, 59, 0.65);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md, 16px);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  /* Spring physics transition for Apple/Framer feel */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              border-color 0.3s ease,
              box-shadow 0.4s ease,
              background-color 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Top Border Accent Line */
.stat-top-border {
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky-blue, #3b82f6), #60a5fa, transparent);
  opacity: 0;
  transition: opacity 0.35s ease, left 0.35s ease, right 0.35s ease;
}

/* Glass Reflection Sweep Beam */
.stat-shine-sweep {
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 55%
  );
  transform: rotate(30deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.stat-card:hover .stat-shine-sweep {
  transform: rotate(30deg) translate(100%, 100%);
}

/* Mouse Light Spotlight */
.stat-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    250px circle at var(--stat-x, 50%) var(--stat-y, 50%),
    rgba(59, 130, 246, 0.18),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover .stat-spotlight {
  opacity: 1;
}

/* Card Hover & Click Press States */
.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.25);
}

.stat-card:hover .stat-top-border {
  opacity: 1;
  left: 0;
  right: 0;
}

.stat-card:active {
  transform: translateY(-2px) scale(0.97); /* Touch/click compression */
}

/* Icon & Aura Wrapper */
.stat-icon-wrapper {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background-color: rgba(59, 130, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background-color 0.3s ease;
}

.stat-icon {
  font-size: 1.6rem;
  color: var(--sky-blue, #3b82f6);
  position: relative;
  z-index: 2;
  transition: color 0.3s ease, transform 0.3s ease;
}

.icon-aura {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: var(--sky-blue, #3b82f6);
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper {
  transform: scale(1.12) rotate(6deg);
  background-color: var(--sky-blue, #3b82f6);
}

.stat-card:hover .stat-icon {
  color: #ffffff;
}

.stat-card:hover .icon-aura {
  opacity: 0.6;
}

/* Number Typography & Glow */
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white, #ffffff);
  font-family: 'Exo 2', sans-serif;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 6px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.stat-card:hover .stat-number {
  color: #60a5fa;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

/* Label Styling */
.stat-label {
  color: var(--text-light, #94a3b8);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
  color: #ffffff;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 26px 18px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   6. About Section
   ========================================================================== */
.about-section {
  background-color: var(--border-gray);
  padding: 90px 24px;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-family: 'Exo 2', sans-serif;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.about-highlights {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.highlight-item i {
  font-size: 1.3rem;
  color: var(--sky-blue);
  margin-top: 3px;
}

.highlight-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.highlight-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.about-card-visual {
  background: linear-gradient(135deg, var(--dark-blue), var(--dark-blue-card));
  padding: 50px 36px;
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-card-visual .main-icon {
  font-size: 3.5rem;
  color: var(--sky-blue);
  margin-bottom: 20px;
}

.about-card-visual h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: 'Exo 2', sans-serif;
}

.about-card-visual p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ==========================================================================
   7. Footer Section
   ========================================================================== */
.footer {
  background-color: var(--dark-blue-deep);
  color: var(--white);
  padding: 80px 24px 30px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col.brand-col p {
  color: var(--text-light);
  margin-top: 16px;
  font-size: 0.95rem;
}

.footer-col h3 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--sky-blue);
  padding-left: 4px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-list i { color: var(--sky-blue); }

.github-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-fast);
}

.github-btn:hover {
  background-color: var(--sky-blue);
  border-color: var(--sky-blue);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subheading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-span-2 {
    grid-column: span 2;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 74px);
    background-color: var(--dark-blue);
    flex-direction: column;
    padding: 40px 24px;
    gap: 20px;
    transition: var(--transition-smooth);
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-heading {
    font-size: 2.3rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-span-1, .bento-span-2 {
    grid-column: span 1;
  }

  .search-card {
    border-radius: var(--radius-md);
    flex-direction: column;
    padding: 12px;
    gap: 12px;
  }

  .search-card input {
    width: 100%;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
  }

  .search-dropdown {
    left: 0;
    right: 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Mobile Screen Responsiveness Fix (Max Width 768px)
   ========================================== */
@media (max-width: 768px) {
  
  /* All Main Containers Mobile Fit */
  .nav-container,
  .hero-container,
  .section-container,
  .search-container,
  .updates-container,
  .about-container,
  .footer-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden;
  }

  /* Force Single Column for Grids so Cards don't spill out */
  .bento-grid,
  .updates-grid,
  .stats-container {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .bento-span-1,
  .bento-span-2 {
    grid-column: span 1 !important;
  }

  /* Fix Hero Section Typography & Code Window for Mobile */
  .hero-heading {
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }

  .code-window {
    width: 100% !important;
    max-width: 100% !important;
  }

  .window-body pre {
    white-space: pre-wrap !important; /* Code text screen se bahar nahi jayega */
    word-break: break-word !important;
  }

  /* Fix Floating Badges going outside screen */
  .float-badge {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 12px auto !important;
    display: inline-flex !important;
  }

  /* Search Card Mobile Fit */
  .search-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ==========================================================================
   PERFECT MOBILE SCREEN FIX (Prevents Right Side Text Cutting)
   ========================================================================== */
@media screen and (max-width: 768px) {

  /* 1. Force Screen Width to 100% (No horizontal stretch) */
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
  }

  /* 2. Fix Hero Section: Stacks Text on Top, Code Window on Bottom */
  .hero {
    padding: 30px 16px 50px 16px !important;
    overflow: hidden !important;
  }

  .hero-container {
    display: flex !important;
    flex-direction: column !important; /* Side-by-side se hata kar upar-niche karega */
    width: 100% !important;
    max-width: 100% !important;
    gap: 30px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* 3. Hero Badge & Headings (Text size fit inside mobile) */
  .hero-badge {
    max-width: 90% !important;
    white-space: normal !important;
    font-size: 0.8rem !important;
    margin: 0 auto 16px auto !important;
  }

  .hero-heading {
    font-size: 1.85rem !important; /* Ab "Computer Science Students" poora aayega */
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
  }

  .hero-subheading {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 24px auto !important;
    padding: 0 4px !important;
  }

  /* 4. Full Width Buttons */
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
    padding: 13px 20px !important;
    font-size: 0.95rem !important;
  }

  /* 5. Fix Code Window & Floating Badges */
  .hero-illustration {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 10px !important;
  }

  .code-window {
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important; /* 3D tilt band karega taaki bahar na bhage */
  }

  .window-body {
    padding: 14px !important;
    overflow-x: auto !important;
  }

  .window-body pre {
    white-space: pre-wrap !important;
    word-break: break-word !important;
    font-size: 0.8rem !important;
  }

  /* Floating Badges ko screen ke andar set karega */
  .float-badge {
    position: static !important;
    margin: 8px auto 0 auto !important;
    transform: none !important;
    animation: none !important;
    display: inline-flex !important;
  }

  .illustration-glow {
    display: none !important; /* Phone par blur overflow hatayega */
  }
}
/* ==========================================================================
   End of Forsko Stylesheet
   ========================================================================== */
