/* --- 1. GLOBAL BRONZE & DEEP SLATE THEME VARIABLES --- */
:root {
    --primary: #1A202C;      /* Deep Charcoal Slate */
    --primary-light: #2D3748;
    --accent: #C09F6E;       /* Modern Bronze/Gold */
    --accent-hover: #D4AF37;
    --text-dark: #2D3748;    /* Slate Grey */
    --text-light: #718096;   /* Muted Grey */
    --bg-body: #ffffff;      /* Clean White */
    --bg-light: #F7F9FC;     /* Very light cool grey */
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --nav-height: 80px;
}

/* --- 2. GLOBAL RESET & FONTS --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-body);
    line-height: 1.7;
}

h1, h2, h3, h4, .btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 3. TOP BAR & NAVBAR --- */
.top-bar { 
    background-color: #12161F; 
    color: rgba(255,255,255,0.7); 
    font-size: 0.85rem; 
    padding: 10px 0; 
}
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.contact-mini span { margin-right: 25px; }
.contact-mini i { color: var(--accent); margin-right: 8px; }
.social-mini a { margin-left: 15px; color: rgba(255,255,255,0.7); }
.social-mini a:hover { color: var(--accent); }

.navbar {
    background: #ffffff;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border-bottom: 1px solid #EDF2F7;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

/* LOGO ANIMATION */
.logo { 
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem; 
    font-weight: 800; 
    color: var(--primary); 
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
    animation: logo-breathe 4s ease-in-out infinite;
}

@keyframes logo-breathe {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.1; transform: scale(0.98); } 
    100% { opacity: 1; transform: scale(1); }
}

.logo img {
    height: 48px;
    width: auto;
    border-radius: 4px;
}

.highlight { color: var(--accent); }

.nav-links { display: flex; align-items: center; }
.nav-links li { margin-left: 35px; }

/* MENU LINKS */
.nav-links a { 
    font-weight: 600; 
    font-size: 0.9rem; 
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light); 
    padding-bottom: 5px; 
    border-bottom: 2px solid transparent; 
}
.nav-links a:hover { color: var(--accent); border-color: var(--accent); }
.nav-links a.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

.nav-btn { background: var(--primary); color: white !important; padding: 12px 30px; border-radius: 4px; font-weight: 600; }
.nav-btn:hover { background: var(--accent); transform: translateY(-2px); }

/* --- 4. HERO SECTION --- */
.hero {
    position: relative;
    height: 88vh;
    /* LOCAL IMAGE RESTORED */
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

/* OVERLAY: 0.1 Opacity (Almost Clear) */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Extremely light gradient just to tint the corners slightly */
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.2) 0%, rgba(26, 32, 44, 0.05) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; padding-top: 40px; }

@keyframes text-pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.1; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1); }
}

.hero h1, .hero p {
    animation: text-pulse 6s ease-in-out infinite;
    /* Heavy Text Shadow ensures readability on bright sky */
    text-shadow: 0 5px 30px rgba(0,0,0,0.95); 
}

