/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --purple-color: #8b5cf6;
    --pink-color: #ec4899;
    --green-color: #22c55e;
    --orange-color: #fb923c;
    --teal-color: #14b8a6;
    --red-color: #f43f5e;
    --blue-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-text: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
    --gradient-orange: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
    --gradient-teal: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    --gradient-red: linear-gradient(135deg, #ef4444 0%, #f43f5e 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-purple: 0 10px 15px -3px rgba(139, 92, 246, 0.3);
    --shadow-green: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
    --shadow-orange: 0 10px 15px -3px rgba(245, 158, 11, 0.3);
    --shadow-teal: 0 10px 15px -3px rgba(20, 184, 166, 0.3);
    --shadow-red: 0 10px 15px -3px rgba(239, 68, 68, 0.3);
    --shadow-blue: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
    --transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: var(--gradient-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--green-color);
    border: 2px solid var(--green-color);
}

.btn-secondary:hover {
    background: var(--gradient-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-light);
}

.btn-accent:hover {
    background: var(--gradient-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.user-type-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.user-type-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
}

.hero-cta-subtitle {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 1;
    text-align: center;
    color: #ffeb3b;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8b5cf6 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat p {
    opacity: 0.8;
    color: var(--white);
}

/* Floating Cards */
.floating-cards {
    position: relative;
    height: 400px;
}

.card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
    border-color: var(--purple-color);
}

.card-1 i {
    color: var(--purple-color);
}

.card-2 {
    top: 120px;
    right: 0;
    animation-delay: 2s;
    border-color: var(--green-color);
}

.card-2 i {
    color: var(--green-color);
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
    border-color: var(--orange-color);
}

.card-3 i {
    color: var(--orange-color);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 300px;
    background: var(--gradient-bg);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-top: 4px solid var(--primary-color);
}

.service-card:nth-child(1) {
    border-top-color: var(--purple-color);
}

.service-card:nth-child(1):hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-purple);
    border-color: var(--purple-color);
}

.service-card:nth-child(1) .service-icon {
    background: var(--gradient-purple);
}

.service-card:nth-child(2) {
    border-top-color: var(--green-color);
}

.service-card:nth-child(2):hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-green);
    border-color: var(--green-color);
}

.service-card:nth-child(2) .service-icon {
    background: var(--gradient-green);
}

.service-card:nth-child(3) {
    border-top-color: var(--orange-color);
}

.service-card:nth-child(3):hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-orange);
    border-color: var(--orange-color);
}

.service-card:nth-child(3) .service-icon {
    background: var(--gradient-orange);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Jobs Section */
.jobs {
    padding: 80px 0;
    background: var(--light-bg);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.job-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.job-card:nth-child(even) {
    border-left-color: var(--secondary-color);
}

.job-card:nth-child(3n) {
    border-left-color: var(--orange-color);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-title h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.job-type {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 8px;
    display: inline-block;
}

.job-salary {
    font-weight: 600;
    color: var(--green-color);
    font-size: 1.1rem;
}

.job-details {
    margin-bottom: 20px;
}

.job-details p {
    margin: 8px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-details i {
    color: var(--primary-color);
    width: 16px;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.skill-tag {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid var(--primary-color);
}

.job-actions {
    display: flex;
    gap: 10px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.jobs-footer {
    text-align: center;
    margin-top: 50px;
}

.jobs-footer p {
    margin-top: 20px;
    color: var(--text-light);
}

.jobs-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.jobs-footer a:hover {
    text-decoration: underline;
}

/* Expertise Section */
.expertise {
    padding: 80px 0;
    background: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.expertise-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
}

.expertise-card:nth-child(1) {
    border-left-color: var(--blue-color);
}

.expertise-card:nth-child(1):hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-blue);
}

.expertise-card:nth-child(1) .expertise-icon {
    background: var(--gradient-blue);
}

.expertise-card:nth-child(2) {
    border-left-color: var(--teal-color);
}

.expertise-card:nth-child(2):hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-teal);
}

.expertise-card:nth-child(2) .expertise-icon {
    background: var(--gradient-teal);
}

.expertise-card:nth-child(3) {
    border-left-color: var(--red-color);
}

.expertise-card:nth-child(3):hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-red);
}

