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

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(205, 203, 199, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(66, 82, 99, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(205, 203, 199, 0.98);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: #425263;
            text-decoration: none;
            letter-spacing: 1px;
        }

        .logo-icon {
            font-size: 2rem;
            margin-right: 10px;
        }

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

        .nav-item a {
            text-decoration: none;
            color: #425263;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 6px;
            position: relative;
        }

        .nav-item a:hover {
            color: #6A8F72;
            background: rgba(106, 143, 114, 0.1);
        }

        .nav-item a.active {
            color: #6A8F72;
            background: rgba(106, 143, 114, 0.15);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #425263;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Main Content */
        .main-content {
            margin-top: 80px;
        }

        .section {
            padding: 60px 0;
        }

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

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #CDCBC7 0%, #f8f9fa 100%);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-logo {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: #425263;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .hero-tagline {
            font-size: 1.4rem;
            color: #425263;
            margin-bottom: 15px;
            font-style: italic;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: #6A8F72;
            font-weight: 500;
        }

        /* Content Sections */
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 50px;
            margin: 40px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-left: 4px solid #6A8F72;
        }

        .content-section h2 {
            font-size: 2.5rem;
            color: #425263;
            margin-bottom: 30px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .content-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #6C757D;
            margin-bottom: 20px;
        }

        /* Mission Statement */
        .mission-highlight {
            background: linear-gradient(135deg, #6A8F72 0%, #ffffff 100%);
            color: #333;
            padding: 50px;
            border-radius: 15px;
            text-align: center;
            margin: 40px 0;
            border: 1px solid #e9ecef;
        }

        .mission-highlight h3 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: #425263;
            font-weight: 600;
        }

        .mission-highlight p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #425263;
        }

        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .portfolio-card {
            background: linear-gradient(135deg, #425263 0%, #6A8F72 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 365px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            overflow: auto;
        }

        .portfolio-card .coming-soon {
            margin-top: 15px;
            padding: 5px 12px;
            background: #e0e0e0;
            color: #333;
            font-weight: 600;
            border-radius: 8px;
            display: inline-block;
            font-size: 0.95em;
        }

        .portfolio-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(66, 82, 99, 0.3);
        }

        .portfolio-card h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .portfolio-card p {
            line-height: 1.7;
            opacity: 0.95;
        }

        /* Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .value-card {
            text-align: center;
            padding: 40px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            border-top: 4px solid #6A8F72;
            transition: transform 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-3px);
        }

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

        .value-title {
            font-weight: 600;
            color: #425263;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        /* Contact Section */
        .contact-info {
            background: linear-gradient(135deg, #CDCBC7 0%, #ffffff 100%);
            color: #425263;
            padding: 50px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .contact-info p {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        /* Hidden sections for navigation */
        .page-section {
            display: none;
        }

        .page-section.active {
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(205, 203, 199, 0.98);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-menu-toggle {
                display: flex;
            }

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

            .hero-tagline {
                font-size: 1.2rem;
            }

            .content-section {
                padding: 30px;
            }

            .content-section h2 {
                font-size: 2rem;
            }
        }

        /* Animation for smooth transitions */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .navlogix {
        background: linear-gradient(135deg, #38Bfef 0%, #154786 100%);
        }

        .stitchedtrim {
            background: linear-gradient(135deg, #8B5A96 0%, #602F6B, #431E4C 100%);
            color: #D4AF37;
        }

        .whotreezy {
             background: linear-gradient(135deg,#ED2991 0%, #3b0a24 100%);
        }

        .katalyst {
            background: linear-gradient(135deg, #FFD97A, #EEA437, #C78C2C);
            color: #344877;
        }

        .vibevision { 
            background: linear-gradient(135deg,#99E6E3, #00C2BA, #007B76 100%);
            color: #FFFFFF;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.25); 
        }

        .brightpath { 
             background: linear-gradient(135deg,#C96A73, #A23E48, #7F3139 100%);
             color:#f7ee40 
        }

       .portfolio-card-link {
            display: block;
            text-decoration: none;
            color: inherit;
        } 
        
        .back-link {
            color: #2d2d2d;
            font-weight: 600;
            transition: color 0.2s;
        }
        .back-link:hover {
            color: #0077cc;
            text-decoration: underline;
        }