:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --navy: #001f3f;
    --light-gray: #f8f9fa;
    --text: #333;
    --text-light: #666;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    color: #333;
}

/* ==================== CONSISTENT NAVIGATION ==================== */

/* Top Header (Static Utility Bar) */
.top-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    z-index: 1040;
    position: relative;
}
.top-header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.top-header .info-group {
    gap: 40px;
}
.top-header .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.top-header .info-item i {
    color: #007bff;
    font-size: 16px;
}
.top-header .info-text small {
    display: block;
    font-size: 12px;
    color: #888;
}
.top-header .info-text strong,
.top-header .info-text a strong {
    font-size: 15px;
    color: #333;
}
.top-header .info-text a {
    color: inherit;
    text-decoration: none;
}
.top-header .social-icons a {
    color: #555;
    font-size: 18px;
    margin-left: 15px;
    transition: color 0.3s;
}
.top-header .social-icons a:hover {
    color: #007bff;
}
.top-header .dashed-divider {
    height: 35px;
    width: 1px;
    background: repeating-linear-gradient(to bottom, transparent 0px, transparent 4px, #ddd 4px, #ddd 8px);
}

/* Main Navbar */
.main-navbar {
    background: transparent;
    transition: all 0.4s ease;
    padding: 20px 0;
    z-index: 1030;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.main-navbar.scrolled {
    background: #001f3f;
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.main-navbar .navbar-brand h2 {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}
.main-navbar .nav-link {
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: background 0.3s;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    background: rgba(255,255,255,0.15);
}
.main-navbar .navbar-toggler {
    border: none;
}
.main-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive for top header */
@media (max-width: 992px) {
    .top-header .info-group {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .top-header .dashed-divider {
        display: none;
    }
    .top-header .social-icons {
        margin-top: 15px;
    }
}

/* Language toggle button */
#lang-toggle {
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    font-weight: bold;
    transition: all 0.3s;
}
#lang-toggle:hover {
    background: rgba(255,255,255,0.2);
}
.main-navbar.scrolled #lang-toggle {
    border-color: #fff;
}

/* ==================== PAGE CONTENT STYLES ==================== */

.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('https://images.unsplash.com/photo-1455849318743-b2233052fcff?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8YWJvdXQlMjB1c3xlbnwwfHwwfHx8MA%3D%3D') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.hero-content h1 {
    font-size: 90px;
    font-weight: 800;
    letter-spacing: 3px;
    margin: 0;
}
.hero .scroll-hint {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Sections */
.service-section,
.strategy-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

/* Cards */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-icon {
    width: 70px;
    height: 70px;
    background: #e3f2fd;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.service-list {
    margin-top: 15px;
    padding-left: 20px;
    font-size: 14px;
    color: #555;
}
.service-list li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    background: var(--navy);
    color: #ddd;
    padding: 80px 0 30px;
}
footer a {
    color: #ddd;
    text-decoration: none;
}
footer a:hover {
    color: var(--primary);
}
footer h5 {
    color: #fff;
    position: relative;
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
}
footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}
footer .contact-info {
    list-style: none;
    padding: 0;
}
footer .contact-info li {
    margin-bottom: 10px;
}
footer .contact-info i {
    width: 25px;
}
.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-section,
    .strategy-section {
        padding: 70px 0;
    }
}