:root {
    --primary: #0066FF;        
    --primary-dark: #0047B3;
    --dark: #0B1120;          
    --light: #F8FAFC;          
    --white: #FFFFFF;
    --text-main: #334155;
    --text-muted: #64748B;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
/*:root {
    --primary: #009A44;        
    --primary-dark: #007A36; 
    
    --dark: #2D2C2F;  
    --text-main: #4A4C50; 
    --text-muted: #7A7C80; 
    --light: #F8FAFC;          
    --white: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden; 
    width: 100%;
    position: relative;
}

h1, h2, h3, h4 { 
    font-family: var(--font-heading); 
    color: var(--dark); 
    font-weight: 700; 
    line-height: 1.2; 
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}
.bg-tint {
    background-color: rgba(0, 154, 68, 0.03); 
    border-top: 1px solid rgba(0, 154, 68, 0.1);
    border-bottom: 1px solid rgba(0, 154, 68, 0.1);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
section {
    scroll-margin-top: 120px; /* Forces the page to stop 120px lower so the header doesn't block the content */
}
.section-padding {
    padding: 70px 0;
}

.bg-light {
    background-color: var(--light);
}

.text-center {
    text-align: center;
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-5 { margin-bottom: 60px; }
.mt-5 { margin-top: 60px; }

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover { 
    background: var(--primary-dark); 
    border-color: var(--primary-dark); 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px #60A5FA; 
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E2E8F0;
    transition: var(--transition);
}

.header-flex { 
    display: flex;
    justify-content: space-between;
    align-items: center; 
    height: 80px;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    max-height: 55px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav > a, .nav-dropdown > a { 
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted); 
    white-space: nowrap;
    cursor: pointer;
}

.main-nav a:hover, .main-nav a.active, .nav-dropdown:hover > a {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 260px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-radius: 0 0 var(--radius) var(--radius);
    border: 1px solid #E2E8F0;
    border-top: none;
    z-index: 1000;
    padding: 10px 0;
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown:focus-within .dropdown-content,
.nav-dropdown:active .dropdown-content { 
    display: block; 
}

.dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid #F1F5F9;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--light);
    color: var(--primary);
    padding-left: 32px;
}

.inner-page-header {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2942 100%);
    padding: 150px 0 60px;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.inner-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.inner-page-header p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

main {
    min-height: 60vh;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    opacity: 0.85;
}

.hero-content {
    color: var(--white);
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.badge { 
    display: inline-block; 
    background: rgba(0, 102, 255, 0.2); 
    color: #60A5FA;
    padding: 6px 16px; 
    border-radius: 30px; 
    font-weight: 600; 
    margin-bottom: 20px; 
    border: 1px solid #60A5FA
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
    background-color: var(--dark);
    margin-top: 80px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: -1;
}

.slide-content {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.hero-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

.lead-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch !important;
}

.align-center {
    align-items: center;
}

.leadership-box { 
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius); 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary); 
}

.leadership-box h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.leadership-box li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-list li {
    font-size: 1rem !important;      
    font-family: var(--font-body);   
    font-weight: 400 !important;     
    line-height: 1.6;                
}

.directors-grid {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.director-card {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}

.director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.director-img {
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    background-color: #CBD5E1;
}

.director-info h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.director-info p {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}
.client-master-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.client-card-top {
    padding: 20px 30px;
    text-align: center;
    border-top: 5px solid var(--primary);
    background: var(--white);
}

.client-main-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 25px;
}

