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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo h1 {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo span {
    color: #fff;
    font-size: 0.8rem;
    display: block;
    margin-top: -5px;
}

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

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff6b35;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(45, 27, 105, 0.8)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.cta-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.services {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b35;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: transform 0.3s;
}

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

.service-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about {
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ff6b35;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact {
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ff6b35;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: #ff6b35;
    text-decoration: none;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #333;
}

/* New page styles */
.page-hero {
    padding: 5rem 2rem 3rem;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 100%);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: transform 0.3s;
}

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

.project-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-card:nth-child(1) .project-image {
    background-image: url('images/project1.png');
}

.project-card:nth-child(2) .project-image {
    background-image: url('images/project2.png');
}

.project-card:nth-child(3) .project-image,
.project-card:nth-child(4) .project-image,
.project-card:nth-child(5) .project-image,
.project-card:nth-child(6) .project-image {
    background: linear-gradient(45deg, #2d1b69, #ff6b35);
}

.project-card h3 {
    color: #ff6b35;
    padding: 1rem;
    margin: 0;
}

.project-card p {
    color: #fff;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.tech-stack {
    color: #ccc;
    font-size: 0.9rem;
    padding: 0 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    padding-top: 1rem;
}

.services-detailed {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 3rem;
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.service-detail h2 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-features ul {
    color: #fff;
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features li:before {
    content: "→";
    color: #ff6b35;
    margin-right: 0.5rem;
}

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

.tech-tags span {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.process {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.process h2 {
    text-align: center;
    color: #ff6b35;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    color: #fff;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.company-story {
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.company-story h2 {
    color: #ff6b35;
    margin-bottom: 2rem;
}

.mission-vision {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

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

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.mv-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #fff;
    line-height: 1.6;
}

.team {
    padding: 3rem 2rem;
}

.team h2 {
    text-align: center;
    color: #ff6b35;
    margin-bottom: 3rem;
}

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

.team-member {
    text-align: center;
    color: #fff;
}

.member-avatar {
    width: 120px;
    height: 120px;
    background-image: url('images/team-avatar.png');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.team-member h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.company-stats {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.company-stats h2 {
    text-align: center;
    color: #ff6b35;
    margin-bottom: 3rem;
}

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

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 5px;
    padding: 1rem;
    color: #fff;
}

.contact-form button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero-content h2, .page-hero h1 {
        font-size: 2rem;
    }
    
    .service-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content, .contact-grid, .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}
