/* Main Styles */

footer {
    text-align: center;
    background-color: #ffffff;
    
    height: 3em;
    width: 100%;

}

:root {
    --primary: #0055FF;
    --primary-dark: #0044CC;
    --accent: #fbbc05;
    --accent-light: #fff8e6;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --background-light: #F8FAFC;
    --border: #E5E7EB;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.5;
    background-color: white;
}

.navbar {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border);
    background: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
}

.hero {
    padding: 8rem 2rem 4rem;
    background: var(--background-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, var(--accent-light) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, var(--accent-light) 0%, transparent 40%);
    opacity: 0.8;
    z-index: 1;
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.smallsubtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}


.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 85, 255, 0.1), 0 2px 4px -1px rgba(0, 85, 255, 0.06);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(0, 85, 255, 0.15), 0 3px 6px -1px rgba(0, 85, 255, 0.1);
}

.gallery-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: none;
}

.gallery-section.visible {
    display: block;
}

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

.gallery-item {
    border-radius: 0.75rem;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover::after {
    transform: scaleX(1);
}

.gallery-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.gallery-info {
    padding: 1.25rem;
}

.gallery-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.metric {
    text-align: center;
    position: relative;
}

.metric::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    opacity: 0.2;
    border-radius: 50%;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .metrics {
        flex-direction: column;
        gap: 2rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

