    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        * {
            font-family: 'Inter', sans-serif;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Enhanced Animations */
        .floating {
            animation: floating 4s ease-in-out infinite;
        }
        
        @keyframes floating {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(2deg); }
            50% { transform: translateY(-25px) rotate(0deg); }
            75% { transform: translateY(-10px) rotate(-2deg); }
        }
        
        .bounce-in {
            animation: bounceIn 1s ease-out forwards;
            opacity: 0;
            transform: scale(0.3);
        }
        
        @keyframes bounceIn {
            0% { opacity: 0; transform: scale(0.3); }
            50% { opacity: 1; transform: scale(1.05); }
            70% { transform: scale(0.9); }
            100% { opacity: 1; transform: scale(1); }
        }
        
        .slide-in-left {
            animation: slideInLeft 1s ease-out forwards;
            opacity: 0;
            transform: translateX(-100px);
        }
        
        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .slide-in-right {
            animation: slideInRight 1s ease-out forwards;
            opacity: 0;
            transform: translateX(100px);
        }
        
        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(50px);
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .pulse-glow {
            animation: pulseGlow 2s ease-in-out infinite;
        }
        
        @keyframes pulseGlow {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 0 40px rgba(102, 126, 234, 0.8);
                transform: scale(1.02);
            }
        }
        
        .card-hover {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .card-hover:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        /* AI Recruiter Animation */
        .ai-avatar {
            animation: aiPulse 3s ease-in-out infinite;
        }
        
        @keyframes aiPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
            }
        }
        
       .voice-wave {
  display: inline-block;
  animation: voiceAnim 1s infinite ease-in-out;
  transform-origin: bottom center; /* wave bottom se grow hogi */
}

@keyframes voiceAnim {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1.5); }
}
        
        /* Typing Animation */
        .typing-dots {
            animation: typingDots 1.5s infinite;
        }
        
        @keyframes typingDots {
            0%, 20% { opacity: 0; }
            50% { opacity: 1; }
            100% { opacity: 0; }
        }
        
        /* Progress Bar Animation */
        .progress-fill {
            animation: progressFill 3s ease-out forwards;
            width: 0%;
        }
        
        @keyframes progressFill {
            to { width: 100%; }
        }
        
        /* Hiring Flow Animation */
     


        /* Particle Animation */
        .particle {
            position: absolute;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 50%;
            animation: particleFloat 6s linear infinite;
        }
        
        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Scroll Reveal */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Interactive Demo Styles */
        .demo-container {
            background: linear-gradient(145deg, #f8fafc, #e2e8f0);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .chat-bubble {
            animation: chatBubbleIn 0.5s ease-out;
        }
        
        @keyframes chatBubbleIn {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.8);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        /* Success Animation */
        .success-checkmark {
            animation: successPop 0.6s ease-out;
        }
        
        @keyframes successPop {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        
        /* Loading Animation */
        .loading-spinner {
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* Stagger Animation Delays */
        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }
        .stagger-5 { animation-delay: 0.5s; }
        .stagger-6 { animation-delay: 0.6s; }


        /* Hero Section Layout */
   .container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            max-width: 1000px;
            width: 100%;
            animation: slideUp 0.8s ease-out;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .header {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
            color: white;
            padding: 2.5rem;
            text-align: center;
        }
        
        .header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .comparison-table {
            overflow-x: auto;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th {
            background: #f8fafc;
            padding: 1.5rem;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
            color: #334155;
            border-bottom: 2px solid #e2e8f0;
        }
        
        th:first-child {
            width: 20%;
            background: #4f46e5;
            color: white;
        }
        
        th:nth-child(2) {
            background: #fef2f2;
            color: #dc2626;
        }
        
        th:nth-child(3) {
            background: #f0fdf4;
            color: #16a34a;
        }
        
        td {
            padding: 1.5rem;
            border-bottom: 1px solid #e2e8f0;
            vertical-align: top;
        }
        
        td:first-child {
            background: #f8fafc;
            font-weight: 600;
            color: #475569;
        }
        
        .traditional {
            background: #fef2f2;
            color: #7f1d1d;
        }
        
        .ai-agent {
            background: #f0fdf4;
            color: #14532d;
            position: relative;
        }
        
        .highlight {
            background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }
        
        .result-section {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 2rem;
            text-align: center;
        }
        
        .result-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .result-section p {
            font-size: 1.2rem;
            opacity: 0.95;
        }
        
        .rocket {
            font-size: 2rem;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        .metric {
            font-weight: 600;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.1);
            display: inline-block;
            margin: 0.25rem 0;
        }
        
        .traditional .metric {
            background: rgba(220, 38, 38, 0.1);
            color: #dc2626;
        }
        
        .ai-agent .metric {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
        }
        
        @media (max-width: 768px) {
            body {
                padding: 1rem;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            th, td {
                padding: 1rem;
                font-size: 0.9rem;
            }
            
            .result-section h2 {
                font-size: 1.5rem;
            }
        }
.custom-hero {
  min-height: 90vh;
  align-items: center;
  display: flex;
}

/* Tagline */
.hero-tagline {
  font-size: 20px;
  font-weight: 500;
  color: #2563eb; /* Tailwind blue-600 */
  letter-spacing: 1px;
}

/* Gradient Heading */
.dsm-gradient-text {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button Styling */
#gradient-btn {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  border-radius: 8px;
  padding: 14px 32px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.2);
}
#gradient-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.25);
}

/* Hero Image */
.hd-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeRight 1s forwards;
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  to { opacity: 1; transform: translateX(0); }
}
/* === Base Hero === */
.hero {
 
  display: flex;
  align-items: center;
  justify-content: space-between;
 
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 0.6;
  min-width: 300px;
  animation: fadeUp 0.8s ease forwards;
}

.hero-tagline {
  font-size: 20px;
  font-weight: 500;
  color: #2563eb;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.gradient-text {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 30px;
  max-width: 500px;
}

#gradient-btn {
  display: inline-block;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
#gradient-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  animation: fadeRight 1s ease forwards;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* === Animations === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* === Responsive === */
@media (max-width: 1024px) {
  .gradient-text { font-size: 2.5rem; }
  .hero { padding: 30px; gap: 30px; }
}
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; padding: 20px; }
  .hero-content { animation: fadeUp 0.8s ease forwards; }
  .gradient-text { font-size: 2rem; }
  .hero-subtext { margin: 0 auto 25px; }
}
@media (max-width: 480px) {
  .hero-tagline { font-size: 16px; }
  .gradient-text { font-size: 1.75rem; }
  .hero-subtext { font-size: 1rem; }
  #gradient-btn { padding: 12px 24px; font-size: 0.95rem; }
}


