/* 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;
    line-height: 1.6;
    color: #000;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-display: swap;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Title Specific Styling */
.hero-title, .title-main, .title-accent {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-display: swap;
    will-change: auto;
    min-height: 1.2em; /* Prevent layout shift during typing */
}

/* Typing Animation Styles */
[data-typing="true"] {
    border-right: 2px solid #000;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { border-color: #000; }
    51%, 100% { border-color: transparent; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-full {
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 48px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: #000;
    font-weight: 500;
}

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

.nav-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.cta-button:hover {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-overview .service-cta {
    margin: 24px 0;
    text-align: center;
    display: block !important;
    width: 100%;
    justify-content: center;
}

.service-overview-content-centered {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.service-overview-content-centered .section-title {
    margin-bottom: 32px;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: #000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.service-overview-content-centered .section-description {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.8;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    color: #666;
    font-weight: 300;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.service-overview-content-centered .service-stats {
    justify-content: center;
    margin-top: 40px;
}

/* Responsive Design for Service Overview Centered */
@media (max-width: 1024px) {
    .service-overview-content-centered .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .service-overview-content-centered .section-title {
        font-size: 2.5rem;
    }
    
    .service-overview-content-centered .section-description {
        font-size: 16px;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .title-main,
    .title-accent {
        font-size: 24px;
        word-wrap: break-word;
    }
    
    .title-main {
        color: #f97316 !important;
    }
    
    .title-accent {
        color: #ea580c !important;
    }
}

@media (max-width: 480px) {
    .title-main,
    .title-accent {
        font-size: 20px;
    }
    
    .title-main {
        color: #f97316 !important;
    }
    
    .title-accent {
        color: #ea580c !important;
    }
    
    .hero-text {
        padding: 0 12px;
    }
}

/* Removed simple services section - keeping original design */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 1px;
    background: #000;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000 url('assets/hero-image.jpg') center/cover no-repeat;
}




.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    max-width: 800px;
    text-align: center;
    padding: 40px 0;
}

.hero-subtitle {
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 24px;
    white-space: nowrap;
    flex-wrap: nowrap;
    justify-content: center;
}

.hero-title-accent {
    font-weight: 400;
}

.hero-description {
    font-size: 20px;
    color: #ccc;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 32px;
}

.title-main {
    font-size: 48px;
    font-weight: 300;
    color: #f97316 !important;
    line-height: 1.1;
    letter-spacing: -2px;
    display: inline;
    white-space: nowrap;
}

.title-accent {
    font-size: 48px;
    font-weight: 400;
    color: #ea580c !important;
    line-height: 1.1;
    letter-spacing: -2px;
    position: relative;
    display: inline;
    white-space: nowrap;
}

/* Underline removed from title-accent */

.hero-subtitle {
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-description {
    font-size: 20px;
    color: #ccc;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.1s both;
}

/* Subtle Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hero-image-container {
    display: flex;
    justify-content: center;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 1px solid #d0d0d0;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
}

/* Modern About Section */
.about-modern {
    padding: 120px 0;
    background: #fafafa;
    position: relative;
}

.about-modern-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-text-section {
    max-width: 100%;
    text-align: center;
}

.about-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.highlight-text {
    background: linear-gradient(135deg, #000 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.about-description {
    font-size: 18px;
    color: #666;
    font-weight: 300;
    max-width: 100%;
    margin: 0 auto 24px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-description:last-of-type {
    margin-bottom: 0;
}

/* Video container removed - content is now centered */

/* Responsive Design */
@media (max-width: 1024px) {
    .about-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-modern {
        padding: 80px 0;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-description {
        font-size: 16px;
    }
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #f8f8f8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 300;
    color: #000;
    margin-bottom: 8px;
    white-space: nowrap;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 96px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    color: #000;
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-category {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.service-title {
    font-size: 24px;
    font-weight: 300;
    color: #000;
    margin-bottom: 16px;
    transition: color 0.2s ease;
}

.service-card:hover .service-title {
    color: #666;
}

.service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    margin-top: auto;
    transition: color 0.2s ease;
}

.service-card:hover .service-cta {
    color: #666;
}

.arrow-icon {
    transition: transform 0.2s ease;
}

.service-card:hover .arrow-icon {
    transform: translateX(4px);
}

/* CTA Section */
.cta {
    padding: 96px 0;
    background: #f8f8f8;
}

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

.cta-title {
    font-size: 48px;
    font-weight: 300;
    color: #000;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 18px;
    color: #666;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer - Bold Minimalism Style */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo .logo-image {
    height: 96px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 16px;
    color: #ccc;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-link:hover {
    color: #fff;
    padding-left: 20px;
}

.footer-link:hover::before {
    width: 15px;
}

/* Button footer links should align with regular footer links */
button.footer-link {
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: block;
    margin-bottom: 8px;
}

button.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

button.footer-link:hover {
    color: #fff;
    padding-left: 20px;
}

button.footer-link:hover::before {
    width: 15px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #999;
    font-weight: 300;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal-link {
    color: #999;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #fff;
}

/* Modal - Simple Design */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #000;
}

.modal-body {
    padding: 24px;
}

/* Form Styles - Simple Design */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #000;
}

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

/* Vertical Selection Section - Simple */
.vertical-selection {
    margin: 20px 0;
}

.vertical-selection-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.vertical-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.vertical-option {
    position: relative;
    cursor: pointer;
}

.vertical-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vertical-option-label {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.2s ease;
}

.vertical-option:hover .vertical-option-label {
    border-color: #000;
    background: #f0f0f0;
}

.vertical-option input[type="radio"]:checked + .vertical-option-label {
    background: #000;
    border-color: #000;
    color: #fff;
    font-weight: 600;
}

.vertical-option-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.vertical-option-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.vertical-option-subtitle {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
    font-weight: 400;
}


/* Responsive Design for Vertical Selection */
@media (max-width: 768px) {
    .vertical-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .vertical-option-label {
        padding: 14px 16px;
    }
    
    .vertical-option-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        font-size: 10px;
    }
    
    .vertical-option-text {
        font-size: 13px;
    }
    
    .vertical-option-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .vertical-selection-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .vertical-option-label {
        padding: 12px 14px;
    }
    
    .vertical-option-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    
    .vertical-option-text {
        font-size: 12px;
    }
    
    .vertical-option-subtitle {
        font-size: 10px;
    }
}

/* Simple Submit Button */
.contact-form .btn-primary {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-form .btn-primary:hover {
    background: #333;
}

.contact-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-main-image {
        max-width: 400px;
        height: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 8px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .title-main,
    .title-accent {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .title-main,
    .title-accent {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    /* Mobile About Section */
    .about {
        padding: 60px 0;
    }
    
    .about-description {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-content {
        padding: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 28px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Selection styles */
::selection {
    background: #f0f0f0;
    color: #000;
}

/* Progression Effect Styles */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #000, #333);
    width: 0%;
    transition: width 0.1s ease;
}

/* Section Progression Effects */
.section-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.animate-progression {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

/* Remove problematic animations */
.text-reveal span {
    display: inline-block;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Smooth transitions for all elements */
* {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

/* Remove flashing effects */
.animate-fade-in-up,
.animate-fade-in-left,
.animate-fade-in-right,
.animate-scale-in,
.animate-slide-in-up {
    animation: none !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Advanced Page Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    }
}

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

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

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #000;
    }
}

/* Floating Elements */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* Typing Effect */
.typing-container {
    overflow: hidden;
    border-right: 2px solid #000;
    white-space: nowrap;
    animation: blink-caret 0.75s step-end infinite;
}

/* Reveal Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-animation {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Page Transitions */
.page-exit {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    display: block;
    opacity: 1;
}

.custom-cursor.cursor-hover {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%) scale(1.2);
}

/* Magnetic Button Effects */
.btn, .cta-button {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover, .cta-button:hover {
    /* Simplified hover effect - removed complex transforms */
    background: #333;
}

/* Enhanced Service Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


/* Stats Animation */
.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Hero Section Enhancements */

.hero-description {
    animation: slideInFromRight 1s ease-out 0.3s both;
}

.hero-buttons {
    animation: scaleIn 1s ease-out 0.6s both;
}

/* Section Staggered Animations */
.section-title {
    animation: slideInFromLeft 0.8s ease-out;
}

.section-description {
    animation: slideInFromRight 0.8s ease-out 0.2s both;
}

/* Ripple Effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* Tilt Effect - Removed */
/* Complex transform effects have been removed for cleaner design */

/* Enhanced Navigation Animations */
.nav-link {
    position: relative;
    overflow: hidden;
}

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

.nav-link:hover::before {
    left: 100%;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: #f8f8f8;
    color: #000;
    padding-left: 24px;
}

.dropdown-link.active {
    background: #f0f0f0;
    color: #000;
    font-weight: 500;
}

/* Logo Animation - Now handled by .logo-image:hover */

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    margin: 10px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-dot.active {
    background: #000;
    transform: scale(1.5);
}

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

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

/* Text Glow Effect */
.glow-text {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: text-shadow 0.3s ease;
}

.glow-text:hover {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Image Hover Effects */
.hero-image, .service-hero-image {
    transition: transform 0.5s ease, filter 0.3s ease;
}

.hero-image:hover, .service-hero-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
    
    .floating-element {
        animation: none;
    }
    
    .typing-container {
        animation: none;
        border-right: none;
    }
    
    .tilt-effect {
        transform: none !important;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    
    
    
    
    /* Mobile Dropdown */
    .nav-dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8f8f8;
        margin-top: 10px;
        border-radius: 0;
    }
    
    .dropdown-link {
        padding: 8px 0;
        border-bottom: 1px solid #e0e0e0;
        font-size: 13px;
    }
    
    .dropdown-link:hover {
        padding-left: 0;
        background: #e0e0e0;
    }
    
    /* Mobile Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* Service Pages Styles */
.service-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.service-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

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

.service-breadcrumb {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 24px;
}

.service-breadcrumb a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-breadcrumb a:hover {
    color: #fff;
}

.service-hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-display: swap;
    transform: none !important;
    animation: none !important;
    will-change: auto;
}

.service-hero-description {
    font-size: 18px;
    color: #ccc;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 32px;
}

.service-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-overview {
    padding: 96px 0;
    background: #fff;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-overview-content {
    max-width: 100% !important;
}

.service-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.service-stat {
    text-align: center;
}

.service-stat .stat-number {
    font-size: 36px;
    font-weight: 300;
    color: #000;
    margin-bottom: 8px;
}

.service-stat .stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-overview-image {
    display: flex;
    justify-content: center;
}

.overview-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.services-detailed {
    padding: 96px 0;
    background: #f8f8f8;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.service-detail-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Service detail card hover effects removed for cleaner design */

.service-detail-icon {
    width: 64px;
    height: 64px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #000;
}

.service-detail-title {
    font-size: 24px;
    font-weight: 300;
    color: #000;
    margin-bottom: 16px;
}

.service-detail-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.service-detail-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-features li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.service-detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 600;
}

.case-study {
    padding: 96px 0;
    background: #fff;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.case-study-title {
    font-size: 28px;
    font-weight: 300;
    color: #000;
    margin-bottom: 24px;
}

.case-study-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.case-study-results {
    display: flex;
    gap: 32px;
}

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

.result-number {
    font-size: 32px;
    font-weight: 300;
    color: #000;
    margin-bottom: 8px;
}

.result-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-image {
    display: flex;
    justify-content: center;
}

.case-study-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

.animate-slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Staggered Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* Hover Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Loading States */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Scroll-triggered Animations - Simplified */
.scroll-animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

/* Parallax Elements */
.parallax-slow {
    transform: translateY(var(--scroll-slow, 0));
}

.parallax-fast {
    transform: translateY(var(--scroll-fast, 0));
}

/* Text Animations */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.8s ease;
}

.text-reveal.animate span {
    transform: translateY(0);
}

/* Button Animations */
.btn-animated {
    position: relative;
    overflow: hidden;
}

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

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

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
    position: relative;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.card-hover:hover::before {
    opacity: 1;
}

.card-hover:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Service Pages */
@media (max-width: 1024px) {
    .service-overview-grid,
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .services-detailed-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .service-hero-title {
        font-size: 36px;
    }
    
    .service-hero-description {
        font-size: 16px;
    }
    
    .service-detail-card {
        padding: 24px;
    }
    
    .service-stats,
    .case-study-results {
        flex-direction: column;
        gap: 16px;
    }
}

/* Trusted Companies Section */
.trusted-companies {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 40px 0;
}

.trusted-companies .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 300;
    color: #000;
}

/* Marquee Styles */
.site-footer-marquee {
    overflow: hidden;
    position: relative;
    background: transparent;
    padding: 0;
    margin: 0;
}

.site-footer-marquee__track {
    display: flex;
    animation: marquee-scroll 30s linear infinite;
    width: calc(200% + 40px);
}

.site-footer-marquee__grid {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.site-footer-marquee-item {
    position: relative;
    display: block;
    width: 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.site-footer-marquee-item:hover {
    transform: translateY(-5px);
}

.site-footer-marquee-item__stack {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--stack-color-1), var(--stack-color-2));
    opacity: 0.1;
    z-index: 1;
}

.site-footer-marquee-item__media {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.site-footer-marquee-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.site-footer-marquee-item__title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    z-index: 3;
}

/* Duplicate marquee items for seamless loop */

/* Team Page Styles */
.team-section {
    padding: 80px 0;
    background: #fff;
}

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

.section-title {
    font-size: 36px;
    font-weight: 300;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Leadership Section */
.leadership-section {
    margin-bottom: 40px;
}

.leadership-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.leadership-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: left;
    border: none;
    box-shadow: none;
    transition: none;
    position: static;
}

.leadership-card::before {
    display: none;
}

.leadership-card:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.leadership-role {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.leadership-bio {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Team Members Grid */
.team-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.member-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    border: 3px solid #e5e7eb;
    transition: all 0.3s ease;
}

.team-member-card:hover .member-icon {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.icon-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.team-member-card:hover .icon-image {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.member-info {
    text-align: center;
}

.member-role {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.member-bio {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Vertical Organizational Chart */

.org-chart {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 0 20px;
    position: relative;
}

/* Organization Levels */
.org-level {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

/* Top Level - Founders Section */
.top-level-section {
    margin-bottom: 50px;
    text-align: center;
}

.top-level-section .section-header {
    margin-bottom: 30px;
}

.top-level-section .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founders-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.founder-item {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.founder-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.founder-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
}

.departments-level {
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
}

/* Founder Cards - Content Only */
.founder-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
    min-width: 280px;
    box-shadow: none;
    transition: none;
    position: relative;
}

.founder-card:hover {
    transform: none;
    box-shadow: none;
}

.ceo-card {
    border: none;
    background: transparent;
}

.cto-card {
    border: none;
    background: transparent;
}

.position-icon {
    display: none;
}

.position-details {
    text-align: center;
}

.position-name {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.position-title {
    font-size: 13px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


/* All Team Members Container */
.all-team-members-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Individual Department Section */
.department-section {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    min-height: 200px;
}

.department-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    position: relative;
    flex: 1;
    min-width: 0;
    max-width: none;
    transition: none;
    display: flex;
    flex-direction: column;
}

.department-card:hover {
    transform: none;
    box-shadow: none;
    border: none;
}

/* Department headers removed - no longer needed */

.team-members {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.team-member-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
    transition: none;
    box-shadow: none;
    text-align: center;
    flex: 1;
    max-width: 400px;
}

.team-member-box:hover {
    transform: none;
    box-shadow: none;
    border: none;
}

.member-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.member-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
}

/* Organization Levels */
.org-level {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.org-level.top-level {
    margin-bottom: 40px;
}

.org-level.second-level {
    margin-bottom: 0;
}

/* Leadership Container */
.leadership-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Position Boxes */
.position-box {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.position-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.position-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.position-details {
    text-align: center;
}

.position-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.position-title {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Department Grid */
.department-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.department-group {
    text-align: center;
}

.department-header {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.department-header:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.dept-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.dept-title {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.team-positions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.team-box:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.team-box .position-name {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 2px;
}

.team-box .position-title {
    font-size: 11px;
    color: #6b7280;
    font-weight: 400;
}

/* Connecting Lines */
.org-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 40px;
    pointer-events: none;
}

.vertical-line {
    position: absolute;
    background: #d1d5db;
    width: 2px;
    height: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.horizontal-line {
    position: absolute;
    background: #d1d5db;
    height: 2px;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-vertical {
    top: -20px;
}

.main-horizontal {
    top: 0;
}

/* Responsive Design for Org Chart */
@media (max-width: 1200px) {
    .department-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .leadership-container {
        gap: 30px;
    }
    
    .position-box {
        min-width: 180px;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .org-chart {
        padding: 20px 10px;
    }
    
    .leadership-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .department-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .position-box {
        min-width: 160px;
        padding: 14px;
    }
    
    .org-lines {
        display: none;
    }
}

@media (max-width: 480px) {
    
    .position-box {
        min-width: 140px;
        padding: 12px;
    }
    
    .position-name {
        font-size: 14px;
    }
    
    .position-title {
        font-size: 11px;
    }
    
    .dept-title {
        font-size: 13px;
    }
}

/* Team Members Grid Responsive */
@media (max-width: 1200px) {
    .team-members-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-member-card {
        padding: 25px 15px;
    }
    
    .member-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .icon-image {
        width: 35px;
        height: 35px;
    }
    
    .member-role {
        font-size: 16px;
    }
    
    .member-bio {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .team-members-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .team-member-card {
        padding: 20px 15px;
    }
    
    .member-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .icon-image {
        width: 30px;
        height: 30px;
    }
}

/* Organizational Chart Responsive */
@media (max-width: 1200px) {
    .all-team-members-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 40px;
        padding: 0 20px;
    }
    
    .department-card {
        min-width: 180px;
        max-width: 220px;
    }
    
    .founders-level {
        gap: 30px;
    }
    
    .founder-card {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .all-team-members-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .team-member-box {
        max-width: 100%;
    }
    
    .org-chart {
        padding: 0 10px;
        margin: 40px auto 0;
        max-width: 100%;
    }
    
    .founders-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .founder-item {
        max-width: 100%;
    }
    
    .team-members {
        flex-direction: column;
        gap: 30px;
    }
    
    .team-member-box {
        max-width: 100%;
    }
    
    .top-level-section .section-title {
        font-size: 20px;
    }
    
    .founder-name {
        font-size: 18px;
    }
    
    .founder-description {
        font-size: 13px;
    }
    
    .member-name {
        font-size: 18px;
    }
    
    .member-desc {
        font-size: 13px;
    }
    
    /* Department titles removed */
    
    .position-name {
        font-size: 16px;
    }
    
    .position-title {
        font-size: 12px;
    }
    
    .all-team-members-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 25px;
        padding: 0 16px;
    }
    
    .department-card {
        min-width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    
    .member-name {
        font-size: 13px;
    }
    
    .member-desc {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .org-chart {
        padding: 0 5px;
    }
    
    .top-level-section .section-title {
        font-size: 18px;
    }
    
    .founder-name {
        font-size: 16px;
    }
    
    .founder-description {
        font-size: 12px;
    }
    
    .member-name {
        font-size: 16px;
    }
    
    .member-desc {
        font-size: 12px;
    }
    
    /* Department titles removed */
    
    .all-team-members-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 20px;
        padding: 0 16px;
    }
    
    .position-name {
        font-size: 14px;
    }
    
    .position-title {
        font-size: 11px;
    }
    
    .dept-title {
        font-size: 14px;
    }
    
    .member-name {
        font-size: 12px;
    }
    
    .member-desc {
        font-size: 10px;
    }
}

/* Leadership Section */
.leadership-section {
    margin-bottom: 40px;
}

.leadership-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.leadership-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: left;
    border: none;
    box-shadow: none;
    transition: none;
    position: static;
}

.leadership-card::before {
    display: none;
}

.leadership-card:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.leadership-role {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.leadership-bio {
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Team Categories */
.team-categories {
    margin-top: 30px;
}

.categories-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.categories-description {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.team-category {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: none;
}

.team-category:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.category-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #6b7280;
    border-radius: 1px;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team-member {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    transition: none;
    position: static;
}

.team-member:hover {
    background: transparent;
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

.member-role {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.member-bio {
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.team-category {
    margin-bottom: 80px;
}

.team-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #000, #666);
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.team-member {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.member-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    border: 2px solid #e9ecef;
}

.icon-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.team-member:hover .icon-image {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}


.member-name {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.member-role {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.member-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}


/* Responsive Design for Compact Vertical Layout */
@media (max-width: 1200px) {
    .leadership-grid {
        gap: 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-category {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .leadership-grid {
        gap: 12px;
    }
    
    .leadership-card {
        padding: 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-category {
        padding: 0;
    }
    
    .categories-title {
        font-size: 24px;
    }
    
    .categories-description {
        font-size: 14px;
    }
    
    .category-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .leadership-role {
        font-size: 16px;
    }
    
    .leadership-bio {
        font-size: 13px;
    }
    
    .member-role {
        font-size: 15px;
    }
    
    .member-bio {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .leadership-section {
        margin-bottom: 25px;
    }
    
    .leadership-card {
        padding: 0;
    }
    
    .team-categories {
        margin-top: 25px;
    }
    
    .team-grid {
        gap: 15px;
    }
    
    .team-category {
        padding: 12px;
    }
    
    .team-members {
        gap: 12px;
    }
    
    .team-member {
        padding: 0;
    }
    
    .categories-title {
        font-size: 20px;
    }
    
    .categories-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .category-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .leadership-role {
        font-size: 14px;
    }
    
    .leadership-bio {
        font-size: 12px;
    }
    
    .member-role {
        font-size: 14px;
    }
    
    .member-bio {
        font-size: 11px;
    }
}
    
    .member-image {
        width: 100px;
        height: 100px;
    }
    
    .member-name {
        font-size: 20px;
    }
    
    .member-role {
        font-size: 14px;
    }
    
    .member-bio {
        font-size: 13px;
    }

/* Company Logo Styles */
.company-logo {
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.company-logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
    padding: 20px;
    line-height: 1.3;
}

.company-logo:hover .company-logo-text {
    color: #000;
}

.company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.site-footer-marquee:hover .site-footer-marquee__track {
    animation-play-state: paused;
}

/* ========================================
   CAREERS PAGE STYLES
======================================== */

/* Careers Hero Section */
.careers-hero {
    min-height: 100vh;
    background: #000 url('assets/hero-image.jpg') center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.careers-hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.careers-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.careers-hero .hero-content {
    color: white;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.careers-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.careers-hero .title-main {
    display: block;
    color: white;
    margin-bottom: 10px;
}

.careers-hero .title-accent {
    display: block;
    color: #fff;
    font-weight: 400;
}

.careers-hero .hero-description {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.careers-hero .hero-cta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.careers-hero .btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.careers-hero .btn-primary {
    background: #fff;
    color: #000;
    border: none;
}

.careers-hero .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.careers-hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.careers-hero .btn-secondary:hover {
    background: white;
    color: #000;
    transform: translateY(-2px);
}



/* Why Join Us Section */
.why-join {
    padding: 100px 0;
    background: #fafafa;
}

.why-join .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-join .section-title {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}

.why-join .section-description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.why-join .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-join .value-card {
    text-align: center;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
}

.why-join .value-icon {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.why-join .value-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
}

.why-join .value-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}


@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

/* Careers CTA Section */
.careers-cta {
    padding: 100px 0;
    background: #000;
    color: white;
    text-align: center;
}

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

.careers-cta .cta-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}

.careers-cta .cta-description {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.9;
}

.careers-cta .cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.careers-cta .btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.careers-cta .btn-primary {
    background: #fff;
    color: #000;
    border: none;
}

.careers-cta .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
}

.careers-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.careers-cta .btn-secondary:hover {
    background: white;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.careers-cta .contact-info {
    margin-top: 40px;
}

.careers-cta .contact-note {
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
}

/* ========================================
   NOTIFICATION STYLES
======================================== */

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

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

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.notification-message {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.notification-success {
    background: #4CAF50;
}

.notification-error {
    background: #f44336;
}

.notification-info {
    background: #2196F3;
}

/* ========================================
   LEGAL PAGES STYLES
======================================== */

.legal-content {
    padding: 120px 0 80px;
    background: #fff;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.last-updated {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin: 40px 0 20px 0;
    padding-top: 20px;
}

.legal-body p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.legal-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-body li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-body {
        padding: 0 20px;
    }
    
    .legal-body h2 {
        font-size: 1.25rem;
    }
}

/* Responsive Design for Careers Page */
@media (max-width: 1200px) {
    .careers-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .why-join .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 100px 0 60px;
    }
    
    .careers-hero .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .careers-hero .hero-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }
    
    .careers-hero .hero-description {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .careers-hero .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .why-join .section-title,
    .careers-cta .cta-title {
        font-size: 2.5rem;
    }
    
    .why-join .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .careers-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .careers-cta .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .careers-hero .hero-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .careers-hero .hero-description {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .why-join .section-title,
    .what-we-look-for .section-title,
    .careers-cta .cta-title {
        font-size: 2rem;
    }
    
    .careers-cta .cta-description {
        font-size: 1.25rem;
    }
}
