/* Modern Dark Theme CSS for Vaibhav KKM Website */

/* ========================================
   CSS VARIABLES & ROOT STYLES
   ======================================== */
:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #a1a1a1;
  --text-tertiary: #6b6b6b;
  --accent-primary: #06b6d4;
  --accent-secondary: #0891b2;
  --border-primary: rgba(255, 255, 255, 0.1);
  --border-secondary: rgba(255, 255, 255, 0.05);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  --gradient-secondary: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Spacing */
  --section-padding: 8rem 2rem;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

body.dark-theme {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid var(--border-primary);
  transition: all var(--transition-normal);
}

.nav-modern.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.8rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--text-primary);
}

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

.nav-btn {
  padding: 1rem 2.5rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: 10rem;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.nav-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  font-size: 2.4rem;
  color: var(--text-primary);
}

.nav-mobile {
  display: none;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-primary);
  padding: 2rem 3rem;
  flex-direction: column;
  gap: 2rem;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile-link {
  font-size: 1.8rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-mobile-link:hover {
  color: var(--text-primary);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  min-height: 100vh;
  padding: 12rem 3rem 8rem;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-primary);
  border-radius: 10rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.pulse-dot {
  width: 0.8rem;
  height: 0.8rem;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: 7rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 4rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-social-icons-mobile {
  display: none;
  width: 100%;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.hero-social-icons-mobile a {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-primary);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 2rem;
  transition: all var(--transition-fast);
}

.hero-social-icons-mobile a:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.btn-primary {
  padding: 1.8rem 4rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 10rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.btn-primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.avatar-group {
  display: flex;
  margin-left: -1rem;
}

.avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  margin-left: -1rem;
  object-fit: cover;
  filter: grayscale(20%);
}

.social-proof-text {
  display: flex;
  flex-direction: column;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.social-proof-text span {
  font-size: 1.3rem;
  color: var(--text-secondary);
}

.hero-image {
  position: relative;
  height: 65rem;
  border-radius: 3rem;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  z-index: 2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center; /* Shift focus to the right to show face */
}

.hero-quote {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  z-index: 3;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-primary);
  border-radius: 2rem;
}

.hero-quote p {
  font-size: 1.7rem;
  line-height: 1.6;
  font-weight: 500;
}

.social-icons-floating {
  position: fixed;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.social-icons-floating a {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-primary);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-icons-floating a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transform: scale(1.1);
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  padding: 6rem 3rem;
  border-top: 1px solid var(--border-secondary);
  border-bottom: 1px solid var(--border-secondary);
  position: relative;
  background: rgba(10, 10, 10, 0.85);
  background-image: url('../images/VK.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  position: relative;
  z-index: 2;
}

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

.stat-number {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.4rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 600;
}

/* Continue in next part... */

/* ========================================
   SECTIONS - COMMON STYLES
   ======================================== */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--section-padding);
}

.section-container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--section-padding);
}

.section-header-center {
  text-align: center;
  margin-bottom: 6rem;
}

.section-badge {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-primary);
  border-radius: 10rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.section-title {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.9rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================================
   ABOUT SECTION - BENTO GRID
   ======================================== */
.about-section {
  background: var(--bg-secondary);
}

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

.bento-large {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-primary);
  border-radius: 3rem;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 35rem;
}

.bento-large h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.bento-large p {
  font-size: 1.8rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.bento-image {
  border-radius: 3rem;
  overflow: hidden;
  height: 35rem;
  position: relative;
}

.bento-img, .bento-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.bento-image:hover .bento-img {
  transform: scale(1.05);
}

/* ========================================
   YOUTUBE SECTION
   ======================================== */
.youtube-section {
  background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.video-carousel-wrapper {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.03) 0%, rgba(8, 145, 178, 0.05) 100%);
  border-radius: 2rem;
  padding: 4rem 0;
  overflow: hidden;
}

