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

/* --- DESIGN SYSTEM & SYSTEM VARIABLES --- */
:root {
  --bg-primary: #04050d;
  --bg-secondary: #080a1a;
  --bg-card: rgba(10, 12, 30, 0.45);
  --border-glass: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(0, 210, 255, 0.25);
  
  /* Accent Colors */
  --accent-blue: #00d2ff;
  --accent-blue-rgb: 0, 210, 255;
  --accent-green: #00ff88;
  --accent-green-rgb: 0, 255, 136;
  --accent-purple: #9d4edd;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #57657a;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Shadows & Glows */
  --glow-blue: 0 0 25px rgba(0, 210, 255, 0.35);
  --glow-green: 0 0 25px rgba(0, 255, 136, 0.35);
  --card-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.9);
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- RESET & GENERAL STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  display: block;
}

/* Hide custom cursor on touch/pointer-coarse devices */
@media (pointer: coarse) {
  .cursor-dot, .cursor-outline {
    display: none !important;
  }
}

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green), var(--accent-purple));
  width: 0%;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
  transition: width 0.05s linear;
}

/* --- CUSTOM CURSOR --- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10000;
  pointer-events: none;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--accent-blue);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* Cursor states for hover */
.cursor-hover .cursor-dot {
  width: 12px;
  height: 12px;
  background-color: var(--accent-blue);
}

.cursor-hover .cursor-outline {
  width: 48px;
  height: 48px;
  border-color: var(--accent-green);
  background-color: rgba(0, 255, 136, 0.05);
}

/* --- AMBIENT BLOBS --- */
.gradient-bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.14;
  animation: floatBlobs 24s infinite alternate ease-in-out;
}

.blob-1 {
  width: 450px;
  height: 450px;
  background: var(--accent-blue);
  top: -10%;
  left: -10%;
}

.blob-2 {
  width: 550px;
  height: 550px;
  background: var(--accent-green);
  bottom: -15%;
  right: -10%;
  animation-delay: -6s;
}

.blob-3 {
  width: 380px;
  height: 380px;
  background: var(--accent-purple);
  top: 40%;
  left: 30%;
  animation-delay: -12s;
}

.blob-4 {
  width: 300px;
  height: 300px;
  background: #ff007f;
  top: 15%;
  right: 20%;
  animation-delay: -18s;
  opacity: 0.06;
}

@keyframes floatBlobs {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(70px, -50px) scale(1.15) rotate(120deg); }
  66% { transform: translate(-50px, 60px) scale(0.9) rotate(240deg); }
  100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-title {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title span {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
  border-radius: 2px;
}

/* --- GLASSMORPHISM CARD STYLING --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 20px 45px -5px rgba(0, 210, 255, 0.18);
}

/* Dynamic Radial Shine Overlay */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(255, 255, 255, 0.08),
    transparent 45%
  );
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.glass-card:hover::before {
  opacity: 1;
}

/* 3D Tilt Wrapper styling */
.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s, box-shadow 0.4s;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0088ff 100%);
  color: #04050d;
  font-weight: 700;
  box-shadow: var(--glow-blue);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s ease;
  pointer-events: none;
  z-index: 1;
}

.btn-primary:hover::after {
  left: 120%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
  transform: translateY(-2px);
  box-shadow: var(--glow-green);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  border: 1.5px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-blue);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  border-radius: 30px;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 210, 255, 0.08);
  color: var(--accent-blue);
  border: 1px solid rgba(0, 210, 255, 0.18);
  margin-bottom: 1rem;
}

.badge-green {
  background: rgba(0, 255, 136, 0.08);
  color: var(--accent-green);
  border: 1px solid rgba(0, 255, 136, 0.18);
}

/* --- NAVIGATION BAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.3rem 0;
  background: rgba(4, 5, 13, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  padding: 0.85rem 0;
  background: rgba(4, 5, 13, 0.85);
  border-bottom: 1px solid rgba(0, 210, 255, 0.18);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--accent-blue);
}

.logo i {
  color: var(--accent-green);
  animation: pulseIcon 2s infinite alternate ease-in-out;
}

@keyframes pulseIcon {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(0, 255, 136, 0.3)); }
  100% { transform: scale(1.1); filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.7)); }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.2rem;
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
  transition: var(--transition-normal);
}

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

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  position: relative;
  overflow: hidden;
}

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

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

.hero-headline {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 1.8rem;
  line-height: 1.15;
}

.typewriter-container {
  display: inline-block;
}

.typewriter {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.typewriter-cursor {
  color: var(--accent-green);
  font-weight: 300;
  margin-left: 3px;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.6rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  box-shadow: 0 0 50px rgba(0, 210, 255, 0.15);
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-secondary);
}

.hero-glow-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 210, 255, 0.4);
  animation: rotateClockwise 35s linear infinite;
  pointer-events: none;
}

/* Floating Marketing Icons */
.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(10, 12, 30, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-blue);
  box-shadow: var(--card-shadow);
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}