.client-statement {
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.client-card-bottom {
    background: rgba(0, 154, 68, 0.04); 
    padding: 40px 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.client-supplied-title {
    text-align: center;
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 30px;
}

.elite-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
}

/* Grayscale state (Default) */
.elite-logo {
    max-width: 120px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Full color state (On Hover) */
.elite-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.workforce-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.main-stat {
    grid-column: span 2;
    background: var(--dark);
    color: var(--white);
}

.main-stat h3 {
    color: var(--white);
    font-size: 4rem;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-box p {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.division-card {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}

.division-card:hover {
    background: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.div-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon {
    font-size: 2rem;
}

.division-card h3 {
    font-size: 1.4rem;
}

.div-desc {
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--primary);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #E2E8F0;
}

.feature-list li:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.feature-list li::before {
    content: '→';
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

.machine-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.machine-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    position: relative;
    width: calc(33.333% - 20px);
    min-width: 300px;
}

.machine-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(0, 154, 68, 0.15);
    border-color: var(--primary);
}

.machine-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #E2E8F0;
}

.machine-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.machine-card:hover .machine-img img {
    transform: scale(1.08);
}

.machine-badge {
    position: absolute; 
    top: 15px; 
    right: 15px; 
    background: rgba(11, 17, 32, 0.85); 
    backdrop-filter: blur(4px); 
    color: var(--primary); 
    padding: 6px 12px; 
    border-radius: 4px; 
    font-size: 0.8rem; 
    font-weight: 700; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    border: 1px solid rgba(0, 154, 68, 0.4);
}

.machine-info {
    padding: 20px;
    border-top: 1px solid #E2E8F0;
}

.machine-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.machine-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    max-width: 100%;
    width: calc(33.333% - 20px);
    min-width: 300px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.product-img-wrap {
    height: 240px;
    overflow: hidden;
    background: #E2E8F0;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #E2E8F0;
}

.product-info h4 {
    font-size: 1.15rem;
    color: var(--dark);
    margin: 0;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.tag {
    background: var(--white);
    border: 1px solid #E2E8F0;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.05);
}

.client-logo-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.client-logo-wrapper {
    background: var(--light);
    border: 1px solid #E2E8F0;
    padding: 30px 20px;
    border-radius: var(--radius);
    width: calc(33.333% - 20px);
    max-width: 250px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.client-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(60%);
    transition: var(--transition);
}

.client-logo-wrapper:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.client-logo-wrapper:hover .client-logo-img {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.08);
}

.map-section {
    width: 100%;
    line-height: 0;
    background: #E2E8F0;
    border-top: 1px solid #E2E8F0;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(10%) contrast(100%);
    transition: var(--transition);
}

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-col h3, .footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.legal-info p, .footer-col p {
    color: #94A3B8;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.legal-info strong {
    color: var(--white);
}

.phone {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary) !important;
    font-weight: 700;
    margin-bottom: 5px !important;
}

.footer-bottom {
    border-top: 1px solid #E2E8F0;
    padding: 25px 0;
    background: var(--white);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-flex p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}
.quality-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 20px #60A5FA; 
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}
.developer-credit a {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
}

.developer-credit a:hover {
    color: var(--dark);
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 30px 0 10px 0;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary); 
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-5px); 
}
.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99990;
    pointer-events: none;
}

