﻿@charset "UTF-8";
:root {
            --primary: #0A2463;
            --secondary: #3E92CC;
            --accent: #FB8500;
            --dark: #1E1E1E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --white: #FFFFFF;
            --gradient-1: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
            --gradient-2: linear-gradient(135deg, #FB8500 0%, #FFB703 100%);
        }

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

        body {
            font-family: 'Darker Grotesque', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation (same as main page) */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -1px;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-item.has-submenu {
            position: relative;
            padding-bottom: 10px;
        }

        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 240px;
            background: var(--white);
            border-radius: 12px;
            padding: 0.75rem 0;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            display: none;
            list-style: none;
            z-index: 1100;
        }

        .submenu a {
            display: block;
            padding: 0.6rem 1.2rem;
            font-size: 1rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .submenu a::after {
            display: none;
        }

        .nav-item.has-submenu:hover .submenu {
            display: block;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--secondary);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a.active {
            color: var(--secondary);
        }

        .nav-menu a.active::after {
            width: 100%;
        }

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

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            transition: all 0.3s ease;
        }

        /* Page Hero */
        .page-hero {
            margin-top: 80px;
            padding: 6rem 2rem 4rem;
            background: var(--gradient-1);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

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

        .page-hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .page-hero p {
            font-size: 1.4rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 1.5rem 2rem;
            background: var(--light);
        }

        .breadcrumb-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 0.5rem;
            align-items: center;
            font-size: 1rem;
        }

        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

        .breadcrumb span {
            color: var(--gray);
        }

        /* Page Content */
        .page-content {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-detail {
            background: var(--white);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 4rem;
        }

        .service-detail h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .service-detail p {
            font-size: 1.2rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

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

        .feature-item {
            padding: 2rem;
            background: var(--light);
            border-radius: 10px;
            border-left: 4px solid var(--accent);
        }

        .feature-item h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.8rem;
        }

        .feature-item ul {
            list-style: none;
            padding: 0;
        }

        .feature-item ul li {
            font-size: 1.1rem;
            color: var(--gray);
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .feature-item ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        /* Projects/Blog Section */
        .projects-section {
            margin-top: 4rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 2.5rem;
        }

        .project-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }

        .project-image {
            width: 100%;
            height: 300px;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
        }

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

        .project-tag {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--accent);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            z-index: 1;
        }

        .project-content {
            padding: 2rem;
        }

        .project-date {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.9rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .project-card h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .project-card p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .project-summary {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 3.2em;
        }

        .project-details {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #E9ECEF;
        }

        .project-detail-item {
            flex: 1;
        }

        .project-detail-item strong {
            display: block;
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }

        .project-detail-item span {
            color: var(--gray);
            font-size: 1rem;
        }

        /* CTA Section */
        .cta-section {
            margin-top: 4rem;
            padding: 4rem;
            background: var(--gradient-1);
            border-radius: 20px;
            text-align: center;
            color: var(--white);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-family: 'Darker Grotesque', sans-serif;
        }

        .btn-accent {
            background: var(--accent);
            color: var(--white);
            box-shadow: 0 10px 30px rgba(251, 133, 0, 0.3);
        }

        .btn-accent:hover {
            background: #e07700;
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(251, 133, 0, 0.4);
        }

        /* Client Area Button */
        .client-area-btn {
            background: var(--gradient-2);
            color: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(251, 133, 0, 0.3);
        }

        .client-area-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(251, 133, 0, 0.4);
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .footer-section p,
        .footer-section a {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Project Modal */
        .project-modal {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 2rem;
        }

        .project-modal.is-open {
            display: flex;
        }

        .project-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
        }

        .project-modal-dialog {
            position: relative;
            background: var(--white);
            width: min(900px, 95vw);
            max-height: 90vh;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 1;
        }

        .project-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            border: none;
            background: #f1f3f5;
            color: var(--dark);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.1rem;
        }

        .project-modal-header h3 {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
        }

        .project-modal-date {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.95rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .project-modal-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            color: var(--gray);
            font-size: 1rem;
        }

        .project-modal-image {
            width: 100%;
            height: 320px;
            border-radius: 12px;
            overflow: hidden;
            background: var(--gradient-1);
        }

        .project-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .project-modal-body {
            border-top: 1px solid #E9ECEF;
            padding-top: 1rem;
            overflow-y: auto;
            max-height: 45vh;
            line-height: 1.7;
            color: var(--gray);
        }

        .project-modal-body p {
            margin-bottom: 1rem;
        }

        body.modal-open {
            overflow: hidden;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .projects-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 968px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }

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

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

            .project-modal-image {
                height: 220px;
            }

            .cta-section {
                padding: 2rem;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                padding: 2rem;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                transition: left 0.3s ease;
            }

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

            .nav-item.has-submenu {
                width: 100%;
            }

            .submenu {
                position: static;
                display: none;
                box-shadow: none;
                padding: 0.5rem 0 0.5rem 1rem;
                min-width: 0;
            }

            .submenu a {
                padding: 0.4rem 0;
                font-size: 1rem;
            }

            .nav-item.submenu-open .submenu {
                display: block;
            }
        }


