/* Common Navigation Styles */
nav {
    background: #0A0A0A;
    padding: 1rem 2rem;
    border-bottom: 3px solid #FF4500;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    box-shadow: 0 5px 0 rgba(255, 69, 0, 0.3);
}

nav a {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    background: #1A1A1A;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

nav a:hover {
    color: #FF4500;
    border-color: #FF4500;
    transform: translateY(-2px);
    box-shadow: 3px 3px 0 rgba(255, 69, 0, 0.3);
}

nav a.active {
    color: #FF4500;
    border-color: #FF4500;
    box-shadow: 3px 3px 0 rgba(255, 69, 0, 0.3);
}

/* Update mobile navigation styles */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    nav a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.5rem;
        gap: 0.3rem;
        justify-content: space-between;
    }

    nav a {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
}

/* Common Body Styles */
body {
    font-family: 'Chakra Petch', sans-serif;
    background:#0A0A0A;
    color: #E0E0E0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Standardized Typography */
h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #FF2400, #FF0066, #8B0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    color: #E0E0E0;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    color: #0066CC;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #B0B0B0;
}

/* Common Card Styles */
.card {
    background: linear-gradient(135deg, #2E2E2E, #1A1A1A);
    border: 1px solid #4A4A4A;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #0066CC;
}

.card-title {
    color: #0066CC;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Common Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Common List Styles */
.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.styled-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #FF4500;
}

/* Common Footer Styles */
footer {
    background: linear-gradient(135deg, #2E2E2E, #1A1A1A);
    padding: 2rem;
    text-align: center;   
    margin-top: 4rem;
}

/* Common Accent Colors */
.accent-text {
    color: #FF4500;
}

.primary-color {
    color: #0066CC;
}

/* Common Page Layout */
main {
    padding-top: 80px; /* Account for fixed nav */
    min-height: calc(100vh - 80px);
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
    background: radial-gradient(circle at center,
        rgba(30,30,35,0.98) 0%,
        rgba(26,26,32,0.95) 25%,
        rgba(22,22,28,0.93) 50%,
        rgba(18,18,25,0.95) 75%,
        rgba(15,15,22,0.98) 100%
    );
    overflow: hidden;
}

.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -2;
}

.matrix-column {
    position: absolute;
    top: -100%;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 102, 204, 0.1) 75%,
        rgba(0, 102, 204, 0) 100%
    );
    animation: matrixRain 20s infinite;
    opacity: 0.3;
}

.circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(255, 69, 0, 0.15) 2px, transparent 0),
        linear-gradient(90deg, rgba(0, 102, 204, 0.15) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 102, 204, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: -25px -25px;
    z-index: -1;
    opacity: 0.15;
}

.scan-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 102, 204, 0.08) 50%,
        transparent 100%
    );
    animation: verticalScan 8s ease-in-out infinite;
    z-index: -1;
}

.tech-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #0066CC, transparent);
    height: 1px;
    width: 100%;
    opacity: 0.3;
    animation: scanline 7s linear infinite;
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 10px;
    background: rgba(26,26,26,0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(74,74,74,0.3);
    animation: fadeIn 1s ease-out;
    box-shadow: 
        0 0 30px rgba(0, 102, 204, 0.1),
        inset 0 0 15px rgba(255, 69, 0, 0.1);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF2400, #FF0066, #8B0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    animation: glowPulse 4s ease-in-out infinite;
}

.hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #B0B0B0;
}

/* Features Section Styles */
.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #FF2400, #FF0066, #8B0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF4500, transparent);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(46,46,46,0.8), rgba(26,26,26,0.8));
    border: 1px solid rgba(74,74,74,0.5);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,69,0,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #FF4500;
    box-shadow: 0 5px 15px rgba(255,69,0,0.2);
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-title {
    color: #E0E0E0;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-title::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #FF4500;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title::before {
    color: #FF4500;
    transform: translateX(5px);
}

.feature-text {
    color: #B0B0B0;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255,69,0,0.3);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.feature-card:hover .feature-text {
    border-left-color: #FF4500;
    padding-left: 2rem;
}