.fab-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    pointer-events: auto;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.fab-btn svg {
    width: 30px;
    height: 30px;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    animation: pulse-green 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse-green { 
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } 
}
.scroll-top-btn {
    background-color: var(--primary);
    color: white;
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(20px); 
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease !important;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

body.no-scroll .floating-actions {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hamburger {
    display: none; 
    width: 30px;
    height: 16px;
    position: fixed; 
    top: 28px;
    right: 5%;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100000000000 !important; 
    outline: none;
}

.hamburger .bar {
    position: absolute; 
    left: 0;
    width: 100%;
    height: 2px; 
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger .bar:nth-child(1) { top: 0px; }
.hamburger .bar:nth-child(2) { top: 7px; } 
.hamburger .bar:nth-child(3) { top: 14px; }

.hamburger.is-active .bar:nth-child(1) { top: 7px; transform: rotate(45deg); }
.hamburger.is-active .bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-active .bar:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.facility-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.facility-img-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.facility-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover; 
    display: block;
}

.facility-content {
    padding: 30px;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important; 
}

.facility-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.facility-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.facility-content .btn,
.facility-content a.btn-outline {
    margin-top: auto !important; 
}
.align-top {
    align-items: flex-start !important;
}
.tech-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.tech-specs li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.tech-specs li::before {
    content: "✓"; 
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
}

@media (max-width: 900px) {
    .grid-2, .divisions-grid, .stats-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hamburger { display: block; }
    body.no-scroll { overflow: hidden; }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-height: 100vh;
        background: rgba(255, 255, 255, 0.96); 
        backdrop-filter: blur(10px); 
        z-index: 99998;
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        padding: 65px 25px 10px 25px; 
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        -ms-overflow-style: none;  
        scrollbar-width: none;  
    }
    
    .main-nav::-webkit-scrollbar { display: none; }
    .main-nav.nav-open { transform: translateX(0); }
    
    .nav-dropdown { 
        display: flex;
        flex-direction: column; 
        align-items: flex-start;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06); 
        margin-top: 0 !important;
        padding-top: 5px !important;     
        padding-bottom: 5px !important;  
        line-height: 1.1 !important;
    }

    .main-nav > a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06); 
        margin: 0;
        width: 100%;
    }

    .main-nav > a, 
    .nav-dropdown > a { 
        display: block;
        width: 100%;
        font-family: var(--font-heading);
        font-size: 1.15rem;
        color: var(--dark) !important; 
        font-weight: 700; 
        letter-spacing: -0.2px;
        margin-top: 0 !important;
        padding-top: 5px !important;     
        padding-bottom: 5px !important; 
        line-height: 1.1 !important;
    }

    .dropdown-content {
        display: block !important;
        position: static;
        background: transparent; 
        width: 100%;
        border: none;
        border-left: 2px solid var(--primary); 
        border-radius: 0;
        margin: 0 0 5px 10px; 
        max-height: 0; 
        opacity: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        padding: 0 0 0 15px; 
    }

    .nav-dropdown.active .dropdown-content { 
        max-height: 400px; 
        opacity: 1;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .dropdown-content a {
        display: block;
        text-align: left; 
        padding: 6px 0;
        font-family: var(--font-body);
        font-size: 0.95rem !important;
        color: var(--text-muted) !important;
        font-weight: 500; 
        border: none; 
    }

    .dropdown-content a:active {
        color: var(--primary) !important;
    }

    .main-nav a { 
        transition: color 0.3s ease, padding-left 0.3s ease !important; 
    }

    .main-nav a:hover, 
    .main-nav a:active, 
    .main-nav a.active-page {
        color: var(--primary) !important;
        padding-left: 15px !important; 
    }
	.directors-grid {
        flex-direction: column !important; 
        gap: 30px !important;              
    }

    .director-card {
        width: 100% !important;          
    }
.workforce-grid {
        grid-template-columns: 1fr !important; 
    }
    
    .main-stat {
        grid-column: span 1 !important;
    }
    .section-padding { padding: 50px 0; }
    
    .mb-5 { margin-bottom: 40px; }
    .mt-5 { margin-top: 40px; }

    .subtitle { margin-bottom: 30px; }
}

@media (max-width: 768px) {
    .logo img { max-height: 45px; }

    .client-logo-grid { 
        flex-direction: column !important; 
        align-items: center !important;
    }
    
    .client-logo-wrapper { 
        width: 100% !important; 
        max-width: 250px !important;
    }
    .quality-badge {
        padding: 12px 18px;
        bottom: -10px; 
        left: -10px;
        border-radius: 8px;
    }

    .badge-number {
        font-size: 1.6rem; 
    }

    .badge-text {
        font-size: 0.85rem; 
    }
    .hero-slideshow { height: 70vh; }
    .hero-slide .slide-content h1 { font-size: 2.5rem !important; }
    .slider-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    .prev-btn { left: 15px; }
    .next-btn { right: 15px; }

    .map-section iframe { height: 300px; }
    .footer-bottom-flex { justify-content: center; text-align: center; }
    .floating-actions { bottom: 20px; right: 20px; gap: 25px !important; }
    .fab-btn { width: 50px; height: 50px; }
    .fab-btn svg { width: 26px; height: 26px; }
}

