/* ==========================================================================
   AJAY VORA - FOUNDER OF CYBER GROUP OF COMPANIES
   Ultra-Premium Glassmorphism & Light Sky Blue / White Theme
   EXACT MATCH HERO LAYOUT (REFINED PREDNA STYLE)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&family=Kalam:wght@400;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --font-diy: 'Caveat', cursive;
  --font-diy-alt: 'Kalam', cursive;
  /* Color Palette - Curated Light Sky Blue, Ice Blue, Frosted White & Deep Slate */
  --bg-main: #f8fbff;
  --bg-gradient-start: #ffffff;
  --bg-gradient-mid: #eaf6fe;
  --bg-gradient-end: #f0f9ff;
  
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-300: #7dd3fc;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-800: #075985;
  --sky-900: #0c4a6e;
  
  --navy-dark: #0f172a;
  --navy-mid: #1e293b;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --white: #ffffff;
  
  /* Glassmorphism Tokens */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-hover: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(255, 255, 255, 0.9);
  --glass-border-subtle: rgba(224, 242, 254, 0.6);
  --glass-shadow: 0 20px 40px -15px rgba(2, 132, 199, 0.1);
  --glass-shadow-lg: 0 25px 50px -12px rgba(2, 132, 199, 0.16);
  --glass-shadow-sm: 0 10px 25px -5px rgba(2, 132, 199, 0.06);
  --blur-strength: blur(20px);
  --blur-strength-sm: blur(12px);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout & Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

/* ==========================================================================
   Base & Reset Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  background-image: 
    radial-gradient(at 10% 10%, var(--sky-200) 0px, transparent 50%),
    radial-gradient(at 90% 20%, var(--sky-100) 0px, transparent 40%),
    radial-gradient(at 50% 80%, var(--sky-200) 0px, transparent 60%),
    linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 50%, var(--bg-gradient-end) 100%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background Glowing Orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  animation: floatOrb 20s infinite alternate ease-in-out;
}

.bg-orb-1 { top: -10%; left: -5%; width: 500px; height: 500px; background: var(--sky-300); }
.bg-orb-2 { top: 40%; right: -10%; width: 600px; height: 600px; background: #a855f715; animation-delay: -5s; }
.bg-orb-3 { bottom: -10%; left: 30%; width: 550px; height: 550px; background: var(--sky-200); animation-delay: -10s; }

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--sky-50); }
::-webkit-scrollbar-thumb { background: var(--sky-300); border-radius: var(--radius-full); border: 2px solid var(--sky-50); }
::-webkit-scrollbar-thumb:hover { background: var(--sky-500); }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-main); font-weight: 800; line-height: 1.2; }

.text-gradient {
  background: linear-gradient(135deg, var(--sky-700) 0%, var(--sky-500) 50%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.section-padding { padding: 100px 0; }
@media (max-width: 768px) { .section-padding { padding: 70px 0; } }

/* Glass Card Core */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--blur-strength);
  -webkit-backdrop-filter: var(--blur-strength);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  box-shadow: var(--glass-shadow-lg);
  transform: translateY(-4px);
}

.glass-pill {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: var(--blur-strength-sm);
  -webkit-backdrop-filter: var(--blur-strength-sm);
  border: 1px solid var(--glass-border);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sky-800);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--glass-shadow-sm);
}

.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981; box-shadow: 0 0 10px #10b981;
  display: inline-block; animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-full); font-weight: 700;
  font-size: 1rem; transition: var(--transition-bounce); position: relative;
  overflow: hidden; z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sky-600) 0%, var(--sky-500) 100%);
  color: var(--white); box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--sky-700) 0%, var(--sky-600) 100%);
  box-shadow: 0 15px 30px -5px rgba(14, 165, 233, 0.6);
  transform: translateY(-2px) scale(1.02); color: var(--white);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.85); backdrop-filter: var(--blur-strength-sm);
  -webkit-backdrop-filter: var(--blur-strength-sm); color: var(--sky-900);
  border: 1px solid var(--white); box-shadow: var(--glass-shadow-sm);
}

