/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sofia Sans', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Ensure all text elements use Sofia Sans */
* {
    font-family: 'Sofia Sans', sans-serif;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000000 !important;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
}

.nav-logo h2 {
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Sofia Sans', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    padding: 2rem;
    background-color: #000000;
    text-align: center !important;
}

.hero-content {
    max-width: 800px;
    text-align: center !important;
    z-index: 2;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-title {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center !important;
    max-width: 600px;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

.problem-text {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0;
    opacity: 0.9;
}

/* Problem Introduction */
.problem-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.problem-intro .btn-value {
    margin-bottom: 2rem;
}

.problem-intro .problem-text {
    max-width: 800px;
    margin: 0 auto;
}

/* Problem button - solid with black text */
.problem-intro .btn-value {
    background-color: #e0e0e0;
    border: none;
    color: #000000;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 2rem;
    background-color: #000000;
    position: relative;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; /* Start from the very top */
    bottom: 0; /* End at the very bottom */
    width: 2px;
    background-color: #ffffff;
    opacity: 1;
    transform: translateX(-50%);
}

.timeline-point {
    position: relative;
    margin-bottom: 6rem;
    display: flex;
    align-items: center;
    min-height: 120px;
}

.timeline-point::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}



.timeline-content {
    flex: 1;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-content.left {
    text-align: right;
    padding-right: 4rem;
}

.timeline-content.right {
    text-align: left;
    padding-left: 4rem;
}

.btn-solution {
    font-family: 'Sofia Sans', sans-serif;
    background-color: #e0e0e0;
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.btn-solution:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-value {
    font-family: 'Sofia Sans', sans-serif;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.btn-value:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.value-text {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

/* AI Section */
.ai-section {
    padding: 6rem 2rem;
    background-color: #000000;
    color: #ffffff;
}

.ai-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ai-title {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.btn-ai {
    font-family: 'Sofia Sans', sans-serif;
    background-color: #e0e0e0;
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.btn-ai:hover {
    background-color: #d0d0d0;
    transform: translateY(-2px);
}

.ai-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.ai-column {
    text-align: center;
}

.ai-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.ai-text {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.6;
}

/* Capabilities Section */
.capabilities-section {
    padding: 6rem 2rem;
    background-color: #000000;
}

.capabilities-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.capabilities-intro {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-capabilities {
    font-family: 'Sofia Sans', sans-serif;
    background-color: #e0e0e0;
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.btn-capabilities:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.capabilities-list {
    max-width: 800px;
    margin: 0 auto;
}

.capability-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.capability-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
}

.capability-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: #ffffff;
}

.capability-content {
    flex: 1;
    text-align: left;
}

.capability-content h3 {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.capability-details {
    display: none;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.capability-details.collapsed {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.capability-details.expanded {
    display: block;
    opacity: 1;
    max-height: 1000px;
    margin-top: 1rem;
}

.capability-details-expanded {
    display: none !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.capability-details-expanded.show {
    display: block !important;
    opacity: 1;
    max-height: 1000px;
    margin-top: 1rem;
}

/* Service list styling for collapsed state */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-item {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
    padding: 0.25rem 0;
    line-height: 1.4;
}

.service-title-expanded {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

/* Detailed content styling */
.detailed-content {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.capability-arrow {
    color: #ffffff;
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Service subsections styling */
.service-subsection {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #e0e0e0;
}

.service-subsection h4 {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-subsection ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-subsection li {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    padding-left: 0;
    line-height: 1.4;
}

.service-subsection li:before {
    content: "•";
    color: #e0e0e0;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.capability-details p {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
}

/* Package table styling */
.package-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-family: 'Sofia Sans', sans-serif;
}

.package-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-row.header {
    font-weight: 600;
    color: #ffffff;
    border-bottom: 2px solid #e0e0e0;
    background-color: rgba(255, 255, 255, 0.05);
}

.package-feature {
    font-size: 0.85rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.3;
    padding: 0.25rem 0;
}

.package-row.header .package-feature {
    opacity: 1;
    font-weight: 600;
}

/* Responsive table */
@media (max-width: 768px) {
    .package-table {
        font-size: 0.75rem;
    }
    
    .package-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .package-feature {
        font-size: 0.8rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background-color: #000000;
    color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.btn-hiring {
    font-family: 'Sofia Sans', sans-serif;
    background-color: #e0e0e0;
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.btn-hiring:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-text {
    text-align: left;
}

.contact-text p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-email {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contact-email:hover {
    opacity: 1;
}

.contact-placeholder {
    background-color: #333333;
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .solution-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-divider {
        display: none;
    }
    
    .value-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .capability-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .ai-title {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .solution-section, .value-section, .ai-section, .capabilities-section, .contact-section {
        padding: 4rem 1rem;
    }
    
    .hero {
        padding: 2rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
} 