/* Floating positions and custom offset delays */
.float-1 { top: 10%; left: -20px; animation-delay: 0s; color: #1877f2; }
.float-2 { top: 40%; right: -30px; animation-delay: 1.5s; color: #4285f4; }
.float-3 { bottom: 5%; left: 10%; animation-delay: 3s; color: #0077b5; }
.float-4 { top: -20px; right: 20%; animation-delay: 4.5s; color: var(--accent-green); }
.float-5 { bottom: 30%; left: -50px; animation-delay: 2s; color: #f57c00; }
.float-6 { bottom: 20%; right: 10%; animation-delay: 3.5s; color: #e1306c; }

/* --- ACHIEVEMENTS COUNTERS --- */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 20;
}

.achievement-card {
  padding: 2.5rem 2rem;
  text-align: center;
  background: rgba(8, 10, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.achievement-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
  opacity: 0;
  transition: var(--transition-normal);
}

.achievement-card:hover::after {
  opacity: 1;
}

.achievement-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 40%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.achievement-card:nth-child(even) .achievement-number {
  background: linear-gradient(135deg, #fff 40%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.achievement-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- ABOUT ME --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.about-graphics {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-card-stack {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 380px;
}

.stack-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, rgba(8, 10, 26, 0.98) 0%, rgba(4, 5, 13, 0.98) 100%);
  border: 1px solid var(--border-glass);
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
}

.card-1 {
  z-index: 3;
}

.card-2 {
  z-index: 2;
  transform: translate(15px, 15px);
  border-color: rgba(0, 210, 255, 0.15);
}

.card-3 {
  z-index: 1;
  transform: translate(30px, 30px);
  border-color: rgba(0, 255, 136, 0.1);
}

.about-graphics:hover .card-2 {
  transform: translate(25px, 25px);
}

.about-graphics:hover .card-3 {
  transform: translate(50px, 50px);
}

.about-card-stat {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.about-card-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-highlight {
  border-left: 3px solid var(--accent-blue);
  padding-left: 1.25rem;
  font-style: italic;
}

/* --- EXPERIENCE (TIMELINE) --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
  top: 0;
  bottom: 0;
  left: 30px;
}

.timeline-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 4rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--accent-blue);
  left: 21px;
  top: 6px;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
  transition: var(--transition-normal);
}

.timeline-item:hover .timeline-dot {
  background: var(--accent-green);
  border-color: var(--accent-green);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.7);
}

.timeline-date {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.timeline-title {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.timeline-company {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.timeline-body {
  padding: 2.2rem;
}

.timeline-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.timeline-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.timeline-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent-blue);
  font-size: 0.75rem;
  transition: color 0.3s;
}

.timeline-item:hover .timeline-list li::before {
  color: var(--accent-green);
}

/* --- SKILLS --- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  padding: 2rem;
  text-align: center;
}

.skill-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--accent-blue);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
}

.skill-card:hover .skill-icon-container {
  color: var(--accent-green);
  border-color: var(--accent-green);
  background: rgba(0, 255, 136, 0.06);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
  transform: rotateY(360deg);
}

.skill-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* --- AI CREATIVE & WEB DEV --- */
.ai-web-section {
  position: relative;
}

.ai-web-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.ai-web-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-web-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.ai-web-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.ai-card {
  padding: 1.6rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.ai-card-icon {
  font-size: 1.6rem;
  color: var(--accent-blue);
  background: rgba(0, 210, 255, 0.05);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 210, 255, 0.15);
  transition: var(--transition-normal);
}

.ai-card:hover .ai-card-icon {
  color: var(--accent-green);
  background: rgba(0, 255, 136, 0.05);
  border-color: rgba(0, 255, 136, 0.2);
  transform: scale(1.05);
}

.ai-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.ai-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- META ADS REPORTS SECTION --- */
.reports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.report-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.report-image-container {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
}

.report-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.report-card:hover .report-img {
  transform: scale(1.04);
}

.report-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 5, 13, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.report-image-container:hover .report-overlay {
  opacity: 1;
}

.report-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.report-info h3 {
  font-size: 1.35rem;
  margin: 0.5rem 0 0.8rem;
}

.report-info p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- REAL ESTATE CREATIVES SECTION --- */
.creatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.creative-card {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.creative-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.creative-card:hover .creative-img {
  transform: scale(1.08);
}

.creative-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(4, 5, 13, 0.95) 0%, rgba(4, 5, 13, 0.5) 70%, transparent 100%);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 2;
}

.creative-card:hover .creative-overlay {
  transform: translateY(0);
  opacity: 1;
}

.creative-overlay h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.creative-overlay p {
  font-size: 0.8rem;
  color: var(--accent-green);
  font-weight: 600;
}

/* --- VEO 3 AI VIDEOS SECTION --- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-container {
  position: relative;
  aspect-ratio: 16/9;
  background: #060713;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
  cursor: pointer;
}

.portfolio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.video-card:hover .portfolio-video {
  opacity: 0.5;
}

.video-placeholder-msg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  pointer-events: none;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--border-glass);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, color 0.3s;
}

.video-container:hover .video-placeholder-msg {
  transform: translate(-50%, -50%) scale(1.05);
  color: var(--accent-blue);
}

.video-play-btn {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 42px;
  height: 42px;
  background: rgba(0, 210, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #04050d;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
  pointer-events: none;
  z-index: 3;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.video-container:hover .video-play-btn {
  background-color: var(--accent-green);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
  transform: scale(1.1);
}

.video-play-btn i {
  margin-left: 2px;
}

.video-duration {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.05);
}

.video-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-info h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0 0.8rem;
}

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

/* --- SIDE HUSTLE & PADMA --- */
.side-hustle-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
}

.side-hustle-card {
  padding: 3rem 2.5rem;
}

.hustle-stats {
  display: flex;
  gap: 2rem;
  margin: 1.8rem 0;
}

.hustle-stat-item {
  border-left: 2px solid var(--accent-green);
  padding-left: 1rem;
}

.hustle-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
}

.hustle-stat-lbl {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.padma-card {
  padding: 3rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.side-hustle-card p, .padma-card p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* --- CASE STUDIES --- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.case-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-img-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-bottom: 1px solid var(--border-glass);
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.case-card:hover .case-img {
  transform: scale(1.06);
}

.case-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(4, 5, 13, 0.95) 0%, transparent 65%);
}

.case-details {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.case-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  transition: var(--transition-normal);
}

.case-card:hover .case-title {
  color: var(--accent-blue);
}

.case-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.case-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-green);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-link i {
  transition: transform var(--transition-fast);
}

.case-card:hover .case-link i {
  transform: translateX(5px);
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-header h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-header p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-details-list {
  list-style: none;
}

.contact-details-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.8rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.06);
  border: 1px solid rgba(0, 210, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--accent-blue);
  transition: var(--transition-normal);
}