.btn-glass:hover {
  background: var(--white); color: var(--sky-600); border-color: var(--sky-300);
  transform: translateY(-2px); box-shadow: var(--glass-shadow);
}

/* ==========================================================================
   REFINED EXACT MATCH HERO SECTION (PREDNA STYLE)
   ========================================================================== */
.hero-exact-wrapper {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 24px;
}

/* Top Minimalist Navigation */
.nav-minimal {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 50;
}

@media (max-width: 768px) {
  .nav-minimal { padding: 12px 24px; }
}

.nav-minimal-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--navy-dark);
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-minimal-logo span {
  color: var(--sky-500);
  font-size: 2rem;
  line-height: 0.5;
}

.nav-minimal-center {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 850px) {
  .nav-minimal-center { display: none; }
}

.nav-min-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: #64748b;
  transition: var(--transition-fast);
  letter-spacing: 0.01em;
}

.nav-min-link:hover, .nav-min-link.active {
  color: var(--navy-dark);
  font-weight: 700;
}

.nav-minimal-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-circle-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: var(--transition-fast);
}

.avatar-circle-link:hover {
  border-color: var(--sky-500);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.2);
}

.avatar-circle-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.mobile-min-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--navy-dark);
  padding: 8px;
}

@media (max-width: 850px) {
  .mobile-min-toggle { display: block; }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; top: 80px; left: 20px; right: 20px;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(24px);
  border: 1px solid var(--white); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--glass-shadow-lg); z-index: 999;
  display: flex; flex-direction: column; gap: 16px;
  transform: translateY(-20px); opacity: 0; pointer-events: none;
  transition: var(--transition-smooth);
}
.mobile-drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-drawer a { font-weight: 700; font-size: 1.1rem; color: var(--text-main); padding: 10px 16px; border-radius: var(--radius-sm); }
.mobile-drawer a:hover { background: var(--sky-50); color: var(--sky-600); }

/* The Hero Core Canvas */
.hero-canvas {
  position: relative;
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  max-height: 1050px;
  overflow-x: hidden;
  overflow-y: visible;
}

/* 1. Background Watermark Text ("CYBER GROUP") - Refined position & softness */
.hero-watermark-huge {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(6.5rem, 24vw, 24rem);
  color: rgba(226, 236, 248, 0.6);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  letter-spacing: -0.05em;
  user-select: none;
  line-height: 0.8;
}

/* 2. Main Center Typography ("AJAY VORA") - Tighter spacing, bold slate contrast */
.hero-main-title {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(4.2rem, 14.5vw, 13.5rem);
  color: #111827;
  white-space: nowrap;
  letter-spacing: -0.04em;
  z-index: 2;
  user-select: none;
  line-height: 0.85;
  text-shadow: 0 15px 40px rgba(255, 255, 255, 0.85);
}

/* 3. Center Cutout Photo - Directly gradient mask the bottom of the portrait! */
.hero-portrait-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: clamp(540px, 84vh, 920px);
  width: 100%;
  max-width: 980px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  /* Seamlessly dissolve the bottom 28% of the shirt directly into transparent! */
  mask-image: linear-gradient(to top, transparent 0%, black 28%, black 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 28%, black 100%);
}

.hero-cutout-image {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 25px 50px rgba(15, 23, 42, 0.22));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-portrait-container:hover .hero-cutout-image {
  transform: scale(1.02) translateY(-6px);
}

/* 4. Bottom Smooth Gradient Fade - REMOVED (No rectangular overlays!) */
.hero-bottom-fade {
  display: none !important;
}

/* Section Frosted Glass Blur Merger - REMOVED (No blurry box over stomach!) */
.section-merger-blur {
  display: none !important;
}

/* 5. Left & Right Overlay Elements (Lower Middle) */
.hero-overlay-grid {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px 90px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: calc(100vh - 160px);
  pointer-events: none;
}

