html {
  scroll-behavior: smooth;
}

.dark\:border-gray-800 {
  .dark & {
    border-color: var(--color-gray-800);
  }
}

.dark\:border-indigo-400 {
  .dark & {
    border-color: var(--color-indigo-400);
  }
}

.dark\:bg-gray-700 {
  .dark & {
    background-color: var(--color-gray-700);
  }
}

.dark\:bg-gray-800 {
  .dark & {
    background-color: var(--color-gray-800);
  }
}

.dark\:bg-gray-900 {
  .dark & {
    background-color: var(--color-gray-900);
  }
}

.dark\:bg-gray-900\/80 {
  .dark & {
    background-color: color-mix(in oklab, var(--color-gray-900) 80%, transparent);
  }
}

.dark\:bg-indigo-900 {
  .dark & {
    background-color: var(--color-indigo-900);
  }
}

.dark\:from-gray-800 {
  .dark & {
    --tw-gradient-from: var(--color-gray-800);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
  }
}

.dark\:via-gray-900 {
  .dark & {
    --tw-gradient-stops: var(--tw-gradient-from), var(--color-gray-900), var(--tw-gradient-to, transparent);
  }
}

.dark\:to-gray-800 {
  .dark & {
    --tw-gradient-to: var(--color-gray-800);
  }
}

.dark\:text-blue-400 {
  .dark & {
    color: var(--color-blue-400);
  }
}

.dark\:text-gray-300 {
  .dark & {
    color: var(--color-gray-300);
  }
}

.dark\:text-gray-400 {
  .dark & {
    color: var(--color-gray-400);
  }
}

.dark\:text-indigo-400 {
  .dark & {
    color: var(--color-indigo-400);
  }
}

.dark\:text-white {
  .dark & {
    color: var(--color-white);
  }
}

.dark\:hover\:bg-gray-700 {
  .dark &:hover {
    @media (hover: hover) {
      background-color: var(--color-gray-700);
    }
  }
}

.dark\:hover\:bg-indigo-400 {
  .dark &:hover {
    @media (hover: hover) {
      background-color: var(--color-indigo-400);
    }
  }
}

.dark\:hover\:text-gray-900 {
  .dark &:hover {
    @media (hover: hover) {
      color: var(--color-gray-900);
    }
  }
}

.dark\:hover\:text-indigo-300 {
  .dark &:hover {
    @media (hover: hover) {
      color: var(--color-indigo-300);
    }
  }
}