.expertise-card:nth-child(3) .expertise-icon {
    background: var(--gradient-red);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.expertise-icon i {
    font-size: 2rem;
    color: var(--white);
}

.expertise-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.expertise-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expertise-category {
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.expertise-category h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.expertise-category p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: var(--white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.story-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.story-card:nth-child(1) {
    border-left-color: var(--purple-color);
}

.story-card:nth-child(2) {
    border-left-color: var(--green-color);
}

.story-card:nth-child(3) {
    border-left-color: var(--teal-color);
}

.story-card:nth-child(4) {
    border-left-color: var(--orange-color);
}

.story-type {
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.story-card:nth-child(1) .story-type {
    background: var(--purple-color);
}

.story-card:nth-child(2) .story-type {
    background: var(--green-color);
}

.story-card:nth-child(3) .story-type {
    background: var(--teal-color);
}

.story-card:nth-child(4) .story-type {
    background: var(--orange-color);
}

.story-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.story-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.story-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.story-profile div strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.story-profile div span {
    color: var(--text-light);
    font-size: 0.8rem;
}

.outcome-badge {
    background: var(--gradient-bg);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.metric-card {
    text-align: center;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 16px;
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.metric-card:nth-child(1) {
    border-top-color: var(--purple-color);
}

.metric-card:nth-child(2) {
    border-top-color: var(--green-color);
}

.metric-card:nth-child(3) {
    border-top-color: var(--orange-color);
}

.metric-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1rem;
}

.metric-value {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: bold;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.metric-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(99, 102, 241, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.why-choose .container {
    position: relative;
    z-index: 2;
}

.why-choose .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-choose .section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
}

.why-choose .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.why-choose .section-header p {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.reasons-container, .testimonials-container {
    position: relative;
}

.reasons-header, .testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reasons-header h3, .testimonials-header h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reasons-header p, .testimonials-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.testimonials-bg-pattern {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.testimonials-bg-pattern i {
    font-size: 2rem;
    color: #6366f1;
}

/* Enhanced Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.reason-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color-1), var(--card-color-2));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Enhanced Color Schemes */
.reason-purple {
    --card-color-1: #8b5cf6;
    --card-color-2: #a855f7;
    --icon-bg: linear-gradient(135deg, #8b5cf6, #a855f7);
    --text-accent: #8b5cf6;
}

.reason-green {
    --card-color-1: #10b981;
    --card-color-2: #059669;
    --icon-bg: linear-gradient(135deg, #10b981, #059669);
    --text-accent: #10b981;
}

.reason-orange {
    --card-color-1: #f59e0b;
    --card-color-2: #d97706;
    --icon-bg: linear-gradient(135deg, #f59e0b, #d97706);
    --text-accent: #f59e0b;
}

.reason-teal {
    --card-color-1: #14b8a6;
    --card-color-2: #0d9488;
    --icon-bg: linear-gradient(135deg, #14b8a6, #0d9488);
    --text-accent: #14b8a6;
}

.reason-blue {
    --card-color-1: #3b82f6;
    --card-color-2: #2563eb;
    --icon-bg: linear-gradient(135deg, #3b82f6, #2563eb);
    --text-accent: #3b82f6;
}

.reason-pink {
    --card-color-1: #ec4899;
    --card-color-2: #db2777;
    --icon-bg: linear-gradient(135deg, #ec4899, #db2777);
    --text-accent: #ec4899;
}

/* Enhanced Reason Icon */
.reason-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.reason-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reason-card:hover .reason-icon::before {
    opacity: 1;
}

.reason-icon i {
    font-size: 2.2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.reason-card:hover .reason-icon i {
    transform: scale(1.1);
}

/* Enhanced Card Content */
.reason-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 18px;
    line-height: 1.3;
    position: relative;
}

.reason-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--icon-bg);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.reason-card:hover h3::after {
    width: 60px;
}

.reason-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    transition: color 0.3s ease;
}

.reason-card:hover p {
    color: #475569;
}

/* Enhanced Testimonials Container */
.testimonials-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 60px 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.testimonials-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -10px) rotate(1deg); }
    50% { transform: translate(10px, -5px) rotate(-1deg); }
    75% { transform: translate(-5px, 10px) rotate(1deg); }
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.testimonials-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
}

.testimonial {
    display: none;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.6s ease-in-out;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.quote-icon i {
    font-size: 1.5rem;
    color: white;
}

.testimonial p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.author-avatar i {
    font-size: 1.2rem;
    color: white;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.95rem;
    color: #64748b;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Enhanced Testimonial Controls */
.testimonial-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 0 20px;
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

.dot.active::before {
    opacity: 0.3;
}

.dot:hover {
    background: #6366f1;
    transform: scale(1.1);
}

.testimonial-nav {
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
}

.nav-btn:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Portals Section */
.portals {
    padding: 80px 0;
    background: var(--white);
}

.portals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.portal-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    border-top: 6px solid var(--primary-color);
    box-shadow: var(--shadow-light);
}

.portal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.candidate-portal {
    border-top-color: var(--purple-color);
}

.candidate-portal:hover {
    box-shadow: var(--shadow-purple);
}

.client-portal {
    border-top-color: var(--green-color);
}

.client-portal:hover {
    box-shadow: var(--shadow-green);
}

.staff-portal {
    border-top-color: var(--orange-color);
}

.staff-portal:hover {
    box-shadow: var(--shadow-orange);
}

.portal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-bg);
}

.candidate-portal .portal-icon {
    background: var(--gradient-purple);
}

.client-portal .portal-icon {
    background: var(--gradient-green);
}

.staff-portal .portal-icon {
    background: var(--gradient-orange);
}

.portal-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.portal-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.portal-card p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.portal-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    text-align: left;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.candidate-portal .feature-item i {
    color: var(--purple-color);
}

.client-portal .feature-item i {
    color: var(--green-color);
}

.staff-portal .feature-item i {
    color: var(--orange-color);
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.portal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.coming-soon, .internal-use {
    background: var(--gradient-bg);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.coming-soon {
    background: var(--gradient-teal);
}

.internal-use {
    background: var(--gradient-red);
}

.portals-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.integration-info h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.integration-info p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item:nth-child(1) i {
    color: var(--purple-color);
}

.contact-item:nth-child(2) i {
    color: var(--green-color);
}

.contact-item:nth-child(3) i {
    color: var(--orange-color);
}

.contact-item:nth-child(4) i {
    color: var(--teal-color);
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:nth-child(1) {
    background: var(--gradient-purple);
}

.social-links a:nth-child(2) {
    background: var(--gradient-green);
}

.social-links a:nth-child(3) {
    background: var(--gradient-orange);
}

.social-links a:nth-child(4) {
    background: var(--gradient-teal);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .floating-cards {
        height: 200px;
    }

    .card {
        position: relative;
        margin-bottom: 1rem;
    }

    .about-content,
    .why-us-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .portals-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        flex-direction: row !important;
    }

    .step-number {
        margin: 0 20px 0 0;
    }

    .step-content {
        max-width: none;
        margin: 0 !important;
    }

    .process-stats {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .user-type-buttons {
        flex-direction: column;
        align-items: center;
    }

    .user-type-buttons .btn {
        width: 200px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .success-metrics {
        grid-template-columns: 1fr;
    }

    .story-details {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .why-us-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
    }

    .author-info {
        text-align: center;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .container {
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .about,
    .services,
    .why-us,
    .contact {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .contact-form,
    .testimonials {
        padding: 1.5rem;
    }

    .image-placeholder {
        width: 100%;
        height: 250px;
    }
}

/* Animation for scroll effects */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
} 

/* Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(99, 102, 241, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(99,102,241,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.process .section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
}

.process .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.process .section-header p {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.process-step {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--step-color-1), var(--step-color-2));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Step Color Schemes */
.process-step:nth-child(1) {
    --step-color-1: #8b5cf6;
    --step-color-2: #a855f7;
}

.process-step:nth-child(2) {
    --step-color-1: #10b981;
    --step-color-2: #059669;
}

.process-step:nth-child(3) {
    --step-color-1: #f59e0b;
    --step-color-2: #d97706;
}

.process-step:nth-child(4) {
    --step-color-1: #14b8a6;
    --step-color-2: #0d9488;
}

.process-step:nth-child(5) {
    --step-color-1: #3b82f6;
    --step-color-2: #2563eb;
}

.process-step:nth-child(6) {
    --step-color-1: #ec4899;
    --step-color-2: #db2777;
}

/* Step Number */
.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--step-color-1), var(--step-color-2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Step Content */
.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--step-color-1), var(--step-color-2));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.process-step:hover .step-content h3::after {
    width: 60px;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.process-step:hover .step-content p {
    color: #475569;
}

/* Step Details */
.step-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-details span {
    font-size: 0.95rem;
    color: #64748b;
    padding-left: 20px;
    position: relative;
    transition: color 0.3s ease;
}

.step-details span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--step-color-1), var(--step-color-2));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.process-step:hover .step-details span {
    color: #374151;
}

.process-step:hover .step-details span::before {
    transform: translateY(-50%) scale(1.5);
}

/* Process Stats */
.process-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.stat-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.stat-item:hover h4 {
    color: #475569;
}

.stat-item span {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process {
        padding: 60px 0;
    }
    
    .process .section-header h2 {
        font-size: 2.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 25px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .step-details {
        align-items: center;
    }
    
    .step-details span {
        padding-left: 0;
        padding-top: 20px;
    }
    
    .step-details span::before {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
    
    .process-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .stat-item span {
        font-size: 1.8rem;
    }
} 