/* Modern 3D CSS Framework - Inspired by Deon Template */
/* High-Tech IT Organization Styling */

:root {
    /* Modern Color Palette */
    --primary-color: #00d4ff;
    --secondary-color: #ff6b35;
    --accent-color: #7c3aed;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ff1744 100%);
    --gradient-accent: linear-gradient(135deg, #7c3aed 0%, #00d4ff 100%);
    
    /* 3D Shadows */
    --shadow-3d: 0 20px 40px rgba(0, 212, 255, 0.1);
    --shadow-3d-hover: 0 30px 60px rgba(0, 212, 255, 0.2);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Orbitron', monospace;
    --font-mono: 'JetBrains Mono', monospace;
}

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

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
}

.loading-logo {
    position: relative;
    margin-bottom: 3rem;
}

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

.logo-text {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.letter {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: letterGlow 2s ease-in-out infinite alternate;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.1s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.3s; }
.letter:nth-child(5) { animation-delay: 0.4s; }
.letter:nth-child(6) { animation-delay: 0.5s; }

@keyframes letterGlow {
    0% {
        color: #00d4ff;
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        transform: translateY(0);
    }
    100% {
        color: #7c3aed;
        text-shadow: 0 0 30px rgba(124, 58, 237, 0.8);
        transform: translateY(-5px);
    }
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #a0a0a0;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: subtitleFade 3s ease-in-out infinite;
}

@keyframes subtitleFade {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.tech-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    opacity: 0.3;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: gridPulse 2s ease-in-out infinite;
}

.grid-line:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 0s;
}

.grid-line:nth-child(2) {
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    animation-delay: 0.5s;
}

.grid-line:nth-child(3) {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 1s;
}

.grid-line:nth-child(4) {
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    animation-delay: 1.5s;
}

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

.loading-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #00d4ff;
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.pulse-ring:nth-child(1) {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
    width: 80px;
    height: 80px;
    animation-delay: 0.3s;
}

.pulse-ring:nth-child(3) {
    width: 100px;
    height: 100px;
    animation-delay: 0.6s;
}