.hero-overlay-grid > * {
  pointer-events: auto;
}

@media (max-width: 992px) {
  .hero-overlay-grid {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 24px 60px;
    gap: 40px;
    text-align: center;
  }
}

/* Left Content Area */
.hero-left-desc {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (max-width: 992px) {
  .hero-left-desc {
    align-items: center;
    max-width: 500px;
  }
}

.hero-desc-text {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  font-weight: 400;
  font-family: var(--font-body);
}

.hero-hire-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.hero-hire-link:hover {
  color: var(--sky-600);
  transform: translateX(6px);
}

/* Right Side Company Menu (Like User Research / Product Design list in screenshot) */
.hero-right-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

@media (max-width: 992px) {
  .hero-right-menu {
    align-items: center;
    gap: 20px;
  }
}

/* Custom Mouse Cursor - Hide Default System Arrow Pointer on Desktop! */
@media (min-width: 993px) {
  *, *::before, *::after {
    cursor: none !important;
  }
}

/* Custom Mouse Cursor - Inner Dot (Exact instantaneous coordinates with zero lag) */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d97706; /* Warm amber orange dot just like the screenshot */
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

/* Custom Mouse Cursor - Outer Frosted Glass Ring (Smooth trailing follower) */
.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(14, 165, 233, 0.45);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.12);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, border-color 0.25s ease;
}

/* Hover state when cursor moves over interactive elements */
.custom-cursor-follower.cursor-hover {
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--sky-500);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.28);
}

.cursor-dot.cursor-hover {
  width: 16px;
  height: 16px;
  background: var(--sky-600);
}

@media (max-width: 992px) {
  .custom-cursor-follower, .cursor-dot { display: none !important; }
  *, *::before, *::after { cursor: auto !important; }
}

.company-vertical-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

@media (max-width: 992px) {
  .company-vertical-list {
    align-items: center;
  }
}

.comp-list-item {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: #94a3b8;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.01em;
}

.comp-list-item:hover, .comp-list-item.active {
  color: #0f172a;
  font-weight: 800;
  transform: translateX(-8px);
}

@media (max-width: 992px) {
  .comp-list-item:hover, .comp-list-item.active {
    transform: scale(1.05);
  }
}

/* ==========================================================================
   REST OF THE PAGE SECTIONS
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: var(--sky-100); color: var(--sky-800);
  border-radius: var(--radius-full); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
  border: 1px solid var(--sky-200);
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 900;
  margin-bottom: 18px; letter-spacing: -0.02em;
}

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

/* ==========================================================================
   CYBER GROUP OF COMPANIES - HORIZONTAL SCROLL LOCK SECTION
   ========================================================================== */
.companies-sticky-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0 20px;
}

.sticky-viewport {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.horizontal-track-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 20px;
  cursor: grab;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.horizontal-track-container::-webkit-scrollbar {
  display: none;
}

.horizontal-track-container:active {
  cursor: grabbing;
}

/* ==========================================================================
   DIY DRAWINGS & HANDWRITTEN ANNOTATIONS (Awwwards Creative Studio Aesthetic)
   ========================================================================== */
.diy-annotation {
  font-family: var(--font-diy);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--sky-600);
  position: absolute;
  transform: rotate(-5deg);
  pointer-events: none;
  z-index: 10;
  text-shadow: 0 2px 8px rgba(2, 132, 199, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

.diy-arrow {
  font-family: var(--font-diy-alt);
  font-size: 1.3rem;
  color: #0284c7;
  display: inline-block;
}

.diy-card-note {
  font-family: var(--font-diy);
  font-size: 1.25rem;
  font-weight: 600;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px dashed #7dd3fc;
  padding: 2px 10px;
  border-radius: 8px;
  transform: rotate(-2deg);
  display: inline-block;
  margin-top: 4px;
}

.companies-horizontal-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 5vw;
}

/* ==========================================================================
   DIY CREATIVE STUDIO SCRAPBOOK CARDS (Washi Tape, Polaroids & Sketches)
   ========================================================================== */
.diy-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 110px;
  height: 28px;
  background: rgba(255, 255, 220, 0.85);
  border: 1px solid rgba(210, 210, 160, 0.7);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
  z-index: 20;
  pointer-events: none;
  border-radius: 2px;
}

