/* ==========================================================================
   LAZYDEVELOPERR (INTKHAB AHMAD) 
   ========================================================================== */

:root {
  --bg-dark: #07090e;
  --bg-card: rgba(15, 22, 36, 0.85);
  --bg-card-hover: rgba(22, 33, 54, 0.95);
  --border-glow: rgba(0, 243, 255, 0.25);
  --border-card: rgba(255, 255, 255, 0.08);

  --accent-cyan: #00f3ff;
  --accent-purple: #9d4edd;
  --accent-blue: #3a86ff;
  --accent-gold: #ffb700;
  --accent-pink: #ff007f;

  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-signature: 'Caveat', cursive;

  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Core Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: initial; /* Handled by Lenis */
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  width: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  width: 100%;
  line-height: 1.6;
  cursor: default;
  overflow-x: hidden;
  /* Anti-Copy Shield */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Explicit Global Link Styling */
a, a:visited {
  color: inherit;
  text-decoration: none;
}

/* Ensure Form Inputs, Links & Buttons remain fully interactive & selectable */
input, textarea, button, a, select {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
  pointer-events: auto !important;
}

img {
  -webkit-user-drag: none;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 15px var(--accent-cyan);
}

.custom-cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 243, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.25s, height 0.25s, border-color 0.25s;
}

body.cursor-hover .custom-cursor {
  width: 20px;
  height: 20px;
  background-color: var(--accent-gold);
  box-shadow: 0 0 25px var(--accent-gold);
}

body.cursor-hover .custom-cursor-follower {
  width: 55px;
  height: 55px;
  border-color: var(--accent-gold);
}

@media (hover: none) and (pointer: coarse) {
  .custom-cursor, .custom-cursor-follower {
    display: none !important;
  }
}

/* Three.js Background Canvas */
#webgl-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 10000;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-gold));
  box-shadow: 0 0 12px var(--accent-cyan);
}

/* PRODUCTION-GRADE NAVBAR */
.navbar {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 32px);
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 100px;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.navbar.scrolled {
  top: 10px;
  background: rgba(7, 9, 14, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 243, 255, 0.15);
  border-color: var(--border-glow);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  box-shadow: 0 0 10px var(--accent-cyan);
  flex-shrink: 0;
}

.brand-highlight {
  color: var(--accent-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link, .nav-link:visited {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-cyan);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--accent-cyan);
}

.nav-link:hover {
  color: var(--accent-cyan);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mobile-menu-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.mobile-menu-toggle:hover {
  background: rgba(0, 243, 255, 0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.mobile-menu-toggle {
  display: none !important;
}

/* PRODUCTION-GRADE MOBILE DRAWER OVERLAY (STRICT DISPLAY: NONE BY DEFAULT) */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  display: none !important; /* Fully hidden by default on all screens */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  display: flex !important; /* Visible only when active class is added by JS */
  opacity: 1 !important;
  pointer-events: auto !important;
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #090d16;
  border-left: 1px solid var(--border-glow);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
  z-index: 100000;
}

.mobile-drawer-overlay.active .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-close {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-main);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.mobile-nav-link, .mobile-nav-link:visited {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(0, 243, 255, 0.1);
  color: var(--accent-cyan);
}

.mobile-nav-link i {
  width: 20px;
  text-align: center;
  color: var(--accent-cyan);
}

/* Common Container & Sections */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(0, 243, 255, 0.08);
  border: 1px solid var(--border-glow);
  border-radius: 50px;
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffffff 30%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(15, 22, 36, 0.85);
  border: 1px solid var(--border-glow);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--accent-cyan);
  margin-bottom: 14px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(0, 243, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 243, 255, 0); }
}

/* Lifetime Brand Signature Quote Badge */
.signature-quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(255, 183, 0, 0.15), rgba(157, 78, 221, 0.15));
  border: 1px solid var(--accent-gold);
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(255, 183, 0, 0.2);
}

.quote-icon {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

.signature-quote {
  font-family: var(--font-signature);
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(255, 183, 0, 0.4);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.title-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 50%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(0.98rem, 2.2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 650px;
  line-height: 1.6;
}

.typewriter-text {
  color: var(--accent-cyan);
  font-weight: 600;
  border-right: 2px solid var(--accent-cyan);
  padding-right: 4px;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: var(--accent-cyan); }
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent-cyan), #00a8ff);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.35);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 243, 255, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--border-card);
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  transform: translateY(-2px);
}

/* Stats Counter Grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  padding: 20px;
  background: rgba(15, 22, 36, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: 18px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
}

.stat-number span {
  color: var(--accent-cyan);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Brand Signature Banner Card */