@keyframes pulseRing {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

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

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--gradient-primary), var(--gradient-secondary));
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Solutions Page Styles */
.solutions-overview {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.solution-category {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.solution-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.category-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.category-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.category-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Technology Stack Styles */
.technology-stack {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

.tech-category {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.tech-category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-item {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Resources Page Styles */
.resources-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.resource-category {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.resource-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.resource-items {
    margin-top: 1.5rem;
}

.resource-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.resource-item:last-child {
    border-bottom: none;
}

.resource-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.resource-item p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: var(--secondary-color);
}

/* Download Center */
.download-center {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

.download-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.download-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.download-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.blog-post {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.post-image {
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

/* Career Page Styles */
.career-overview {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.benefit-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Open Positions */
.open-positions {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

.position-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

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

.position-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.position-info {
    flex: 1;
}

.position-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.position-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.position-type,
.position-location,
.position-experience {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.position-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.position-requirements {
    margin-bottom: 1.5rem;
}

.position-requirements h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.position-requirements ul {
    list-style: none;
    padding: 0;
}

.position-requirements li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.position-requirements li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.position-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

/* Application Process */
.application-process {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Company Culture */
.company-culture {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

.culture-text {
    z-index: 2;
}

.culture-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.culture-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.culture-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.culture-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Company Page Styles */
.company-overview {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.overview-text {
    z-index: 2;
}

.overview-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.overview-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mission, Vision, Values */
.mission-vision-values {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

.mvv-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.mvv-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.mvv-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Company Stats */
.company-stats {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

.service-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Leadership Team */
.leadership-team {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.team-member {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.member-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Company Contact */
.company-contact {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

.contact-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #25D366, #128C7E);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover::before {
    opacity: 1;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    font-size: 28px;
    position: relative;
    z-index: 2;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive for Loading Screen */
@media (max-width: 768px) {
    .letter {
        font-size: 2.5rem;
    }
    
    .logo-subtitle {
        font-size: 1rem;
    }
    
    .loading-bar {
        width: 250px;
    }
    
    .tech-grid {
        width: 150px;
        height: 150px;
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        right: 60px;
        font-size: 12px;
        padding: 6px 10px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 3D Background Effects */
.background-3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

/* Animated Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(2n) {
    background: var(--secondary-color);
    animation-delay: -2s;
}

.particle:nth-child(3n) {
    background: var(--accent-color);
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 1; }
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* 3D Cards */
.card-3d {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-3d);
}

.card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.card-3d:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-3d-hover);
}

.card-3d:hover::before {
    opacity: 0.1;
}

/* Modern Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-modern::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-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--gradient-secondary);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

/* 3D Navigation */
.nav-3d {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 70px;
}

.nav-3d.scrolled {
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-3d {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mascot {
    width: 32px;
    height: 32px;
    animation: mascotPulse 2s ease-in-out infinite;
}

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

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

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

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

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

/* Hero Section */
.hero-3d {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 40px; /* Reduced bottom padding for less gap */
    background: transparent;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

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

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

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

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.tech-label {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.hero-text {
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

/* Hero Mascot */
.hero-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: relative;
    padding: 1rem;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    margin: 2rem 0;
}

.mascot-image {
    width: 400px;
    height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
    animation: mascotFloat 3s ease-in-out infinite;
    z-index: 10;
    position: relative;
    transition: all 0.3s ease;
}

/* Enhanced Hero Mascot Animation */
.mascot-hero-enhanced {
    width: 450px;
    height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 40px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 60px rgba(124, 58, 237, 0.3));
    animation: mascotHeroEnhanced 4s ease-in-out infinite;
    z-index: 10;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mascot-hero-enhanced:hover {
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 50px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 80px rgba(124, 58, 237, 0.5));
    transform: scale(1.08) rotate(2deg);
}

@keyframes mascotHeroEnhanced {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
        filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 40px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 60px rgba(124, 58, 237, 0.3));
    }
    25% {
        transform: translateY(-12px) scale(1.03) rotate(-1deg);
        filter: drop-shadow(0 25px 55px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 45px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 70px rgba(124, 58, 237, 0.4));
    }
    50% {
        transform: translateY(-8px) scale(1.05) rotate(1deg);
        filter: drop-shadow(0 22px 52px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 42px rgba(0, 212, 255, 0.45)) drop-shadow(0 0 65px rgba(124, 58, 237, 0.35));
    }
    75% {
        transform: translateY(-15px) scale(1.02) rotate(-0.5deg);
        filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 48px rgba(0, 212, 255, 0.55)) drop-shadow(0 0 75px rgba(124, 58, 237, 0.45));
    }
}

.mascot-image:hover {
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 40px rgba(0, 212, 255, 0.5));
    transform: scale(1.05);
}

@keyframes mascotFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-8px) scale(1.02);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
    75% {
        transform: translateY(-8px) scale(1.02);
    }
}

/* Mascot variations */
.mascot-thinking {
    animation: mascotThink 4s ease-in-out infinite;
}

@keyframes mascotThink {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-2deg);
    }
    75% {
        transform: translateY(-5px) rotate(2deg);
    }
}

.mascot-working {
    animation: mascotWork 2s ease-in-out infinite;
}

@keyframes mascotWork {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Mascot in different contexts */
.mascot-small {
    width: 60px;
    height: 60px;
    animation: mascotPulse 2s ease-in-out infinite;
}

@keyframes mascotPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.mascot-medium {
    width: 120px;
    height: 120px;
    animation: mascotBounce 3s ease-in-out infinite;
}

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

.mascot-large {
    width: 200px;
    height: 200px;
    animation: mascotFloat 4s ease-in-out infinite;
}

/* Mascot in cards */
.mascot-card {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mascot-card:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Section Header with Mascot */
.section-header-with-mascot {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.section-text {
    text-align: left;
}

.section-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.section-mascot .mascot-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 12px 35px rgba(0, 212, 255, 0.3)) drop-shadow(0 0 25px rgba(124, 58, 237, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-mascot .mascot-image:hover {
    filter: drop-shadow(0 18px 45px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 35px rgba(124, 58, 237, 0.4));
    transform: scale(1.08) translateY(-8px);
}

/* New Section Header with Multiple Mascots */
.section-header-with-mascots {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header-with-mascots.alternate {
    grid-template-columns: 1fr 2fr;
}

.section-text {
    text-align: left;
    z-index: 2;
}

.section-mascots-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    position: relative;
}

.section-mascots-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    position: relative;
}

.mascot-top {
    position: relative;
    z-index: 3;
}

.mascot-bottom {
    position: relative;
    z-index: 2;
    margin-top: -20px; /* Overlap slightly */
}

.section-mascots-left .mascot-image,
.section-mascots-right .mascot-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 8px 25px rgba(0, 212, 255, 0.3)) drop-shadow(0 0 20px rgba(124, 58, 237, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
}

.section-mascots-left .mascot-image:hover,
.section-mascots-right .mascot-image:hover {
    filter: drop-shadow(0 12px 35px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 30px rgba(124, 58, 237, 0.4));
    transform: scale(1.1) translateY(-5px);
}

/* Unique animations for each mascot pose */
.mascot-thinking {
    animation: mascotThinkEnhanced 3s ease-in-out infinite;
}

@keyframes mascotThinkEnhanced {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(-2deg) scale(1.02);
    }
    50% {
        transform: translateY(-5px) rotate(1deg) scale(1.05);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg) scale(1.03);
    }
}

.mascot-working {
    animation: mascotWorkEnhanced 2.5s ease-in-out infinite;
}

@keyframes mascotWorkEnhanced {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
    }
    30% {
        transform: translateY(-6px) scale(1.03) rotate(1deg);
    }
    60% {
        transform: translateY(-4px) scale(1.02) rotate(-0.5deg);
    }
    80% {
        transform: translateY(-8px) scale(1.04) rotate(0.5deg);
    }
}

.mascot-waving {
    animation: mascotWaveEnhanced 2.8s ease-in-out infinite;
}

@keyframes mascotWaveEnhanced {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    20% {
        transform: translateY(-7px) rotate(-3deg) scale(1.03);
    }
    40% {
        transform: translateY(-5px) rotate(2deg) scale(1.02);
    }
    60% {
        transform: translateY(-9px) rotate(-1deg) scale(1.04);
    }
    80% {
        transform: translateY(-6px) rotate(1deg) scale(1.01);
    }
}

.mascot-icon {
    animation: mascotIconEnhanced 2.2s ease-in-out infinite;
}

@keyframes mascotIconEnhanced {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) scale(1.05) rotate(1deg);
    }
    50% {
        transform: translateY(-8px) scale(1.08) rotate(-0.5deg);
    }
    75% {
        transform: translateY(-6px) scale(1.03) rotate(0.5deg);
    }
}

.mascot-friendly {
    animation: mascotFriendlyEnhanced 3.2s ease-in-out infinite;
}

@keyframes mascotFriendlyEnhanced {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
    }
    30% {
        transform: translateY(-6px) scale(1.02) rotate(-1deg);
    }
    50% {
        transform: translateY(-10px) scale(1.04) rotate(1deg);
    }
    70% {
        transform: translateY(-7px) scale(1.03) rotate(-0.5deg);
    }
    85% {
        transform: translateY(-9px) scale(1.01) rotate(0.5deg);
    }
}

/* Section-specific mascot styles */
.mascot-services {
    animation: mascotServices 3.5s ease-in-out infinite;
    filter: drop-shadow(0 12px 35px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 25px rgba(124, 58, 237, 0.3));
}

@keyframes mascotServices {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(-2deg) scale(1.03);
    }
    50% {
        transform: translateY(-12px) rotate(1deg) scale(1.05);
    }
    75% {
        transform: translateY(-6px) rotate(-1deg) scale(1.02);
    }
}

.mascot-products {
    animation: mascotProducts 2.8s ease-in-out infinite;
    filter: drop-shadow(0 12px 35px rgba(255, 107, 53, 0.4)) drop-shadow(0 0 25px rgba(124, 58, 237, 0.3));
}

@keyframes mascotProducts {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    30% {
        transform: translateY(-10px) rotate(-3deg) scale(1.04);
    }
    60% {
        transform: translateY(-8px) rotate(2deg) scale(1.02);
    }
    80% {
        transform: translateY(-12px) rotate(-1deg) scale(1.06);
    }
}

.mascot-portfolio {
    animation: mascotPortfolio 3.2s ease-in-out infinite;
    filter: drop-shadow(0 12px 35px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 25px rgba(255, 23, 68, 0.3));
}

@keyframes mascotPortfolio {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    20% {
        transform: translateY(-6px) rotate(1deg) scale(1.02);
    }
    40% {
        transform: translateY(-10px) rotate(-1deg) scale(1.04);
    }
    60% {
        transform: translateY(-8px) rotate(2deg) scale(1.03);
    }
    80% {
        transform: translateY(-12px) rotate(-0.5deg) scale(1.05);
    }
}

.mascot-process {
    animation: mascotProcess 2.5s ease-in-out infinite;
    filter: drop-shadow(0 12px 35px rgba(124, 58, 237, 0.4)) drop-shadow(0 0 25px rgba(0, 212, 255, 0.3));
}

@keyframes mascotProcess {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-7px) rotate(-1deg) scale(1.03);
    }
    50% {
        transform: translateY(-11px) rotate(1deg) scale(1.05);
    }
    75% {
        transform: translateY(-9px) rotate(-0.5deg) scale(1.02);
    }
}

.mascot-stats {
    animation: mascotStats 3.8s ease-in-out infinite;
    filter: drop-shadow(0 12px 35px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 25px rgba(124, 58, 237, 0.3));
}

@keyframes mascotStats {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    30% {
        transform: translateY(-9px) rotate(-2deg) scale(1.04);
    }
    60% {
        transform: translateY(-7px) rotate(1deg) scale(1.02);
    }
    80% {
        transform: translateY(-11px) rotate(-1deg) scale(1.06);
    }
}

.mascot-about {
    animation: mascotAbout 3.0s ease-in-out infinite;
    filter: drop-shadow(0 12px 35px rgba(255, 107, 53, 0.4)) drop-shadow(0 0 25px rgba(0, 212, 255, 0.3));
}

@keyframes mascotAbout {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(2deg) scale(1.03);
    }
    50% {
        transform: translateY(-12px) rotate(-1deg) scale(1.05);
    }
    75% {
        transform: translateY(-6px) rotate(1deg) scale(1.02);
    }
}

.mascot-contact {
    animation: mascotContact 3.6s ease-in-out infinite;
    filter: drop-shadow(0 12px 35px rgba(124, 58, 237, 0.4)) drop-shadow(0 0 25px rgba(255, 107, 53, 0.3));
}

@keyframes mascotContact {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    20% {
        transform: translateY(-7px) rotate(-1deg) scale(1.02);
    }
    40% {
        transform: translateY(-11px) rotate(1deg) scale(1.04);
    }
    60% {
        transform: translateY(-9px) rotate(-0.5deg) scale(1.03);
    }
    80% {
        transform: translateY(-13px) rotate(1deg) scale(1.05);
    }
}

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.contact-details-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form-section {
    display: flex;
    flex-direction: column;
}

/* Email Mascot with Card */
.email-mascot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    padding: 1rem;
}

.email-mascot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-mascot::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.6), rgba(124, 58, 237, 0.6));
    border-radius: 1px;
    animation: handConnection 3.4s ease-in-out infinite;
    z-index: 5;
}

.email-mascot::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -20px;
    width: 15px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.4), rgba(124, 58, 237, 0.4));
    border-radius: 1px;
    animation: handConnection 3.4s ease-in-out infinite;
    z-index: 5;
}

