:root {
    --primary: #FF6B00;
    --primary-glow: rgba(255, 107, 0, 0.5);
    --bg-dark: #050505;
    --bg-surface: rgba(20, 20, 20, 0.7);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --nav-height: 80px;
}

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

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

/* Dynamic Background */
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    background: radial-gradient(circle at 50% 50%, #1a0a00 0%, #050505 100%);
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px) translateZ(-200px);
    }
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* Nav Styles */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Styles */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.3;
}

.hero-text-side h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--primary-glow);
}

.sub-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
    margin-right: 20px;
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px var(--primary-glow);
}

.btn-secondary {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: #000;
}

/* Glass Cards */
.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Services */
.services-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.glow-text {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
}

/* Projects */
.projects-section {
    padding: 100px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    padding: 0;
    overflow: hidden;
}

.project-img-placeholder {
    height: 200px;
    background: linear-gradient(45deg, #111, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.project-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-tags span {
    font-size: 0.75rem;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

/* Tech Section */
.tech-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, transparent, rgba(255, 107, 0, 0.05), transparent);
}

.tech-scroll {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.tech-track {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.tech-item {
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.tech-item:hover {
    opacity: 1;
    color: var(--primary);
}

.tech-item i {
    font-size: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

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

.form-group {
    margin-bottom: 25px;
}

input,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 4px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--primary);
}

/* Footer */
.glass-footer {
    padding: 60px 0 20px;
    background: rgba(5, 5, 5, 0.9);
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    text-align: center;
}

/* Footer Overhaul */
.glass-footer {
    padding: 80px 0 30px;
    background: rgba(5, 5, 5, 0.95);
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: block;
}

.footer-bio {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
}

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

.footer-links-col ul li {
    margin-bottom: 15px;
}

.footer-links-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-newsletter h4 {
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-newsletter p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-form {
    display: flex;
    gap: 10px;
}

.footer-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 4px;
    color: #fff;
    outline: none;
}

.footer-form button {
    background: var(--primary);
    border: none;
    width: 40px;
    color: #000;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-form button:hover {
    box-shadow: 0 0 15px var(--primary-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Page Specific Styles */
.page-header-section {
    padding: 150px 0 80px;
    text-align: center;
}

.page-header-section h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
}

.content-section {
    padding: 60px 0;
}

.content-card {
    max-width: 800px;
    margin: 0 auto;
}

.content-card h2 {
    margin-bottom: 20px;
    color: var(--primary);
}

.content-card p {
    margin-bottom: 20px;
    color: #ddd;
}

.team-section {
    padding: 80px 0;
}

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

.team-avatar {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.team-card .role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.service-list {
    list-style: none;
    margin-top: 20px;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.service-list li {
    padding: 5px 0;
    color: var(--text-muted);
}

.service-list li::before {
    content: "▹";
    color: var(--primary);
    margin-right: 10px;
}

.nav-links .active {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Filter Buttons */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.social-connect {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.social-connect h3 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
}

select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 4px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

select:focus {
    border-color: var(--primary);
}

option {
    background: #000;
}

/* Blog Styles */
.date {
    font-size: 0.75rem;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--primary);
}

/* Careers Styles */
.career-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.career-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

.role-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .career-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .nav-links {
        display: none;
        /* Add menu logic if needed */
    }

    .hero-text-side h1 {
        font-size: 3rem;
    }
}