.contact-details-item:hover .contact-icon {
  color: var(--accent-green);
  border-color: var(--accent-green);
  background: rgba(0, 255, 136, 0.06);
  transform: scale(1.05);
}

.contact-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-val {
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form {
  padding: 3rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
}

.form-input {
  width: 100%;
  background: rgba(4, 5, 13, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 0.95rem 1.25rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
  background: rgba(4, 5, 13, 0.8);
}

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

/* Form success message */
.form-message {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-message.success {
  color: var(--accent-green);
  animation: pulseMessage 1.5s infinite alternate;
}

@keyframes pulseMessage {
  0% { text-shadow: 0 0 2px rgba(0, 255, 136, 0.2); }
  100% { text-shadow: 0 0 8px rgba(0, 255, 136, 0.6); }
}

.form-message.error {
  color: #ff3e3e;
}

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 3rem 0;
  text-align: center;
  background: #020308;
  position: relative;
  z-index: 10;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--accent-blue);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

.footer-social-link {
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--accent-blue);
  transform: translateY(-3px);
}

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

/* --- PREMIUM FULLSCREEN LIGHTBOXES --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 4, 10, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.2rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition-fast), transform var(--transition-fast);
  z-index: 100001;
}

.lightbox-close:hover {
  color: #fff;
  transform: rotate(90deg) scale(1.05);
}

.lightbox-content {
  max-width: 900px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.93);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: rgba(10, 12, 30, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 60vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
  margin-top: 1.6rem;
  text-align: center;
  width: 100%;
}

.lightbox-info h4 {
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.lightbox-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Video Lightbox Specific styles */
.video-content {
  max-width: 850px;
}

.lightbox-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

#lightbox-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  position: relative;
}

.video-error-msg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #080a1a;
  color: var(--text-secondary);
  z-index: 1;
  gap: 1rem;
  padding: 2rem;
}

.video-error-msg i {
  font-size: 3.5rem;
  color: var(--accent-blue);
  animation: pulseIcon 1.5s infinite alternate ease-in-out;
}

.video-error-msg p {
  font-size: 1rem;
  font-weight: 500;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* --- SCROLL REVEAL STYLE HELPERS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 2rem;
  }
  .hero-headline {
    font-size: 3.1rem;
  }
  .about-grid {
    gap: 2.5rem;
  }
  .reports-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .creatives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2.1rem;
    margin-bottom: 2.5rem;
  }
  
  .navbar {
    padding: 1.1rem 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(4, 5, 13, 0.98);
    backdrop-filter: blur(25px);
    border-top: 1px solid var(--border-glass);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    gap: 2.5rem;
    transition: var(--transition-normal);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-subheadline {
    margin: 0 auto 2rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-container {
    order: -1;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 0;
    padding: 0 1rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-graphics {
    margin-bottom: 1.5rem;
  }
  
  .timeline::after {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 50px;
  }
  
  .timeline-dot {
    left: 11px;
  }
  
  .timeline-list {
    grid-template-columns: 1fr;
  }
  
  .ai-web-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .creatives-grid {
    grid-template-columns: 1fr;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
  }
  
  .side-hustle-grid {
    grid-template-columns: 1fr;
  }
  
  .cases-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }
  .hero-image-wrapper {
    width: 250px;
    height: 250px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .side-hustle-card, .padma-card {
    padding: 2rem 1.5rem;
  }
}