@keyframes handConnection {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0px) scaleX(1);
    }
    25% {
        opacity: 0.8;
        transform: translateY(-5px) scaleX(1.1);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scaleX(1.2);
    }
    75% {
        opacity: 0.7;
        transform: translateY(-3px) scaleX(1.05);
    }
}

.email-mascot .mascot-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 30px rgba(124, 58, 237, 0.3));
    animation: mascotEmail 3.4s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.email-mascot .mascot-image:hover {
    filter: drop-shadow(0 15px 40px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 30px rgba(124, 58, 237, 0.4));
    transform: scale(1.1) translateY(-5px);
}

.email-card {
    position: absolute;
    right: -25px;
    top: 5px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4), 0 0 25px rgba(124, 58, 237, 0.3);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    animation: emailCardFloat 3.4s ease-in-out infinite;
    z-index: 10;
    min-width: 160px;
    justify-content: center;
    transform: rotate(-5deg);
}

.email-card i {
    font-size: 1rem;
    color: white;
}

.email-card span {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
}

@keyframes mascotEmail {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(-2deg) scale(1.05);
    }
    50% {
        transform: translateY(-25px) rotate(1deg) scale(1.08);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg) scale(1.03);
    }
}

@keyframes emailCardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(-5deg) scale(1);
        box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4), 0 0 25px rgba(124, 58, 237, 0.3);
    }
    25% {
        transform: translateY(-20px) rotate(-7deg) scale(1.05);
        box-shadow: 0 20px 50px rgba(0, 212, 255, 0.6), 0 0 40px rgba(124, 58, 237, 0.5);
    }
    50% {
        transform: translateY(-35px) rotate(-3deg) scale(1.1);
        box-shadow: 0 25px 60px rgba(0, 212, 255, 0.7), 0 0 50px rgba(124, 58, 237, 0.6);
    }
    75% {
        transform: translateY(-15px) rotate(-6deg) scale(1.03);
        box-shadow: 0 18px 45px rgba(0, 212, 255, 0.55), 0 0 35px rgba(124, 58, 237, 0.45);
    }
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details-section {
        order: 1;
    }
    
    .contact-form-section {
        order: 2;
    }
    
    .email-mascot .mascot-image {
        width: 140px;
        height: 140px;
    }
    
    .email-card {
        right: -20px;
        top: 5px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-width: 140px;
        transform: rotate(-3deg);
    }
    
    .email-card i {
        font-size: 0.9rem;
    }
}

