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

        :root {
            --orange: #FF8C3A;
            --blue: #2E5C8A;
            --dark-blue: #1A3A5C;
            --light-blue: #4A7BA7;
            --tech-blue: #3D7DAE;
            --dark: #0A0A0A;
            --light: #F5F5F5;
            --white: #FFFFFF;
            --gray: #666666;
            --gradient-primary: linear-gradient(135deg, #FF8C3A 0%, #2E5C8A 100%);
        }

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

        /* Animated Tech Background */
        .tech-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
            overflow: hidden;
        }

        .tech-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(0deg, transparent 24%, rgba(46, 92, 138, 0.05) 25%, rgba(46, 92, 138, 0.05) 26%, transparent 27%, transparent 74%, rgba(46, 92, 138, 0.05) 75%, rgba(46, 92, 138, 0.05) 76%, transparent 77%, transparent),
                linear-gradient(90deg, transparent 24%, rgba(46, 92, 138, 0.05) 25%, rgba(46, 92, 138, 0.05) 26%, transparent 27%, transparent 74%, rgba(46, 92, 138, 0.05) 75%, rgba(46, 92, 138, 0.05) 76%, transparent 77%, transparent);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .circuit-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--blue), transparent);
            opacity: 0.3;
            animation: circuitFlow 8s linear infinite;
        }

        .circuit-line:nth-child(1) { top: 20%; animation-delay: 0s; }
        .circuit-line:nth-child(2) { top: 40%; animation-delay: 2s; }
        .circuit-line:nth-child(3) { top: 60%; animation-delay: 4s; }
        .circuit-line:nth-child(4) { top: 80%; animation-delay: 6s; }

        @keyframes circuitFlow {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(46, 92, 138, 0.3);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

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

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-container img {
            height: 50px;
            filter: drop-shadow(0 0 10px rgba(255, 140, 58, 0.3));
            transition: transform 0.3s ease;
        }

        .logo-container img:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        .nav-links a:hover {
            color: var(--orange);
        }

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

        .contact-btn {
            background: linear-gradient(135deg, var(--orange), #ff6b35);
            color: white !important;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 140, 58, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
        }

        .contact-btn::after {
            display: none;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 140, 58, 0.6);
            color: white !important;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--orange);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 58, 92, 0.3) 100%);
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            color: var(--orange);
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            display: inline-block;
            animation: fadeIn 1s ease-out 0.3s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--white) 0%, var(--orange) 50%, var(--blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeIn 1s ease-out 0.5s both;
        }

        .hero-description {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            animation: fadeIn 1s ease-out 0.7s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: fadeIn 1s ease-out 0.9s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--orange), #ff6b35);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 140, 58, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 140, 58, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid var(--blue);
        }

        .btn-secondary:hover {
            background: var(--blue);
            border-color: var(--blue);
            transform: translateY(-3px);
        }

        /* Stats Section */
        .stats {
            background: rgba(26, 58, 92, 0.1);
            padding: 4rem 2rem;
            border-top: 1px solid rgba(46, 92, 138, 0.3);
            border-bottom: 1px solid rgba(46, 92, 138, 0.3);
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 15px;
            border: 1px solid rgba(46, 92, 138, 0.2);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--orange);
        }

        .stat-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--orange), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Section Styles */
        .section {
            padding: 6rem 2rem;
            position: relative;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .section-tag {
            display: inline-block;
            background: rgba(255, 140, 58, 0.1);
            color: var(--orange);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 140, 58, 0.3);
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--orange), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(46, 92, 138, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 140, 58, 0.05), rgba(46, 92, 138, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--orange);
            box-shadow: 0 15px 40px rgba(255, 140, 58, 0.2);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            position: relative;
            z-index: 1;
        }

        .service-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .service-features {
            list-style: none;
            padding: 0;
            position: relative;
            z-index: 1;
        }

        .service-features li {
            color: rgba(255, 255, 255, 0.6);
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            font-size: 0.95rem;
        }

        .service-features li::before {
            content: '→';
            color: var(--orange);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(46, 92, 138, 0.2);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            border-color: var(--orange);
            background: rgba(255, 255, 255, 0.05);
        }

        .feature-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--orange), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .feature-item h3 {
            font-size: 1.3rem;
            color: var(--white);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-item p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        /* FAQ Section */
        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(46, 92, 138, 0.2);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--orange);
            background: rgba(255, 255, 255, 0.05);
        }

        .faq-item h3 {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .faq-item p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, rgba(26, 58, 92, 0.2) 0%, rgba(10, 10, 10, 0.5) 100%);
            padding: 6rem 2rem;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
        }

        .contact-info h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            color: var(--white);
            margin-bottom: 2rem;
        }

        .info-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
            border: 1px solid rgba(46, 92, 138, 0.2);
            transition: all 0.3s ease;
        }

        .info-item:hover {
            border-color: var(--orange);
            background: rgba(255, 255, 255, 0.05);
        }

        .info-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .info-content h4 {
            color: var(--orange);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .info-content p,
        .info-content a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 1.6;
        }

        .info-content a:hover {
            color: var(--orange);
        }

        /* Contact Form */
        .contact-form h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            color: var(--white);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: var(--white);
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(46, 92, 138, 0.3);
            border-radius: 10px;
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--orange);
            background: rgba(255, 255, 255, 0.08);
        }

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

        .submit-btn {
            width: 100%;
            padding: 1.2rem 2rem;
            background: linear-gradient(135deg, var(--orange), #ff6b35);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 140, 58, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 140, 58, 0.6);
        }

        /* Footer */
        footer {
            background: rgba(10, 10, 10, 0.95);
            border-top: 1px solid rgba(46, 92, 138, 0.3);
            padding: 3rem 2rem 1.5rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand img {
            height: 50px;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 10px rgba(255, 140, 58, 0.3));
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            max-width: 350px;
        }

        .footer-section h4 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--orange);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(46, 92, 138, 0.2);
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Scroll Reveal */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .services-grid,
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                border-bottom: 1px solid rgba(46, 92, 138, 0.3);
            }

            .nav-links.active {
                transform: translateX(0);
            }

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

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

            .hero-description {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid,
            .features-grid,
            .stats-container {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }

        /* Honeypot field - hidden from users */
        .honeypot {
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        /* Additional Styles for Other Pages */
        
        /* Page Hero */
        .page-hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            padding: 10rem 2rem 6rem;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 58, 92, 0.3) 100%);
            text-align: center;
        }

        .page-hero .hero-subtitle {
            color: var(--orange);
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .page-hero .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .page-hero .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Service Link */
        .service-link {
            display: inline-block;
            color: var(--orange);
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .service-link:hover {
            color: var(--blue);
            transform: translateX(5px);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(255, 140, 58, 0.1) 0%, rgba(46, 92, 138, 0.1) 100%);
            padding: 6rem 2rem;
            text-align: center;
        }

        .cta-content h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
        }

        .btn-large {
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
        }

        .btn-white {
            background: white;
            color: var(--dark);
        }

        .btn-white:hover {
            background: var(--light);
            transform: translateY(-3px);
        }

        /* About Page Styles */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 2rem;
        }

        .about-content p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .stats-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(46, 92, 138, 0.3);
            border-radius: 20px;
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .stat-item-small {
            text-align: center;
        }

        .stat-number-small {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--orange), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label-small {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .mv-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(46, 92, 138, 0.2);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
        }

        .mv-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        .mv-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .mv-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* Portfolio Styles */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .portfolio-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(46, 92, 138, 0.2);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            border-color: var(--orange);
            box-shadow: 0 15px 40px rgba(255, 140, 58, 0.2);
        }

        .portfolio-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, rgba(255, 140, 58, 0.1), rgba(46, 92, 138, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid rgba(46, 92, 138, 0.2);
        }

        .portfolio-placeholder {
            font-size: 4rem;
        }

        .portfolio-content {
            padding: 2rem;
        }

        .portfolio-category {
            display: inline-block;
            background: rgba(255, 140, 58, 0.1);
            color: var(--orange);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .portfolio-content h3 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .portfolio-content p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .portfolio-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .portfolio-tags span {
            background: rgba(46, 92, 138, 0.2);
            color: rgba(255, 255, 255, 0.8);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.85rem;
        }

        /* Contact Page Additions */
        select {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(46, 92, 138, 0.3);
            border-radius: 10px;
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        select:focus {
            outline: none;
            border-color: var(--orange);
            background: rgba(255, 255, 255, 0.08);
        }

        select option {
            background: var(--dark);
            color: var(--white);
        }

        /* Responsive adjustments for new pages */
        @media (max-width: 1024px) {
            .about-grid,
            .mission-vision-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

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

            .stats-card {
                grid-template-columns: 1fr;
            }
        }
