/* Program Pages Specific Styles */

/* Modern Placement Hero Section */
.modern-placement-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.placement-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(30, 41, 59, 0.5) 50%, rgba(51, 65, 85, 0.6) 100%),
        url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80'),
        url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.placement-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(30, 41, 59, 0.4) 100%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: 2;
}

.modern-placement-hero .container {
    position: relative;
    z-index: 3;
}

.placement-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: white;
}

.placement-hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #fbbf24;
}

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

.placement-hero-text .highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.placement-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 1.125rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.placement-stats-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.stat-card.primary .stat-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.stat-card.success .stat-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.stat-card.warning .stat-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.stat-card.info .stat-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.stat-card.purple .stat-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.stat-card.orange .stat-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive adjustments for placement hero */
@media (max-width: 768px) {
    .modern-placement-hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .placement-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .placement-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .placement-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .placement-hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .placement-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Program Hero Section */
.program-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.75rem;
}

.program-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.program-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.meta-item i {
    color: #2563eb;
}

.program-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.program-image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.program-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.program-image-placeholder i {
    font-size: 3rem;
    color: white;
    z-index: 1;
}

/* Different program image styles */
.program-image-placeholder[data-program="fullstack"] {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.program-image-placeholder[data-program="datascience"] {
    background: linear-gradient(135deg, #059669, #047857);
}

.program-image-placeholder[data-program="cloud"] {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.program-image-placeholder[data-program="cybersecurity"] {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.program-image-placeholder[data-program="mobile"] {
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

.program-image-placeholder[data-program="marketing"] {
    background: linear-gradient(135deg, #db2777, #be185d);
}

/* Program Overview */
.program-overview {
    padding: 5rem 0;
    background-color: #ffffff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-content h2 {
    margin-bottom: 1.5rem;
}

.overview-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.program-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-item i {
    width: 50px;
    height: 50px;
    background-color: #eff6ff;
    color: #2563eb;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-item h3 {
    margin-bottom: 0.5rem;
    color: #111827;
}

.highlight-item p {
    margin: 0;
    color: #6b7280;
}

.overview-stats {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    height: fit-content;
}

.overview-stats h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #111827;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.stat-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Curriculum Section */
.curriculum {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.curriculum h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.curriculum-modules {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.module {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.module-header {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.module-number {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.module-header h3 {
    flex: 1;
    margin: 0;
}

.module-duration {
    font-size: 0.875rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
}

.module-content {
    padding: 2rem;
}

.module-content p {
    margin-bottom: 1.5rem;
    color: #6b7280;
}

.module-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.topic {
    background-color: #eff6ff;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.module-project {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid #2563eb;
}

.module-project i {
    color: #2563eb;
    font-size: 1.25rem;
}

.module-project span {
    font-weight: 500;
    color: #374151;
}

/* Career Outcomes */
.career-outcomes {
    padding: 5rem 0;
    background-color: #ffffff;
}

.career-outcomes h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.outcome-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border-top: 4px solid #2563eb;
}

.outcome-card h3 {
    margin-bottom: 1.5rem;
    color: #111827;
}

.outcome-card ul {
    list-style: none;
    padding: 0;
}

.outcome-card li {
    padding: 0.5rem 0;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.outcome-card li:last-child {
    border-bottom: none;
}

.outcome-card li::before {
    content: '✓';
    color: #2563eb;
    font-weight: bold;
    margin-right: 0.5rem;
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.company-logos span {
    background-color: white;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.salary-range {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.salary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    border-left: 4px solid #2563eb;
}

.salary-label {
    font-weight: 500;
    color: #374151;
}

.salary-amount {
    font-weight: 700;
    color: #2563eb;
    font-size: 1.125rem;
}

/* Program CTA Section */
.program-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
}

.program-cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.program-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.program-cta-section .btn-primary {
    background-color: white;
    color: #2563eb;
}

.program-cta-section .btn-primary:hover {
    background-color: #f8fafc;
}

.program-cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.program-cta-section .btn-secondary:hover {
    background-color: white;
    color: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .program-hero {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .program-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-hero h1 {
        font-size: 2.5rem;
    }
    
    .program-meta {
        justify-content: center;
        gap: 1rem;
    }
    
    .program-cta {
        justify-content: center;
    }
    
    .program-image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .module-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .module-header h3 {
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .program-hero h1 {
        font-size: 2rem;
    }
    
    .program-image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .program-image-placeholder i {
        font-size: 2rem;
    }
    
    .module-content {
        padding: 1.5rem;
    }
    
    .outcome-card {
        padding: 1.5rem;
    }
}

/* Template Cards Styles */
.placement-templates {
    padding: 5rem 0;
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Programming Animation Background */
.placement-templates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.placement-templates .container {
    position: relative;
    z-index: 1;
}

/* Floating Programming Elements */
.placement-templates::after {
    content: '{ } < /> [ ] ( ) => function var let const if else return class import export async await';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(102, 126, 234, 0.1);
    white-space: pre-wrap;
    word-spacing: 2rem;
    line-height: 3;
    padding: 2rem;
    animation: floatCode 60s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatCode {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Animated Code Symbols */
.code-symbol {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: rgba(102, 126, 234, 0.15);
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.code-symbol:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    font-size: 2rem;
}

.code-symbol:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    font-size: 1.5rem;
}

.code-symbol:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    font-size: 1.8rem;
}

.code-symbol:nth-child(4) {
    bottom: 20%;
    right: 25%;
    animation-delay: 6s;
    font-size: 1.3rem;
}

.code-symbol:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 8s;
    font-size: 1.6rem;
}

.code-symbol:nth-child(6) {
    top: 60%;
    right: 10%;
    animation-delay: 10s;
    font-size: 1.4rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.1;
    }
}

/* Pulsing Code Dots */
.code-dots {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: pulse 3s infinite ease-in-out;
}

.code-dots:nth-child(7) {
    top: 15%;
    left: 30%;
    animation-delay: 0s;
}

.code-dots:nth-child(8) {
    top: 25%;
    right: 40%;
    animation-delay: 0.5s;
}

.code-dots:nth-child(9) {
    bottom: 40%;
    left: 60%;
    animation-delay: 1s;
}

.code-dots:nth-child(10) {
    bottom: 15%;
    right: 50%;
    animation-delay: 1.5s;
}

.code-dots:nth-child(11) {
    top: 70%;
    left: 15%;
    animation-delay: 2s;
}

.code-dots:nth-child(12) {
    top: 80%;
    right: 20%;
    animation-delay: 2.5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(2);
        opacity: 0.8;
    }
}

/* Code Flow Lines */
.code-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    animation: flowLine 8s infinite linear;
}

.code-line:nth-child(13) {
    top: 20%;
    left: 0;
    width: 100%;
    animation-delay: 0s;
}

.code-line:nth-child(14) {
    top: 60%;
    left: 0;
    width: 100%;
    animation-delay: 2s;
}

.code-line:nth-child(15) {
    top: 80%;
    left: 0;
    width: 100%;
    animation-delay: 4s;
}

@keyframes flowLine {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.templates-header {
    text-align: center;
    margin-bottom: 60px;
}

.templates-header .journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.templates-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
    text-shadow: none;
}

.templates-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 400;
}

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

.template-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.template-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-gradient);
    border-radius: 24px 24px 0 0;
}

.template-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: var(--card-gradient);
    color: white;
    transition: all 0.3s ease;
}

.template-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    margin-bottom: 25px;
}

.card-features li {
    color: #4b5563;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.card-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.price-free {
    color: #10b981;
}

.price-premium {
    color: #8b5cf6;
}

.price-enterprise {
    color: #f59e0b;
}

.card-button {
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--card-gradient);
    color: white;
}

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

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--card-gradient);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Card Type Variations */
.card-basic {
    --card-gradient: linear-gradient(135deg, #10b981, #059669);
}

.card-professional {
    --card-gradient: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.card-enterprise {
    --card-gradient: linear-gradient(135deg, #f59e0b, #d97706);
}

.card-custom {
    --card-gradient: linear-gradient(135deg, #ef4444, #dc2626);
}

.card-internship {
    --card-gradient: linear-gradient(135deg, #3b82f6, #2563eb);
}

.card-freelance {
    --card-gradient: linear-gradient(135deg, #06b6d4, #0891b2);
}

/* Filter Buttons */
.filter-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border-radius: 25px;
    background: #f9fafb;
    color: #4b5563;
    border: 2px solid #e5e7eb;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
}

/* Animation Classes */
.card-animate {
    animation: slideInUp 0.6s ease forwards;
}

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

.card-hidden {
    display: none;
}

/* Animated CTA Section */
.animated-cta {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 4rem 2rem;
    border-radius: 24px;
    margin: 2rem 0;
    overflow: hidden;
    min-height: 400px;
}

.coding-animation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Terminal Animation */
.code-terminal {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 300px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    backdrop-filter: blur(10px);
    animation: slideInLeft 1s ease-out;
}

.terminal-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px 8px 0 0;
    display: flex;
    gap: 6px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27ca3f; }

.terminal-body {
    padding: 12px;
    min-height: 100px;
}

.code-line {
    margin: 8px 0;
    color: #00ff00;
}

.prompt {
    color: #60a5fa;
    margin-right: 8px;
}

.typing-text {
    overflow: hidden;
    border-right: 2px solid #00ff00;
    white-space: nowrap;
    animation: typing 3s steps(30) infinite, blink 1s infinite;
}

@keyframes typing {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Floating Code Snippets */
.floating-code {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.code-snippet {
    position: absolute;
    background: rgba(30, 41, 59, 0.9);
    padding: 12px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 1.4;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: floatCode var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0;
}

.code-snippet:nth-child(1) {
    top: 10%;
    right: 10%;
}

.code-snippet:nth-child(2) {
    top: 40%;
    right: 5%;
}

.code-snippet:nth-child(3) {
    bottom: 20%;
    right: 15%;
}

.keyword { color: #c792ea; }
.function-name { color: #82aaff; }
.string { color: #c3e88d; }
.variable { color: #eeffff; }
.class-name { color: #ffcb6b; }
.method { color: #89ddff; }

@keyframes floatCode {
    0%, 100% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    20%, 80% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Matrix Rain Effect */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    opacity: 0.1;
}

.matrix-column {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #00ff00;
    animation: matrixRain var(--duration) linear infinite;
    animation-delay: var(--delay);
    writing-mode: vertical-lr;
    white-space: nowrap;
}

@keyframes matrixRain {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Progress Indicators */
.progress-indicators {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 250px;
}

.progress-bar {
    margin: 10px 0;
    opacity: 0;
    animation: slideInProgress 1s ease-out forwards;
    animation-delay: var(--delay);
}

.progress-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin-bottom: 4px;
    display: block;
}

.progress-fill {
    height: 6px;
    background: linear-gradient(90deg, #60a5fa, #34d399);
    border-radius: 3px;
    width: 0;
    animation: fillProgress 2s ease-out forwards;
    animation-delay: calc(var(--delay) + 0.5s);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes slideInProgress {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fillProgress {
    to {
        width: var(--width);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Animated Buttons */
.animated-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.animated-btn .btn-animation {
    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 ease;
}

.animated-btn:hover .btn-animation {
    left: 100%;
}

.animated-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Template Cards Mobile Responsive */
@media (max-width: 768px) {
    .templates-header h2 {
        font-size: 2.2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .template-card {
        padding: 24px;
    }
    
    .filter-section {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    /* Animated CTA Mobile */
    .animated-cta {
        padding: 2rem 1rem;
        min-height: 300px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .code-terminal {
        width: 250px;
        font-size: 10px;
    }
    
    .code-snippet {
        font-size: 9px;
        padding: 8px;
    }
    
    .progress-indicators {
        width: 200px;
    }
}

/* Light Animated Hiring Partners Section */
.hiring-partners-animated {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hiring-partners-animated .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.partners-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Light Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.company-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(59, 130, 246, 0.1);
    animation: floatLight 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

.company-icon:nth-child(1) { top: 10%; left: 5%; }
.company-icon:nth-child(2) { top: 20%; right: 10%; }
.company-icon:nth-child(3) { bottom: 30%; left: 8%; }
.company-icon:nth-child(4) { bottom: 15%; right: 15%; }
.company-icon:nth-child(5) { top: 60%; left: 3%; }
.company-icon:nth-child(6) { top: 80%; right: 5%; }

@keyframes floatLight {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Light Connection Lines */
.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    animation: flowLight 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.line.horizontal {
    height: 1px;
    width: 100%;
    top: 30%;
}

.line.vertical {
    width: 1px;
    height: 100%;
    left: 50%;
    transform: rotate(90deg);
}

.line.diagonal {
    height: 1px;
    width: 70%;
    top: 70%;
    left: 15%;
    transform: rotate(45deg);
}

@keyframes flowLight {
    0%, 100% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Header Section */
.animated-header {
    text-align: center;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
        transform: scale(1.05);
    }
}

.animated-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.highlight-animated {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Stats */
.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 2rem auto 4rem auto;
    flex-wrap: wrap;
    max-width: 900px;
}

.trust-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out;
}

.trust-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Partners Showcase */
.partners-showcase {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    max-width: 1200px;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.category-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.category-tab.active {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.category-tab i {
    font-size: 1.1rem;
}

.category-tab.active i {
    color: white;
}

/* Category Content */
.partner-category-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-align: center;
    margin: 0 auto;
}

.partner-category-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease-out;
}

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

.partner-category-modern {
    margin-bottom: 4rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.category-title i {
    color: #3b82f6;
    font-size: 1.3rem;
}

.partners-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin: 0 auto;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
}

.partner-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    min-width: 250px;
}

.partner-card-modern:nth-child(1) { animation-delay: 0.1s; }
.partner-card-modern:nth-child(2) { animation-delay: 0.2s; }
.partner-card-modern:nth-child(3) { animation-delay: 0.3s; }
.partner-card-modern:nth-child(4) { animation-delay: 0.4s; }

.partner-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
    background: rgba(255, 255, 255, 1);
}

.partner-logo-modern {
    position: relative;
    margin-bottom: 1rem;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.company-glow {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.partner-card-modern:hover .company-glow {
    opacity: 1;
    animation: pulse 2s infinite;
}

.partner-card-modern:hover .logo-placeholder {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.partner-details {
    text-align: center;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.partner-details h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-align: center;
}

.partner-roles {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1rem;
    display: block;
    line-height: 1.5;
    text-align: center;
}

.hire-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1rem;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.hire-counter i {
    color: #3b82f6;
}

.success-indicator {
    margin-top: 0.75rem;
    background: #f1f5f9;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.success-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 3px;
    width: 0;
    animation: fillBar 2s ease-out forwards;
    animation-delay: 0.5s;
    position: relative;
}

.success-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmerBar 2s infinite;
}

@keyframes fillBar {
    to {
        width: var(--width);
    }
}

@keyframes shimmerBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Company Pages Styles */

/* About Us Page */
.modern-about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=2560&h=1440&fit=crop&crop=center') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
}

.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.about-hero-content h1,
.about-hero-content .hero-subtitle {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-vision {
    padding: 6rem 0;
    background: #f8fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
}

.mission-card .card-icon, .vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.our-story {
    padding: 6rem 0;
    background: white;
}

.story-timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 10;
}

.timeline-content {
    flex: 1;
    padding: 0 3rem;
}

.timeline-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.our-values {
    padding: 6rem 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.leadership-team {
    padding: 6rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.member-social a:hover {
    background: #1d4ed8;
}

.about-cta {
    padding: 6rem 0;
    background: #1f2937;
    color: white;
    text-align: center;
}

/* Careers Page */
.modern-careers-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    overflow: hidden;
}

.careers-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1573164713714-d95e436ab8d6?w=2560&h=1440&fit=crop&crop=center') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.careers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.2));
}

.careers-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.careers-hero-content h1,
.careers-hero-content .hero-subtitle {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.careers-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.why-work-with-us {
    padding: 6rem 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.company-culture {
    padding: 6rem 0;
    background: white;
}

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

.culture-values {
    margin-top: 2rem;
}

.culture-value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.culture-value i {
    color: #f5576c;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

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

.culture-stat {
    background: rgba(240, 147, 251, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(240, 147, 251, 0.2);
}

.culture-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f5576c;
    display: block;
}

.open-positions {
    padding: 6rem 0;
    background: #f8fafc;
}

.positions-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active {
    background: #f5576c;
    color: white;
    border-color: #f5576c;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.position-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
}

.position-header {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.position-title h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.position-type {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.position-department {
    background: #f5576c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.position-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.position-skills {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.skill-tag {
    background: #e0f2fe;
    color: #0277bd;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.position-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.application-process {
    padding: 6rem 0;
    background: white;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(to right, #f093fb, #f5576c);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 10;
}

.careers-cta {
    padding: 6rem 0;
    background: #1f2937;
    color: white;
    text-align: center;
}

/* Blog Page */
.modern-blog-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    overflow: hidden;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1432888622747-4eb9a8efeb07?w=2560&h=1440&fit=crop&crop=center') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.3), rgba(0, 242, 254, 0.3));
}

.blog-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.blog-hero-content h1,
.blog-hero-content .hero-subtitle {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.blog-hero-content .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.blog-stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-stat .stat-suffix {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
    margin-left: 0.25rem;
    display: inline-block;
}

.blog-stat .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 0.5rem;
}

.featured-article {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #4facfe;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-category {
    background: #4facfe;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.article-date, .article-read-time {
    color: #6b7280;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

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

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-title {
    color: #6b7280;
    font-size: 0.9rem;
}

.blog-categories {
    padding: 4rem 0;
    background: white;
}

.categories-header {
    text-align: center;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.category-filter {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-filter.active {
    background: #4facfe;
    color: white;
    border-color: #4facfe;
}

.blog-articles {
    padding: 4rem 0;
    background: #f8fafc;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    position: relative;
}

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #4facfe;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.author-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name-small {
    color: #6b7280;
    font-size: 0.9rem;
}

.read-more {
    color: #4facfe;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: #0284c7;
}

.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

.newsletter-signup {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

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

.newsletter-benefits {
    margin-top: 2rem;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscription-form .form-group {
    display: flex;
    gap: 1rem;
}

.subscription-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Industry Partners Page */
.modern-partners-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #1f2937;
    overflow: hidden;
}

.partners-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=2560&h=1440&fit=crop&crop=center') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.partners-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.1), rgba(254, 214, 227, 0.1));
}

.partners-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.partners-hero-content h1,
.partners-hero-content .hero-subtitle {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.partners-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.partner-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.partnership-benefits {
    padding: 6rem 0;
    background: #f8fafc;
}

.partner-categories {
    padding: 6rem 0;
    background: white;
}

.category-tabs-partners {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.category-tab-partner {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tab-partner.active {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #1f2937;
    border-color: transparent;
}

.partners-showcase-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.partner-category-section {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

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

.partner-logo-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
}

.partner-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.partner-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.partner-logo-placeholder.startup {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.partner-logo-placeholder.fintech {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.partner-logo-placeholder.ecommerce {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.partnership-type {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.partnership-success {
    padding: 6rem 0;
    background: #f8fafc;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.success-story {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.company-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.startup-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.story-results {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
    display: block;
}

.result-label {
    font-size: 0.8rem;
    color: #6b7280;
}

.become-partner {
    padding: 6rem 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

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

.partnership-benefits-list {
    margin-top: 2rem;
}

.form-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.partnership-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.partnership-form input,
.partnership-form select,
.partnership-form textarea {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: white;
}

.partnership-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
}

/* Why Us Page Hero Enhancements */
.why-us-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    max-width: 600px;
}

.hero-stats-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item-enhanced {
    text-align: center;
    color: white;
}

.stat-number-enhanced {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    line-height: 1;
}

.stat-suffix-enhanced {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
    margin-left: 0.25rem;
}

.stat-label-enhanced {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Responsive adjustments for Why Us hero */
@media (max-width: 1024px) {
    .why-us-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .hero-stats-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-number-enhanced {
        font-size: 2rem;
    }
    
    .stat-suffix-enhanced {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .why-us-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .hero-stats-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-number-enhanced {
        font-size: 1.8rem;
    }
    
    .stat-suffix-enhanced {
        font-size: 1.2rem;
    }
    
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero-content .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .blog-stat .stat-number {
        font-size: 2rem;
    }
    
    .blog-stat .stat-suffix {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .why-us-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .hero-stats-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-number-enhanced {
        font-size: 1.5rem;
    }
    
    .stat-suffix-enhanced {
        font-size: 1rem;
    }
    
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-hero-content .hero-subtitle {
        font-size: 1rem;
    }
    
    .blog-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-stat .stat-number {
        font-size: 1.8rem;
    }
    
    .blog-stat .stat-suffix {
        font-size: 1.2rem;
    }
}

/* Company Pages Mobile Responsive */
@media (max-width: 1024px) {
    .modern-about-hero,
    .modern-careers-hero,
    .modern-blog-hero,
    .modern-partners-hero {
        min-height: 90vh;
    }
}

@media (max-width: 768px) {
    .modern-about-hero,
    .modern-careers-hero,
    .modern-blog-hero,
    .modern-partners-hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .about-stats,
    .blog-stats,
    .partners-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .careers-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .mission-vision-grid,
    .team-grid,
    .culture-content,
    .partnership-content,
    .featured-content,
    .newsletter-content,
    .partner-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .positions-grid,
    .articles-grid,
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partners-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .modern-about-hero,
    .modern-careers-hero,
    .modern-blog-hero,
    .modern-partners-hero {
        min-height: 70vh;
        padding: 1.5rem 0;
    }
    
    .partners-row {
        grid-template-columns: 1fr;
    }
    
    .hiring-partners-animated {
        padding: 3rem 0;
    }
    
    .hiring-partners-animated .container {
        padding: 0 0.75rem;
        text-align: center;
    }
    
    .animated-header h2 {
        font-size: 2.2rem;
    }
    
    .trust-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .trust-stat {
        padding: 1rem 1.5rem;
        min-width: 200px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .partners-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 350px;
    }
    
    .partner-card-modern {
        min-width: 280px;
        padding: 1.5rem;
        min-height: 200px;
    }
}

@media (max-width: 1024px) {
    .hiring-partners-animated .container {
        padding: 0 1.5rem;
        max-width: 1200px;
        text-align: center;
    }
    
    .partners-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 900px;
    }
    
    .partner-card-modern {
        min-width: 220px;
        padding: 1.75rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hiring-partners-animated .container {
        padding: 0 1rem;
        text-align: center;
    }
    
    .partners-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .partner-card-modern {
        min-width: 200px;
        padding: 1.5rem 1.25rem;
        min-height: 220px;
    }
    
    .partner-details h4 {
        font-size: 1.1rem;
    }
    
    .partner-roles {
        font-size: 0.9rem;
    }
}
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .category-tabs {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .category-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .category-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .category-tab {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}