:root {
    --primary-color: #6f42c1; /* Brand Purple */
    --secondary-color: #1a1a1a; /* Darker Grey */
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* --- Header --- */
#header {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
}

.header .header-announcement-bar-wrapper {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.header-inner {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.header-nav-item a {
    color: var(--white) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-nav-item a:hover {
    color: var(--primary-color) !important;
}

.header-title-text a {
    color: var(--white) !important;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align left */
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    margin-left: 5%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 5px solid var(--primary-color);
    border-radius: 4px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

/* --- Services Grid --- */
.services-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-bottom-color: var(--primary-color);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 25px;
    fill: var(--primary-color);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-desc {
    color: #666;
    font-size: 1rem;
}

/* --- About Section --- */
.about-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--light-bg);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

/* --- Projects Section (New) --- */
.projects-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
}

.projects-section .section-title {
    color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.project-cat {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Testimonials (New) --- */
.testimonials-section {
    padding: 100px 20px;
    background-color: var(--light-bg);
    text-align: center;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
}

.testimonial-role {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* --- Footer --- */
footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 20px;
}

footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

/* --- Mobile Menu State --- */
.header-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

body.header--menu-open .header-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.header--menu-open {
    overflow: hidden;
}

/* --- Privacy Page --- */
.privacy-page-content {
    padding: 120px 20px 80px; /* Top padding to account for fixed header */
    max-width: 800px;
    margin: 0 auto;
    min-height: 60vh;
}

.privacy-page-content h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.privacy-page-content strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.privacy-page-content p, .privacy-page-content li {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1rem;
}

.privacy-page-content ul {
    padding-left: 20px;
    margin-bottom: 1rem;
}