.diy-stamp {
  font-family: var(--font-diy);
  font-size: 1.35rem;
  font-weight: 700;
  border: 2px dashed;
  padding: 2px 14px;
  border-radius: 12px;
  display: inline-block;
  transform: rotate(-3deg);
  background: #ffffff;
  box-shadow: 2px 2px 0px rgba(0,0,0,0.05);
}

.diy-doodle-arrow {
  font-family: var(--font-diy-alt);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sky-600);
  display: inline-block;
}

/* Compact DIY Scrapbook Cards for Horizontal Track */
.company-card-small {
  width: 360px;
  min-width: 360px;
  height: 360px;
  min-height: 360px;
  padding: 26px 22px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 2.5px dashed var(--sky-300);
  box-shadow: 8px 8px 0px rgba(2, 132, 199, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: visible !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.company-card-small:nth-child(1) { transform: rotate(-1.5deg); border-color: #7dd3fc; box-shadow: 8px 8px 0px rgba(2, 132, 199, 0.12); } /* Theme Blue */
.company-card-small:nth-child(2) { transform: rotate(1.5deg); border-color: #c4b5fd; box-shadow: 8px 8px 0px rgba(124, 58, 237, 0.12); } /* Hostinger Purple */
.company-card-small:nth-child(3) { transform: rotate(-1deg); border-color: #6ee7b7; box-shadow: 8px 8px 0px rgba(5, 150, 105, 0.12); } /* HTB Green */
.company-card-small:nth-child(4) { transform: rotate(1.5deg); border-color: #fdba74; box-shadow: 8px 8px 0px rgba(234, 88, 12, 0.12); } /* Cyber Skill Orange */

.company-card-small:hover {
  transform: translateY(-8px) scale(1.03) rotate(0deg) !important;
  z-index: 30;
  background: #ffffff;
  border-style: solid;
}

.company-card-small:nth-child(1):hover { border-color: #0284c7; box-shadow: 12px 12px 0px rgba(2, 132, 199, 0.25); }
.company-card-small:nth-child(2):hover { border-color: #7c3aed; box-shadow: 12px 12px 0px rgba(124, 58, 237, 0.25); }
.company-card-small:nth-child(3):hover { border-color: #059669; box-shadow: 12px 12px 0px rgba(5, 150, 105, 0.25); }
.company-card-small:nth-child(4):hover { border-color: #ea580c; box-shadow: 12px 12px 0px rgba(234, 88, 12, 0.25); }

.company-card-small .company-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px; }
.company-card-small .company-logo-box { display: flex; align-items: center; gap: 10px; }
.company-card-small .company-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--sky-50), var(--sky-100));
  border: 1.5px solid var(--sky-200); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; color: var(--sky-600);
  box-shadow: 2px 2px 0px rgba(2, 132, 199, 0.1);
}
.company-card-small h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-main); margin-bottom: 2px; }
.company-card-small .company-domain { font-size: 0.82rem; font-weight: 700; color: var(--sky-600); display: flex; align-items: center; gap: 4px; }
.company-card-small .company-badge { padding: 4px 12px; border-radius: var(--radius-full); background: var(--sky-100); color: var(--sky-800); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; border: 1px dashed var(--sky-300); }
.company-card-small .company-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.company-card-small .company-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.company-card-small .feature-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--text-main); }
.company-card-small .feature-check { width: 18px; height: 18px; border-radius: 50%; background: var(--sky-100); color: var(--sky-600); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; font-family: var(--font-diy-alt); font-weight: 700; }
.company-card-small .company-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 2px dashed rgba(224, 242, 254, 0.8); }
.company-card-small .company-stats-mini { font-size: 0.8rem; font-weight: 700; color: var(--text-light); }

@media (max-width: 992px) {
  .companies-sticky-section { min-height: auto; padding: 40px 0; }
  .sticky-viewport { position: relative; height: auto; }
  .horizontal-track-container { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; padding: 20px 20px 30px; }
  .companies-horizontal-track { width: max-content; gap: 20px; padding: 0 16px; }
  .company-card-small { width: 85vw; min-width: 85vw; height: auto; min-height: 360px; scroll-snap-align: center; }
}

/* LinkedIn Certifications */
.cert-filter-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-bottom: 48px; }
.filter-btn { padding: 10px 22px; border-radius: var(--radius-full); background: rgba(255, 255, 255, 0.7); border: 1px solid var(--white); font-weight: 700; font-size: 0.9rem; color: var(--text-muted); box-shadow: var(--glass-shadow-sm); transition: var(--transition-fast); }
.filter-btn:hover, .filter-btn.active { background: var(--sky-600); color: var(--white); box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4); transform: translateY(-2px); }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 992px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cert-grid { grid-template-columns: 1fr; } }
.cert-card { background: rgba(255, 255, 255, 0.75); backdrop-filter: var(--blur-strength-sm); border: 1px solid var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--glass-shadow); display: flex; flex-direction: column; justify-content: space-between; transition: var(--transition-smooth); position: relative; overflow: hidden; }
.cert-card:hover { transform: translateY(-6px); background: var(--white); box-shadow: var(--glass-shadow-lg); border-color: var(--sky-300); }
.cert-issuer-badge { display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px; border-radius: var(--radius-full); background: var(--sky-50); color: var(--sky-700); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; width: fit-content; border: 1px solid var(--sky-200); }
.cert-title { font-size: 1.25rem; font-weight: 800; color: var(--text-main); margin-bottom: 12px; line-height: 1.3; }
.cert-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.cert-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px dashed rgba(203, 213, 225, 0.6); font-size: 0.8rem; font-weight: 700; color: #059669; }

