* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile: hide floating CTA and social until after hero */
@media (max-width: 640px){
  .home .floating-enquire-btn,
  .home .sticky-social{
    opacity: 0; pointer-events: none; transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
  }
  body.after-hero .floating-enquire-btn,
  body.after-hero .sticky-social{
    opacity: 1; pointer-events: auto; transform: translateY(0);
  }
}

/* Mobile brand sizing and layout (avoid overlap) */
@media (max-width: 640px){
    .navbar { height: 72px; }
    .nav-container { height: 72px; padding: 0 12px; }
    
    .nav-logo { left: 12px; top: 50%; transform: translateY(-50%); position: absolute; }
    .navbar .logo-text { display: block !important; font-size: 0.9rem !important; letter-spacing: 0.8px; line-height: 1.1; }
    /* Show tagline below main line in smaller size */
    .navbar .logo-text2 { display: block !important; position: static; margin-top: 2px; font-size: 0.7rem !important; line-height: 1; color: #089c44; }
    /* Keep hamburger accessible */
    .nav-right { right: 10px; }
    .navbar .hamburger { transform: scale(0.9) !important; } /* Reduce hamburger size for mobile */
}

/* Brand fonts for navbar logo */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Poppins:wght@500;600;700&display=swap');

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Smooth scrolling and offset for fixed navbar */
:root { --nav-h: 86px; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 20px;
    display: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid var(--brand, #089c44);
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.accept-btn {
    background-color: var(--brand, #089c44);
    color: white;
}

.reject-btn {
    background-color: #f1f1f1;
    color: #333;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* Social Media Bar */
.sticky-social {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 900;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 8px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.sticky-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand, #089c44);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-social .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sticky-social .social-icon i {
    font-size: 20px;
}

/* Mobile styles for social bar */
@media (max-width: 992px) {
    .sticky-social {
        bottom: 15px;
        right: 15px;
        padding: 8px 6px;
    }
    
    .sticky-social .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .sticky-social i {
        font-size: 18px;
    }
}

/* Footer Styles */
.site-footer { 
    background: #f8f9fa; 
    margin-top: 60px;
    padding: 30px 0 0;
    position: relative;
    z-index: 10;
}

.office-card { 
    background: #fff; 
    border-radius: 12px; 
    padding: 25px 30px; 
    text-align: center; 
    box-shadow: 0 8px 20px rgba(0,0,0,.08); 
    border-bottom: 4px solid var(--brand, #089c44); 
    margin: 0 auto 30px;
    max-width: 800px;
}

.office-title { 
    color: #2c3e50; 
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.office-address, 
.office-phone { 
    color: #666; 
    margin: 8px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-bar { 
    background: var(--brand, #089c44); 
    margin-top: 16px; 
    padding: 15px 0;
}

.contact-bar-inner { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 0 15px;
}

.contact-mail { 
    color: #fff; 
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-mail:hover {
    text-decoration: underline;
}

.footer-bottom { 
    background: #d8efe3; 
    padding: 12px 0;
}

.footer-bottom-inner { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 0 15px;
}

.footer-bottom .copyright { 
    color: #2c3e50; 
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .office-card {
        margin: 0 15px 25px;
        padding: 20px 15px;
    }
    
    .office-title {
        font-size: 1.3rem;
    }
    
    .office-address,
    .office-phone {
        font-size: 0.95rem;
    }
    
    .contact-mail {
        font-size: 0.95rem;
    }
}

/* Classic three-column footer inspired layout */
.footer-classic,
.site-footer.footer-classic {
    background: #070707; /* match home footer color */
    color: #ffffff;
    padding-top: 48px;
}

.footer-classic .footer-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 48px; /* match home */
    align-items: center; /* match home */
    margin-bottom: 24px;
}

.footer-classic .footer-col {
    min-width: 0;
}

/* Center column separators like the reference */
.footer-classic .footer-center {
    text-align: center;
    padding: 0 24px;
    position: relative;
}
.footer-classic .footer-center::before,
.footer-classic .footer-center::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.25);
}
.footer-classic .footer-center::before { left: -24px; }
.footer-classic .footer-center::after { right: -24px; }

/* Left column navigation */
.footer-classic .footer-nav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 14px 28px;
    margin: 0 0 22px 0;
    padding: 0;
}
.footer-classic .footer-nav a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.86rem;
    position: relative;
    transition: color .2s ease;
}
.footer-classic .footer-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #19b87a;
    transition: width .2s ease;
}
.footer-classic .footer-nav a:hover {
    color: #ffffff;
}
.footer-classic .footer-nav a:hover::after {
    width: 100%;
}
.footer-classic a { color: rgba(255,255,255,0.92); }
.footer-classic .footer-nav a:hover { text-decoration: underline; }

.footer-classic .footer-cta-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.85);
    padding: 10px 18px;
    border-radius: 2px;
    margin-top: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}
.footer-classic .footer-cta-btn:hover {
    background: rgba(255,255,255,0.12);
}

/* Center branding */
.footer-classic .footer-logo.monochrome {
    height: 56px;
    width: auto;
    display: inline-block;
    filter: brightness(0) invert(1); /* make logo appear white */
    opacity: 0.95;
}
.footer-classic .footer-tagline {
    margin-top: 10px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}
.footer-classic .footer-location {
    margin-top: 6px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.82rem;
}

/* Right column newsletter */
.footer-classic .newsletter-title {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 12px;
}
.footer-classic .newsletter-form {
    display: grid;
    gap: 10px;
}
.footer-classic .newsletter-input {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.85);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 2px;
    outline: none;
}
.footer-classic .newsletter-input::placeholder {
    color: rgba(255,255,255,0.75);
}
.footer-classic .newsletter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.85);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 2px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.footer-classic .newsletter-btn:hover {
    background: rgba(255,255,255,0.12);
}

