/* ===========================
   ROOT VARIABLES & RESET
   =========================== */
:root {
    /* Professional Color Palette from Lovable */
    --primary: hsl(215, 85%, 35%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(215, 85%, 45%);
    --primary-dark: hsl(215, 85%, 25%);
    
    --secondary: hsl(25, 95%, 53%);
    --secondary-foreground: hsl(0, 0%, 100%);
    
    --text-dark: #111827;
    --text-medium: #374151;
    --text-light: #6b7280;
    --text-white: #ffffff;
    
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --muted: hsl(215, 20%, 96%);
    --muted-foreground: hsl(215, 15%, 45%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(215, 85%, 35%) 0%, hsl(215, 85%, 50%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(25, 95%, 53%) 0%, hsl(35, 95%, 60%) 100%);
    --gradient-hero: linear-gradient(135deg, hsl(215, 85%, 35%) 0%, hsl(215, 85%, 45%) 50%, hsl(25, 95%, 53%) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px hsla(215, 85%, 35%, 0.08);
    --shadow-md: 0 4px 16px hsla(215, 85%, 35%, 0.12);
    --shadow-lg: 0 8px 32px hsla(215, 85%, 35%, 0.16);
    --shadow-color: 0 10px 30px -5px rgba(99, 102, 241, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: clamp(3rem, 8vw, 6rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
    width: 100%;
    max-width: 100vw;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    padding-top: 70px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 max(1rem, min(4vw, 2rem));
    width: 100%;
    box-sizing: border-box;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-padding {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: #fff;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    overflow: visible;
    min-height: 70px;
}

.navbar.scrolled {
    box-shadow: var(--shadow-color);
    background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1rem, 2vw, 1.25rem) 0;
    gap: clamp(0.75rem, 1.5vw, 1.5rem);
    width: 100%;
    flex-wrap: nowrap;
    overflow: visible;
}

.logo a {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.logo a:hover {
    color: var(--primary-dark);
}

.logo-text {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo a span {
    color: var(--secondary);
}

.logo-subtitle {
    font-size: 0.5rem;
    font-weight: 500;
    color: var(--text-muted);
    display: block;
    margin-top: 0.1rem;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.875rem, 1.6vw, 1.75rem);
    align-items: center;
    margin: 0;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Navigation CTA Buttons */
.nav-cta {
    display: flex;
    gap: clamp(0.4rem, 0.8vw, 0.75rem);
    align-items: center;
    flex-shrink: 0;
    margin-left: clamp(0.5rem, 1vw, 1rem);
}

.btn-nav-outline,
.btn-nav-primary {
    padding: clamp(0.45rem, 0.9vw, 0.6rem) clamp(0.65rem, 1.2vw, 1rem);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: clamp(0.65rem, 0.9vw, 0.8rem);
    transition: var(--transition);
    white-space: nowrap;
    display: inline-block;
    line-height: 1.2;
}

.btn-nav-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-nav-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-nav-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.btn-nav-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===========================
   NEW HERO SECTION
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-white) 0%, rgba(255,255,255,0.95) 60%, rgba(255,255,255,0.85) 100%);
    z-index: 1;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(215, 220, 245, 0.3) 0%, rgba(255, 240, 220, 0.3) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    max-width: 85%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: clamp(3rem, 6vw, 4rem);
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-outline {
    background: transparent;
    color: var(--primary);
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
}

/* Hero Stats Cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: 900px;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.hero-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.hero-stat-card.accent-stat .stat-icon-wrap {
    background: var(--gradient-accent);
}

.hero-stat-card.accent-stat .stat-value {
    color: var(--secondary);
}

.stat-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--muted-foreground);
    font-weight: 500;
}


/* Navigation CTA Buttons */
.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: clamp(1rem, 2vw, 2rem);
}

.btn-outline {
    padding: clamp(0.45rem, 0.9vw, 0.6rem) clamp(0.65rem, 1.2vw, 1rem);
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: clamp(0.65rem, 0.9vw, 0.8rem);
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.2;
}

.btn-outline:hover {
    background: #2563eb;
    color: #fff;
}

.btn-cta {
    padding: clamp(0.45rem, 0.9vw, 0.6rem) clamp(0.65rem, 1.2vw, 1rem);
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: clamp(0.65rem, 0.9vw, 0.8rem);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    line-height: 1.2;
}

.btn-cta:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}


/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: clamp(4rem, 10vw, 5rem);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: -1;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: var(--text-white);
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: clamp(2rem, 5vw, 2.5rem);
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: clamp(1rem, 3vw, 1.25rem);
    justify-content: center;
    margin-bottom: clamp(3rem, 6vw, 4rem);
    flex-wrap: wrap;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: clamp(0.75rem, 2vw, 0.875rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: clamp(0.9375rem, 2vw, 1rem);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-white);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-color);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary-outline:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

.btn-large {
    padding: clamp(1rem, 2.5vw, 1.125rem) clamp(2rem, 5vw, 2.5rem);
    font-size: clamp(1rem, 2vw, 1.125rem);
}

/* ===========================
   QUICK STATS
   =========================== */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 1.875rem);
    margin-top: clamp(3rem, 6vw, 4rem);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: clamp(1.5rem, 4vw, 1.875rem);
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 1.25rem);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: clamp(2.5rem, 6vw, 3rem);
    color: var(--accent-color);
    flex-shrink: 0;
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.stat-label {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--text-white);
    opacity: 0.9;
}