/* About & Journey */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 992px) { .about-grid { grid-template-columns: 1fr; } }
.about-text-box h3 { font-size: 2.2rem; margin-bottom: 20px; }
.about-text-box p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.philosophy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 24px; }
@media (max-width: 500px) { .philosophy-grid { grid-template-columns: 1fr; } }

.phil-card {
  padding: 24px 20px 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 2px dashed var(--sky-300);
  box-shadow: 6px 6px 0px rgba(2, 132, 199, 0.1);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phil-card:nth-child(1) { transform: rotate(-1.5deg); border-color: #7dd3fc; box-shadow: 6px 6px 0px rgba(2, 132, 199, 0.1); }
.phil-card:nth-child(2) { transform: rotate(1.5deg); border-color: #a7f3d0; box-shadow: 6px 6px 0px rgba(16, 185, 129, 0.1); }
.phil-card:nth-child(3) { transform: rotate(-1deg); border-color: #c4b5fd; box-shadow: 6px 6px 0px rgba(139, 92, 246, 0.1); }
.phil-card:nth-child(4) { transform: rotate(1.5deg); border-color: #fca5a5; box-shadow: 6px 6px 0px rgba(244, 63, 94, 0.1); }

.phil-card:hover {
  transform: translateY(-8px) scale(1.04) rotate(0deg) !important;
  z-index: 20;
  background: #ffffff;
  border-style: solid;
}

.phil-card:nth-child(1):hover { border-color: #0284c7; box-shadow: 10px 10px 0px rgba(2, 132, 199, 0.22); }
.phil-card:nth-child(2):hover { border-color: #059669; box-shadow: 10px 10px 0px rgba(5, 150, 105, 0.22); }
.phil-card:nth-child(3):hover { border-color: #7c3aed; box-shadow: 10px 10px 0px rgba(124, 58, 237, 0.22); }
.phil-card:nth-child(4):hover { border-color: #e11d48; box-shadow: 10px 10px 0px rgba(225, 29, 72, 0.22); }

.phil-card h4 { font-size: 1.1rem; color: var(--text-main); font-weight: 800; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.phil-card h4 i { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); display: inline-block; font-size: 1.3rem; }
.phil-card:hover h4 i { transform: scale(1.3) rotate(-12deg); }
.phil-card p { font-size: 0.9rem; margin-bottom: 0; color: var(--text-muted); line-height: 1.5; }

/* Timeline DIY & Microanimations */
.timeline-box { position: relative; padding-left: 32px; border-left: 3px dashed var(--sky-300); margin-top: 10px; }
.timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:hover {
  background: rgba(240, 249, 255, 0.9);
  border: 1.5px dashed var(--sky-300);
  transform: translateX(10px) scale(1.01);
  box-shadow: 6px 6px 0px rgba(2, 132, 199, 0.1);
}
.timeline-dot {
  position: absolute; left: -41px; top: 18px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--sky-600); border: 4px solid var(--white);
  box-shadow: 0 0 10px var(--sky-400); transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.timeline-item:hover .timeline-dot {
  transform: scale(1.4);
  box-shadow: 0 0 16px var(--sky-600);
  background: var(--sky-500);
}
.timeline-year { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 800; color: var(--sky-600); text-transform: uppercase; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.timeline-title { font-size: 1.2rem; font-weight: 800; color: var(--text-main); margin-bottom: 6px; }
.timeline-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }

/* Footer */
.footer { background: var(--navy-dark); color: var(--white); padding: 60px 0 40px; border-top-left-radius: var(--radius-xl); border-top-right-radius: var(--radius-xl); position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-about p { color: #94a3b8; font-size: 0.95rem; margin-top: 16px; max-width: 340px; line-height: 1.7; }
.footer-col h4 { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 20px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 30px; height: 3px; background: var(--sky-400); border-radius: var(--radius-full); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #cbd5e1; font-size: 0.95rem; font-weight: 500; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--sky-400); transform: translateX(4px); }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; color: #94a3b8; font-size: 0.9rem; }

/* ==========================================================================
   UNIVERSAL MICROANIMATIONS & BLUR REVEALS
   ========================================================================== */
/* 1. Blur Reveal Scroll Animation */
@keyframes blurReveal {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
    filter: blur(14px);
  }
  60% {
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}
.animate-up { animation: blurReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards !important; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* 2. Typing Cursor & Text Animation */
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.typing-cursor {
  display: inline-block;
  font-weight: 700;
  color: #ea580c;
  margin-left: 3px;
  animation: blink 0.8s infinite;
}
.typing-text { font-family: var(--font-diy); font-weight: 700; font-size: 1.65rem; color: #0284c7; letter-spacing: 0.5px; }

/* 3. Universal Micro-animations */
/* Buttons */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.btn:hover {
  transform: translateY(-4px) scale(1.04) !important;
  box-shadow: 0 14px 28px rgba(2, 132, 199, 0.28) !important;
}
.btn:active { transform: translateY(-1px) scale(0.98) !important; }

/* Badges and Section Tags */
.section-tag, .cert-issuer-badge, .company-badge, .diy-stamp {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.section-tag:hover, .cert-issuer-badge:hover, .company-badge:hover, .diy-stamp:hover {
  transform: rotate(-3deg) scale(1.08) translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  z-index: 10;
}

/* Feature Checkmarks */
.feature-item { transition: all 0.3s ease; }
.feature-item:hover { transform: translateX(6px); color: var(--text-main); font-weight: 700; }
.feature-item:hover .feature-check { transform: rotate(360deg) scale(1.2); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* Social Icons & Circle Links */
.avatar-circle-link, .footer-links a, .w-10.h-10 {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.w-10.h-10:hover {
  transform: translateY(-6px) rotate(10deg) scale(1.15) !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}

/* Glass Cards and Cert Cards */
.glass-card { transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
.glass-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
