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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.8rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    margin-right: 0.5rem;
}

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

.nav-link {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00d4ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 153, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.hero-buttons .btn {
    min-width: 160px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: #00d4ff;
    color: #00d4ff;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 400px;
    height: 400px;
}

.security-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.security-shield i {
    font-size: 3rem;
    color: #00d4ff;
}



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

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



.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-align: center;
}

.section-header p {
    font-size: 1.25rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
}

.coming-soon {
    position: relative;
    opacity: 0.8;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 48px;
    height: 48px;
    margin-right: 0.5rem;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #b0b0b0;
}

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

.social-links a {
    color: #b0b0b0;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00d4ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-graphic {
        width: 300px;
        height: 300px;
    }
    
    .security-shield {
        width: 150px;
        height: 150px;
    }
    
    .security-shield i {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem;
    }
} 

/* Solutions Page Styles */
.solutions-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

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

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
}

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

.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.solution-card h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.solution-features li {
    color: #ffffff !important;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    text-align: left;
    position: relative;
    padding-left: 1.5rem;
}

.solution-features li::before {
    content: "•";
    color: #00d4ff !important;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.solution-features li strong {
    color: #00d4ff !important;
    font-weight: 600;
}

.solution-subtitle {
    color: #ffffff !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #533483 100%);
    min-height: 100vh;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: #fff;
}

.benefit-item h4 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
    padding: 6rem 0;
    background: linear-gradient(135deg, #533483 0%, #e94560 50%, #f39c12 100%);
    min-height: 100vh;
    position: relative;
}

.use-cases::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="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.use-case-card h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.use-case-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* About Page Styles */
.mission {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 20, 40, 0.9) 100%);
}
.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.mission-content h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.mission-content p {
    color: #b0b0b0;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.mission-content .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.mission-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}



/* Values Section */
.values {
    padding: 0.75rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 20, 40, 0.9) 100%);
}
.values-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.values-header h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}
.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.value-icon i {
    font-size: 2rem;
    color: #000;
}
.value-card h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}
.value-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

