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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #ffffff;
}

/* Navigation */
nav {
    background: #ffffff;
    padding: 1rem 5%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #000000;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 4rem 5%;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
}

.mission-vision-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 900px;
    margin: 3rem auto;
    flex-wrap: wrap;
}

.mission-box, .vision-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.mission-box h6, .vision-box h6 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-box p, .vision-box p {
    color: #333333;
    line-height: 1.8;
    font-size: 0.95rem;
}

.hero-cta {
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #333333;
}

/* Quick Links Section - Like Clasona's image grid */
.quick-links {
    background: #f5f5f5;
    padding: 3rem 5%;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-link {
    background: #ffffff;
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #e0e0e0;
}

.quick-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Section General Styles */
section {
    padding: 4rem 5%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #000000;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    color: #333333;
    line-height: 1.7;
}

/* What We Do Section */
.what-we-do {
    background: #ffffff;
}

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

.service-preview-card {
    text-align: center;
    padding: 2rem 1rem;
}

.service-preview-card h3 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.explore-services {
    text-align: center;
    margin-top: 3rem;
}

/* Technologies Section */
.technologies {
    background: #f5f5f5;
}

.tech-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tech-column h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #000000;
    letter-spacing: 1px;
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    padding: 0.4rem 0;
    color: #666666;
    font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose {
    background: #ffffff;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item h3 {
    font-size: 1rem;
    color: #000000;
    font-weight: 600;
    line-height: 1.5;
}

/* Founders Section */
.founders {
    background: #1a1a1a;
    color: #ffffff;
}

.founders h2 {
    color: #ffffff;
}

.founders-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    text-align: center;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.founder-card {
    text-align: center;
}

.founder-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 600;
}

.founder-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

/* Projects Section */
.projects {
    background: #f5f5f5;
}

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

.project-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.project-card h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.project-card p {
    color: #666666;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Services Page - Full Details */
.services-full {
    background: #ffffff;
}

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

.service-card {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-card p {
    color: #666666;
    line-height: 1.7;
    font-size: 0.9rem;
}

.service-card.highlight {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.service-card.highlight h3 {
    color: #ffffff;
}

.service-card.highlight p {
    color: rgba(255,255,255,0.9);
}

/* Contact Section */
.contact {
    background: #ffffff;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #f5f5f5;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #000000;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #333333;
}

.email-display {
    text-align: center;
    margin-top: 2rem;
}

.email-display p {
    margin-bottom: 0.8rem;
    color: #666666;
    font-size: 0.9rem;
    font-weight: 600;
}

.email-display a {
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

.email-display a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 2rem 5%;
    font-size: 0.9rem;
}

/* Page Management */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 1.5rem;
        z-index: 999;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .mission-vision-container {
        flex-direction: column;
        gap: 2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .tech-platforms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quick-links-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .tech-platforms-grid,
    .features-grid,
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

