:root {
    --primary-color: #9e5502; /* Deep Corporate Blue */
    --secondary-color: #e84900; /* Lighter ICT Blue */
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding { padding: 60px 0; }

/* Navigation */
header {
    background: linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0));
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo img { 
    height: 4.5rem; 
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color:#9d9d9d;
    font-weight: 600;
    padding: 10px 15px;
    transition: 0.3s;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
    transition: 0.3s;
}

/* --- RESPONSIVE NAVIGATION --- */

/* Show Hamburger only on mobile */
.menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 80px; /* Adjust based on header height */
        left: -100%; /* Hide off-screen */
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0; /* Slide in */
    }

    .nav-links li {
        margin: 15px 0;
    }

    .btn {
        padding: 12px 15px;
        max-width: 150px;
        text-decoration: none;
        border-radius: 5px;
        display: inline-block;
    }

    .logo img { 
    height: 3.5rem; 
    }

    /* Global Container Padding for Mobile */
    .container {
        width: 92%;
    }

    /* Font scale-down for mobile */
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.8rem !important; }
}

.btn-primary { background: var(--primary-color); color: #fff; }
.btn-secondary { background: #fff; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-primary:hover { background: var(--secondary-color); }

/* Footer */
footer { background: #222; color: #fff; padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.footer-bottom { text-align: center; border-top: 1px solid #444; margin-top: 30px; padding-top: 20px; font-size: 0.9rem; }