/* ===========================
   SCROLL INDICATOR
   =========================== */
.scroll-indicator {
    position: absolute;
    bottom: clamp(1.5rem, 4vw, 2rem);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid var(--text-white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--text-white);
    border-radius: 5px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ===========================
   PROFESSIONAL HERO SECTION
   =========================== */
.hero-professional {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 3rem);
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
}

.hero-professional::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.hero-professional .container {
    position: relative;
    z-index: 10;
}

.hero-grid-professional {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.hero-content-professional {
    padding-right: clamp(1rem, 3vw, 2rem);
}

.hero-title-professional {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.gradient-text-professional {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description-professional {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.6;
    color: #64748b;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    max-width: 90%;
}

.hero-buttons-professional {
    display: flex;
    gap: 0.75rem;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    flex-wrap: wrap;
}

.btn-professional-primary {
    background: #2563eb;
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-professional-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.btn-professional-primary i {
    transition: transform 0.3s ease;
}

.btn-professional-primary:hover i {
    transform: translateX(3px);
}

.btn-professional-outline {
    background: #fff;
    color: #1e293b;
    padding: 0.65rem 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-professional-outline:hover {
    background: #f8fafc;
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
}

.stats-cards-professional {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card-professional {
    background: #fff;
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    text-align: left;
    transition: all 0.3s ease;
}

.stat-card-professional:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    border-color: #2563eb;
}

.stat-icon-professional {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number-professional {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.stat-label-professional {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.hero-image-professional {
    position: relative;
    height: clamp(300px, 40vw, 400px);
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
    z-index: 1;
}

.hero-image-placeholder i {
    display: none;
}

.hero-image-placeholder i:nth-child(1) {
    animation-delay: 0s;
}

.hero-image-placeholder i:nth-child(2) {
    animation-delay: 1s;
}

.hero-image-placeholder i:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1200px) {
    .nav-cta {
        display: none;
    }
}

@media (max-width: 1200px) {
    .nav-cta {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-grid-professional {
        gap: 3rem;
    }
    
    .stats-cards-professional {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-professional {
        padding: 5rem 0 3rem;
    }
    
    .hero-grid-professional {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-content-professional {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-description-professional {
        max-width: 100%;
    }
    
    .hero-buttons-professional {
        justify-content: center;
    }
    
    .stats-cards-professional {
        grid-template-columns: 1fr;
    }
    
    .hero-image-professional {
        height: 350px;
        order: -1;
    }
}

/* Hero Centered Variant */
.hero-content-centered {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
    visibility: visible !important;
}

.hero-title-large {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.hero-subtitle-large {
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    line-height: 1.6;
    color: #64748b;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #2563eb;
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.btn-hero-secondary {
    background: #fff;
    color: #1e293b;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.btn-hero-secondary:hover {
    border-color: #2563eb;
    background: #f8fafc;
    color: #2563eb;
    transform: translateY(-2px);
}

.hero-background-professional {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.gradient-orb-professional {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: floatSubtle 30s infinite ease-in-out;
    will-change: transform;
}

.gradient-orb-professional.orb-1 {
    width: 400px;
    height: 400px;
    background: #6366f1;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.gradient-orb-professional.orb-2 {
    width: 350px;
    height: 350px;
    background: #2563eb;
    bottom: -10%;
    right: -5%;
    animation-delay: 10s;
}

.gradient-orb-professional.orb-3 {
    width: 300px;
    height: 300px;
    background: #6366f1;
    top: 40%;
    right: 20%;
    animation-delay: 20s;
}

@keyframes floatSubtle {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

@media (max-width: 768px) {
    .hero-content-centered {
        padding: 0 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .gradient-orb-professional {
        filter: blur(60px);
    }
}


/* ===========================
   SECTION HEADERS
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.section-badge {
    display: inline-block !important;
    padding: 0.4rem 1rem !important;
    background: rgba(99, 102, 241, 0.08) !important;
    border-radius: 50px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: #6366f1 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 0.75rem !important;
    border: 1px solid rgba(99, 102, 241, 0.15) !important;
    visibility: visible !important;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.125rem);
    color: var(--text-light);
    font-weight: 400;
}

.section-description {
    font-size: clamp(0.9rem, 1.8vw, 1.125rem);
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.7;
}

/* ===========================
   OVERVIEW SECTION
   =========================== */
.overview-section {
    background: var(--bg-light);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: clamp(1.25rem, 3vw, 1.75rem);
}

.overview-card {
    background: var(--bg-white);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.card-icon {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--primary);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.overview-card h3 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    color: var(--text-dark);
}

.overview-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    transition: var(--transition);
}

.card-link:hover {
    gap: 0.75rem;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: var(--text-white);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.cta-content p {
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    opacity: 0.9;
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    color: var(--text-white);
}

.cta-text {
    font-size: clamp(0.9rem, 1.8vw, 1.125rem);
    margin-bottom: clamp(1.875rem, 4vw, 2.5rem);
    opacity: 0.95;
    color: var(--text-white);
}

.cta-buttons {
    display: flex;
    gap: clamp(1rem, 3vw, 1.25rem);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: var(--text-white);
    padding: clamp(3rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.footer-logo a {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    display: inline-block;
    text-decoration: none;
}

.footer-logo a span {
    color: var(--accent-color);
}

.footer-description {
    font-size: clamp(0.9375rem, 2vw, 1rem);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.footer-section h4 {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 700;
    margin-bottom: clamp(1rem, 2.5vw, 1.25rem);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: clamp(0.9375rem, 2vw, 1rem);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: clamp(0.9375rem, 2vw, 1rem);
    opacity: 0.9;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-bottom p {
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.footer-bottom-links span {
    opacity: 0.5;
}

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-to-top {
    position: fixed;
    bottom: clamp(1.5rem, 4vw, 2rem);
    right: clamp(1.5rem, 4vw, 2rem);
    width: clamp(3rem, 8vw, 3.5rem);
    height: clamp(3rem, 8vw, 3.5rem);
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay-1 {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.animate-slide-up {
    animation: slideUp 1s ease-out 1.2s backwards;
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        gap: 0;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-cta {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        margin: 0;
        padding: 1rem;
        background: var(--bg-white);
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    
    .nav-cta .btn-outline,
    .nav-cta .btn-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
    .navbar,
    .hero-buttons,
    .scroll-to-top,
    .cta-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
}

/* ===========================
   ENHANCED PAGE STYLES
   =========================== */

/* Hero Small Variant */
.hero-small {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: clamp(8rem, 12vh, 12rem) 0 clamp(3rem, 6vh, 6rem);
    overflow: hidden;
}

.hero-small .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-small .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
}

/* Hero Placement */
.hero-placement {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(245, 158, 11, 0.8) 100%),
                url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&q=80') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: clamp(8rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
    color: white;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-placement::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.hero-placement .container {
    position: relative;
    z-index: 2;
}

.hero-placement .hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-placement .hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Hero Contact */
.hero-contact {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(99, 102, 241, 0.85) 100%),
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: clamp(7rem, 10vw, 9rem) 0 clamp(2.5rem, 5vw, 4rem);
    color: white;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.15) 100%);
}

.hero-contact .container {
    position: relative;
    z-index: 2;
}

.hero-contact .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

.hero-contact .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 0;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-light);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-suffix {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--secondary);
    display: inline-block;
    margin-left: 0.25rem;
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #666;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Programme Modules */
.programme-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.module-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    border-color: #2563eb;
}

.module-icon {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.module-card:hover .module-icon {
    background: #2563eb;
    color: #fff;
}

.module-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.35rem;
}

.module-content p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.module-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Domain Cards */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.domain-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.domain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.domain-header {
    padding: 1.25rem;
    color: #fff;
    text-align: center;
}

.domain-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.domain-header h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    margin: 0;
}

.domain-content {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.domain-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.domain-content li {
    padding: 0.75rem 0;
    color: #444;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.domain-content li i {
    color: #10b981;
    font-size: 1.1rem;
}

.domain-duration {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
    font-weight: 700;
    font-size: 1.1rem;
    color: #6366f1;
    text-align: center;
}

/* Timeline */
.timeline {
    position: relative;
    padding: clamp(2rem, 4vw, 3rem) 0;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6366f1, #ec4899);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.timeline-marker {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.timeline-content {
    background: #fff;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: #1a1a2e;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Placement Process */
.placement-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.process-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.process-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(37, 99, 235, 0.1);
}

.process-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-card h3 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Recruiter Info */
.recruiter-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.recruiter-text h3 {
    color: #1e293b;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.recruiter-text > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.recruiter-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item h4 {
    color: #1a1a2e;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.benefit-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.recruiter-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
}

.industry-card {
    background: #fff;
    padding: 1.25rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    border-color: #2563eb;
}

.industry-card i {
    font-size: 1.75rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.industry-card h4 {
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.industry-card p {
    color: #64748b;
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.highlight-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.highlight-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.highlight-card h3 {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.highlight-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.highlight-card p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

/* Testimonials Slider */
.testimonials-slider {
    overflow: hidden;
    margin-top: 0;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2rem);
    animation: scroll 20s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 350px;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-light);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.testimonial-info p {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: #666;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #f59e0b;
    font-size: 1rem;
}

.testimonial-card > p {
    color: #666;
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    font-style: italic;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.benefit-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.5rem;
}

.benefit-card:hover .benefit-icon {
    background: #2563eb;
    color: #fff;
}

.benefit-card h3 {
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Offering Grid */
.offering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.offering-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.offering-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    color: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.offering-card:hover .offering-number {
    background: #2563eb;
    color: #fff;
}

.offering-card > i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.offering-card h3 {
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.offering-card > p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.offering-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offering-card li {
    padding: 0.35rem 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.offering-card li i {
    color: #10b981;
    font-size: 0.875rem;
}

/* College Testimonials */
.college-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.college-testimonial {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.college-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.testimonial-quote {
    font-size: 2rem;
    color: #dbeafe;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.college-testimonial > p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-info h4 {
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.author-info p {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
}

.college-name {
    color: #2563eb !important;
    font-weight: 600;
}

/* Partnership Timeline */
.partnership-timeline {
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.partnership-step {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.step-number {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.partnership-step:hover .step-number {
    background: #2563eb;
    color: #fff;
}

.step-content {
    flex: 1;
    background: #fff;
    padding: 1.25rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    color: #1a1a2e;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Forms */
.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: #fff;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.form-group {
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(0.75rem, 2vw, 1rem);
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: all 0.3s ease;
}

.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);
    background: linear-gradient(to right, rgba(99, 102, 241, 0.02), rgba(236, 72, 153, 0.02));
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Why Join / Why Cards */
.why-join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.why-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.5rem;
}

.why-card:hover .why-icon {
    background: #2563eb;
    color: #fff;
}

.why-card h3 {
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Support Features */
.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.support-item {
    display: flex;
    gap: 1rem;
    background: #fff;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.support-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.support-item:hover .support-icon {
    background: #2563eb;
    color: #fff;
}

.support-content h3 {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.support-content p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.875rem;
    margin: 0;
}

/* Success Stories */
.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.success-story {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.success-story:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.story-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.story-avatar {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.25rem;
}
    justify-content: center;
    color: #2563eb;
    font-size: 1.25rem;
}

.story-details h4 {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.story-college {
    color: #64748b;
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
}

.story-placement {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.85rem;
}

.story-package {
    color: #10b981;
    margin-left: 0.35rem;
}

.story-text {
    color: #475569;
    line-height: 1.6;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.story-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.story-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #475569;
}

.story-tags i {
    color: #2563eb;
    font-size: 0.7rem;
}

/* Registration Container */
.registration-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.registration-info {
    background: #2563eb;
    padding: 1.5rem;
    border-radius: 12px;
    color: #fff;
}

.registration-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.registration-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.registration-benefits li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.registration-benefits i {
    color: #10b981;
    font-size: 1.2rem;
}

.batch-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.batch-info h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.batch-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.batch-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.batch-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.batch-item p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Hire Benefits & Cards */
.hire-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.hire-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.hire-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.hire-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.5rem;
}

.hire-card:hover .hire-icon {
    background: #2563eb;
    color: #fff;
}

.hire-card h3 {
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hire-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Recruiter Domains */
.recruiter-domains {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.recruiter-domain-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.recruiter-domain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.domain-icon-large {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.recruiter-domain-card:hover .domain-icon-large {
    background: #2563eb;
    color: #fff;
}

.recruiter-domain-card h3 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.recruiter-domain-card > p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.domain-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.domain-skills span {
    padding: 0.35rem 0.75rem;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #475569;
    font-weight: 500;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.metric-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.metric-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.25rem;
}

.metric-card:hover .metric-icon {
    background: #2563eb;
    color: #fff;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.metric-card p {
    color: #666;
    margin: 0;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* Employer Testimonials */
.employer-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.employer-testimonial {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.employer-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.employer-logo {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.employer-testimonial:hover .employer-logo {
    background: #2563eb;
    color: #fff;
}

.employer-testimonial > p {
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.employer-info h4 {
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.employer-info p {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
}

.company-name {
    color: #2563eb !important;
    font-weight: 600;
}

/* Hiring Process */
.hiring-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.hiring-step {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.hiring-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.25rem;
    font-weight: 700;
}

.hiring-step:hover .step-icon {
    background: #2563eb;
    color: #fff;
}

.hiring-step h3 {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hiring-step p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.875rem;
    margin: 0;
}

/* Resource Categories */
.resource-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}

.resource-category {
    background: #fff;
    padding: clamp(2rem, 4vw, 2.5rem);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.resource-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.resource-category h3 {
    color: #1a1a2e;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin-bottom: 1rem;
}

.resource-category p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: #4f46e5;
    gap: 0.75rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-color);
    border-color: var(--primary-light);
}

.blog-image {
    position: relative;
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #6366f1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.blog-content h3 {
    color: #1a1a2e;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #999;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #4f46e5;
    gap: 0.75rem;
}

/* Downloads Grid */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}

.download-card {
    background: #fff;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-color);
    border-color: var(--primary-light);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    flex-shrink: 0;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    color: #1a1a2e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.download-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.download-stats {
    color: #999;
    font-size: 0.85rem;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Webinar Grid */
.webinar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
}

.webinar-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.webinar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.webinar-thumbnail {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 4rem;
    cursor: pointer;
}

.webinar-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
}

.webinar-details {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.webinar-tag {
    display: inline-block;
    background: #f3f4f6;
    color: #6366f1;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.webinar-details h4 {
    color: #1a1a2e;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.webinar-details > p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.webinar-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #999;
}

.webinar-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 25px;
    color: #fff;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.newsletter-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    opacity: 0.9;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

/* Section Styles */
.section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section.bg-light {
    background: #f9fafb;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.contact-card {
    background: #fff;
    padding: clamp(1.5rem, 3.5vw, 2rem);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-color);
    border-color: var(--primary-light);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-cool);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

.contact-card h3 {
    color: #1a1a2e;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin: 0.5rem 0;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-link:hover {
    color: #4f46e5;
    gap: 0.75rem;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 0;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-form-section,
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: #fff;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
    color: #1a1a2e;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: #6366f1;
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.info-item strong {
    display: block;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.info-item p {
    margin: 0;
    color: #666;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    color: #1a1a2e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #6366f1;
    color: #fff;
    transform: translateX(5px);
}

.social-btn i {
    font-size: 1.5rem;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #6366f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: #6366f1;
    color: #fff;
}

.map-container {
    margin-top: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: clamp(1.2rem, 3vw, 1.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    color: #1a1a2e;
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #6366f1;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 clamp(1.2rem, 3vw, 1.5rem) clamp(1.2rem, 3vw, 1.5rem);
    display: none;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .module-card,
    .support-item,
    .download-card {
        flex-direction: column;
        text-align: center;
    }
    
    .partnership-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer Enhancements */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-col h4 {
    color: #fff;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #f59e0b;
    transform: translateX(5px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #fff;
}

.footer-logo i {
    color: #f59e0b;
}

.footer-col > p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

/* Enhanced Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-padding-top: 80px;
}

/* Print Friendly */
@media print {
    .navbar,
    .footer,
    .btn,
    .cta-section {
        display: none !important;
    }
}

/* ===========================
   ENHANCED PLACEMENT PAGE STYLES
   =========================== */

/* Placement Stats Showcase */
.placement-stats-showcase {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 1.5rem !important;
    margin-top: 1.5rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.placement-stat-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 1.75rem 1.5rem !important;
    text-align: center !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease !important;
    border: 1px solid #e5e7eb !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    visibility: visible !important;
}

.placement-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #2563eb;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.placement-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.placement-stat-card:hover::before {
    transform: scaleX(1);
}

.placement-stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2563eb;
    transition: all 0.3s ease;
}

.placement-stat-card:hover .placement-stat-icon {
    background: #2563eb;
    color: #fff;
}

.placement-stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    color: #64748b;
}

.placement-stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Placement Services Grid */
.placement-services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 1.5rem !important;
    margin-top: 1.5rem !important;
    visibility: visible !important;
}

.placement-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.placement-service-card::before {
    display: none;
}

.placement-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.service-icon-wrapper {
    margin-bottom: 1rem;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.placement-service-card:hover .service-icon {
    transform: scale(1.05);
}

.placement-service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.placement-service-card > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #475569;
    font-size: 0.95rem;
}

.service-features i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    position: relative;
}

.process-number-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    position: relative;
    z-index: 2;
}

.process-content-modern {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s ease;
}

.process-step:hover .process-content-modern {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.process-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transition: transform 0.4s ease;
}

.process-step:hover .process-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.process-content-modern h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.process-content-modern > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.process-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.process-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
    padding: 0.5rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.process-detail-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

.process-detail-item i {
    color: #6366f1;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.process-connector {
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(180deg, #6366f1, #ec4899);
    opacity: 0.3;
}

/* Recruiter Showcase */
.recruiter-showcase {
    margin-top: 3rem;
}

.recruiter-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.recruiter-category-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.recruiter-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.recruiter-category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.recruiter-category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.recruiter-category-card:hover .category-icon {
    transform: scale(1.1) rotate(-5deg);
}

.recruiter-category-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.category-count {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.category-label {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.category-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.category-examples .tag {
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    color: #6366f1;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.category-examples .tag:hover {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: #ffffff;
    transform: scale(1.05);
}

/* Recruiter Highlights */
.recruiter-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-banner {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
    transition: all 0.4s ease;
}

.highlight-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.4);
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #ffffff;
}

.highlight-content i {
    font-size: 2.5rem;
    flex-shrink: 0;
    opacity: 0.9;
}

.highlight-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Success Stories Modern */
.success-stories-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-story-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

.success-story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.story-header {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.story-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.story-avatar {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.story-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.story-company {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.story-company i {
    font-size: 0.85rem;
}

.story-quote {
    color: #64748b;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid #6366f1;
}

.story-rating {
    display: flex;
    gap: 0.25rem;
}

.story-rating i {
    color: #f59e0b;
    font-size: 1rem;
}

/* Placement Highlights Grid */
.placement-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.placement-highlight-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.placement-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(99, 102, 241, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.placement-highlight-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.3);
}

.placement-highlight-card:hover::before {
    opacity: 1;
}

.highlight-icon-modern {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.placement-highlight-card:hover .highlight-icon-modern {
    transform: scale(1.15) rotate(10deg);
}

.highlight-value-large {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.placement-highlight-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.placement-highlight-card > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.highlight-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    z-index: 1;
}

/* Additional Stats */
.additional-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.1);
}

.stat-item-modern {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.stat-item-modern i {
    font-size: 2.5rem;
    color: #6366f1;
    flex-shrink: 0;
}

.stat-item-modern h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.stat-item-modern p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Background Gradient Light */
.bg-gradient-light {
    background: linear-gradient(180deg, #f9fafb 0%, rgba(99, 102, 241, 0.02) 50%, #f9fafb 100%);
}

/* Responsive Design for Placement Page */
@media (max-width: 768px) {
    .placement-stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .placement-stat-card {
        padding: 2rem 1.5rem;
    }

    .placement-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .placement-stat-value {
        font-size: 2.25rem;
    }

    .placement-services-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-connector {
        display: none;
    }

    .recruiter-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .recruiter-category-card {
        padding: 2rem 1.5rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .success-stories-modern {
        grid-template-columns: 1fr;
    }

    .placement-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .additional-stats {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .placement-stats-showcase {
        grid-template-columns: 1fr;
    }

    .recruiter-categories {
        grid-template-columns: 1fr;
    }

    .placement-highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-value-large {
        font-size: 2.25rem;
    }
}

/* ===========================
   SERVICES GRID - NEW PLACEMENT SERVICES
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #2563eb;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonials Modern Styles */
.testimonials-slider {
    overflow: hidden;
    padding: 0.5rem 0;
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.15rem 0;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: #2563eb;
    font-weight: 500;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
}

.testimonial-rating i {
    color: #f59e0b;
    font-size: 0.9rem;
}

.testimonial-card > p {
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
}

/* Highlight Value Styles */
.highlight-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}
