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

body {
    font-family: Arial, sans-serif;
    background-color: #0b0f0a;
    color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.header {
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #6ef092;
    font-weight: bold;
}

.nav a {
    color: #ffffff;
    margin-left: 20px;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
}

.nav a.active {
    border: 1px solid #6ef092;
    color: #6ef092;
}

/* Hero */
.hero {
    text-align: left;
    padding: 40px 0 20px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
}

.hero-image {
    width: 100%;
    margin-top: 30px;
    border-radius: 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.service-card {
    background-color: #141b14;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #1d251d;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-card p {
    color: #c5c5c5;
    font-size: 0.95rem;
    line-height: 1.5;
}

.badge {
    display: inline-block;
    margin-bottom: 10px;
    color: #6ef092;
    font-weight: bold;
    font-size: 0.85rem;
}

/* Experience section */
.experience-section {
    position: relative;
    overflow: hidden;
}

.experience-overlay {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.experience-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.experience-text {
    position: absolute;
    top: 20%;
    left: 10%;
    max-width: 600px;
}

.experience-text .projects {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.experience-text h2 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
}

/* About section */
.about-section {
    padding: 80px 0;
    color: #ccc;
}

.about-section .section-label {
    color: #6ef092;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.about-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-section p {
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: #0d100d;
    padding: 40px 0;
    color: white;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left .logo-footer {
    font-weight: bold;
    color: #6ef092;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-right a {
    color: white;
    margin-right: 20px;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-right .socials a img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
    .experience-text {
        position: static;
        padding: 20px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
        text-align: center;
    }

    .experience-text h2 {
        font-size: 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-right {
        margin-top: 20px;
    }
}
html {
    scroll-behavior: smooth !important;
}

/* Contact section */
.contact-section {
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    color: #6ef092;
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-section p {
    color: #ccc;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #1f2a1f;
    background-color: #111411;
    color: white;
    font-size: 1rem;
    resize: none;
}

.contact-form button {
    background-color: #6ef092;
    color: #0b0f0a;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #52c77a;
}

/* Thank You Page */
.thank-you-body {
    background-color: #0b0f0a;
    color: white;
    font-family: Arial, sans-serif;
}

.thank-you-section {
    text-align: center;
    padding: 80px 0 40px;
}

.thank-you-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.thank-you-section p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
    padding: 0 20px;
}

.thank-you-image {
    width: 100%;
    margin-top: 40px;
    border-radius: 8px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .thank-you-section h1 {
        font-size: 1.9rem;
    }

    .thank-you-section p {
        font-size: 1rem;
    }

    .nav {
        display: none;
    }
}