/* Bottom bar override for the green footer */
.footer-classic .footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.22);
    margin-top: 36px;
}
.footer-classic .footer-bottom .copyright {
    color: rgba(255,255,255,0.92);
}

/* Footer global overrides (higher specificity to beat page-specific files like home.css) */
.site-footer.footer-classic .footer-nav a {
    color: rgba(255,255,255,0.92);
}
.site-footer.footer-classic .footer-nav a::after {
    background: #19b87a;
}
.site-footer.footer-classic .footer-center::before,
.site-footer.footer-classic .footer-center::after {
    background: rgba(255,255,255,0.25);
}

/* Ensure link color matches home footer */
.site-footer.footer-classic a { color: rgba(255,255,255,0.92); }
.site-footer.footer-classic .footer-address {
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
    line-height: 1.6;
}
.site-footer.footer-classic .footer-address a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
}

/* Match home page address card design globally */
.site-footer.footer-classic .footer-right .footer-address {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 16px 18px;
    color: rgba(255,255,255,0.92);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    box-sizing: border-box;
}
.site-footer.footer-classic .footer-right .footer-address strong {
    display: block;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #fff;
}
.site-footer.footer-classic .footer-right .footer-address a[href^="tel:"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e8f5ee;
}
.site-footer.footer-classic .footer-right .footer-address a[href^="tel:"]:before {
    content: "\f095"; /* fa-phone */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9em;
    opacity: 0.9;
}
.site-footer.footer-classic .footer-right .footer-address a[href^="tel:"]:hover {
    color: #19b87a;
    text-decoration: none;
}

/* Ensure footer containers are wide and padded consistently on all pages */
.site-footer .container,
.site-footer.footer-classic .container,
.footer-classic .footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* match home footer container padding */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-classic .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer-classic .footer-center::before,
    .footer-classic .footer-center::after {
        display: none;
    }
    .footer-classic .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}

/* Extra mobile footer refinements */
@media (max-width: 768px) {
    .footer-classic .footer-nav {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: center;
        text-align: center;
    }
    /* Stack footer columns: left -> center -> right */
    .footer-classic .footer-top {
        grid-template-columns: 1fr;
        row-gap: 20px;
        align-items: start;
    }
    .footer-classic .footer-left { grid-column: 1; grid-row: 1; }
    .footer-classic .footer-center { grid-column: 1; grid-row: 2; }
    .footer-classic .footer-right { grid-column: 1; grid-row: 3; }
    .footer-classic .footer-top > * { justify-self: stretch; }
    .footer-classic .footer-left,
    .footer-classic .footer-center,
    .footer-classic .footer-right { width: 100%; }
    .footer-classic .footer-left,
    .footer-classic .footer-right,
    .footer-classic .footer-center {
        text-align: center;
    }
    .footer-classic .footer-address {
        margin: 0 auto;
        width: 100%;
        max-width: 520px;
        text-align: left;
        box-sizing: border-box;
    }
    .footer-classic .footer-logo.monochrome { margin: 0 auto; }
    .footer-classic .footer-tagline { text-align: center; max-width: 520px; margin: 8px auto 0; line-height: 1.4; font-size: 1rem; letter-spacing: 0.5px; }
    .footer-classic .footer-nav a { letter-spacing: 1px; }
    .site-footer.footer-classic {
        padding-bottom: 10px; /* leave room for fixed social/enquire buttons */
    }
    /* Tighter inner padding on mobile for more content width */
    .site-footer.footer-classic .container { padding: 0 16px; }
    .footer-classic .footer-bottom .container { padding: 0 16px; }
    /* Remove side padding from center column */
    .footer-classic .footer-center { padding: 0; }
    /* Avoid overlap with floating buttons by giving right-side breathing room */
    .site-footer.footer-classic .footer-right .footer-address { padding-right: 84px; }
    /* Slightly larger gap between stacked sections */
    .footer-classic .footer-top { row-gap: 24px; }
}

