/* Base Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #444444;
    --text-color: #e0e0e0;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600' width='800' height='600' opacity='0.15'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M400 150c-22 0-40 40-40 90s18 90 40 90 40-40 40-90-18-90-40-90zm0 200c-55 0-100-50-100-110S345 130 400 130s100 50 100 110-45 110-100 110zm0-300c-110 0-200 100-200 220S290 490 400 490s200-100 200-220S510 50 400 50z'/%3E%3Cpath d='M395 280c0 55 2 100 5 100s5-45 5-100-2-100-5-100-5 45-5 100zm-120-30c10 50 25 90 35 90s15-40 5-90-25-90-35-90-15 40-5 90zm240 0c-10 50-25 90-35 90s-15-40-5-90 25-90 35-90 15 40 5 90z'/%3E%3Cpath d='M390 500c0-170 5-300 10-300s10 130 10 300h55c5-80 20-110 20-200s-15-120-20-200h-130c-5 80-20 110-20 200s15 120 20 200h55z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color var(--transition-speed);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 5rem 1rem;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all var(--transition-speed);
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

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

.brand-logo {
    height: 120px;
    width: auto;
    margin-right: 10px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    position: relative;
    padding-bottom: 0.25rem;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-speed);
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
    padding: 2rem 5rem;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition-speed);
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.hero-graphic {
    flex: 1;
    max-width: 500px;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Services Section */
.services {
    background-color: var(--primary-color);
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.85);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: rgba(68, 68, 68, 0.1);
    border: 1px solid var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* About Section */
.about {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 2rem;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h2 {
    text-align: left;
}

.about-image {
    flex: 1;
    max-width: 400px;
    margin-left: 2rem;
}

/* Portfolio Section */
.portfolio {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.85);
    background-color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--accent-color);
    background: linear-gradient(45deg, #111, #222);
    transition: transform var(--transition-speed);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

/* Contact Section */
.contact {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.85);
    background-color: #111;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--accent-color);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
    border-radius: 4px;
    font-family: inherit;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-button {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition-speed);
}

.submit-button:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.85);
    background-color: #000;
    padding: 3rem 1rem 1rem;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

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

.copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-color);
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

.atlas-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url("/ChatGPT Image Apr 3, 2025, 08_46_51 AM.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    opacity: 1;
    background-color: transparent;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .about {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content h2 {
        text-align: center;
    }
    
    .about-image {
        margin-left: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transition: right var(--transition-speed);
        z-index: 1001;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    
    nav ul li {
        margin: 1.5rem 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1002;
    }
    
    .service-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}