* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
}

.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
}

.btn-outline {
    border: 1px solid #ffffff;
    padding: 10px 20px;
    color: #ffffff !important;
}

.hero {
    position: relative;
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1556911220-e15b29be8c8f?q=80&w=1500') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 22px;
    color: #dddddd;
}

.social-side {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-side a, .footer-social a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.services-overview {
    display: flex;
    background-color: #181818;
    padding: 60px 10%;
    align-items: center;
    gap: 50px;
}

.services-img { flex: 1; }
.services-img img { width: 100%; border-radius: 4px; }
.services-text { flex: 1; }
.services-text h2 { font-size: 36px; margin-bottom: 20px; }
.services-text ul { list-style: none; margin-bottom: 30px; }
.services-text ul li { font-size: 16px; margin-bottom: 10px; letter-spacing: 1px; }

.btn-gray {
    display: inline-block;
    background-color: #8c8275;
    color: #ffffff;
    padding: 12px 35px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    border: none;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 50px 10%;
    background-color: #121212;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.feature-box { text-align: center; }
.feature-box i { font-size: 30px; color: #8c8275; margin-bottom: 15px; }
.feature-box h3 { font-size: 14px; letter-spacing: 1px; }

.about-section {
    display: flex;
    padding: 80px 10%;
    gap: 50px;
    align-items: center;
}

.about-text { flex: 1; }
.about-text h2 { font-size: 36px; margin-bottom: 10px; }
.about-text h3 { font-size: 18px; color: #aaa; margin-bottom: 20px; }
.about-text p { color: #ccc; line-height: 1.8; font-size: 14px; }
.about-img { flex: 1; }
.about-img img { width: 100%; }

.projects-section { padding: 60px 10%; background-color: #181818; }
.projects-section h2 { font-size: 36px; margin-bottom: 30px; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.project-item img { width: 100%; height: 200px; object-fit: cover; }
.project-item.large { grid-column: span 2; position: relative; }
.project-item.large img { height: 415px; }
.project-overlay { position: absolute; bottom: 30px; right: 30px; text-align: right; }
.project-overlay h3 { font-size: 24px; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); }

.page-header, .projects-page-banner { padding: 100px 10%; background-color: #1a1a1a; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 50px 10%; }
.service-card { background-color: #222; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 20px; letter-spacing: 1px; }
.service-card.image-card img { width: 100%; height: 100%; object-fit: cover; }

.experience-section { display: flex; padding: 60px 10%; background-color: #181818; gap: 40px; }
.exp-title h2 { font-size: 30px; }
.exp-col h3 { font-size: 18px; margin-bottom: 15px; color: #8c8275; }
.exp-col ul { list-style: none; }
.exp-col ul li { margin-bottom: 8px; color: #ccc; font-size: 14px; }

.footer { background-color: #181818; padding: 60px 10% 30px 10%; border-top: 1px solid #222; }
.footer-container { display: flex; justify-content: space-between; margin-bottom: 40px; }
.footer-left h2 { font-size: 32px; margin-bottom: 25px; }
.contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.contact-item a { color: #ffffff; text-decoration: none; }
.footer-right { text-align: right; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; margin-bottom: 25px; }
.footer-nav a { color: #aaa; text-decoration: none; font-size: 14px; }
.footer-social { display: flex; gap: 20px; }