/* Extra small phones: add more right padding to avoid overlap */
@media (max-width: 480px) {
  .site-footer.footer-classic .footer-right .footer-address { padding-right: 104px; }
}

/* Ensure all media scale within the viewport */
img, video, svg, canvas {
    max-width: 100%;
    height: auto;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Home page: show transparent, glassy navbar over hero until scrolled */
body.home .navbar {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
body.home .navbar .logo-text,
body.home .navbar .nav-link {
    color: #ffffff;
}
body.home .navbar .logo-text2{
    color: #089c44;
}
body.home .navbar .nav-link:hover { color: #b8f1cf; }
body.home .navbar .nav-link::after { background-color: #b8f1cf; }

/* When scrolled on home, revert to default dark-on-light nav styles */
body.home .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
body.home .navbar.scrolled .logo-text,
body.home .navbar.scrolled .nav-link { color: #333; }
body.home .navbar.scrolled .nav-link::after { background-color: #089c44; }

.nav-container {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.logo-text {
    color: #000000;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.logo-text2 {
    color: #089c44;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .6px;
    position:absolute;
    top: 10px;
    left: 50px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.nav-right {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-login {
    margin-left: 10px;
}

.nav-logo .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link.active {
    background-color: rgba(8, 156, 68, 0.1);
    color: #089c44;
    font-weight: 600;
}

.nav-link:hover {
    color: #089c44;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #089c44;
    transition: width 0.3s ease;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Floating Enquire Now button (separate element) */
.floating-enquire-btn {
    position: fixed;
    right: 16px;
    bottom: 184px; /* sits above the WhatsApp icon group */
    z-index: 901; /* above social strip */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    border-radius: 999px;
    background: #f00101f4; /* red */
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.1px;
    font-size: 9px;
    box-shadow: 0 5px 5px rgba(229, 56, 53, 0.158);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  }
  
  .floating-enquire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(229, 57, 53, 0.45);
  }
  
  .floating-enquire-btn:active {
    transform: translateY(0);
  }
  
  @media (max-width: 992px) {
    .floating-enquire-btn {
      bottom: 170px; /* social icons are slightly smaller/padded on mobile */
      padding: 10px 16px;
      font-size: 13px;
    }
  }
  
/* Main content */
main {
    margin-top: 70px;
}

/* Home: let the hero sit behind the transparent navbar */
body.home main { margin-top: 0; }

.section {
    min-height: 100vh;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section p {
    font-size: 1.2rem;
    color: #666;
}

/* Mobile responsive */
@media screen and (max-width: 992px) {
    .nav-container {
        max-width: none;
        padding: 0 20px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        flex: 1;
        min-width: auto;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-right {
        position: static;
        transform: none;
        gap: 10px;
    }
    
    .nav-menu {
        gap: 15px;
    }

    .nav-menu {
        position: fixed;
        right: 0;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        width: 50%;
        text-align: left;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -5px 0 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        margin: 0;
        gap: 0;
        z-index: 1001;
        height: calc(100vh - 70px);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 15px 25px;
        text-align: left;
        width: 100%;
        border-radius: 0;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-item {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
        position: static;
        z-index: 1002;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Additional font size reductions for smaller mobile screens */
@media (max-width: 480px){
    .navbar .logo-text { 
        font-size: 0.8rem !important; /* Even smaller for very small screens */
    }
    .navbar .logo-text2 { 
        font-size: 0.6rem !important; /* Even smaller for very small screens */
    }
    .navbar .hamburger { 
        transform: scale(0.7) !important; /* Even smaller hamburger for very small screens */
    }
}

/* Mobile nav refinements and global alignment */
@media screen and (max-width: 992px){
  .nav-login {
    position: static;
    right: auto;
    top: auto;
    transform: none;
    min-width: auto;
    justify-content: center;
  }
  /* Global mobile navbar alignment to match home page */
  .navbar .nav-container{
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    height: auto;
    min-height: 72px;
    padding: 6px 12px;
  }
  .navbar .nav-container > .nav-logo{ position: static !important; left: auto !important; top: auto !important; transform: none !important; }
  .navbar .nav-container > .nav-logo:nth-of-type(2){ grid-column: 1; grid-row: 2; align-self: start; }
  .navbar .nav-container > .nav-logo:first-of-type{ grid-column: 1; grid-row: 1; align-self: end; }
  .navbar .logo-text{ margin: 2px 0; line-height: 1.1; }
  .navbar .logo-text2{ margin: 2px 0; line-height: 1; display:block !important; position: static !important; }
  .navbar .nav-right{ grid-column: 2; grid-row: 1 / span 2; align-self: center; justify-self: end; }
  .navbar .hamburger{ display: flex; align-items: center; justify-content: center; }
  .navbar{ height: auto; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-section h1 {
    font-size: 3rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

/* About page styles */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.content-block {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-block h2 {
    color: #089c44;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.content-block p, .content-block li {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block ul {
    padding-left: 20px;
}

/* Services page styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #089c44;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card p {
    color: #6c757d;
    line-height: 1.7;
}

/* Contact page styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h2, .contact-form h2 {
    color: #089c44;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Form styles */
.form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #089c44;
}

.submit-btn {
    background: linear-gradient(135deg, #089c44, #067a35);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #067a35, #055a28);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 156, 68, 0.3);
}

/* Career page styles */
.career-content {
    margin-top: 40px;
}

.career-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #089c44, #067a35);
    color: white;
    border-radius: 15px;
}

.career-intro h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2rem;
}

.career-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-section {
    margin-bottom: 60px;
}

.benefits-section h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h4 {
    color: #089c44;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #6c757d;
    line-height: 1.6;
}

.openings-section h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.job-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #089c44;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.job-location {
    color: #089c44;
    font-weight: 600;
    margin-bottom: 15px;
}

.job-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.apply-btn {
    background: linear-gradient(135deg, #089c44, #067a35);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: linear-gradient(135deg, #067a35, #055a28);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(8, 156, 68, 0.3);
}

/* Mobile responsive for new pages */
@media screen and (max-width: 768px) {
    .page-section {
        padding: 100px 15px 40px;
    }
    
    .page-section h1 {
        font-size: 2.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form {
        padding: 25px;
    }
    
    .career-intro {
        padding: 25px;
    }
    
    .career-intro h2 {
        font-size: 1.6rem;
    }
    
    .benefits-grid,
    .job-listings,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================
   Global Button Utilities
   ============================= */
.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    font-weight: 700; 
    text-decoration: none; 
    border: 1px solid transparent; 
    padding: 10px 16px; 
    border-radius: 10px; 
    cursor: pointer; 
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease, border-color .2s ease; 
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Solid brand button */
.btn-primary { 
    background: linear-gradient(135deg, var(--brand, #089c44), var(--brand-dark, #067a35)); 
    color: #fff; 
    box-shadow: 0 10px 20px rgba(8,156,68,.18); 
}
.btn-primary:hover { box-shadow: 0 14px 28px rgba(8,156,68,.26); }

/* Transparent button with outline */
.btn-ghost { 
    background: transparent; 
    color: var(--brand, #089c44); 
    border-color: rgba(8,156,68,0.4); 
    backdrop-filter: blur(2px); 
}
.btn-ghost:hover { background: rgba(8,156,68,0.08); }

/* Soft grey outline variant */
.btn-outline { 
    background: transparent; 
    color: #2c3e50; 
    border-color: rgba(0,0,0,0.18); 
}
.btn-outline:hover { background: rgba(0,0,0,0.05); }

/* Rounded pill variant */
.btn-pill { border-radius: 999px; padding: 10px 18px; }

/* Small size */
.btn-sm { padding: 8px 12px; font-weight: 700; font-size: 0.9rem; }

/* Link reset utility if needed */
.link-btn { text-decoration: none !important; }

/* Combined utility: rounded transparent link button */
.btn-round-ghost { 
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(8,156,68,0.4);
    background: transparent; color: var(--brand, #089c44); font-weight: 800; text-decoration: none;
    transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-round-ghost:hover { background: rgba(8,156,68,0.08); box-shadow: 0 8px 18px rgba(8,156,68,.16); transform: translateY(-1px); }

/* Light-on-dark ghost variant (white text/border), great for hero overlays */
.btn-ghost-light {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06); color: #fff; text-decoration: none; font-weight: 800;
    backdrop-filter: blur(2px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.75); }

/* Container helper: any anchor inside renders as rounded transparent button */
.links-rounded a { 
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(0,0,0,0.18);
    background: transparent; color: #2c3e50; text-decoration: none; font-weight: 700;
    transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.links-rounded a:hover { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.28); transform: translateY(-1px); }

/* =============================
   Global Modal + Login Modal
   ============================= */
/* Base modal overlay/dialog to be reused across pages */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.open { display: flex; }

body.modal-open { overflow: hidden; }

.modal-dialog {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    position: relative;
    animation: modalIn 0.2s ease-out;
}

@keyframes modalIn {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

/* Apply Modal (global, for all pages) */
.apply-modal {
    position: fixed;
    inset: 0;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 1100;
}
.apply-modal.open { display: flex; }
.apply-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
}
.apply-modal-dialog {
    position: relative;
    width: min(92vw, 640px);
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 220ms ease, opacity 220ms ease;
    max-height: 90vh;
    overflow-y: auto;
}
.apply-modal.open .apply-modal-dialog { transform: translateY(0); opacity: 1; }
.apply-modal-header { display:flex; align-items:center; justify-content:space-between; padding: 16px 20px; border-bottom: 1px solid #eef2f4; }
.apply-modal-header h4 { margin: 0; font-size: 1.1rem; color: #2c3e50; font-weight: 600; }
.apply-modal-close { background: transparent; border: none; font-size: 22px; color: #7f8c8d; cursor: pointer; padding: 4px; line-height: 1; transition: color .2s ease; }
.apply-modal-close:hover { color: #2c3e50; }
.apply-modal-body { padding: 20px; }
.apply-form .form-row { margin-bottom: 14px; }
.apply-input { width: 100%; padding: 10px 14px; border: 1px solid #e0e0e0; border-radius: 6px; font-size: .95rem; transition: all .2s ease; background: #fff; }
.apply-input:focus { border-color: #089c44; box-shadow: 0 0 0 3px rgba(8,156,68,0.12); outline: none; }
.apply-modal-footer { display:flex; justify-content:flex-end; gap:10px; padding: 14px 18px 18px; border-top: 1px solid #eef2f4; }

/* Login specific */
#loginModal .login-header{
    padding: 22px 24px 12px;
    border-bottom: 1px solid #f1f3f4;
    text-align: center;
}

#loginModal .login-header h3 {
    margin: 0 0 6px;
    color: #2c3e50;
}

#loginModal .login-logo {
    display: block;
    margin: 0 auto 8px;
    height: clamp(36px, 6vw, 56px);
    width: auto;
    object-fit: contain;
}

#loginModal .login-form {
    padding: 18px 24px 24px;
}

#loginModal .login-form .form-row { margin-bottom: 14px; }

#loginModal .login-form input[type="text"],
#loginModal .login-form input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e6ea;
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
    color: #2c3e50;
}

#loginModal .login-form .form-actions {
    margin-top: 8px;
    display: flex;
    justify-content: flex-start;
    border-top: 1px solid #eef2f4;
}
.apply-save-btn {
    background: linear-gradient(135deg, #089c44, #067a35);
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}
.apply-save-btn:hover { background: linear-gradient(135deg, #067a35, #055a28); }
.apply-save-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    filter: grayscale(25%);
    box-shadow: none;
}
@media screen and (max-width: 768px) {
  .apply-modal-dialog { padding: 30px 20px; margin: 0 15px; }
}/* Eurostile Bold Extended for navbar */
@font-face {
  font-family: 'Eurostile Bold Extended';
  src: local('Eurostile Bold Extended'), local('Eurostile Extended Bold'), local('Eurostile Extd Bold'), local('EurostileExt-Bold'), local('Microgramma D Extended Bold'), local('MicrogrammaD-ExtendedBold'), local('Microgramma Extended Bold');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
.navbar .logo-text,
.navbar .logo-text2 {
  font-family: 'Eurostile Bold Extended','Eurostile','Microgramma D Extended','Microgramma','Square 721 BT','Bank Gothic','Montserrat',Arial,sans-serif !important;
}