/* About Section Mascot */
.about-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
}

.about-mascot .mascot-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.2));
    animation: mascotWaving 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.about-mascot .mascot-image:hover {
    filter: drop-shadow(0 15px 40px rgba(0, 212, 255, 0.4));
    transform: scale(1.05);
}

@keyframes mascotWaving {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-2deg);
    }
    75% {
        transform: translateY(-5px) rotate(2deg);
    }
}

/* Stats Section Mascot */
.stats-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    align-items: center;
}

.stats-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.stats-mascot .mascot-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.2));
    animation: mascotPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.stats-mascot .mascot-image:hover {
    filter: drop-shadow(0 15px 40px rgba(0, 212, 255, 0.4));
    transform: scale(1.05);
}

/* Mascot variations for different poses */
.mascot-thinking {
    animation: mascotThink 4s ease-in-out infinite;
}

.mascot-waving {
    animation: mascotWaving 3s ease-in-out infinite;
}

.mascot-friendly {
    animation: mascotFloat 3s ease-in-out infinite;
}

.mascot-icon {
    animation: mascotPulse 2s ease-in-out infinite;
}

/* Scroll-based mascot animations */
.mascot-scroll-slide {
    transform: translateY(50px);
    opacity: 0.7;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mascot-scroll-slide.visible {
    transform: translateY(0);
    opacity: 1;
}

/* Fallback for mascot visibility */
.mascot-image {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure mascots are visible on page load */
.mascot-scroll-slide {
    opacity: 0.8 !important;
    transform: translateY(20px) !important;
}

/* Mascot mouth animations */
.mascot-mouth {
    animation: mascotMouth 3s ease-in-out infinite;
}

@keyframes mascotMouth {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.2);
    }
}

