:root {
    --primary-blue: #0D47A1;
    --accent-blue: #1976D2;
    --light-blue: #F0F7FF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.5; color: #333; overflow-x: hidden; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 8%; background: white; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.logo-container { display: flex; align-items: center; gap: 12px; }
.company-logo { height: 40px; width: auto; }
.logo-text { font-size: 1.2rem; font-weight: 700; color: var(--primary-blue); white-space: nowrap; }
.logo-text span { color: var(--accent-blue); }

.menu-toggle { display: block; cursor: pointer; z-index: 1001; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: 0.3s; background: #333; }
.nav-links { display: flex; flex-direction: column; width: 300px; position: fixed; top: 0; left: -350px; transition: 0.5s all ease; background: white; height: 100vh; list-style: none; box-shadow: 2px 0 10px rgba(0,0,0,0.1); padding-top: 80px; z-index: 999; }
.nav-links.active { left: 0; }
.nav-links li { padding: 15px 30px; border-bottom: 1px solid #eee; }
.nav-links a { text-decoration: none; color: #333; font-weight: 600; font-size: 1.1rem; }

/* Sections */
.hero { position: relative; height: 65vh; display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding: 0 5%; }
.video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
#heroVideo { width: 100%; height: 100%; object-fit: cover; filter: brightness(35%); }

.mission-vision { padding: 3rem 8%; background: #f4f7fa; }
.mv-container { display: flex; gap: 20px; }
.mv-card { flex: 1; background: white; padding: 25px; border-radius: 8px; border-top: 5px solid var(--primary-blue); text-align: center; }

.centered-head { text-align: center; width: 100%; margin-bottom: 2.5rem; margin-top: 2rem; }
.service-detail { display: flex; align-items: center; gap: 40px; padding: 3rem 8%; border-bottom: 1px solid #eee; }
.highlight-blue { background: var(--light-blue); }
.small-media { flex: 0 0 320px; }
.small-media img { width: 100%; height: 220px; border-radius: 8px; object-fit: cover; }
.dual img { width: 48%; height: 150px; display: inline-block; }

.cropped-p2 img { height: 380px; object-position: center; border: 2px solid var(--primary-blue); }

.team-layout { display: flex; gap: 20px; padding: 0 8%; }
.team-profile { flex: 1; background: #f9f9f9; padding: 25px; border-radius: 8px; border-left: 5px solid var(--primary-blue); }

.client-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; align-items: center; padding: 0 8% 4rem; }
.client-grid img { max-height: 40px; width: auto; opacity: 0.8; }

.footer { background: var(--primary-blue); color: white; padding: 3rem 8% 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-logo { height: 40px; width: auto; }
.wa-footer { background: #25D366; padding: 5px 10px; border-radius: 4px; display: inline-block; color: white; text-decoration: none; font-weight: 600; }
.copyright { text-align: center; padding-top: 1.5rem; font-size: 0.8rem; opacity: 0.7; }

/* Mobile View Tight Spacing */
@media screen and (max-width: 960px) {
    .service-detail { 
        flex-direction: column !important; 
        text-align: center; 
        padding: 1.2rem 5% !important; 
        gap: 10px !important; 
    }
    .small-media { width: 100%; order: -1; flex: none; }
    .small-media img { height: 180px; width: 90%; margin: 0 auto; }
    .cropped-p2 img { height: 220px !important; }
    .mv-container, .team-layout, .footer-grid { flex-direction: column !important; text-align: center; gap: 10px; }
    .footer-brand { justify-content: center; margin-bottom: 15px; }
}

.btn { padding: 0.8rem 1.8rem; background: var(--accent-blue); color: white; text-decoration: none; border-radius: 4px; font-weight: bold; display: inline-block; margin-top: 15px; }