/* Services Page Styles */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(46,46,46,0.8), rgba(26,26,26,0.8));
    border: 1px solid rgba(74,74,74,0.5);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,69,0,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #FF4500;
    box-shadow: 0 5px 15px rgba(255,69,0,0.2);
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-title {
    color: #E0E0E0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-title::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #FF4500;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.service-card:hover .service-title::before {
    transform: translateX(5px);
}

/* Team Page Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: linear-gradient(135deg, rgba(46,46,46,0.8), rgba(26,26,26,0.8));
    border: 1px solid rgba(74,74,74,0.5);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,69,0,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #FF4500;
    box-shadow: 0 5px 15px rgba(255,69,0,0.2);
}

.team-member:hover::before {
    transform: translateX(100%);
}

.member-name {
    color: #E0E0E0;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
    padding-left: 1.5rem;
}

.member-name::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #FF4500;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.team-member:hover .member-name::before {
    transform: translateX(5px);
}

.domain-knowledge {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 4px;
    color: #B0B0B0;
}

.domain-title {
    color: #FF4500;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.skills-section {
    margin-top: 1rem;
}

.skills-title {
    color: #FF4500;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.skills-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.skills-list li {
    padding-left: 1.5rem;
    position: relative;
    color: #B0B0B0;
}

.skills-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #FF4500;
}

.tech-stack {
    margin-top: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #B0B0B0;
}

/* Contact Page Styles */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-form {
    background: linear-gradient(135deg, rgba(46,46,46,0.8), rgba(26,26,26,0.8));
    border: 1px solid rgba(74,74,74,0.5);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    transition: all 0.4s ease;
}

.contact-form:hover {
    border-color: #FF4500;
    box-shadow: 0 5px 15px rgba(255,69,0,0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #E0E0E0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
}

.form-group label::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #FF4500;
    font-size: 1rem;
    opacity: 0.8;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #4A4A4A;
    border-radius: 4px;
    color: #E0E0E0;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066CC;
}

.submit-btn {
    background: linear-gradient(135deg, #FF2400, #8B0000);
    color: #E0E0E0;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    opacity: 0.9;
}

.contact-info {
    margin-top: 3rem;
    text-align: center;
}

.contact-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FF2400, #FF0066, #8B0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF4500, transparent);
}