.dark\:hover\:text-indigo-400 {
  .dark &:hover {
    @media (hover: hover) {
      color: var(--color-indigo-400);
    }
  }
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.gradient-animate-btn {
  background: #18181b; /* Tailwind gray-900 */
  color: #fff;
  transition: background 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  box-shadow: 0 4px 24px 0 rgba(24,24,27,0.10);
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.gradient-animate-btn:hover, .gradient-animate-btn:focus {
  background: linear-gradient(90deg, #6366f1, #a21caf, #6366f1);
  background-size: 200% 200%;
  animation: gradient-move 4s ease-in-out infinite alternate;
  box-shadow: 0 6px 32px 0 rgba(99,102,241,0.18);
  filter: brightness(1.08);
}
.dark .gradient-animate-btn {
  background: #27272a; /* Tailwind gray-800 */
  color: #fff;
}
.dark .gradient-animate-btn:hover, .dark .gradient-animate-btn:focus {
  background: linear-gradient(90deg, #818cf8, #c084fc, #818cf8);
  background-size: 200% 200%;
  animation: gradient-move 4s ease-in-out infinite alternate;
}

/* Career Page Theme Styles */
.hero-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.text-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-shape:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 3px solid white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 2px;
  height: calc(100% + 20px);
  background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-item:last-child::after {
  display: none;
}

.skill-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.quote-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.1);
  font-family: serif;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modern Case Study Custom Styles */
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.glass-dark {
  background: rgba(24,24,32,0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.modern-card {
  border-radius: 1.25rem;
  box-shadow: 0 2px 16px rgba(80,80,120,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.modern-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(80,80,120,0.16);
}
.modern-img {
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(80,80,120,0.10);
  transition: box-shadow 0.2s, transform 0.2s;
}
.modern-img:hover {
  box-shadow: 0 8px 32px rgba(80,80,120,0.18);
  transform: scale(1.03);
}
.modern-btn {
  border-radius: 9999px;
  background: linear-gradient(90deg, #6366f1 0%, #a21caf 100%);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 8px rgba(80,80,120,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.modern-btn:hover {
  background: linear-gradient(90deg, #a21caf 0%, #6366f1 100%);
  box-shadow: 0 4px 16px rgba(80,80,120,0.16);
  transform: translateY(-2px) scale(1.04);
}

/* --- Creative Case Study Redesign Styles --- */

:root {
  --primary: #6366f1;
  --secondary: #38bdf8;
  --accent: #a21caf;
  --bg1: #f8fafc;
  --bg2: #e0e7ff;
  --bg3: #f0fdf4;
  --glass: rgba(255,255,255,0.85);
  --glass-dark: rgba(36,40,54,0.85);
}

body, html {
  font-family: 'Inter', sans-serif;
  background: var(--bg1);
}

h1, h2, h3, h4, h5, h6, .heading {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../content/images/purno cover.png') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
}
.hero-title {
  font-size: 2.8rem;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #e0e7ff;
}
.hero-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: #fff;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.85rem 2.5rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 24px rgba(99,102,241,0.13);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.hero-cta:hover {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: translateY(-2px) scale(1.04);
}

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(80,80,120,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
}
.sticky-nav .logo {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
}
.sticky-nav .nav-links {
  display: flex;
  gap: 2rem;
}
.sticky-nav .nav-link {
  color: #222;
  font-weight: 600;
  position: relative;
  text-decoration: none;
  transition: color 0.2s;
}
.sticky-nav .nav-link:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s;
  border-radius: 2px;
  margin-top: 2px;
}
.sticky-nav .nav-link:hover {
  color: var(--primary);
}
.sticky-nav .nav-link:hover:after {
  width: 100%;
}

.section {
  padding: 4.5rem 0 3.5rem 0;
}
.section.bg-alt1 {
  background: var(--bg2);
}
.section.bg-alt2 {
  background: var(--bg3);
}

.section-title {
  font-size: 2.2rem;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}

.card {
  background: var(--glass);
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(80,80,120,0.10);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(80,80,120,0.18);
  transform: translateY(-4px) scale(1.02);
}

.timeline {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.timeline-step {
  background: var(--glass-dark);
  color: #fff;
  border-radius: 1rem;
  min-width: 220px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 2px 16px rgba(80,80,120,0.13);
  text-align: center;
  margin-right: 1rem;
  position: relative;
}
.timeline-step:not(:last-child):after {
  content: '';
  position: absolute;
  right: -1.2rem;
  top: 50%;
  width: 2rem;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transform: translateY(-50%);
}

.persona-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--glass);
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(80,80,120,0.10);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.persona-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 16px rgba(80,80,120,0.13);
}

.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.fab {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 200;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 24px rgba(99,102,241,0.18);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.fab:hover {
  background: linear-gradient(120deg, var(--accent), var(--primary));
  transform: scale(1.08);
}

/* Scroll reveal animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .timeline {
    gap: 1rem;
  }
  .timeline-step {
    min-width: 180px;
    padding: 1rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .timeline-step {
    min-width: 140px;
    font-size: 0.95rem;
  }
  .persona-card {
    padding: 1.2rem 0.5rem;
  }
}



.custom-logo {
        font-family: 'Poppins', 'Inter', sans-serif !important;
        font-size: 1.7rem !important;
        font-weight: 800 !important;
        color: var(--primary, #6366f1) !important;
        letter-spacing: -1px !important;
      }
      .custom-nav-link {
        color: #222;
        font-weight: 600;
        position: relative;
        text-decoration: none;
        transition: color 0.2s;
      }
      .custom-nav-link:after {
        content: '';
        display: block;
        height: 2px;
        width: 0;
        background: linear-gradient(90deg, var(--primary, #6366f1), var(--accent, #a21caf));
        transition: width 0.3s;
        border-radius: 2px;
        margin-top: 2px;
      }
      .custom-nav-link:hover {
        color: var(--primary, #6366f1);
      }
      .custom-nav-link:hover:after {
        width: 100%;
      }