/* Common Nav Links */
.nav-link {
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  transition: all 0.2s ease;
}
.nav-link:hover { color: #111827; transform: scale(1.05); }

/* Mobile Menu Animation */
#mobile-menu { animation: fadeDown 0.3s ease forwards; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.process-flow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            margin: 4rem 0;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            opacity: 0.4;
            transform: scale(0.9);
            transition: all 0.6s ease;
        }
        
        .step.active {
            opacity: 1;
            transform: scale(1);
        }
        
        .step.completed {
            opacity: 1;
            transform: scale(1);
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1rem;
            position: relative;
            transition: all 0.6s ease;
        }
        
        .step-1 .step-icon {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            color: white;
        }
        
        .step-2 .step-icon {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
        }
        
        .step-3 .step-icon {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }
        
        .step-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }
        
        .step-description {
            font-size: 0.9rem;
            color: #64748b;
            text-align: center;
            max-width: 270px;
        }
        
        .connection-line {
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 4px;
            background: #e2e8f0;
            z-index: 1;
        }
        
        .progress-line {
            height: 100%;
            background: linear-gradient(90deg, #3b82f6, #f59e0b, #10b981);
            width: 0%;
            transition: width 1s ease;
            border-radius: 2px;
        }
        
        .moving-dot {
            position: absolute;
            top: 32px;
            width: 16px;
            height: 16px;
            background: #4f46e5;
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(79, 70, 229, 0.6);
            transform: translateX(-8px);
            opacity: 0;
            transition: all 1s ease;
        }
        
        .controls {
            text-align: center;
            margin-top: 3rem;
        }
        
        .start-btn {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
        }
        
        .start-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
        }
        
        .start-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .status-message {
            margin-top: 2rem;
            padding: 1rem;
            border-radius: 10px;
            font-weight: 500;
            text-align: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .status-message.show {
            opacity: 1;
        }
        
        .status-prescreen {
            background: #dbeafe;
            color: #1d4ed8;
        }
        
        .status-interview {
            background: #fef3c7;
            color: #d97706;
        }
        
        .status-results {
            background: #d1fae5;
            color: #059669;
        }
        
        .status-selected {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            font-size: 1.2rem;
            animation: celebration 0.6s ease;
        }
        
        @keyframes celebration {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .checkmark {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 30px;
            height: 30px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            opacity: 0;
            transform: scale(0);
            transition: all 0.3s ease;
        }
        
        .step.completed .checkmark {
            opacity: 1;
            transform: scale(1);
        }
        
        @media (max-width: 768px) {
            .process-flow {
                flex-direction: column;
                gap: 2rem;
            }
            
            .connection-line {
                display: none;
            }
            
            .moving-dot {
                display: none;
            }
            
            .step-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }