:root {
    --primary-color: #8CA595; /* Sage Green */
    --primary-dark: #4A5D52; /* Darker Sage Green for text accessibility */
    --secondary-color: #C2D1C8; /* Lighter Sage Green */
    --accent-color: #1A1A1A; /* Dark Gray / Almost Black */
    --bg-color: rgba(255, 255, 255, 0.7); /* Translucent White */
    --text-color: #333333;
    --text-light: #444444; /* slightly darker for better contrast against translucent backgrounds */
    --bg-light: rgba(249, 250, 249, 0.8);
}

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

body {
    background-color: #ffffff;
    color: var(--text-color);
    line-height: 1.8;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('abstract_bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0;
    animation: bgFadeIn 1.5s ease-in-out forwards;
}

@keyframes bgFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eaeaea;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 30px;
    font-weight: 600;
    transition: color 0.3s;
}

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

.hero {
    background: transparent;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.hero h1 {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.2s ease;
    border: 2px solid var(--primary-color);
    font-size: 1.1rem;
}

.btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline:hover {
    background-color: rgba(140, 165, 149, 0.1);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.intro {
    padding: 80px 0;
    background-color: transparent;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro .lead {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 400;
    margin-bottom: 30px;
}

.services {
    padding: 100px 0;
    background-color: transparent;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 60px;
}

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

.service-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid #eaeaea;
    border-top: 4px solid var(--primary-color);
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.service-card svg {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
}

.companies {
    padding: 120px 0;
    background-color: transparent;
}

.companies h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 50px;
}

.companies-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.company-logo {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    border: 1px solid #eaeaea;
    padding: 30px 40px;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 200px;
}

.about {
    padding: 120px 0;
    background-color: rgba(249, 250, 249, 0.95);
    border-top: 1px solid #eaeaea;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 2px;
    display: block;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
}

footer {
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-content h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-content p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}



.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
    padding-left: 20px;
}

.service-list li {
    margin-bottom: 8px;
    position: relative;
    color: var(--text-light);
}

.service-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: -15px;
    font-weight: bold;
}

.features {
    padding: 120px 0;
    background-color: rgba(249, 250, 249, 0.95);
    border-top: 1px solid #eaeaea;
}

.features-content {
    display: flex;
    gap: 60px;
}

.why-choose, .mission {
    flex: 1;
}

.features h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding: 15px 25px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #eaeaea;
    border-radius: 2px;
    color: var(--text-color);
}

.mission p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; padding: 0 10px; }
    .hero { padding: 60px 0 40px; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 100%; margin: 0 auto; gap: 15px; }
    .btn { width: 100%; text-align: center; }
    .header-container { flex-direction: column; height: auto; padding: 15px 0; gap: 15px; }
    nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    nav a { margin: 0; padding: 8px 12px; font-size: 0.95rem; }
    .services, .about, .features, .companies, .intro { padding: 50px 0; }
    .about-content { flex-direction: column; text-align: center; gap: 30px; }
    .features-content { flex-direction: column; gap: 30px; }
    .footer-content { flex-direction: column; text-align: center !important; align-items: center; }
    .contact-info { text-align: center !important; margin-top: 20px; }
    .trust-badge { font-size: 1rem !important; }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