.hero-tag { 
    display: inline-block; 
    background: rgba(192, 159, 110, 0.6); 
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem; margin-bottom: 25px; 
    font-weight: 700; color: white; 
    border: 1px solid var(--accent);
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero h1 { font-size: 3.8rem; line-height: 1.15; margin-bottom: 20px; font-weight: 800; color: white; }
.hero p { font-size: 1.2rem; margin-bottom: 35px; opacity: 1; max-width: 90%; font-family: 'Open Sans', sans-serif; font-weight: 600; color: #ffffff; }

.btn { display: inline-block; padding: 16px 40px; border-radius: 4px; font-weight: 700; cursor: pointer; border: none; font-size: 0.95rem; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-primary { background: var(--accent); color: #1A202C; margin-right: 15px; }
.btn-primary:hover { background: white; color: var(--accent); box-shadow: 0 5px 15px rgba(192, 159, 110, 0.3); transform: translateY(-2px); }
.btn-outline { background: rgba(0,0,0,0.3); border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--primary); border-color: white; }

/* --- 5. ABOUT SECTION --- */
.section { padding: 100px 0; }
.row { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.col-half { flex: 1; min-width: 300px; }

.sub-heading { color: var(--accent); font-size: 0.85rem; letter-spacing: 2px; font-weight: 700; margin-bottom: 15px; display: block; text-transform: uppercase; }
.section-heading { font-size: 2.5rem; color: var(--primary); margin-bottom: 25px; line-height: 1.3; font-weight: 700; }
.text-lead { font-size: 1.2rem; color: var(--primary-light); margin-bottom: 20px; font-weight: 600; line-height: 1.6; border-left: 3px solid var(--accent); padding-left: 20px; }
.text-body { font-size: 1rem; color: var(--text-light); line-height: 1.8; text-align: justify; margin-bottom: 20px; font-family: 'Open Sans', sans-serif; }

/* STATS */
.stats-grid { display: flex; gap: 30px; margin-top: 40px; }

.stat-item { 
    background: white; 
    padding: 30px; 
    border-radius: 4px;
    border: 1px solid #EDF2F7;
    box-shadow: var(--shadow); 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    animation: stat-pulse 4s ease-in-out infinite;
}

@keyframes stat-pulse {
    0% { transform: translateY(0); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: #EDF2F7; }
    50% { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(192, 159, 110, 0.15); border-color: var(--accent); }
    100% { transform: translateY(0); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: #EDF2F7; }
}

.stat-item:nth-child(2) { animation-delay: 2s; }

.stat-item i { color: var(--accent); font-size: 2rem; margin-bottom: 15px; }
.stat-item h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 5px; font-weight: 700; }
.stat-item p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

.about-img-box {
    height: 500px;
    /* LOCAL IMAGE RESTORED */
    background: url('images/about-office.jpg') center/cover;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.img-content {
    position: absolute; bottom: 30px; left: -30px; 
    background: var(--primary); 
    padding: 30px;
    border-radius: 4px;
    display: flex; align-items: center; gap: 20px; font-weight: 700; color: white; max-width: 280px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-bottom: 3px solid var(--accent);
}
.img-content i { color: var(--accent); font-size: 2rem; }

/* --- 6. SERVICES (Sleek Slate Theme) --- */
.bg-gradient { 
    background-color: var(--bg-light); 
    color: var(--text-dark); 
    border-top: 1px solid #EDF2F7;
}

.sub-heading-light { color: var(--accent); font-weight: 700; font-size: 0.85rem; display: block; margin-bottom: 10px; }
.section-heading-light { font-size: 2.5rem; margin-bottom: 15px; color: var(--primary); font-weight: 700; }
.center-text { text-align: center; margin-bottom: 60px; }
.center-text p { opacity: 0.8; font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

.carousel-window {
    overflow: hidden; 
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 40px; 
    width: max-content; 
    animation: infinite-scroll 25s linear infinite;
}

.carousel-track:hover { animation-play-state: paused; }

.service-card {
    background: white;
    border: 1px solid #EDF2F7;
    padding: 40px 30px;
    min-width: 320px;
    max-width: 320px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

@keyframes infinite-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 3 - 120px)); }
}

.service-card:hover { 
    transform: translateY(-10px); 
    border-bottom: 4px solid var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-icon {
    width: 60px; height: 60px;
    background: var(--bg-light);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center; 
    font-size: 1.5rem; 
    color: var(--accent); 
    margin-bottom: 30px; 
    transition: 0.3s;
    border: 1px solid #EDF2F7;
}

.service-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--primary); font-weight: 700; }
.service-card p { color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; line-height: 1.6; }

.service-list li { margin-bottom: 8px; color: var(--text-dark); font-size: 0.9rem; padding-left: 20px; position: relative; font-weight: 500; }
.service-list li::before { content: "•"; color: var(--accent); position: absolute; left: 0; top: 0; font-size: 1.2rem; line-height: 1.5rem; }

.service-card:hover .card-icon { background: var(--accent); color: white; border-color: var(--accent); }

/* --- 7. CAREERS (Light Platinum Theme) --- */
.cta-wrapper {
    display: flex;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid #EDF2F7;
    max-width: 950px; 
    margin: 0 auto;
}

.cta-content {
    flex: 1;
    padding: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    color: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 4px solid var(--accent);
    border-right: 1px solid #EDF2F7;
}

.cta-content h2 { font-size: 2rem; margin-bottom: 15px; color: var(--primary); }
.cta-content p { font-size: 1rem; opacity: 0.9; margin-bottom: 30px; color: var(--text-light); }

.career-perks li { margin-bottom: 15px; font-weight: 600; display: flex; align-items: center; gap: 15px; color: var(--primary); }
.career-perks i { color: white; background: var(--accent); padding: 5px; border-radius: 50%; font-size: 0.7rem; }

.cta-form {
    flex: 1;
    padding: 50px;
    background: white;
}

.cta-form h3 { margin-bottom: 30px; color: var(--primary); font-size: 1.5rem; }
.input-group { margin-bottom: 15px; }
.input-group input { width: 100%; padding: 14px; background: var(--bg-light); border: 1px solid #EDF2F7; border-radius: 4px; outline: none; font-family: 'Open Sans', sans-serif; }
.input-group input:focus { border-color: var(--accent); background: white; }
.file-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--text-light); }
.btn-gold { background: var(--accent); color: #1A202C; width: 100%; border: none; border-radius: 4px; padding: 14px; font-weight: 700; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-gold:hover { background: var(--primary); color: var(--accent); }

/* --- 8. FOOTER (Clean White Background) --- */
footer { 
    background: #ffffff; 
    color: var(--text-light); 
    padding-top: 0;
    font-size: 0.95rem; 
    border-top: none;
}

.footer-white-strip {
    background-color: white;
    width: 100%;
    padding: 15px 0;
}

.footer-brand {
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.footer-brand img {
    height: 45px; 
    width: auto;
    border-radius: 4px;
    animation: logo-breathe 4s ease-in-out infinite;
}

.footer-brand h3 { 
    margin-bottom: 0 !important; 
    color: var(--primary);
    font-size: 1.6rem; 
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    animation: logo-breathe 4s ease-in-out infinite;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 60px; 
    padding-top: 5px; 
    padding-bottom: 60px; 
}

.footer-col h3 {
    color: var(--primary); 
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 15px; color: var(--text-dark); }
.contact-list i { color: var(--accent); margin-top: 5px; }
.link-gold { color: var(--accent); font-weight: 600; }
.link-gold:hover { color: var(--primary); text-decoration: underline; }

.map-frame { 
    border: 1px solid #e0e0e0; 
    border-radius: 4px; 
    overflow: hidden; 
    opacity: 1; 
    transition: 0.3s; 
}
.map-frame:hover { border-color: var(--accent); }

.footer-bottom { background: #1A202C; text-align: center; padding: 20px; color: #A0AEC0; font-size: 0.85rem; letter-spacing: 0.5px; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .cta-wrapper { flex-direction: column; }
    .hero h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .img-content { left: 50%; transform: translateX(-50%); bottom: -40px; }
    .about-img-box { height: 350px; }
}