:root {
    --bg-color: #0A192F;
    --card-bg: #112240;
    --text-main: #CCD6F6;
    --text-muted: #8892B0;
    --accent: #D4AF37; /* Clean minimal gold for corporate feel */
    --accent-hover: #F3E5AB;
    --glass-bg: rgba(17, 34, 64, 0.7);
    --border-color: rgba(212, 175, 55, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color); 
}
::-webkit-scrollbar-thumb {
    background: #233554; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3a506b; 
}

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #CCD6F6;
    font-weight: 600;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.section-title.center {
    text-align: center;
    display: block;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #E2E8F0;
}

.lang-switcher button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.lang-switcher button.active, .lang-switcher button:hover {
    color: var(--accent);
}

.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(145deg, rgba(10,25,47,0.85) 0%, rgba(13,29,54,0.95) 100%), url('hero-bg.png') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 30%, rgba(212,175,55,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #edf2f8;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.btn-secondary {
    background-color: var(--accent);
    color: #0A192F;
    border: 1px solid var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent-hover);
    color: #0A192F;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.content-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
    line-height: 1.3;
}

.dark-section {
    background-color: var(--card-bg);
}

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

.card {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px -15px rgba(2,12,27,0.7);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
}

.card h3 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.compliance-box {
    padding: 70px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--glass-bg);
    box-shadow: 0 10px 30px -15px rgba(2,12,27,0.7);
    text-align: center;
}

.compliance-box p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.contact-info {
    text-align: center;
    background: var(--card-bg);
    padding: 70px 40px;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid rgba(255,255,255,0.03);
}

.contact-info .name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #edf2f8;
    margin-bottom: 5px;
}

.contact-info .role {
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.contact-item .icon {
    color: var(--accent);
    margin-right: 12px;
    font-size: 1.2rem;
}

.contact-item:hover {
    color: var(--accent);
}

footer {
    text-align: center;
    padding: 25px 0;
    background-color: #020c1b;
    color: #495670;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .title { font-size: 3rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .hero { height: auto; padding: 150px 0 100px; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .compliance-box { padding: 40px 20px; }
    .contact-links { flex-direction: column; align-items: center; gap: 20px; }
    .section { padding: 70px 0; }
}

/* Profile Image Styles */
.align-center {
    align-items: center;
}

.profile-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    z-index: 1;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 4px;
    z-index: -1;
    transition: transform 0.3s ease;
}

.image-wrapper:hover::after {
    transform: translate(-10px, -10px);
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    box-shadow: 0 10px 30px -15px rgba(2,12,27,0.8);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
