:root {
    --primary-color: #22c55e;
    --primary-dark: #16a34a;
    --secondary-color: #3b82f6;
    --accent-color: #1f2937;
    --dark-color: #111827;
    --light-color: #f8fafc;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 16px; /* Increased from 14px */
}

/* Typography - Updated to match about.html */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); } /* Increased sizes */
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; } /* Increased from 1rem */

p { 
    margin-bottom: 1rem;
    font-size: 1rem; /* Increased from 0.9rem */
    color: #4b5563;
}

/* Header Styles - Updated to match about.html */
.glass-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    padding: 0.75rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem; /* Increased from 1rem */
    margin-right: 12px;
}

.brand-names h1 {
    font-size: 1.5rem; /* Increased from 1.2rem */
    margin-bottom: 0;
    color: var(--dark-color);
}

.sub-brand {
    font-size: 0.9rem; /* Increased from 0.7rem */
    color: #666;
    margin: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.holographic-nav {
    transition: all 0.3s ease;
}

.holographic-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.holographic-nav a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1rem; /* Increased from 0.85rem */
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.holographic-nav a:hover,
.holographic-nav a.active {
    color: var(--primary-color);
    background: rgba(34, 197, 94, 0.1);
}

/* Solutions Page Specific Styles (with updated typography) */
.solutions-page {
    margin-top: 70px;
}

.solutions-hero {
    text-align: center;
    padding: 5rem 5% 5rem;
    color: white;
    position: relative;
    background: 
        linear-gradient(135deg, 
            rgba(34, 197, 94, 0.85) 30%, 
            rgba(59, 130, 246, 0.85) 100%),
        url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.solutions-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem); /* Increased sizes */
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 2;
}

.solutions-hero .subtitle {
    font-size: 1.25rem; /* Increased from 1.1rem */
    opacity: 0.95;
    margin: 0 auto;
    max-width: 700px;
    position: relative;
    z-index: 2;
    line-height: 1.6;
    color: white;
}

.solution-categories {
    padding: 3rem 5%;
    background: white;
}

.category-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.category-btn {
    padding: 0.7rem 1.3rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem; /* Increased from 0.85rem */
}

.category-btn:hover {
    background: rgba(34, 197, 94, 0.1);
}

.category-btn.active {
    background: var(--primary-color);
    color: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.solution-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.solution-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.solution-image {
    height: 200px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-item:hover .solution-image img {
    transform: scale(1.05);
}

.solution-content {
    padding: 1.5rem;
}

.solution-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem; /* Increased from 1.2rem */
}

.solution-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 1rem; /* Increased from 0.9rem */
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem; /* Increased from 0.85rem */
}

.learn-more:hover {
    gap: 1rem;
}

.solution-cta {
    text-align: center;
    padding: 5rem 5%;
    background: rgba(34, 197, 94, 0.05);
}

.solution-cta h2 {
    margin-bottom: 1rem;
}

.solution-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #6b7280;
    font-size: 1rem; /* Increased from 0.9rem */
}

.neon-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    font-size: 1rem; /* Increased from 0.9rem */
}

.neon-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--primary-dark);
}

/* Modal Styles (updated to match about.html styling) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.5rem;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    color: var(--primary-color);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.modal-image {
    border-radius: 12px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.modal-features {
    margin-top: 1.5rem;
}

.modal-features h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.25rem; /* Increased from 1rem */
}

.modal-features ul {
    list-style: none;
}

.modal-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem; /* Increased from 0.9rem */
}

.modal-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Footer - Updated to match about.html */
.holographic-footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem; /* Increased from 1rem */
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem; /* Increased from 0.85rem */
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    color: #d1d5db;
    font-size: 1rem; /* Increased from 0.85rem */
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem; /* Increased from 1rem */
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.facebook { background: #1877f2; }
.instagram { background: #e4405f; }
.linkedin { background: #0077b5; }
.twitter { background: #1da1f2; }

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.9rem; /* Increased from 0.8rem */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .glass-header {
        padding: 0.75rem 3%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .holographic-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: var(--shadow);
        border-radius: 0 0 12px 12px;
    }

    .holographic-nav.active {
        display: block;
    }

    .holographic-nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .holographic-nav li {
        margin: 0;
    }

    .holographic-nav a {
        display: block;
        padding: 0.75rem;
        border-radius: 8px;
        margin-bottom: 0.25rem;
    }

    .solutions-hero {
        padding: 4rem 3% 2rem;
    }

    .solution-categories {
        padding: 2rem 3%;
    }

    .category-selector {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .category-btn {
        flex-shrink: 0;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-cta {
        padding: 2rem 3%;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .social-icons {
        justify-content: left;
    }
}