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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1C2E4A;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(28, 46, 74, 0.1);
}

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

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

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: #1C2E4A;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    color: #1C2E4A;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1C2E4A;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - New Design */
.hero-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0f1a 0%, #1C2E4A 50%, #2a3f5f 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #C6A144, #e6c866);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1C2E4A, #2a3f5f);
    border-radius: 50%;
    animation-delay: 1s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 120px;
    height: 60px;
    background: linear-gradient(45deg, #C6A144, #e6c866);
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 20% 100%);
    animation-delay: 2s;
}

.shape-4 {
    top: 30%;
    right: 30%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1C2E4A, #2a3f5f);
    transform: rotate(45deg);
    animation-delay: 3s;
}

.shape-5 {
    bottom: 40%;
    right: 10%;
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #C6A144, #e6c866);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: 4s;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.element-1 {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 45%;
    right: 25%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 35%;
    left: 15%;
    animation-delay: 3s;
}

.element-4 {
    top: 70%;
    right: 15%;
    animation-delay: 4.5s;
}

.element-5 {
    bottom: 20%;
    right: 35%;
    animation-delay: 6s;
}

/* Data Streams */
.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stream {
    position: absolute;
    background: linear-gradient(90deg, transparent, #C6A144, transparent);
    height: 2px;
    width: 200px;
    opacity: 0.4;
    animation: streamFlow 4s linear infinite;
}

.stream-1 {
    top: 30%;
    left: -200px;
    animation-delay: 0s;
}

.stream-2 {
    top: 60%;
    left: -200px;
    animation-delay: 1.5s;
}

.stream-3 {
    top: 80%;
    left: -200px;
    animation-delay: 3s;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    color: #ffffff;
}

.title-highlight {
    display: block;
    color: #C6A144;
    text-shadow: 0 0 20px rgba(198, 161, 68, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #C6A144;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #C6A144;
    color: #1C2E4A;
}

.btn-primary:hover {
    background: #e6c866;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(198, 161, 68, 0.3);
}

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

.btn-secondary:hover {
    background: #C6A144;
    color: #1C2E4A;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.quantum-cube {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: rotateCube 20s linear infinite;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(198, 161, 68, 0.1);
    border: 2px solid #C6A144;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #C6A144;
}

.cube-face.front { transform: translateZ(100px); }
.cube-face.back { transform: translateZ(-100px); }
.cube-face.right { transform: rotateY(90deg) translateZ(100px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(100px); }
.cube-face.top { transform: rotateX(90deg) translateZ(100px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(100px); }

.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #C6A144;
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; right: 30%; animation-delay: 1s; }
.particle:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 2s; }
.particle:nth-child(4) { top: 60%; left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { bottom: 50%; right: 20%; animation-delay: 4s; }
.particle:nth-child(6) { top: 80%; right: 40%; animation-delay: 5s; }

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #C6A144;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #1C2E4A;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C2E4A;
    margin-bottom: 60px;
}

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

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(28, 46, 74, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 161, 68, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(28, 46, 74, 0.15);
    border-color: #C6A144;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1C2E4A;
    margin-bottom: 15px;
}

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

/* Tech Preview */
.tech-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.tech-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(28, 46, 74, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 161, 68, 0.1);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(28, 46, 74, 0.15);
    border-color: #C6A144;
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tech-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1C2E4A;
    margin-bottom: 15px;
}

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

/* Footer */
.footer {
    background: #1C2E4A;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #C6A144;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #C6A144;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes streamFlow {
    0% { transform: translateX(0); opacity: 0; }
    50% { opacity: 0.4; }
    100% { transform: translateX(calc(100vw + 200px)); opacity: 0; }
}

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.8; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .values-grid,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
} 