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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Colors */
.text-primary {
    color: #007acc;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #007acc;
    color: white;
}

.btn-primary:hover {
    background-color: #005a99;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #007acc;
    border: 2px solid #007acc;
}

.btn-secondary:hover {
    background-color: #007acc;
    color: white;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    color: #007acc;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #007acc;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.mobile-cta {
    margin-top: 1rem;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
}

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

.hero-subtitle {
    color: #007acc;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 122, 204, 0.2);
}

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

.pillar {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    color: #007acc;
    margin-bottom: 1rem;
}

.pillar h3 {
    color: #333;
    margin-bottom: 0;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Pillars Section */
.pillars-section {
    background-color: #f8fbff;
}

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

.pillar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-card-icon {
    margin-bottom: 1.5rem;
}

.pillar-card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.pillar-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: #666;
    line-height: 1.6;
}

/* Technology Section */
.technology-section {
    background-color: white;
}

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

.tech-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.tech-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.tech-item p {
    color: #666;
}

/* About Section */
.about-section {
    background-color: #f8fbff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-text h3 {
    color: #333;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.company-info {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.company-info p {
    margin-bottom: 0.5rem;
    color: #333;
}

.leadership-team h3 {
    color: #333;
    margin-bottom: 2rem;
}

.leader-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.leader-icon {
    color: #007acc;
    flex-shrink: 0;
}

.leader-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.leader-title {
    color: #007acc;
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.leader-info p:last-child {
    color: #666;
    margin-bottom: 0;
}

/* Solutions Section */
.solutions-section {
    background-color: white;
}

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

.solution-card {
    background: #f8fbff;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #007acc;
}

.solution-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.solution-card ul {
    list-style: none;
    padding: 0;
}

.solution-card li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.solution-card li:before {
    content: "✓";
    color: #007acc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.solution-card li:last-child {
    border-bottom: none;
}

/* Case Studies Section */
.case-studies-section {
    background-color: #f8fbff;
}

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

.case-study-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.case-study-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.case-study-subtitle {
    color: #007acc;
    font-weight: 600;
    margin-bottom: 1rem !important;
}

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

.metric {
    text-align: center;
    padding: 1rem;
    background: #f8fbff;
    border-radius: 8px;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #007acc;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
}

/* Resources Section */
.resources-section {
    background-color: white;
}

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

.resource-category h3 {
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #007acc;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-item {
    padding: 1.5rem;
    background: #f8fbff;
    border-radius: 8px;
    border-left: 4px solid #007acc;
}

.resource-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.resource-item p {
    color: #666;
    margin-bottom: 0;
}

/* Careers Section */
.careers-section {
    background-color: #f8fbff;
}

.careers-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.company-culture h3 {
    color: #333;
    margin-bottom: 2rem;
}

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

.culture-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.culture-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

.culture-item p {
    color: #666;
    margin-bottom: 0;
}

.open-positions h3 {
    color: #333;
    margin-bottom: 2rem;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.position-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #007acc;
}

.position-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.position-item p:nth-child(2) {
    color: #007acc;
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.position-item p:last-child {
    color: #666;
    margin-bottom: 0;
}

.careers-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.careers-cta h3 {
    color: #333;
    margin-bottom: 1rem;
}

.careers-cta p {
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    background-color: white;
}

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

.contact-form-container h3 {
    color: #333;
    margin-bottom: 1rem;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-info h3 {
    color: #333;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fbff;
    border-radius: 8px;
}

.contact-icon {
    color: #007acc;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
}

.faq-section h3 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #f8fbff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #007acc;
}

.faq-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #007acc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #ccc;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Pillars */
    .pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Grids */
    .pillars-grid,
    .tech-grid,
    .solutions-grid,
    .case-studies-grid,
    .resources-grid,
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .leader-card {
        flex-direction: column;
        text-align: center;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Case Study Metrics */
    .case-study-metrics {
        grid-template-columns: 1fr;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pillar-card,
    .solution-card,
    .case-study-card,
    .culture-item,
    .position-item {
        padding: 1.5rem;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .pillar-card,
    .tech-item,
    .btn {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .pillar-card:hover,
    .tech-item:hover {
        box-shadow: 0 8px 30px rgba(0, 122, 204, 0.2);
    }
}

