body { 
    font-family: 'Roboto', sans-serif; 
    margin: 0; 
    padding: 0; 
    color: #333; 
    background: url('https://img.pikbest.com/backgrounds/20250128/abstract-digital-waves-particle-flow-dynamic-energy-futuristic-technology_11462915.jpg!bw700') no-repeat center center fixed; 
    background-size: cover; 
    scroll-snap-type: y mandatory; 
    overflow-y: scroll; 
}
h1, h2, h3 { font-family: 'Montserrat', sans-serif; margin-bottom: 20px; }
.navbar { 
    position: sticky; 
    top: 0; 
    background: rgba(0, 43, 91, 0.9); 
    color: white; 
    padding: 10px; 
    z-index: 10; 
}
.nav-content { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    max-width: 1200px; 
    margin: auto; 
}
.nav-logo { 
    width: 100px; 
    height: 100px; /* Square dimensions */
    object-fit: cover; /* Crop to fit */
    opacity: 0.9; /* Slight transparency to blend */
    border-radius: 10px; /* Slight rounding */
}
ul { list-style: none; display: flex; gap: 20px; }
ul a { color: white; text-decoration: none; transition: box-shadow 0.3s; }
ul a.active { box-shadow: 0 0 15px #00A896; opacity: 1; }
.section { 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    padding: 60px 20px; 
    text-align: center; 
    background: rgba(255, 255, 255, 0.95); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
    margin: 20px auto; 
    max-width: 1200px; 
    border-radius: 20px; 
    scroll-snap-align: center; 
    transition: transform 0.5s, opacity 0.5s; 
    opacity: 0; 
}
.hero { 
    background: #0197A7; /* Solid teal background */
    color: white; 
}
.section.visible { opacity: 1; transform: scale(1.02); }
.logo { 
    width: 150px; 
    height: 150px; /* Square dimensions */
    object-fit: cover; /* Crop to fit */
    background: #0197A7; /* Teal background */
    padding: 10px; 
    border-radius: 15px; 
    transition: transform 0.3s; 
}
.logo:hover { transform: rotateY(10deg); }
.tagline { font-size: 2em; }
.cta-button { background: #00A896; color: white; padding: 15px 30px; border-radius: 50px; text-decoration: none; box-shadow: 0 5px 10px rgba(0,0,0,0.3); transition: transform 0.3s; }
.cta-button:hover { transform: translateY(-5px); }
.hero-divider {
    border: 0;
    height: 2px;
    background: #00A896; /* Teal to match brand */
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
}
.last-hero-text {
    margin-bottom: 40px; /* Space before CTA button */
}
.feature-grid, .team-grid { 
    display: flex; /* Use flex for team-grid to align in one line */
    flex-wrap: nowrap; /* Prevent wrapping to keep in one line */
    gap: 20px; /* Reduced gap for tighter alignment */
    justify-content: center; /* Center the grid */
}
.team-grid .team-member { 
    flex: 0 0 auto; /* Prevent shrinking or growing */
    width: 250px; /* Fixed width for consistency */
    text-align: center; /* Center text and image */
}
.team-grid .team-member img { 
    width: 150px; /* Smaller, uniform size */
    height: 150px; /* Square images */
    object-fit: cover; /* Crop to fit */
    border-radius: 10px; /* Smaller rounded edges */
    margin-bottom: 10px; /* Space between image and text */
}
.team-grid .team-member p { 
    margin: 0; /* Remove default margins */
    font-size: 0.9em; /* Slightly smaller text for neatness */
    line-height: 1.4; /* Consistent line spacing */
}
.feature-card { 
    perspective: 1500px; 
    background: white; 
    padding: 20px; 
    border-radius: 15px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
    transition: transform 0.3s, box-shadow 0.3s; 
}
.feature-card:hover { transform: rotateY(5deg) rotateX(5deg) scale(1.05); box-shadow: 0 15px 30px rgba(0,168,150,0.5); }
.mockup-img { 
    width: 100%; 
    max-width: 200px; /* Constrain image size */
    height: 300px; /* Fixed height for uniformity */
    object-fit: cover; /* Crop to fit */
    margin: 10px; 
    cursor: pointer; 
    box-shadow: 0 5px 10px rgba(0,0,0,0.2); 
}
.image-container, .mockup-container { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    max-width: 100%; /* Prevent overflow */
    overflow: hidden; /* Hide any overflow */
}
.stats-table { width: 100%; border-collapse: collapse; margin: 20px 0; background: white; border-radius: 10px; overflow: hidden; }
th, td { border: 1px solid #ddd; padding: 12px; text-align: left; }
th { background: #00A896; color: white; }
.solution-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.box { padding: 20px; border-radius: 15px; color: white; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: box-shadow 0.3s; }
.box:hover { box-shadow: 0 10px 20px rgba(0,168,150,0.7); }
.dark-blue { background: #002B5B; }
.light-blue { background: #00A896; }
.how-it-works-box { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.how-it-works-box ul { list-style: none; padding%<: 0; }
.how-it-works-box li { margin-bottom: 10px; font-weight: 500; }
.market-chart { display: flex; justify-content: center; gap: 60px; margin: 20px 0; flex-wrap: wrap; }
.bar-container { display: flex; flex-direction: column; align-items: center; text-align: center; }
.bar { background: #00A896; height: 20px; border-radius: 5px; animation: grow-horizontal 1s ease; }
@keyframes grow-horizontal { from { width: 0; } }
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); justify-content: center; align-items: center; z-index: 100; }
.lightbox-content { max-width: 90%; max-height: 90%; }
.close { position: absolute; top: 20px; right: 30px; color: white; font-size: 40px; cursor: pointer; }
form { max-width: 500px; margin: auto; }
input, textarea { width: 100%; padding: 10px; margin: 10px 0; border-radius: 5px; border: 1px solid #ddd; }
button { background: #00A896; color: white; padding: 10px; border: none; border-radius: 5px; cursor: pointer; }
footer { background: #002B5B; color: white; text-align: center; padding: 20px; }

/* Mobile */
@media (max-width: 768px) { 
    .section { padding: 40px 10px; background: rgba(255,255,255,1); } 
    .solution-boxes { grid-template-columns: 1fr; } 
    .mockup-container, .image-container { flex-direction: column; align-items: center; } 
    .mockup-img { max-width: 150px; height: 200px; }
    .team-grid { 
        flex-direction: column; /* Stack vertically on mobile */
        align-items: center; 
    }
    .team-grid .team-member { 
        width: 100%; 
        max-width: 300px; /* Limit width on mobile */
    }
    .hero-divider {
        width: 90%; /* Slightly wider on mobile */
        max-width: 400px; /* Smaller max-width for mobile */
    }
    .last-hero-text {
        margin-bottom: 30px; /* Slightly less spacing on mobile */
    }
}

/* Particles */
canvas { position: fixed; top: 0; left: 0; z-index: -1; pointer-events: none; }