/* css/style.css */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary: #0a1128;         /* Midnight deep blue */
    --secondary: #121b33;       /* Card/section blue */
    --accent: #d4af37;          /* Premium gold */
    --accent-hover: #bfa030;    /* Darker gold */
    --accent-glow: rgba(212, 175, 55, 0.25);
    --bg-dark: #070c1e;         /* Background dark */
    --bg-card: #111a36;         /* Secondary card dark */
    --border: #1d2b4f;          /* Grid/divider lines */
    --text-white: #ffffff;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-premium: 0 10px 30px -10px rgba(2, 6, 23, 0.7);
    --shadow-gold: 0 4px 20px 0 rgba(212, 175, 55, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* Reset and Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border: 2px solid var(--bg-dark);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Utility Layout Classes */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.accent-color { color: var(--accent); }

.section-title-wrapper {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 0.75rem auto 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    line-height: 1.4;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px 0 rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-dark {
    background-color: var(--primary);
    border-color: var(--border);
    color: var(--text-white);
}

.btn-dark:hover {
    background-color: var(--secondary);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(7, 12, 30, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(7, 12, 30, 0.98);
    box-shadow: var(--shadow-premium);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    fill: var(--accent);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-white);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Dropdown Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    background: var(--secondary);
    border: 1px solid var(--border);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn:hover {
    border-color: var(--accent);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.lang-dropdown a:hover {
    background: var(--bg-card);
    color: var(--accent);
}

.lang-dropdown a.active {
    color: var(--accent);
    font-weight: 600;
}

/* Mobile Nav Toggler */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* 1. HOME PAGE */
/* Hero Section */
.hero-section {
    position: relative;
    padding: 8rem 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: none; /* No overlay mask, original image view */
    z-index: 1;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1; /* Full opacity, original view */
    animation: zoomSlow 20s infinite alternate;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(7, 12, 30, 0.6); /* Darker semi-transparent background for contrast */
    border: 1.5px solid var(--accent);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(7, 12, 30, 0.8);
    box-shadow: 0 4px 15px rgba(2, 6, 23, 0.5);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 
        -1.5px -1.5px 0 rgba(7, 12, 30, 0.9),  
         1.5px -1.5px 0 rgba(7, 12, 30, 0.9),
        -1.5px  1.5px 0 rgba(7, 12, 30, 0.9),
         1.5px  1.5px 0 rgba(7, 12, 30, 0.9),
         0px 5px 25px rgba(2, 6, 23, 0.95);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light); /* Changed to light-white for better visibility */
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-shadow: 
        -1px -1px 0 rgba(7, 12, 30, 0.9),  
         1px -1px 0 rgba(7, 12, 30, 0.9),
        -1px  1px 0 rgba(7, 12, 30, 0.9),
         1px  1px 0 rgba(7, 12, 30, 0.9),
         0px 3px 15px rgba(2, 6, 23, 0.95);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Why Choose Us Grid */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.wcu-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.wcu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.wcu-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-premium);
}

.wcu-card:hover::before {
    transform: scaleX(1);
}

.wcu-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.wcu-icon-wrapper svg {
    width: 30px;
    height: 30px;
}

.wcu-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.wcu-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-num-wrapper {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Grid (General) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 420px; /* Force premium card height */
}

.service-card-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    border-bottom: none;
}

.service-card-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 12, 30, 0.15) 0%, rgba(7, 12, 30, 0.7) 45%, rgba(7, 12, 30, 0.98) 95%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.65) contrast(1.1);
}

.service-card-body {
    padding: 2.25rem 2rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
    justify-content: flex-end;
    background: transparent;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
    border-radius: var(--radius-sm); /* Sleek square with small radius */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    transition: var(--transition-smooth);
}

.service-card-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.5;
}

.service-card-title {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(7, 12, 30, 0.9);
    letter-spacing: 0.5px;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.925rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(7, 12, 30, 0.9);
    transition: var(--transition-smooth);
}

.service-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(7, 12, 30, 0.9);
    transition: var(--transition-smooth);
    margin-top: auto; /* Push to the very bottom */
}

.service-card-action svg {
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px -15px rgba(2, 6, 23, 0.8), 0 0 25px rgba(212, 175, 55, 0.25);
}

.service-card:hover .service-card-img {
    transform: scale(1.1);
    filter: brightness(0.75) contrast(1.2);
}

.service-card:hover .service-card-img-wrapper::after {
    background: linear-gradient(180deg, rgba(7, 12, 30, 0.05) 0%, rgba(7, 12, 30, 0.6) 40%, rgba(7, 12, 30, 0.95) 90%);
}

.service-card:hover .service-card-desc {
    color: var(--text-light);
}

.service-card:hover .service-card-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
}

.service-card:hover .service-card-action {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-card-action svg {
    transform: translateX(6px);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    position: relative;
}

.tst-rating {
    color: var(--accent);
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.tst-quote {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    flex: 1;
}

.tst-client {
    display: flex;
    flex-direction: column;
}

.tst-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    font-size: 1.125rem;
}

.tst-role {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Client Logos Section */
.client-logos-wrapper {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.client-logos-track {
    display: flex;
    width: max-content;
    gap: 6rem;
    animation: scrollLogos 25s linear infinite;
}

.client-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.client-logo svg {
    width: 24px;
    height: 24px;
    fill: rgba(255, 255, 255, 0.15);
}

/* Call To Action Banner */
.cta-banner {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border: 1px solid var(--border);
    padding: 5rem 3rem;
    overflow: hidden;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(120px);
    opacity: 0.08;
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
}

.cta-banner h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-banner p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.cta-banner-action {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

/* 2. ABOUT US PAGE */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-grid-alt {
    grid-template-columns: 1.1fr 0.9fr;
}

.about-img-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
}

.about-img-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.mv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mv-card h3 svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.mv-card p {
    color: var(--text-muted);
}

/* Chairman Message Section */
.chairman-box {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 4rem;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.chairman-img-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border);
}

.chairman-img-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.chairman-badge {
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.chairman-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-style: italic;
}

.chairman-meta h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.chairman-meta p {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
}

/* Core Values Block */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.value-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.15);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.value-card h4 {
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 3. SECURITY SERVICES PAGE */
.filter-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-pill {
    background: var(--secondary);
    border: 1px solid var(--border);
    color: var(--text-light);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.filter-pill.active, .filter-pill:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
}

/* 4. CAREERS PAGE */
.careers-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.vacancy-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.vacancy-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 3rem 2.5rem;
    position: relative;
}

.vacancy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.vacancy-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.vacancy-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.vacancy-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.vacancy-meta svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.vacancy-salary {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

.vacancy-body {
    margin-bottom: 2rem;
}

.vacancy-desc {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.vacancy-reqs {
    color: var(--text-muted);
    font-size: 0.95rem;
    white-space: pre-line;
}

/* Application Form */
.application-box {
    background: var(--secondary);
    border: 1px solid var(--border);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    position: sticky;
    top: 110px;
    height: fit-content;
}

.application-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.application-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-family: var(--font-heading);
}

.form-control {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--text-white);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-file {
    position: relative;
    display: block;
}

.form-file input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.form-file-btn {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition-smooth);
}

.form-file:hover .form-file-btn {
    border-color: var(--accent);
    color: var(--text-white);
}

/* Alert Boxes */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

/* 5. GALLERY PAGE */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border);
    cursor: pointer;
    background: var(--primary);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 12, 30, 0.95) 0%, rgba(7, 12, 30, 0.3) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-cat {
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.gallery-item-caption {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 500;
    line-height: 1.3;
}

/* Custom Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(7, 12, 30, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--text-white);
    margin-top: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    background: var(--accent);
    color: var(--primary);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* 6. CONTACT US PAGE */
.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--secondary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--accent);
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.contact-details p, .contact-details a {
    color: var(--text-muted);
}

