:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --accent-color: #8caa58;
    --secondary-text: #666666;
    --font-heading: 'Archivo Black', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --spacing-section: 40px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

/* Header */
.header {
    padding: 24px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
    background-color: #000;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero-bg.jpg');
    /* Fallback/Original bg */
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    /* Lighter overlay matching reference */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: #fff;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-title {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    white-space: pre-line;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 2rem;
    color: #fff;
}

.hero .btn-primary {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
    padding: 18px 40px;
    border-radius: 48px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}


/* Sections */
.section {
    padding: var(--spacing-section) 0;
}

.gallery {
    padding: 0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: justify;
}

.about-text strong {
    color: #000;
}

/* Clients Section */
/* Clients Section - Marquee */
.clients-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 20px 0;
}

.clients-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite; /* Adjusted speed for smoother look */
    gap: 60px; /* Increased gap for better spacing between logos */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    flex: 0 0 auto;
    width: 150px; /* Ensure consistent width */
}

.client-logo img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
    display: block;
    filter: grayscale(100%); /* Optional: Start grayscale like many marquees */
    opacity: 0.8;
}

.client-logo img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}

/* Team Section */
.team {
    background-color: rgb(201, 223, 217);
    /* Light mint/teal background matching reference */
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.team-img {
    display: flex;
    justify-content: center;
    padding-top: 32px;
}

.team-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h3 {
    color: #000;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.team-info p {
    text-align: justify;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
    align-items: center;
}

.contact-info h4 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #000;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.btn-whatsapp {
    background-color: rgb(94, 120, 135);
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 40px;
    padding-right: 40px;
    min-height: 56px;
    border-radius: 48px;
    font-weight: normal;
    font-size: 16px;
    text-transform: none;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-whatsapp .btn-icon svg {
    width: 24px;
    height: 24px;
}

.btn-whatsapp .btn-text {
    display: inline-block;
}

.btn-whatsapp:hover {
    background-color: rgb(79, 102, 114);
    opacity: 1;
}

.btn-whatsapp:active {
    background-color: rgb(69, 90, 100);
}

.contact-email a {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9rem;
    color: #fff;
    background-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .header-container {
        flex-direction: column;
        gap: 16px;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .footer {
        text-align: center;
    }
}