.video-carousel {
  display: flex;
  gap: 3rem;
  padding: 0 3rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.video-carousel::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 auto;
  width: 38rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-primary);
  border-radius: 2rem;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
  border-color: var(--accent-primary);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 21rem;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 7rem;
  height: 7rem;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-normal);
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.video-card:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-button i {
  font-size: 2.5rem;
  color: white;
  margin-left: 0.5rem;
}

.video-info {
  padding: 2rem;
}

.video-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-stats {
  display: flex;
  gap: 2rem;
  font-size: 1.3rem;
  color: var(--text-tertiary);
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio-section {
  background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.portfolio-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-primary);
  border-radius: 2rem;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}

.portfolio-image {
  width: 100%;
  height: 25rem;
  overflow: hidden;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 182, 212, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
}

.portfolio-overlay i {
  font-size: 4rem;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-content {
  padding: 3rem;
}

.portfolio-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.portfolio-description {
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag {
  padding: 0.5rem 1.2rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-primary);
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}


/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  background: rgba(255, 255, 255, 0.01);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-primary);
}

.faq-question {
  width: 100%;
  padding: 2.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-question i {
  color: var(--text-tertiary);
  font-size: 1.6rem;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 25rem;
}

.faq-answer p {
  font-size: 1.6rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-bottom: 2.5rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 8rem 3rem;
  background: var(--bg-secondary);
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  min-height: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-image-bg {
  position: absolute;
  inset: 0;
}

.cta-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 6rem;
}

.cta-content h2 {
  font-size: 5.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.btn-primary-large {
  padding: 2rem 5rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 10rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.btn-primary-large:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-modern {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-primary);
  padding: 8rem 3rem 4rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.footer-logo img {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
}

.footer-brand p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

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

.footer-col ul li a {
  font-size: 1.5rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-col ul li a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid var(--border-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright, .footer-credits {
  font-size: 1.4rem;
  color: var(--text-tertiary);
}

.footer-credits i {
  color: #ef4444;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 6rem;
  }
  
  .section-title {
    font-size: 4rem;
  }
}

@media (max-width: 1000px) {
  html {
    font-size: 55%;
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .hero-image {
    height: 50rem;
  }
  
  .social-icons-floating {
    display: none;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large {
    grid-column: span 1;
  }

  /* Reorder bento items for mobile: My Journey -> Video 1 -> My Philosophy -> Image */
  .bento-grid > .bento-large:nth-child(1) {
    order: 1; /* My Journey */
  }

  .bento-grid > .bento-image:nth-child(2) {
    order: 2; /* Video 1 */
  }

  .bento-grid > .bento-image:nth-child(3) {
    order: 4; /* Image - move to end */
  }

  .bento-grid > .bento-large:nth-child(4) {
    order: 3; /* My Philosophy */
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .testimonial-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 50%;
  }
  
  .nav-container {
    padding: 1.5rem 2rem;
  }
  
  .hero-section {
    padding: 10rem 2rem 6rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-image {
    height: 40rem;
  }

  /* Mobile: Adjust hero image positioning for better face visibility */
  .hero-img {
    object-fit: cover;
    object-position: 65% center; /* Position to show face on the right */
    transform: scale(1.1); /* Slight zoom to fill space */
  }

  /* Mobile: Show social icons below button, hide floating ones */
  .hero-social-icons-mobile {
    display: flex;
  }

  .social-icons-floating {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .hero-social-proof {
    display: none;
  }

  .hero-quote {
    display: none;
  }

  /* Mobile: Switch stats section background to img_mob.jpeg */
  .stats-section {
    background-image: url('../images/img_mob.jpeg');
    background-position: center;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-text blockquote {
    font-size: 1.8rem;
  }
  
  .cta-content h2 {
    font-size: 4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-padding-top: 80px;
}

/* Selection */
::selection {
  background: var(--accent-primary);
  color: white;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