.contact-details a:hover {
    color: var(--accent);
}

.map-container {
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background-color: var(--secondary);
    position: relative;
    margin-top: 2rem;
}

.map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    padding: 2rem;
    text-align: center;
}

.map-placeholder svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* 7. ADMIN DASHBOARD */
.admin-login-wrapper {
    max-width: 450px;
    margin: 8rem auto;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-premium);
}

.admin-login-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: center;
}

.admin-login-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    margin-top: 2rem;
    min-height: 70vh;
}

.admin-sidebar {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: fit-content;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.admin-nav-item:hover, .admin-nav-item.active {
    background: var(--bg-card);
    color: var(--accent);
}

.admin-nav-item.logout {
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    border-radius: 0;
}

.admin-nav-item.logout:hover {
    color: var(--danger);
}

.admin-content {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    min-height: 70vh;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.admin-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.admin-stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

.admin-stat-lbl {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.admin-table th, .admin-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    background: var(--bg-card);
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 600;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.badge-status {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid var(--warning);
}

.badge-status.reviewed {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 34px;
    height: 34px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-icon.delete:hover {
    border-color: var(--danger);
    color: var(--danger);
}

/* Modal Popup Core */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 12, 30, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--accent);
}

/* Float Actions (WhatsApp / Call Now) */
.float-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.float-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.float-whatsapp {
    background-color: #25d366;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.float-call {
    background-color: var(--accent);
    color: var(--primary);
}

.float-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Pulsing micro-animation */
.float-whatsapp::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulseWhatsapp 2s infinite;
}

/* Animations */
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes zoomSlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

@keyframes pulseWhatsapp {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Footer Styles */
.footer {
    background-color: var(--primary);
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem 0;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    gap: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .about-grid, .about-grid-alt, .careers-layout, .contact-layout, .chairman-box {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-img-box img, .chairman-img-wrapper img {
        height: 400px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .testimonials-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .cta-banner-action {
        justify-content: center;
    }
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-dark);
        flex-direction: column;
        padding: 3rem 0;
        gap: 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border);
        z-index: 998;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-toggle {
        display: block;
    }
    .nav-actions {
        gap: 1rem;
    }
    .btn-get-quote {
        display: none; /* Hide on mobile navbar */
    }
    .hero-section {
        min-height: 80vh;
        padding: 3rem 0;
        align-items: stretch;
    }
    .hero-container {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .hero-badge {
        align-self: center;
    }
    .hero-slide {
        background-position: center; 
    }
    .hero-title {
        font-size: 2.25rem;
        margin-top: auto;
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        display: none;
    }
    .section-title {
        font-size: 2rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .about-mission-vision, .values-grid {
        grid-template-columns: 1fr;
    }
    .float-actions {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .float-btn {
        width: 48px;
        height: 48px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .chairman-box {
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }
    .chairman-img-wrapper img {
        height: 320px;
        object-fit: cover;
        object-position: top center;
    }
}

/* Industries Grid & Card Redesign */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 380px; /* Force premium card height */
}

.industry-card-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    border-bottom: none;
}

.industry-card-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 12, 30, 0.25) 0%, rgba(7, 12, 30, 0.75) 50%, rgba(7, 12, 30, 0.98) 95%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.industry-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.6) contrast(1.1);
}

.industry-card-body {
    padding: 2.5rem 2.25rem 2rem 2.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
    justify-content: flex-end;
    background: transparent;
    gap: 1.25rem;
}

.industry-card-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.industry-card-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.5;
}

.industry-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(7, 12, 30, 0.9);
}

.industry-card-desc {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(7, 12, 30, 0.9);
    transition: var(--transition-smooth);
}

.industry-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.925rem;
    text-shadow: 0 1px 3px rgba(7, 12, 30, 0.9);
    transition: var(--transition-smooth);
    margin-top: auto;
}

.industry-card-action svg {
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px -15px rgba(2, 6, 23, 0.8), 0 0 25px rgba(212, 175, 55, 0.25);
}

.industry-card:hover .industry-card-img {
    transform: scale(1.1);
    filter: brightness(0.7) contrast(1.2);
}

.industry-card:hover .industry-card-img-wrapper::after {
    background: linear-gradient(180deg, rgba(7, 12, 30, 0.1) 0%, rgba(7, 12, 30, 0.65) 45%, rgba(7, 12, 30, 0.95) 90%);
}

.industry-card:hover .industry-card-desc {
    color: var(--text-light);
}

.industry-card:hover .industry-card-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.55);
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
}

.industry-card:hover .industry-card-action {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.industry-card:hover .industry-card-action svg {
    transform: translateX(6px);
}

/* Inner Page Hero Sections */
.page-hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6.5rem 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 12, 30, 0.92) 0%, rgba(7, 12, 30, 0.75) 50%, rgba(7, 12, 30, 0.45) 100%);
    z-index: 1;
}

.page-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.page-hero-title {
    font-size: 2.75rem;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 1px;
    font-weight: 800;
    text-shadow: 0 2px 5px rgba(2, 6, 23, 0.9);
}

.page-hero-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 650px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(2, 6, 23, 0.9);
    line-height: 1.5;
}

/* Client Detailed List */
.client-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.client-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.client-list-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    background-color: var(--bg-card);
}

.client-list-item svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--accent);
    margin-top: 1px;
}

.client-list-item span {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   TRAINING CATEGORIES GRID
   ============================================ */
.training-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.training-cat-card {
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.training-cat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.training-cat-card:hover::before {
    transform: scaleX(1);
}

.training-cat-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.training-cat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.training-cat-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.training-cat-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   TRAINING PROGRAMME DETAILED CARDS
   ============================================ */
.training-programme-wrapper {
    margin-top: 3rem;
}

.training-prog-header {
    text-align: center;
    margin-bottom: 2rem;
}

.training-prog-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
}

.training-prog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.training-prog-card {
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.training-prog-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.training-prog-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.training-prog-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent);
}

.training-prog-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.training-prog-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.training-prog-list li {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
}

.training-prog-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;
    top: 2px;
}

/* ============================================
   SKILL CATEGORIES TABLE
   ============================================ */
.skill-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
}

.skill-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.skill-table thead tr {
    background: var(--accent);
}

.skill-table thead th {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.1rem 1.5rem;
    text-align: left;
}

.skill-table tbody tr {
    background: var(--primary);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.skill-table tbody tr:nth-child(even) {
    background: var(--secondary);
}

.skill-table tbody tr:last-child {
    border-bottom: none;
}

.skill-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.06);
}

.skill-table tbody td {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    vertical-align: middle;
}

.skill-table tbody td strong {
    color: var(--text-white);
    font-weight: 700;
}

.skill-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-badge--high {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

.skill-badge--regular {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
}

/* ============================================
   DUTIES OF SECURITY PERSONNEL GRID
   ============================================ */
.duties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.duty-card {
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.duty-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.1);
}

.duty-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.duty-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.duty-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.duty-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .training-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .training-prog-grid {
        grid-template-columns: 1fr;
    }
    .skill-table thead th,
    .skill-table tbody td {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    .duties-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .training-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MOTTO BANNER
   ============================================ */
.motto-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(212,175,55,0.08) 100%);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.12);
    position: relative;
    overflow: hidden;
}

.motto-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at left center, rgba(212,175,55,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.motto-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.motto-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
}

.motto-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.motto-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    opacity: 0.8;
}

.motto-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .motto-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
    }
    .motto-text {
        font-size: 1.35rem;
    }
}
