/* --- Color Palette & Base Setup --- */
:root {
    --primary-dark-blue: #1e4153;
    --primary-accent-blue: #41a4e0;
    --secondary-blue-gray: #6f8495;
    --light-blue-bg: #d3e7f3;
    --off-white-bg: #e9e9e7;
    --light-gray-text: #c2bfbc;
    --dark-text: #5c534d;
    --dark-text-alt: #625d52;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --font-family: 'Poppins', sans-serif; /* Default, will be overridden by HTML style tag */
}

/* --- Global Styles & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--off-white-bg);
    color: var(--dark-text);
    line-height: 1.7;
    font-size: 16px;
}

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

h1, h2, h3 {
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; text-align: center; }
h3 { font-size: 1.4rem; }

p { margin-bottom: 1rem; }
a { color: var(--primary-accent-blue); text-decoration: none; }

.section-title {
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-accent-blue);
}


/* --- Header & Navigation --- */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
}

.lang-btn {
    background-color: var(--primary-dark-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.lang-btn:hover {
    background-color: var(--primary-accent-blue);
}

/* --- Hero Section --- */
.hero-section {
    background: var(--light-blue-bg);
    padding: 6rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text .job-title {
    color: var(--secondary-blue-gray);
    font-size: 1.5rem;
    font-weight: 600;
}

.hero-text .divider {
    width: 100px;
    height: 4px;
    background: var(--primary-accent-blue);
    margin: 1.5rem 0;
    border-radius: 2px;
}

.hero-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    border: 8px solid var(--white);
    box-shadow: var(--shadow);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-accent-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(65, 164, 224, 0.4);
}

/* --- Content Sections --- */
.content-section {
    padding: 5rem 0;
}

.content-section-dark {
    padding: 5rem 0;
    background-color: var(--primary-dark-blue);
}

.content-section-dark .section-title,
.content-section-dark h3 {
    color: var(--white);
}
.content-section-dark p {
    color: var(--light-gray-text);
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.service-icon {
    font-size: 2.5rem;
    color: var(--primary-accent-blue);
    margin-bottom: 1rem;
}

/* --- Projects Grid --- */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
.project-card {
    background-color: #2a556b; /* Slightly lighter than primary-dark-blue */
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-accent-blue);
}

/* --- Payment Icons --- */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}
.payment-icons span {
    font-size: 1.2rem;
    color: var(--secondary-blue-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.payment-icons i {
    font-size: 1.8rem;
    color: var(--primary-dark-blue);
}


/* --- Footer & Contact --- */
.main-footer {
    background-color: var(--dark-text);
    color: var(--light-gray-text);
    padding: 4rem 0 2rem 0;
    text-align: center;
}
.main-footer .section-title { color: var(--white); }
.main-footer p { color: var(--light-gray-text); }
.contact-links {
    margin: 2rem 0;
}
.contact-links a {
    color: var(--white);
    font-size: 2rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}
.contact-links a:hover {
    color: var(--primary-accent-blue);
}
.coming-soon p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    padding: 0.5rem 1rem;
    display: inline-block;
    border: 1px solid var(--secondary-blue-gray);
    border-radius: 5px;
    margin-top: 1rem;
}
.copyright {
    margin-top: 3rem;
    border-top: 1px solid var(--dark-text-alt);
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image {
        grid-row: 1; /* Puts image on top on mobile */
        margin-bottom: 2rem;
    }
    .hero-text .divider {
        margin: 1.5rem auto;
    }
    .hero-image img {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .hero-section { padding: 4rem 0; }
}