/* Enhanced mascot animations with mouth */
.mascot-talking {
    animation: mascotTalk 2s ease-in-out infinite;
}

@keyframes mascotTalk {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-3px) scale(1.02);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
    75% {
        transform: translateY(-3px) scale(1.02);
    }
}

.mascot-excited {
    animation: mascotExcited 1.5s ease-in-out infinite;
}

@keyframes mascotExcited {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-3deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(3deg);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 3D Floating Elements */
.floating-element {
    position: absolute;
    background: var(--gradient-primary);
    border-radius: 20px;
    animation: float3D 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes float3D {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    position: relative;
    margin-top: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid .product-card:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 2;
}

.products-grid .product-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.product-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d-hover);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.product-status {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.in-development {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.live {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.product-actions {
    position: relative;
    z-index: 2;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    position: relative;
    margin-top: 0;
}

/* Services Grid */
.services-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-3d {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.service-card-3d:hover::before {
    left: 100%;
}

.service-card-3d:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-3d-hover);
}

.service-icon-3d {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
    position: relative;
    z-index: 2;
}

.service-title-3d {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.service-description-3d {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
    position: relative;
    margin-top: 2rem;
}

/* Portfolio Filter Tabs */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--dark-bg);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Advanced Portfolio Grid */
.portfolio-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item-advanced {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 1;
    transform: scale(1);
}

.portfolio-item-advanced.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-item-advanced:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d-hover);
}

.portfolio-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item-advanced:hover .portfolio-image::before {
    opacity: 1;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item-advanced:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.portfolio-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-status.live {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.portfolio-status.coming-soon {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(124, 58, 237, 0.2);
    color: #7c3aed;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

/* Portfolio Showcase */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 200px;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-3d-hover);
}

.portfolio-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.portfolio-image-placeholder i {
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.portfolio-image-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-item:hover .portfolio-image-placeholder {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.95), rgba(124, 58, 237, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    color: white;
}

.portfolio-tech {
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: center;
    color: white;
    margin-bottom: 1rem;
}

.portfolio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.portfolio-features .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Development Cycle Section */
.development-cycle-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
    margin-top: 2rem;
}

.cycle-timeline {
    margin-top: 4rem;
    position: relative;
}

.cycle-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.cycle-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-bg);
    position: relative;
    z-index: 2;
    margin: 0 2rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.step-content {
    flex: 1;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-3d);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.step-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.step-features li {
    color: var(--text-secondary);
    padding: 0.8rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.step-features li:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    position: relative;
    margin-top: 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-form-3d {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

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

/* Footer */
.footer-3d {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid-3d {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mascot responsive adjustments */
    .section-header-with-mascot {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .section-mascot .mascot-image {
        width: 150px;
        height: 150px;
    }
    
    .about-mascot .mascot-image {
        width: 120px;
        height: 120px;
    }
    
    /* New mascot layout responsive */
    .section-header-with-mascots {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .section-mascots-left,
    .section-mascots-right {
        order: -1;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .mascot-bottom {
        margin-top: 0;
    }
    
    .section-mascots-left .mascot-image,
    .section-mascots-right .mascot-image {
        width: 80px;
        height: 80px;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .stats-mascot .mascot-image {
        width: 100px;
        height: 100px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Products grid responsive */
    .products-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .products-grid .product-card:nth-child(4),
    .products-grid .product-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }
}

/* Loading Animation */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 212, 255, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Company Profile Specific Styles */
.company-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.company-card {
    padding: 2rem;
    text-align: left;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.detail-item {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: var(--primary-color);
    display: inline-block;
    min-width: 150px;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.document-card {
    padding: 2rem;
    text-align: left;
}

.document-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.document-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-bg);
}

.document-header h3 {
    margin: 0;
    color: var(--text-primary);
}

.document-content {
    margin-bottom: 1.5rem;
}

.document-detail {
    margin-bottom: 0.8rem;
    padding: 0.3rem 0;
}

.document-detail strong {
    color: var(--primary-color);
    display: inline-block;
    min-width: 120px;
}

.status-active {
    color: #00ff88;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.document-actions {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Compliance Grid */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.compliance-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-3d-hover);
}

.compliance-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
    margin: 0 auto 1.5rem;
}

.compliance-item h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.compliance-item p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.status-active {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Verification Contact */
.verification-contact {
    margin: 5rem 0;
}

.verification-content {
    text-align: center;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.verification-content h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.verification-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

/* About Section */
.about-section {
    padding: 6rem 0;
    position: relative;
    margin-top: 2rem;
}

/* About Section Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

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

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tech-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    position: relative;
    margin-top: 2rem;
}

/* Contact Section Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-3d);
}

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

.contact-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.contact-item p {
    margin: 0;
    color: var(--text-secondary);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Services Page Specific Styles */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.feature-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.service-cta {
    margin-top: 1.5rem;
    text-align: center;
}

/* Process Timeline */
.process-timeline {
    margin-top: 4rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

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

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-bg);
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.step-content {
    flex: 1;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Tech Stack Section */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.tech-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.tech-item {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    margin: 5rem 0;
}

.cta-content {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 2.5rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* 85% Zoom Optimization */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .hero-3d {
        min-height: 75vh;
    }
    
    .mascot-hero-enhanced {
        width: 420px;
        height: 420px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Optimize spacing for better 85% zoom view */
    .services-section {
        padding: 3.5rem 0;
    }
    
    .portfolio-section {
        padding: 3.5rem 0;
    }
    
    .about-section {
        padding: 3.5rem 0;
    }
    
    .contact-section {
        padding: 3.5rem 0;
    }
}

/* About Us Page Styles */
.about-hero {
    min-height: 70vh;
    padding: 120px 0 60px;
}

.vision-mission-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.vision-card, .mission-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

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

.card-icon i {
    font-size: 2rem;
    color: white;
}

.vision-card h3, .mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-company-section {
    padding: 6rem 0;
}

.company-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.company-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.company-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.director-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.director-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin-top: 3rem;
}

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

.mascot-director {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 15px 40px rgba(0, 212, 255, 0.3));
    animation: mascotFloat 4s ease-in-out infinite;
}

.mascot-director-full {
    width: 180px;
    height: 270px;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 212, 255, 0.3));
    animation: mascotFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.mascot-director-full:hover {
    transform: scale(1.02) translateY(-5px);
    filter: drop-shadow(0 20px 50px rgba(0, 212, 255, 0.4));
}

.director-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.director-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.director-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.director-achievements {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.achievement i {
    color: var(--primary-color);
}

.team-section {
    padding: 6rem 0;
}

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

.team-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.team-image {
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-team {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    clip-path: circle(50%);
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.3));
    animation: mascotFloat 3s ease-in-out infinite;
    border: 4px solid transparent;
    background: linear-gradient(45deg, #00d4ff, #7c3aed) border-box;
    position: relative;
    overflow: hidden;
}

/* New mascot team images */
.mascot-team-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.3));
    animation: mascotFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.mascot-team-img:hover {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 15px 40px rgba(0, 212, 255, 0.5));
}

/* Add cheek highlights for mascot look */
.mascot-team::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

/* Add cheek highlights and nose - different for each team member */
.mascot-team::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 
        -25px -10px 0 -15px rgba(255, 255, 255, 0.2),
        25px -10px 0 -15px rgba(255, 255, 255, 0.2);
}

/* Add nose for each team member */
.team-card:nth-child(1) .mascot-team::before {
    /* Komal - Small nose */
    box-shadow: 
        -25px -10px 0 -15px rgba(255, 255, 255, 0.2),
        25px -10px 0 -15px rgba(255, 255, 255, 0.2),
        0px 45px 0 -35px rgba(255, 255, 255, 0.3);
}

.team-card:nth-child(2) .mascot-team::before {
    /* Deepak - Medium nose */
    box-shadow: 
        -25px -10px 0 -15px rgba(255, 255, 255, 0.2),
        25px -10px 0 -15px rgba(255, 255, 255, 0.2),
        0px 42px 0 -32px rgba(255, 255, 255, 0.3);
}

.team-card:nth-child(3) .mascot-team::before {
    /* Arjun - Small nose */
    box-shadow: 
        -25px -10px 0 -15px rgba(255, 255, 255, 0.2),
        25px -10px 0 -15px rgba(255, 255, 255, 0.2),
        0px 48px 0 -38px rgba(255, 255, 255, 0.3);
}

.team-card:nth-child(4) .mascot-team::before {
    /* Priya - Medium nose */
    box-shadow: 
        -25px -10px 0 -15px rgba(255, 255, 255, 0.2),
        25px -10px 0 -15px rgba(255, 255, 255, 0.2),
        0px 44px 0 -34px rgba(255, 255, 255, 0.3);
}

.team-card:nth-child(5) .mascot-team::before {
    /* Vikram - Small nose */
    box-shadow: 
        -25px -10px 0 -15px rgba(255, 255, 255, 0.2),
        25px -10px 0 -15px rgba(255, 255, 255, 0.2),
        0px 46px 0 -36px rgba(255, 255, 255, 0.3);
}

.team-card:nth-child(6) .mascot-team::before {
    /* Anita - Small nose */
    box-shadow: 
        -25px -10px 0 -15px rgba(255, 255, 255, 0.2),
        25px -10px 0 -15px rgba(255, 255, 255, 0.2),
        0px 43px 0 -33px rgba(255, 255, 255, 0.3);
}

/* Different color schemes for each team member */
.team-card:nth-child(1) .mascot-team {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    filter: drop-shadow(0 10px 30px rgba(255, 107, 107, 0.4));
}

.team-card:nth-child(2) .mascot-team {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    filter: drop-shadow(0 10px 30px rgba(78, 205, 196, 0.4));
}

.team-card:nth-child(3) .mascot-team {
    background: linear-gradient(135deg, #45b7d1, #96c93d);
    filter: drop-shadow(0 10px 30px rgba(69, 183, 209, 0.4));
}

.team-card:nth-child(4) .mascot-team {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    filter: drop-shadow(0 10px 30px rgba(240, 147, 251, 0.4));
}

.team-card:nth-child(5) .mascot-team {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    filter: drop-shadow(0 10px 30px rgba(79, 172, 254, 0.4));
}

.team-card:nth-child(6) .mascot-team {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    filter: drop-shadow(0 10px 30px rgba(67, 233, 123, 0.4));
}

/* Add facial features overlay */
.mascot-team::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

/* Eyes for all mascot faces - more mascot-like */
.mascot-team::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 24px;
    background: #333;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 2;
    box-shadow: 20px 0 0 #333;
    animation: mascotBlink 3s ease-in-out infinite;
}

/* Add top tail/antenna for mascot look */
.mascot-team {
    position: relative;
}

/* Create antenna using a pseudo-element on the container */
.team-image::after {
    content: '';
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 25px;
    background: linear-gradient(180deg, #333 0%, #666 100%);
    border-radius: 2px;
    z-index: 3;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    animation: antennaSway 4s ease-in-out infinite;
}

/* Different eye shapes and expressions for each team member - mascot style */
.team-card:nth-child(1) .mascot-team::after {
    /* Komal - Happy eyes */
    width: 18px;
    height: 26px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 22px 0 0 #333;
    animation: mascotHappy 4s ease-in-out infinite;
}

.team-card:nth-child(2) .mascot-team::after {
    /* Deepak - Friendly eyes */
    width: 20px;
    height: 28px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 24px 0 0 #333;
    animation: mascotFriendly 4s ease-in-out infinite;
}

.team-card:nth-child(3) .mascot-team::after {
    /* Arjun - Thinking eyes */
    width: 16px;
    height: 24px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 20px 0 0 #333;
    animation: mascotThinking 4s ease-in-out infinite;
}

.team-card:nth-child(4) .mascot-team::after {
    /* Priya - Cool eyes */
    width: 18px;
    height: 26px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 22px 0 0 #333;
    animation: mascotCool 4s ease-in-out infinite;
}

.team-card:nth-child(5) .mascot-team::after {
    /* Vikram - Calm eyes */
    width: 17px;
    height: 25px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 21px 0 0 #333;
    animation: mascotCalm 4s ease-in-out infinite;
}

.team-card:nth-child(6) .mascot-team::after {
    /* Anita - Excited eyes */
    width: 22px;
    height: 30px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 26px 0 0 #333;
    animation: mascotExcited 4s ease-in-out infinite;
}

/* Add mouth for each team member */
.team-card:nth-child(1) .mascot-team {
    position: relative;
}

/* Add eyebrows for more expression - different for each team member */
.team-card:nth-child(1) .mascot-team::after {
    /* Komal - Happy eyebrows */
    box-shadow: 24px 0 0 #333, -10px -18px 0 -6px #333, 34px -18px 0 -6px #333;
}

.team-card:nth-child(2) .mascot-team::after {
    /* Deepak - Friendly eyebrows */
    box-shadow: 26px 0 0 #333, -12px -16px 0 -8px #333, 38px -16px 0 -8px #333;
}

.team-card:nth-child(3) .mascot-team::after {
    /* Arjun - Thinking eyebrows (angled) */
    box-shadow: 22px 0 0 #333, -8px -20px 0 -4px #333, 30px -20px 0 -4px #333;
}

.team-card:nth-child(4) .mascot-team::after {
    /* Priya - Cool eyebrows (straight) */
    box-shadow: 25px 0 0 #333, -10px -17px 0 -5px #333, 35px -17px 0 -5px #333;
}

.team-card:nth-child(5) .mascot-team::after {
    /* Vikram - Calm eyebrows */
    box-shadow: 24px 0 0 #333, -11px -19px 0 -7px #333, 35px -19px 0 -7px #333;
}

.team-card:nth-child(6) .mascot-team::after {
    /* Anita - Excited eyebrows (raised) */
    box-shadow: 28px 0 0 #333, -14px -15px 0 -9px #333, 42px -15px 0 -9px #333;
}

.team-card:nth-child(1) .mascot-team::before {
    /* Komal - Big happy smile */
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 18px;
    background: #333;
    border-radius: 0 0 32px 32px;
    z-index: 2;
}

.team-card:nth-child(2) .mascot-team::before {
    /* Deepak - Friendly smile */
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 14px;
    background: #333;
    border-radius: 0 0 26px 26px;
    z-index: 2;
}

.team-card:nth-child(3) .mascot-team::before {
    /* Arjun - Small thinking smile */
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 8px;
    background: #333;
    border-radius: 0 0 18px 18px;
    z-index: 2;
}

.team-card:nth-child(4) .mascot-team::before {
    /* Priya - Cool confident smile */
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 12px;
    background: #333;
    border-radius: 0 0 30px 30px;
    z-index: 2;
}

.team-card:nth-child(5) .mascot-team::before {
    /* Vikram - Gentle calm smile */
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 10px;
    background: #333;
    border-radius: 0 0 24px 24px;
    z-index: 2;
}

.team-card:nth-child(6) .mascot-team::before {
    /* Anita - Wide excited smile */
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 20px;
    background: #333;
    border-radius: 0 0 36px 36px;
    z-index: 2;
}

/* Mascot face animations */
@keyframes mascotBlink {
    0%, 90%, 100% { 
        height: 20px; 
        top: 35%; 
    }
    95% { 
        height: 2px; 
        top: 40%; 
    }
}

@keyframes mascotHappy {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1); 
    }
}

@keyframes mascotFriendly {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg); 
    }
    25% { 
        transform: translate(-50%, -50%) scale(1.05) rotate(2deg); 
    }
    75% { 
        transform: translate(-50%, -50%) scale(1.05) rotate(-2deg); 
    }
}

@keyframes mascotThinking {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.08); 
    }
}