.brand-signature-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 183, 0, 0.14), rgba(0, 243, 255, 0.1), rgba(157, 78, 221, 0.14));
  border: 1px solid rgba(255, 183, 0, 0.4);
  border-radius: 22px;
  padding: 28px 30px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.signature-watermark {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.signature-banner-content {
  position: relative;
  z-index: 2;
}

.signature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255, 183, 0, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.signature-hero-text {
  font-family: var(--font-signature);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--accent-gold);
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(255, 183, 0, 0.4);
}

.signature-banner-desc {
  font-size: 0.95rem;
  color: var(--text-main);
  max-width: 800px;
  line-height: 1.6;
}

/* About / Journey Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-images-wrapper {
  position: relative;
  height: 420px;
}

.profile-card-3d {
  position: absolute;
  width: 240px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.profile-card-3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card-1 { top: 0; left: 0; z-index: 3; transform: rotate(-4deg); }
.profile-card-2 { top: 30px; right: 10px; z-index: 2; transform: rotate(5deg); }
.profile-card-3 { bottom: 0; left: 60px; z-index: 1; transform: rotate(-2deg); }

.about-content-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-bio {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.highlight-box {
  padding: 16px;
  background: rgba(0, 243, 255, 0.05);
  border-left: 3px solid var(--accent-cyan);
  border-radius: 0 14px 14px 0;
}

.highlight-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.cert-card-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(255, 183, 0, 0.1), rgba(157, 78, 221, 0.1));
  border: 1px solid rgba(255, 183, 0, 0.3);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cert-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.cert-text h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-size: 0.92rem;
}

.cert-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Skills Matrix Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.skill-category-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 24px;
  transition: var(--transition-smooth);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.category-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 243, 255, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.skill-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
}

.skill-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 10px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Projects Showcase Section */
.project-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(0, 243, 255, 0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.project-header {
  padding: 20px 24px 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.project-badge {
  font-size: 0.72rem;
  padding: 3px 10px;
  background: rgba(157, 78, 221, 0.15);
  border: 1px solid var(--accent-purple);
  color: #d8b4fe;
  border-radius: 50px;
  font-weight: 600;
}

.project-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(157, 78, 221, 0.15));
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.2rem;
}

.project-body {
  padding: 10px 24px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.project-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.5;
}

.project-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tech-tag {
  font-size: 0.75rem;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  color: var(--text-muted);
}

.project-footer {
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-card);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-details {
  background: none;
  border: none;
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* YouTube Section */
.yt-community-card {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.12), rgba(15, 22, 36, 0.9));
  border: 1px solid rgba(255, 0, 0, 0.25);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.yt-channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid rgba(255, 0, 0, 0.4);
  color: #ff4d4d;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.yt-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.yt-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.yt-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.yt-stat-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.yt-stat-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #ff4d4d;
}

.yt-stat-box p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.contact-info-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid var(--border-glow);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-text h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-main);
}

.contact-text p, .contact-text a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.social-pills-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  border-radius: 50px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-form-box {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

textarea.form-input {
  min-height: 100px;
  resize: vertical;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 6, 12, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 30000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: #0d121d;
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  width: 92%;
  max-width: 750px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 28px 20px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 243, 255, 0.2);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-main);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-cert-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-card);
  margin-top: 16px;
}

/* Footer */
.footer {
  padding: 30px 0;
  border-top: 1px solid var(--border-card);
  background: rgba(4, 6, 10, 0.95);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-text {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ULTRA SMOOTH MOBILE & TABLET BREAKPOINTS */
@media (max-width: 1024px) {
  .nav-links {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 880px) {
  .nav-links, .desktop-gh-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .navbar {
    padding: 8px 16px;
    width: calc(100% - 24px);
    top: 12px;
  }
  .about-grid, .yt-community-card, .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-images-wrapper {
    height: 340px;
  }
  .profile-card-3d {
    width: 190px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 50px 0;
  }
  .hero-section {
    padding-top: 100px;
  }
  .hero-title {
    font-size: clamp(2rem, 7.5vw, 3.2rem);
  }
  .signature-quote {
    font-size: 1.2rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary, .btn-secondary {
    justify-content: center;
    width: 100%;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .brand-signature-banner {
    padding: 20px 20px;
  }
  .signature-hero-text {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .yt-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-images-wrapper {
    height: 280px;
  }
  .profile-card-3d {
    width: 140px;
    height: 190px;
  }
  .profile-card-2 {
    right: 0px;
  }
  .profile-card-3 {
    left: 20px;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
