html, body {
    margin: 0;
    padding: 0;
}

/* Base styles */
:root {
    --primary-color: #3775AE;
    --text-color: #fff;
    --bg-color: #000B1F;
    --accent-color: #3775AE;
    --gradient-overlay: linear-gradient(180deg, 
        rgba(0, 11, 31, 0.98) 0%,
        rgba(0, 11, 31, 0.8) 20%,
        rgba(0, 11, 31, 0.2) 50%,
        rgba(0, 11, 31, 0.8) 80%,
        rgba(0, 11, 31, 0.98) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.box {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: visible;
}

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

/* Header */
.header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 40px;
    background: rgba(0, 11, 31, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(55, 117, 174, 0.2);
    margin: 0;
}

.header_logo {
    height: 40px;
}

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

/* Navigation */
.nav_bar_menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    height: 100%;
}

.nav_bar_menu a {
    text-decoration: none;
}

.menu_list {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
}

.menu_list:hover {
    color: #fff;
    background: rgba(55, 117, 174, 0.15);
}

.menu_text {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

/* Style the CTA button differently */
.cta-button .menu_list {
    background: var(--primary-color);
    color: #fff;
}

.cta-button .menu_list:hover {
    background: #4288c7;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 6rem 2rem;
    padding-top: calc(80px + 6rem);
    background: url('bg.webp') no-repeat center center;
    background-size: cover;
    background-position: center 60%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg, #fff, var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Buttons */
.primary-button, .secondary-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-button {
    background: var(--primary-color);
    color: var(--text-color);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(55, 117, 174, 0.3);
    background: #4288c7;
}

.secondary-button {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.secondary-button:hover {
    background: rgba(55, 117, 174, 0.1);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

/* Feature Cards */
.feature-card {
    background: rgba(55, 117, 174, 0.1);
    border: 1px solid rgba(55, 117, 174, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Market Section */
.section.dark {
    background: rgba(0, 0, 0, 0.3);
}

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

.market-item {
    padding: 2rem;
    border-radius: 12px;
    background: rgba(55, 117, 174, 0.05);
    border: 1px solid rgba(55, 117, 174, 0.1);
}

.market-item h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(45deg, var(--bg-color), rgba(55, 117, 174, 0.2));
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(55, 117, 174, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 30px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }

    .nav_bar_menu {
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .menu_text {
        font-size: 0.8rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section h2 {
        font-size: 2rem;
    }
}

/* Solution Layout */
.solution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.droid-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .solution-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-column {
        order: -1;
    }
} 