@keyframes mascotCool {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg); 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1) rotate(5deg); 
    }
}

@keyframes mascotCalm {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.06); 
    }
}

@keyframes mascotExcited {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg); 
    }
    25% { 
        transform: translate(-50%, -50%) scale(1.1) rotate(3deg); 
    }
    75% { 
        transform: translate(-50%, -50%) scale(1.1) rotate(-3deg); 
    }
}

/* Antenna sway animation */
@keyframes antennaSway {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(0deg); 
    }
    25% { 
        transform: translate(-50%, -50%) rotate(5deg); 
    }
    75% { 
        transform: translate(-50%, -50%) rotate(-5deg); 
    }
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-experience {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Career Page Styles */
.career-hero {
    min-height: 70vh;
    padding: 120px 0 60px;
}

.why-choose-us-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.why-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.facilities-section {
    padding: 6rem 0;
}

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

.facility-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.facility-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.facility-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.facility-item:hover {
    background: rgba(0, 212, 255, 0.1);
}

.facility-item i {
    color: var(--primary-color);
    width: 20px;
}

.job-openings-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.job-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.job-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot-job {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    filter: drop-shadow(0 5px 15px rgba(0, 212, 255, 0.3));
    animation: mascotPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* Add eyes to job mascots */
.mascot-job::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    box-shadow: 12px 0 0 #333;
}

/* Add mouth to job mascots */
.mascot-job::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 6px;
    background: #333;
    border-radius: 0 0 12px 12px;
}

.job-title-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-type, .job-experience, .job-location {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
}

.job-type.remote {
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-color);
}

.job-description {
    padding: 2rem;
}

.job-requirements {
    margin: 1.5rem 0;
}

.job-requirements h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
}

.job-requirements li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.job-requirements li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.job-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

/* Popup Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-content h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.popup-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-email {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popup-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.popup-close {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.5);
}

.apply-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

/* Career Application Section */
.career-application-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

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

.application-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.application-mascot {
    text-align: center;
}

.application-mascot .mascot-image {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.application-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.career-form-3d {
    max-width: 100%;
}

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

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
}

.form-help {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #64748b;
}

.career-cta-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.cta-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-mascot .mascot-image {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 15px 40px rgba(0, 212, 255, 0.3));
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.cta-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

/* Navigation Active State */
.nav-link.active {
    color: var(--primary-color);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .company-content {
        grid-template-columns: 1fr;
    }
    
    .director-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .director-achievements {
        justify-content: center;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .job-footer {
        flex-direction: column;
        gap: 1rem;
    }
}

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

/* Responsive adjustments for process timeline */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .step-number {
        position: absolute;
        left: -10px;
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .step-content {
        margin-left: 0;
        width: 100%;
    }
}
