/* 
Theme Name: Indus Industrial Theme
*/

:root {
    --dark: #1a1a1a;
    --grey: #f4f4f4;
    --text: #333;
}

body { font-family: 'Poppins', sans-serif; margin: 0; color: var(--text); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex-row { display: flex; justify-content: space-between; align-items: center; }

/* Top Bar */
.top-bar { background: #262872; color: #fff; padding: 10px 0; font-size: 15px; }
.top-right a { color: #fff; text-decoration: none; margin-left: 20px; transition: 0.3s; }
.top-right a i {
	color:#EE312F;
}
.ml-0 {
	margin-left:0 !important;
}
.top-right a:hover { color: var(--brand); }

/* Main Header */
.main-header { background: #fff; padding: 15px 0 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.1); }
.logo-text { font-size: 24px; font-weight: 800; text-decoration: none; color: var(--dark); }
.logo-text span { color: var(--brand); }

/* Menu */
.primary-menu { display: flex; list-style: none; gap: 25px; margin: 0; }
.primary-menu a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 15px; text-transform: uppercase; transition: 0.3s; }
.primary-menu a:hover { color: var(--brand); }

/* Button */
.btn-main { background: var(--brand); color: #fff; padding: 12px 25px; border-radius: 4px; text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 13px; transition: 0.3s; }
.btn-main:hover { filter: brightness(1.2); transform: translateY(-2px); display: inline-block; }

/* Mobile */
.menu-toggle { display: none; cursor: pointer; background: none; border: none; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 25px; height: 3px; background: var(--dark); }

@media (max-width: 992px) {
    .nav-container { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: #fff; padding: 80px 30px; transition: 0.4s; box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
    .nav-container.active { right: 0; }
    .primary-menu { flex-direction: column; }
    .menu-toggle { display: flex; z-index: 1100; }
    .top-left, .btn-main { display: none; }
}
