/* Code by Hrishikesh Nikam */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #080808;
    color: #d4d4d4;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

/* Headings use Manrope */
h1, h2, h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Noise Texture Overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 50;
    opacity: 0.02;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Grid Background */
.bg-grid {
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    opacity: 0.3;
    z-index: 0;
}

/* Reveal Animations */
.reveal-trigger {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-hidden {
    opacity: 0;
    transform: translateY(20px);
}

/* Pulse Dot Animation */
.pulse-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 rgba(34, 197, 94, 0);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    }
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

.nav a:hover {
    color: #ffffff;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(8, 8, 8, 0.98);
    padding: 20px 24px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.btn-contact-mobile {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

/* Buttons - All use Inter font */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-contact,
button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
    text-decoration: none !important;
}

.btn-primary .arrow-icon {
    display: inline-block;
    transition: transform 0.3s;
    font-size: 16px;
    line-height: 1;
    text-decoration: none !important;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(4px);
    text-decoration: none !important;
}

.btn-primary:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    text-decoration: none !important;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-secondary .arrow-icon {
    display: inline-block;
    transition: transform 0.3s;
}

.btn-secondary:hover .arrow-icon {
    transform: translateX(3px);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.btn-demo {
    min-width: 180px;
    justify-content: center;
    padding: 14px 36px;
}

.demo-icon {
    display: inline-block;
    transition: all 0.3s;
    opacity: 0.8;
}

.btn-outline:hover .demo-icon {
    transform: scale(1.1);
    opacity: 1;
    text-decoration: none !important;
}

.btn-outline:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none !important;   
}

.btn-contact {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;  /* Fixed: added 'solid' */
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-contact .contact-icon {
    display: inline-block;
    transition: transform 0.3s;
}

.btn-contact:hover .contact-icon {
    transform: translateX(4px);
}

.btn-contact:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-text {
    background: none;
    border: none;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s;
}

.btn-text:hover {
    opacity: 0.7;
}

.btn-icon {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000000;
    font-size: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    border-color: rgba(0, 0, 0, 0.4);
    background-color: rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    font-size: 12px;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: border-color 0.3s;
    cursor: default;
}

.hero-badge:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-footnote {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Ticker */
.ticker {
    background-color: rgba(15, 15, 15, 0.5);
    padding: 16px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-content {
    display: flex;
    gap: 60px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.ticker-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ticker-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Sections */
.features,
.services,
.deployments {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.section-header-left p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.section-number {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap;
    padding-top: 8px;
}

/* Features Grid - 4 columns */
.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card {
    background-color: #080808;
    padding: 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.5s;
}

.feature-card:hover {
    background-color: rgba(255, 255, 255, 0.03);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.feature-card:hover .feature-icon {
    color: #ffffff;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    transition: color 0.3s;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

/* Services Grid - 2x2 */
.services-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-large {
    background-color: #080808;
    padding: 48px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.service-card-large:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.service-icon-circle {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.5s;
    position: absolute;
    top: 48px;
    right: 48px;
}

.service-card-large:hover .service-icon-circle {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.service-card-large h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #ffffff;
    transition: transform 0.5s;
}

.service-card-large:hover h3 {
    transform: translateX(8px);
}

.service-card-large p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 500px;
    transition: color 0.3s;
}

.service-card-large:hover p {
    color: rgba(255, 255, 255, 0.7);
}

/* Accordion */
.accordion {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #080808;
    transition: background-color 0.3s;
}

.accordion-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.accordion-number {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'JetBrains Mono', monospace;
    flex-shrink: 0;
}

.accordion-title {
    font-size: 18px;
    font-weight: 400;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.accordion-separator {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    margin: 0 8px;
}

.accordion-badge {
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.accordion-icon {
    font-size: 18px;
    transition: transform 0.3s;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 24px;
}

.accordion-item:hover .accordion-title {
    transform: translateX(4px);
}

.accordion-item:hover .accordion-icon {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.7);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 0 0 48px;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 28px;
}

.accordion-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    padding-top: 8px;
}

/* Middle CTA Section */
.middle-cta {
    background-color: #f5f5f5;
    padding: 100px 0;
}

.middle-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.green-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    margin: 0 auto 40px;
    animation: pulse-glow 2s infinite;
}

.middle-cta-text {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.middle-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.middle-cta-footnote {
    font-size: 13px;
    color: #999999;
}

/* CTA Mission Section */
.cta-mission {
    padding: 100px 0;
}

.cta-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.5s;
}

.cta-box:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    color: #000000;
    padding: 80px 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 60px;
}

.footer-cta h3 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 23px;
    letter-spacing: 0px;
    color: #000000;
    line-height: 1.1;
}

.footer-cta .btn-primary {
    margin-bottom: 24px;
    background-color: #000000;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-cta .btn-primary:hover {
    background-color: #1a1a1a;
}

.footer-cta .btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

.footer-cta .btn-contact {
    margin-bottom: 24px;
    background-color: #000000;
    color: #ffffff;
}

.footer-cta .btn-contact:hover {
    background-color: #1a1a1a;
}

.footer-note {
    font-size: 13px;
    color: #666666;
    font-family: 'JetBrains Mono', monospace;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #000000;
}

.footer-column a {
    display: block;
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: #000000;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 13px;
    color: #666666;
}

.footer-link {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.7;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Section */
.contact-section {
    min-height: 100vh;
    padding: 140px 0 80px;
    background-color: #080808;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

/* Contact Info (Left Side) */
.contact-info {
    position: sticky;
    top: 140px;
}

.contact-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
}

.contact-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
}

.form-section:last-of-type {
    margin-bottom: 32px;
}

.form-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: 'Manrope', sans-serif;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-weight: 400;
}

.optional {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}
/* =====================================================
   DROPDOWN MENU STYLES - FIXED LAYOUT
   ===================================================== */

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item-dropdown {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: #ffffff;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    width: 12px;
    height: 12px;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Invisible bridge to connect nav link and dropdown */
.nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 12px;
    background: transparent;
    z-index: 999;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(8, 8, 8, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 16px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item-title {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.dropdown-item-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
}

.dropdown-item-icon {
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-item-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Dropdown arrow indicator */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: rgba(8, 8, 8, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-50%) rotate(45deg);
}

/* Make sure other nav links maintain styling */
.nav > a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.nav > a:hover {
    color: #ffffff;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .nav-item-dropdown {
        display: none;
    }
}

/* Mobile Menu Dropdown Styles */
.mobile-menu-section-title {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu {
    background: rgba(255, 255, 255, 0.02);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.mobile-submenu-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-submenu-item svg {
    opacity: 0.5;
    transition: all 0.3s ease;
}

.mobile-submenu-item:hover svg {
    opacity: 1;
    transform: translateX(3px);
}
/* Form Inputs */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 16px 32px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.submit-icon {
    transition: transform 0.3s;
}

.btn-submit:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-submit:hover .submit-icon {
    transform: translateX(4px);
}

.btn-submit:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Success Message */
.form-success {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(8, 8, 8, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.success-content {
    text-align: center;
    max-width: 400px;
}

.success-content svg {
    margin-bottom: 24px;
}

.success-content h3 {
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Manrope', sans-serif;
}

.success-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-back {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 28px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-back:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Contact Button Active State */
.btn-contact-active {
    background-color: #ffffff;
    color: #000000;
}

.btn-contact-active:hover {
    background-color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .btn-contact {
        display: none;
    }
    
    .nav-right .btn-secondary {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header-left h2 {
        font-size: 32px;
    }
    
    .section-header-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-number {
        order: -1;
    }
    
    .features-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .accordion-header {
        gap: 12px;
        padding: 20px 0;
    }
    
    .accordion-title {
        font-size: 16px;
    }
    
    .accordion-badge {
        display: none;
    }
    
    .accordion-separator {
        display: none;
    }
    
    .accordion-content {
        padding-left: 40px;
    }
    
    .cta-box {
        flex-direction: column;
        gap: 30px;
        padding: 40px;
    }
    
    .middle-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-cta h3 {
        font-size: 32px;
    }
    
    .service-icon-circle {
        position: static;
        margin-bottom: 24px;
    }
    
    /* Contact Page Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        position: static;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LEGAL PAGE STYLES
   ============================================ */

.legal-section {
    min-height: 100vh;
    padding: 140px 0 80px;
    background-color: #080808;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
}

.legal-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
}

.legal-intro {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.legal-block {
    margin-bottom: 48px;
}

.legal-block h2 {
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
}

.legal-block h3 {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 32px;
    margin-bottom: 12px;
    font-family: 'Manrope', sans-serif;
}

.legal-block p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.legal-block ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-block li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.contact-info-block {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.contact-info-block a {
    color: #ffffff;
    text-decoration: underline;
}

.contact-info-block a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.legal-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-title {
        font-size: 36px;
    }
    
    .legal-block h2 {
        font-size: 24px;
    }
    
    .legal-block h3 {
        font-size: 16px;
    }
    
    .legal-block p,
    .legal-block li {
        font-size: 14px;
    }
}
/* =====================================================
   VIDEO MODAL STYLES
   ===================================================== */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10001;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10002;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.95);
    border-color: rgba(255, 255, 255, 0.6);
    transform: rotate(90deg) scale(1.1);
}

.video-modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

.video-modal-close svg {
    width: 24px;
    height: 24px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.8),
                0 10px 40px rgba(0, 0, 0, 0.6);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: contain;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    height: 100vh;
}

/* Video Modal Responsive adjustments */
@media (max-width: 1024px) {
    .video-modal-content {
        width: 92%;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .video-modal-close svg {
        width: 18px;
        height: 18px;
    }
    
    .video-wrapper {
        border-radius: 8px;
    }
    
    .video-wrapper video {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 96%;
    }
    
    .video-modal-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
    }
    
    .video-wrapper {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 96%;
    }
    
    .video-modal-close {
        top: -45px;
        width: 40px;
        height: 40px;
    }
    
    .video-wrapper {
        border-radius: 6px;
    }
}

/* Smooth animations for older browsers */
@media (prefers-reduced-motion: reduce) {
    .video-modal,
    .video-modal-content,
    .video-modal-close {
        transition: none;
    }
}
/* Loading spinner animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.spinning {
    animation: spin 1s linear infinite;
}

/* Button disabled state */
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Input error state */
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
    border-color: #ef4444;
    animation: shake 0.3s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
/* =====================================================
   TOAST NOTIFICATION STYLES
   ===================================================== */

.toast {
    position: fixed;
    top: 100px;
    right: 24px;
    background: rgba(8, 8, 8, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.toast.success {
    border-color: rgba(34, 197, 94, 0.3);
}

.toast.success .toast-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.toast.error {
    border-color: rgba(239, 68, 68, 0.3);
}

.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.toast-message {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
}

.toast-icon.loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Button disabled state */
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Input error state */
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
    border-color: #ef4444;
    animation: shake 0.3s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .toast {
        right: 16px;
        left: 16px;
        min-width: auto;
        max-width: none;
        top: 80px;
    }
}   
/* =====================================================
   CAREERS PAGE STYLES
   ===================================================== */

.careers-section {
    min-height: 100vh;
    padding: 140px 0 100px;
    background: #080808;
    position: relative;
    z-index: 1;
}

.careers-title {
    font-family: 'Manrope', sans-serif;
    font-size: 72px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

/* Search Bar */
.search-wrapper {
    position: relative;
    margin-bottom: 80px;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 18px 20px 18px 52px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Jobs Category */
.jobs-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Job Listing */
.job-listing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.job-listing:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 8px;
}

.job-info {
    flex: 1;
}

.job-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.job-details {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* View Role Button */
.btn-view-role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-view-role:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.btn-view-role svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-view-role:hover svg {
    transform: translateX(4px);
}

/* Active Navigation Link */
.nav-link-active {
    color: #ffffff !important;
    position: relative;
}

.nav-link-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-section {
        padding: 120px 0 80px;
    }

    .careers-title {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .search-wrapper {
        margin-bottom: 50px;
    }

    .category-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .job-listing {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 0;
    }

    .job-listing:hover {
        padding-left: 16px;
        padding-right: 16px;
        margin-left: -16px;
        margin-right: -16px;
    }

    .job-title {
        font-size: 16px;
    }

    .job-details {
        font-size: 13px;
    }

    .btn-view-role {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .careers-title {
        font-size: 36px;
    }

    .search-input {
        font-size: 14px;
        padding: 16px 16px 16px 48px;
    }

    .search-icon {
        left: 16px;
    }

    .category-title {
        font-size: 18px;
    }

    .job-details {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

/* Hidden class for search filtering */
.hidden {
    display: none !important;
}

/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */

.about-section {
    min-height: 100vh;
    padding: 140px 0 100px;
    background: #080808;
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-family: 'Manrope', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.last-updated {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 60px;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.about-text p {
    margin-bottom: 24px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.contact-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

.email-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.email-link:hover {
    color: rgba(255, 255, 255, 1);
}

.email-link:hover::after {
    background: rgba(255, 255, 255, 0.6);
    height: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 120px 0 80px;
    }

    .about-title {
        font-size: 48px;
        margin-bottom: 12px;
    }

    .last-updated {
        font-size: 13px;
        margin-bottom: 40px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-text p {
        margin-bottom: 20px;
    }

    .contact-info {
        margin-top: 32px;
        padding-top: 32px;
    }

    .contact-info p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 100px 0 60px;
    }

    .about-title {
        font-size: 36px;
    }

    .last-updated {
        font-size: 12px;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-text p {
        margin-bottom: 18px;
    }

    .contact-info {
        margin-top: 28px;
        padding-top: 28px;
    }

    .contact-info p {
        font-size: 14px;
        line-height: 1.6;
    }

    .email-link {
        word-break: break-all;
    }
}

/* Animation on scroll */
.about-content {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =====================================================
   JOB DETAIL PAGE STYLES
   ===================================================== */

/* Breadcrumb */
.breadcrumb-section {
    padding: 120px 0 20px;
    background: #080808;
}

.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb:hover {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Job Detail Section */
.job-detail-section {
    padding: 40px 0 100px;
    background: #080808;
    min-height: 100vh;
}

.job-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

/* Left Column - Job Details */
.job-detail-content {
    max-width: 700px;
}

.job-detail-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.job-detail-meta {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

.job-section {
    margin-bottom: 40px;
}

.job-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.job-section p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

.job-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-section ul li {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.job-section ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
}

/* Right Column - Application Form */
.job-application-form {
    position: relative;
}

.form-sticky {
    position: sticky;
    top: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px;
}

.form-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
}

.optional {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-display {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-display:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
}

.file-upload-text {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.btn-browse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-browse:hover {
    background: rgba(255, 255, 255, 0.12);
}

.file-name {
    display: block;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Apply Button */
.btn-apply {
    width: 100%;
    padding: 14px 24px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #080808;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-apply:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.btn-apply:active {
    transform: translateY(0);
}

/* Success Message */
.success-message {
    padding: 16px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    color: #4CAF50;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-top: 16px;
    display: none;
}

.success-message.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .job-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 100px 0 15px;
    }
    
    .job-detail-section {
        padding: 30px 0 80px;
    }
    
    .job-detail-title {
        font-size: 36px;
    }
    
    .job-section h2 {
        font-size: 18px;
    }
    
    .job-section p,
    .job-section ul li {
        font-size: 14px;
    }
    
    .form-sticky {
        padding: 24px;
    }
    
    .form-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .job-detail-title {
        font-size: 28px;
    }
    
    .breadcrumb,
    .breadcrumb-current {
        font-size: 12px;
    }
    
    .form-sticky {
        padding: 20px;
    }
}