.contact-info p {
    color: #B0B0B0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2rem;
    border: 2px solid;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.primary-cta {
    background: #0066CC;
    border-color: #0066CC;
    color: #E0E0E0;
}

.primary-cta:hover {
    background: #0047AB;
    transform: translateY(-2px);
}

.secondary-cta {
    border-color: #FF4500;
    color: #FF4500;
}

.secondary-cta:hover {
    background: #FF4500;
    color: #1A1A1A;
    transform: translateY(-2px);
}

/* Animations */
@keyframes matrixRain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes verticalScan {
    0%, 100% { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
}

@keyframes scanline {
    0% { transform: translateY(-50vh); }
    100% { transform: translateY(50vh); }
}

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

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(139, 0, 0, 0.2),
            0 0 30px rgba(255, 0, 102, 0.1);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(139, 0, 0, 0.4),
            0 0 40px rgba(255, 0, 102, 0.2);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
    
    nav a {
        margin-right: 1rem;
        padding: 0.3rem 0.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1.3rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .contact-container {
        padding: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Design Variations */

/* Minimal Neon Style */
.minimal-style {
    background: #0A0A0A;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.minimal-content {
    text-align: center;
}

.neon-box {
    border: 2px solid #FF4500;
    padding: 3rem;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

.neon-box h1 {
    font-size: 4rem;
    color: #FFF;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
    margin-bottom: 1rem;
}

.neon-line {
    height: 2px;
    width: 100px;
    background: #FF4500;
    margin: 2rem auto;
    box-shadow: 0 0 10px #FF4500;
}

.minimal-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
}

.minimal-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.neon-dot {
    width: 10px;
    height: 10px;
    background: #FF4500;
    border-radius: 50%;
    box-shadow: 0 0 10px #FF4500;
}

/* Holographic Style */
.holo-style {
    background: linear-gradient(135deg, #000510, #001529);
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.holo-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.holo-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.holo-title {
    position: relative;
}

.holo-title h1 {
    font-size: 5rem;
    color: transparent;
    background: linear-gradient(45deg, #00F5FF, #00FF87);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.holo-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 245, 255, 0.2);
    animation: hologlitch 2s infinite;
}

.holo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.holo-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #00F5FF;
    font-family: 'Orbitron', sans-serif;
}

/* Brutalist Style */
.brutal-style {
    background: #FFF;
    height: 100vh;
    padding: 2rem;
}

.brutal-container {
    height: 100%;
    border: 5px solid #000;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brutal-text {
    font-size: 8rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin: 0;
}

.brutal-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.brutal-block {
    background: #000;
    color: #FFF;
    padding: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
}

/* Glass Morphism Style */
.glass-style {
    background: linear-gradient(45deg, #FF4500, #8B0000);
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.glass-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(100px);
}

.glass-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.glass-card.main {
    width: 80%;
    max-width: 800px;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 80%;
    max-width: 800px;
}

.glass-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Animations */
@keyframes hologlitch {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.5; }
}

/* Responsive adjustments for variations */
@media (max-width: 768px) {
    .minimal-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .brutal-text {
        font-size: 4rem;
    }

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

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

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

/* New Design Variations */

/* Neo Brutalist Style */
.neo-brutal-style {
    background: #0A0A0A;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero specific styles */
.hero.neo-brutal-style {
    height: 100vh;
    padding: 2rem;
}

/* Features specific styles */
.features.neo-brutal-style {
    padding: 6rem 2rem;
}

/* Non-hero section styles */
section.neo-brutal-style:not(.hero) {
    padding-top: calc(80px + 4rem);
    padding-bottom: 6rem;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Footer specific styles */
footer.neo-brutal-style {
    padding: 4rem 0;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.neo-brutal-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    box-sizing: border-box;
}

.neo-brutal-box {
    border: 3px solid #FF4500;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    box-shadow: 15px 15px 0 rgba(255, 69, 0, 0.3);
    transition: all 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

.neo-brutal-box:hover {
    transform: translate(-5px, -5px);
    box-shadow: 20px 20px 0 rgba(255, 69, 0, 0.3);
}

.neo-brutal-title {
    font-size: 6rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    color: #FFF;
    line-height: 1;
    margin: 0;
}

.neo-brutal-title.accent {
    color: #FF4500;
}

.neo-brutal-line {
    height: 3px;
    width: 150px;
    background: #FF4500;
    margin-top: 2rem;
    box-shadow: 5px 5px 0 rgba(255, 69, 0, 0.3);
}

.neo-brutal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    width: 100%;
    box-sizing: border-box;
}

.neo-brutal-card {
    background: #1A1A1A;
    border: 2px solid #FF4500;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-sizing: border-box;
    width: 100%;
    word-wrap: break-word;
}

.neo-brutal-card:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 0 rgba(255, 69, 0, 0.3);
}

.neo-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #FF4500;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.neo-content {
    margin-top: 2rem;
}

.neo-content h3 {
    color: #FFF;
    margin: 0;
}

.neo-dot {
    width: 10px;
    height: 10px;
    background: #FF4500;
    margin-top: 1rem;
    box-shadow: 3px 3px 0 rgba(255, 69, 0, 0.3);
}

/* Minimal Glass Style */
.minimal-glass-style {
    background: linear-gradient(45deg, #FF4500, #8B0000);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mg-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.mg-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
}

.mg-title-box {
    margin-bottom: 4rem;
}

.mg-title-box h1 {
    font-size: 5rem;
    color: #FFF;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.mg-accent-line {
    height: 2px;
    width: 100px;
    background: #FFF;
    margin: 2rem auto;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.mg-features {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

.mg-feature {
    flex: 1;
    text-align: center;
}

.mg-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.mg-feature p {
    color: #FFF;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin: 0;
}

/* Industrial Neon Style */
.industrial-style {
    background: #0A0A0A;
    height: 100vh;
    padding: 2rem;
    display: flex;
    align-items: center;
}

.industrial-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.industrial-left {
    border-right: 2px solid #FF4500;
    padding-right: 4rem;
}

.ind-title {
    font-size: 8rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    color: #FFF;
    line-height: 1;
    margin: 0;
}

.ind-title-sub {
    font-size: 8rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    color: #FF4500;
    line-height: 1;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

.ind-line {
    height: 4px;
    width: 200px;
    background: #FF4500;
    margin-top: 2rem;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.industrial-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.ind-block {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border: 2px solid rgba(255, 69, 0, 0.3);
    transition: all 0.3s ease;
}

.ind-block:hover {
    border-color: #FF4500;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.2);
    transform: translateX(10px);
}

.ind-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #FF4500;
}

.ind-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #FFF;
}

/* Responsive adjustments for new variations */
@media (max-width: 768px) {
    .neo-brutal-title {
        font-size: 4rem;
    }

    .neo-brutal-grid {
        grid-template-columns: 1fr;
    }

    .mg-features {
        flex-direction: column;
    }

    .industrial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .industrial-left {
        border-right: none;
        border-bottom: 2px solid #FF4500;
        padding-right: 0;
        padding-bottom: 2rem;
    }

    .ind-title,
    .ind-title-sub {
        font-size: 4rem;
    }
}

/* Responsive styles for neo-brutalist design */
@media (max-width: 1024px) {
    .neo-brutal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .neo-brutal-title {
        font-size: 4.5rem;
    }

    .neo-brutal-box {
        padding: 2rem;
        box-shadow: 10px 10px 0 rgba(255, 69, 0, 0.3);
    }
}

@media (max-width: 768px) {
    /* Navigation adjustments */
    nav {
        padding: 0.5rem;
    }

    nav a {
        font-size: 0.9rem;
        margin-right: 0.5rem;
        padding: 0.3rem 0.5rem;
    }

    /* Section padding adjustments */
    section.neo-brutal-style:not(.hero) {
        padding-top: calc(60px + 2rem);
        padding-bottom: 3rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Title and box adjustments */
    .neo-brutal-title {
        font-size: 3rem;
    }

    .neo-brutal-box {
        padding: 1.5rem;
        margin-bottom: 2rem;
        box-shadow: 8px 8px 0 rgba(255, 69, 0, 0.3);
    }

    .neo-brutal-box:hover {
        transform: translate(-3px, -3px);
        box-shadow: 10px 10px 0 rgba(255, 69, 0, 0.3);
    }

    /* Grid adjustments */
    .neo-brutal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    /* Card adjustments */
    .neo-brutal-card {
        padding: 1.5rem;
    }

    .neo-brutal-card:hover {
        transform: translateY(-5px);
        box-shadow: 5px 5px 0 rgba(255, 69, 0, 0.3);
    }

    .neo-content h3 {
        font-size: 1.5rem;
    }

    /* Form adjustments */
    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
    }

    /* Footer adjustments */
    footer.neo-brutal-style {
        padding: 2rem 1rem;
    }

    .footer-social .neo-brutal-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .footer-social .neo-brutal-card {
        padding: 1rem;
    }

    .footer-social h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Extra small device adjustments */
    .neo-brutal-title {
        font-size: 2.5rem;
    }

    nav {
        display: flex;
        justify-content: space-between;
    }

    nav a {
        font-size: 0.8rem;
        margin-right: 0.2rem;
        padding: 0.2rem 0.3rem;
    }

    .footer-social .neo-brutal-grid {
        grid-template-columns: 1fr;
    }

    .neo-brutal-box {
        padding: 1rem;
        box-shadow: 5px 5px 0 rgba(255, 69, 0, 0.3);
    }

    .neo-content {
        margin-top: 1.5rem;
    }

    .neo-number {
        font-size: 1rem;
    }
} 