/* Story Section */
.story {
    padding: 6rem 0;
    background: linear-gradient(135deg, #533483 0%, #e94560 50%, #f39c12 100%);
    min-height: 100vh;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.story-text p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-text ul {
    color: #e0e0e0;
    line-height: 1.8;
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.story-text li {
    margin-bottom: 0.5rem;
}

/* Careers Page Styles */
.culture {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

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

.culture-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.culture-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.culture-icon i {
    font-size: 2rem;
    color: #fff;
}

.culture-card h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.culture-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Positions Section */
.positions {
    padding: 6rem 0;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #533483 100%);
    min-height: 100vh;
}

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

.position-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.position-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

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

.position-header h3 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    flex: 1;
    margin-right: 1rem;
    line-height: 1.3;
}

.position-type {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.position-details {
    margin-bottom: 1rem;
}

.position-details p {
    color: #b0b0b0;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.position-details i {
    color: #00d4ff;
    margin-right: 0.5rem;
    width: 16px;
}

.position-description {
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

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

/* Contact Page Styles */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.contact-form h2 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-form p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.hidden {
    display: none;
}

.contact-info {
    color: #fff;
}

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #fff;
    font-size: 1.25rem;
}

.contact-details h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #b0b0b0;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.social-contact h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, #533483 0%, #e94560 50%, #f39c12 100%);
    min-height: 100vh;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.faq-item h4 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .position-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .position-actions {
        flex-direction: column;
    }
} 

/* Solutions Page Hero Typography */
.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero-description {
    margin-bottom: 3rem;
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-text:last-child {
    margin-bottom: 0;
    color: #00d4ff;
    font-weight: 500;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: #00d4ff;
    color: #00d4ff;
    transform: translateY(-2px);
}

/* Use Case Boxes */
.use-case-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.use-case-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

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

.use-case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
}

.use-case-header h4 {
    color: #00d4ff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.use-case-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.use-case-content p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.use-case-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-features li {
    color: #d0d0d0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.use-case-features li::before {
    content: "✓";
    color: #00d4ff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Industry Boxes */
.industry-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.industry-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

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

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
}

.industry-header h4 {
    color: #00d4ff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.industry-content {
    flex: 1;
}

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

.industry-content ul li {
    color: #b0b0b0;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.industry-content ul li::before {
    content: "•";
    color: #00d4ff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive adjustments for solutions hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .use-case-box,
    .industry-box {
        padding: 1.5rem;
    }
    
    .use-case-header,
    .industry-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

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

/* Why Visiblaze Section */
.why-visiblaze {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.why-card h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-card p {
    color: #b0b0b0;
    line-height: 1.6;
    flex: 1;
} 

/* Force why-grid to always be 4 columns, even on mobile */
.why-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
}

/* Responsive adjustments for why-grid */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .why-card {
        padding: 1.5rem;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
} 

/* Simple Features Container - Horizontal Layout */
.features-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.feature-card .why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-container {
        justify-content: center;
        gap: 15px;
    }
    
    .feature-card {
        min-width: 220px;
        max-width: 280px;
    }
} 

/* Why Visiblaze Cards - Unique Classes to Avoid Conflicts */
.why-cards-container {
    display: flex !important;
    justify-content: space-between !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin-top: 3rem !important;
    flex-direction: row !important;
}

.why-card-item {
    flex: 1 !important;
    min-width: 250px !important;
    max-width: 300px !important;
    text-align: center !important;
    padding: 20px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

.why-card-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1) !important;
    border-color: rgba(0, 212, 255, 0.3) !important;
}

.why-card-item .why-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 1.5rem !important;
    background: linear-gradient(135deg, #00d4ff, #0099cc) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    color: white !important;
}

.why-card-item h3 {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.why-card-item p {
    color: #b0b0b0 !important;
    line-height: 1.6 !important;
}

@media (max-width: 768px) {
    .why-cards-container {
        justify-content: center !important;
        gap: 15px !important;
    }
    
    .why-card-item {
        min-width: 220px !important;
        max-width: 280px !important;
    }
} 

/* Process Flow with Arrows */
.process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: nowrap;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    width: 250px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin: 0 auto 1rem;
    flex-shrink: 0;
}

.process-step h4 {
    color: #00d4ff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.process-step p {
    color: #b0b0b0;
    line-height: 1.5;
    font-size: 1rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-arrow {
    color: #00d4ff;
    font-size: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 50px;
    margin: 0 0.5rem;
    padding-top: 30px;
}

.process-arrow i {
    transform: rotate(0deg);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .process-flow {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .process-step {
        width: 220px;
        height: 320px;
        padding: 1.5rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .process-step {
        min-width: 180px;
        padding: 1.5rem;
        width: 100%;
        max-width: 300px;
    }
    
    .process-arrow {
        font-size: 1.5rem;
        transform: rotate(90deg);
        margin: 0.5rem 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
} 

/* Industry Grid 2x2 Layout */
.industry-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Use Cases Dark Background */
.use-cases {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 6rem 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .process-flow {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .industry-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-step {
        min-width: 180px;
        padding: 1.5rem;
    }
    
    .process-arrow {
        font-size: 1.5rem;
    }
} 

/* Privacy Policy Page */
.privacy-content {
    padding: 8rem 0 6rem;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
}

.privacy-text h2 {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.privacy-text h2:first-child {
    margin-top: 0;
}

.privacy-text p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .privacy-text {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    .privacy-text h2 {
        font-size: 1.25rem;
    }
} 

/* Hero text white color */
.hero-text.white-text {
    color: #ffffff !important;
}

/* Ensure compliance icon shows */
.solution-icon i.fas.fa-shield-check {
    display: block !important;
    font-size: 2.5rem !important;
    color: #00d4ff !important;
}

/* Override any potential hiding */
.solution-card .solution-icon i.fas.fa-shield-check {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
} 

/* New Solution Features Structure */
.solution-features {
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 0.75rem;
}

.bullet {
    color: #00d4ff;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.feature-content {
    color: #ffffff;
    line-height: 1.5;
    flex: 1;
}

.feature-content strong {
    color: #00d4ff;
    font-weight: 600;
}

.solution-subtitle {
    color: #ffffff !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
} 

/* Force white text and blue bullets in solution cards */
.solution-card .solution-subtitle {
    color: #ffffff !important;
}

.solution-card .feature-content {
    color: #ffffff !important;
}

.solution-card .bullet {
    color: #00d4ff !important;
}

.solution-card .feature-content strong {
    color: #00d4ff !important;
}

/* Override any conflicting styles */
.solution-card p,
.solution-card div {
    color: #ffffff !important;
} 

/* About Page Styling */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}
.about-text h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.about-text h3:first-child {
    margin-top: 0;
}
.about-text h4 {
    color: #00d4ff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}
.about-text p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.about-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}
.about-text ul li {
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.1rem;
}
.about-text ul li::before {
    content: "•";
    color: #00d4ff;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}
.about-text ul li strong {
    color: #00d4ff;
    font-weight: 600;
}

/* About section header improvements */
.about .section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.about .section-header h2 {
    color: #00d4ff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.about .section-header p {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .about-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    .about .section-header h2 {
        font-size: 2rem;
    }
    .about .section-header p {
        font-size: 1.1rem;
    }
    .about-text h3 {
        font-size: 1.3rem;
    }
    .about-text p,
    .about-text ul li {
        font-size: 1rem;
    }
} 

/* About Page Sections Styling */

/* Vision Section */
.vision {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.vision-content h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.vision-content p {
    color: #b0b0b0;
    font-size: 1.25rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Values Section */
.values {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 20, 40, 0.9) 100%);
}
.values-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.values-header h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}
.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.value-icon i {
    font-size: 2rem;
    color: #000;
}
.value-card h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}
.value-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

/* Roadmap Section */
.roadmap {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.roadmap-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.roadmap-content h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.roadmap-content p {
    color: #b0b0b0;
    font-size: 1.25rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission Section */
.mission {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 20, 40, 0.9) 100%);
}
.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.mission-content h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.mission-content p {
    color: #b0b0b0;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.mission-content .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.mission-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}



/* Responsive Design */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .vision-content h2,
    .values-header h2,
    .roadmap-content h2,
    .mission-content h2 {
        font-size: 2.5rem;
    }
    .vision-content p,
    .roadmap-content p,
    .mission-content p {
        font-size: 1.1rem;
    }
    .value-card {
        padding: 1.5rem;
    }

}

/* Job Details Page Styles */
.job-details {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    min-height: 100vh;
}

.job-header {
    margin-bottom: 3rem;
}

.breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.job-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.1;
}

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

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.job-meta i {
    color: #00d4ff;
}

.job-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.job-main {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.job-section {
    margin-bottom: 2.5rem;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    border-bottom: 2px solid #00d4ff;
    padding-bottom: 0.5rem;
}

.job-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.job-section ul li {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.job-section ul li::before {
    content: '•';
    color: #00d4ff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tech-tags .tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.tech-tags .tag:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.apply-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.apply-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.apply-card p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.apply-card .btn {
    margin-bottom: 1.5rem;
}

.contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.contact-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #00d4ff;
    width: 16px;
}

.search-jobs {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-jobs h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.search-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-box input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.9rem;
}

.search-box input::placeholder {
    color: #b0b0b0;
}

.search-box input:focus {
    outline: none;
    border-color: #00d4ff;
}

.search-box button {
    padding: 0.75rem 1rem;
    background: #00d4ff;
    border: none;
    border-radius: 8px;
    color: #000000;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: #00b8e6;
}

.job-categories h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.job-categories ul li {
    margin-bottom: 0.5rem;
}

.job-categories ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.job-categories ul li a:hover {
    color: #00d4ff;
}

/* Responsive Design for Job Details */
@media (max-width: 1024px) {
    .job-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .job-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .job-details {
        padding: 100px 0 60px;
    }
    
    .job-header h1 {
        font-size: 2.5rem;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .job-main {
        padding: 1.5rem;
    }
    
    .apply-card,
    .search-jobs {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .job-header h1 {
        font-size: 2rem;
    }
    
    .job-main {
        padding: 1rem;
    }
    
    .apply-card,
    .search-jobs {
        padding: 1rem;
    }
    
    .tech-tags {
        gap: 0.5rem;
    }
    
    .tech-tags .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Application Form Styles */
.application-form {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    min-height: 100vh;
}

.form-header {
    margin-bottom: 3rem;
    text-align: center;
}

.form-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.1;
}

.form-header p {
    color: #b0b0b0;
    font-size: 1.2rem;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.application-form-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #00d4ff;
    padding-bottom: 0.5rem;
}

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

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

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
}

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

.file-upload {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-info {
    pointer-events: none;
}

.file-upload-info i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.file-upload-info p {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.file-upload-info span {
    color: #b0b0b0;
    font-size: 0.85rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #b0b0b0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.application-info,
.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.application-info h3,
.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #00d4ff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.step-content p {
    color: #b0b0b0;
    font-size: 0.85rem;
    margin: 0;
}

.contact-info-card p {
    color: #b0b0b0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-details p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-details i {
    color: #00d4ff;
    width: 16px;
}

/* Responsive Design for Application Form */
@media (max-width: 1024px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .application-form {
        padding: 100px 0 60px;
    }
    
    .form-header h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .application-form-content {
        padding: 1.5rem;
    }
    
    .application-info,
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .form-header h1 {
        font-size: 2rem;
    }
    
    .application-form-content {
        padding: 1rem;
    }
    
    .application-info,
    .contact-info-card {
        padding: 1rem;
    }
    
    .file-upload {
        padding: 1.5rem;
    }
}

/* Job Search Styles */
.job-search-container {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-filters {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1rem;
}

.search-input {
    position: relative;
}

.search-input input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.search-input input::placeholder {
    color: #b0b0b0;
}

.search-input i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b0b0;
    font-size: 0.9rem;
}

.filter-dropdown select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-dropdown select:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.filter-dropdown select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

#clearFilters {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.search-results span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Responsive Design for Job Search */
@media (max-width: 1024px) {
    .search-filters {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .search-input {
        grid-column: 1 / -1;
    }
    
    #clearFilters {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 768px) {
    .job-search-container {
        padding: 1.5rem;
    }
    
    .search-filters {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-input {
        grid-column: 1;
    }
    
    #clearFilters {
        grid-column: 1;
        justify-self: stretch;
    }
}

@media (max-width: 480px) {
    .job-search-container {
        padding: 1rem;
    }
    
    .search-filters {
        gap: 0.75rem;
    }
}

/* Job Title Link Styles */
.job-title-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.job-title-link:hover {
    color: #00d4ff;
    text-decoration: none;
}

.job-title-link:focus {
    outline: none;
    color: #00d4ff;
}

/* Make job cards more interactive */
.position-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.position-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.position-header h3 {
    margin: 0;
    line-height: 1.3;
}

/* Form Validation Styles */
.validation-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    min-height: 1.2rem;
    transition: all 0.3s ease;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.3);
}

/* Only show green validation for required fields that are filled and valid */
.form-group input[required]:valid:not(:placeholder-shown),
.form-group textarea[required]:valid:not(:placeholder-shown) {
    border-color: #51cf66;
}

.form-group input[required]:valid:not(:placeholder-shown):focus,
.form-group textarea[required]:valid:not(:placeholder-shown):focus {
    border-color: #51cf66;
    box-shadow: 0 0 0 2px rgba(81, 207, 102, 0.2);
}

/* Phone number input specific styling */
.form-group input[type="tel"] {
    font-family: 'Inter', monospace;
    letter-spacing: 0.5px;
}

/* Success message styling */
.success-message {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Responsive validation messages */
@media (max-width: 768px) {
    .validation-message {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .validation-message {
        font-size: 0.75rem;
    }
}