<!-- start Simple Custom CSS and JS -->
<style type="text/css">
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');

:root {
    /* New Default Colors */
    --color-primary: #1034A6; /* Main Blue for headings, buttons, and links */
    --color-dark: #0E171D;    /* Dark color for main body text and footers */
    --color-muted: #C4C4C4;   /* Mid-gray for secondary text, borders, or inactive dots */
    --color-gray: #F5F5F5;    /* Light gray for section backgrounds */
    --color-light: #F9F9F9;   /* Off-white for cards and main website background */
    
    /* Optional: Accent mapped to primary if you want consistent hover states, 
       or you can slightly adjust it if needed */
    --color-accent: #1034A6;  

    /* Fonts - Set entirely to Montserrat */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light); /* Uses #F9F9F9 */
    color: var(--color-dark);             /* Uses #0E171D */
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { 
    font-family: var(--font-heading); 
    font-weight: 800; 
    color: var(--color-primary);          /* Uses #1034A6 */
}

/* Utility Classes */
.text-center {
    text-align: center !important;
}

/* Or you can add it directly to the section-title rule */
.section-title { 
    font-size: 2.5rem; 
    color: var(--color-primary); 
    margin-bottom: 2rem; 
    text-align: center; /* Add this line */
    width: 100%;
    display: block;
}

/* Update text elements that previously used a generic gray */
p {
    color: var(--color-dark);
}

.service-lead, .service-lead-text, .exact-lead {
    color: var(--color-dark);
    font-weight: 600;
}

.service-body-text, .exact-body, .industry-text p, .industry-content p {
    color: var(--color-dark);
}

/* Ensure alternate sections use the new #F5F5F5 background */
.industries-section, .services-section, .exact-service-layout {
    background-color: var(--color-gray);
}

/* Ensure cards and white blocks use the new #F9F9F9 background */
.industry-card, .service-card, .text-card {
    background-color: var(--color-light);
}

/* Navigation */
.floating-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.pill-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    width: 90% !Important;
    max-width: 1100px;
    height: 55px !Important;
    padding: 0 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 32, 91, 0.08);
    transition: var(--transition);
}

.nav-brand { flex: 1; display: flex; align-items: center; }
.nav-logo { height: 35px; width: auto; }

.nav-center { flex: 2; display: flex; justify-content: center; }
.nav-menu { display: flex; list-style: none; gap: 5px; margin: 0; padding: 0; align-items: center;}
.nav-menu li { 
    position: relative; 
    display: flex;           /* Added to align children */
    align-items: center;     /* Vertically centers the items */
}
.nav-menu li a {
    text-decoration: none;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 10px 17px;
    border-radius: 30px;
    transition: var(--transition);
    
    /* Change from inline-block to inline-flex to fix the icon alignment */
    display: inline-flex;    
    align-items: center;     
    justify-content: center; 
}
.nav-menu li a:hover { background-color: #f1f5f9; color: var(--color-accent); }

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-light);
    min-width: 260px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,32,91,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 10px 0;
    list-style: none;
    margin-top: 15px;
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}
.dropdown-menu li { width: 100%; }
.dropdown-menu li a {
    border-radius: 0;
    padding: 12px 25px;
    display: block;
    font-size: 0.75rem;
    color: var(--color-primary);
}
.dropdown-menu li a:hover { background-color: #f8fafc; color: var(--color-accent); padding-left: 30px;}

.nav-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; }
.lang-selector { display: flex; gap: 10px; }
.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
}
.lang-btn img { width: 24px; border-radius: 50%; border: 2px solid transparent; }
.lang-btn.active { opacity: 1; }
.lang-btn.active img { border-color: var(--color-primary); }

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: center;
}
.hero-content { color: var(--color-light); max-width: 900px; margin: 0 auto; z-index: 10; padding-bottom: 80px; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 1rem; text-transform: uppercase; }
.hero-content p { font-size: 1.2rem; font-weight: 300; opacity: 0.9; }

.hero-strip {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 1100px;
    padding: 0 2rem;
    z-index: 20;
}
.strip-img {
    flex: 1;
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 3px solid var(--color-light);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Intro Text Section */
.intro-section { 
    margin: 140px auto 0; /* 'auto' centers the container horizontally */
    text-align: center;   /* Centers the text inside the container */
    max-width: 900px; 
    padding: 2rem; 
}

.intro-text { 
    font-size: 1.25rem; 
    color: var(--color-primary); 
    line-height: 1.8; 
}

.intro-text strong { 
    color: var(--color-primary); 
    font-weight: 800; 
}
/* Bento Grid */
.stats-section { 
    background-color:var(--color-light);
    padding: 3rem 0; }
.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr;
    grid-template-rows: 200px 200px;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}
.bento-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 20px rgba(0,32,91,0.08);
}
.bento-large { grid-column: 1 / 2; grid-row: 1 / 3; }
.bento-wide { grid-column: 2 / 4; grid-row: 1 / 2; }

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,32,91,0.9) 0%, rgba(0,32,91,0.2) 60%, transparent 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--color-light);
}
.wide-overlay {
    background: linear-gradient(to right, rgba(0,32,91,0.8), transparent);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}
.stat-flag { width: 40px; border-radius: 4px; }
.stat-number { font-size: 3rem; line-height: 1; margin-bottom: 0.2rem;color: var(--color-light); }
.card-overlay p { font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; }
.stat-content{color: var(--color-light)}

/* Accreditations */
.accreditations { margin: 4rem auto; text-align: center; }
.section-subtitle { color: var(--color-primary); margin-bottom: 2rem; font-size: 1.1rem; letter-spacing: 2px; }
.acc-logos { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.acc-box { background: var(--color-light); padding: 1.5rem; border-radius: 16px; border: 1px solid #e2e8f0; width: 140px; height: 100px; display: flex; align-items: center; justify-content: center;}
.acc-box img { max-height: 60px; max-width: 100%; object-fit: contain; }

/* Services Section & Dots */
.section-title { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 2rem; }
.services-section { background-color: var(--color-gray); padding: 5rem 0; }
.services-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.service-col { display: flex; flex-direction: column; gap: 2rem; }
.service-card { border-radius: 16px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.img-card { height: 280px; }
.img-card img { width: 100%; height: 100%; object-fit: cover; }
.text-card { background: var(--color-light); padding: 2.5rem 2rem; display: flex; flex-direction: column; justify-content: center; min-height: 250px; }
.text-card h4 { color: var(--color-primary); font-size: 1.1rem; margin-bottom: 1rem; }
.text-card p { color: var(--color-text); font-size: 0.9rem; line-height: 1.6; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2.5rem;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active { background-color: var(--color-primary); width: 10px; height: 10px; }

/* Buttons */
.btn-outline-primary {
    display: inline-block;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-outline-primary:hover { background: var(--color-primary); color: var(--color-light); }
.action-btn-container { margin-top: 2rem; margin-bottom: 2rem; }

/* Reach Section */
.reach-section { padding: 5rem 0; background-color: var(--color-light); }
.reach-desc { max-width: 800px; margin: 0 auto 3rem; color: var(--color-text); font-size: 1.05rem; }
.map-container { max-width: 900px; margin: 0 auto; text-align: center; }
.reach-map-img { width: 100%;  height: auto; object-fit: contain; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Mobile */
@media (max-width: 992px) {
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-large, .bento-wide { grid-column: auto; grid-row: auto; min-height: 250px; }
    .services-masonry { grid-template-columns: 1fr; }
    .hero-strip { position: relative; bottom: 0; transform: none; left: 0; flex-direction: column; margin-top: 2rem; }
    .intro-section { margin-top: 4rem; }
    .nav-menu { display: none; }
}

/* --- Inner Pages & Industries Additions --- */

/* Shorter Hero for Inner pages */
.hero-inner {
    height: 50vh;
    min-height: 400px;
    padding-top: 80px; /* Accounts for floating nav */
}
.hero-inner .hero-content {
    padding-bottom: 0;
	padding-top: 35px;
}

/* Industries Grid */
.industries-section {
    padding: 6rem 0;
    background-color: var(--color-gray);
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.industry-card {
    background: var(--color-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,32,91,0.12);
}
.industry-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.industry-content {
    padding: 2.5rem;
    flex-grow: 1;
}
.industry-content h3 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.industry-content p {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
}

/* Mobile Adjustments for Industries */
@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .hero-inner {
        height: 60vh;
    }
    .industry-img {
        height: 220px;
    }
}

/* =========================================
   EXACT SERVICE LAYOUT STYLING
========================================= */

.service-page-wrapper {
    padding: 6rem 2rem 8rem;
    max-width: 1250px;
    margin: 0 auto;
}

.service-block {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 7rem;
}

.service-block:last-child {
    margin-bottom: 0;
}

/* Text Column Styling */
.service-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-main-title {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.service-lead-text {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Tags Styling (Structured Approach & Quality Cabling) */
.service-tags {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-tags span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-accent);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.service-tags span i {
    font-size: 1.1rem;
}

.service-body-text {
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Sub-section Styling (Physical Installation) */
.service-subsection {
    margin-top: 1rem;
}

.service-subtitle {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

/* Image Column Styling */
.service-img-col {
    flex: 1;
}

.service-img-col img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 32, 91, 0.08);
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
    .service-block {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;
    }
    
    /* On mobile, forces images to always stack neatly below the text */
    .service-text-col {
        order: 1;
    }
    .service-img-col {
        order: 2;
        width: 100%;
    }
    
    .service-img-col img {
        height: 350px;
    }
    .service-main-title {
        font-size: 2rem;
    }
}

/* =========================================
   ABOUT PAGE & MODAL (Uploaded Structure)
========================================= */

/* Hero / Title Section */
.about-page-section {
    padding: 160px 2rem 60px; /* Accounts for floating navbar */
    background-color: var(--color-light);
}

.about-intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-dark);
}

/* Feature Sections (Mission & Vision) */
.about-feature-section {
    padding: 6rem 0;
    background-color: var(--color-gray);
}

.about-feature-section:nth-child(even) {
    background-color: var(--color-light); /* Alternates background color */
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.feature-content-reversed {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 0.8; 
    display: flex;
    justify-content: center;
}

.feature-image img {
    width: 100%;
    max-width: 400px; /* Adjust this number (e.g., 350px or 450px) to make it exactly the size you want */
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(16, 52, 166, 0.08);
}

.feature-text {
    flex: 1.2; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}
/* Optional: Constrain the width slightly so the centered text doesn't stretch too far */
.feature-text p {
    max-width: 90%;
}
.feature-text h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Values Grid */
.values-section {
    padding: 6rem 0 8rem;
    background-color: var(--color-gray);
}

.values-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers the cards horizontally */
    gap: 2rem;
}

.value-item {
    width: 260px; /* Sets a specific smaller width so they don't stretch */
    background-color: var(--color-light);
    padding: 2rem 1.5rem; /* Slightly reduced padding to match the smaller size */
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(16, 52, 166, 0.05);
    transition: var(--transition);
    
    /* Centering content inside the card */
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 52, 166, 0.1);
}

.value-icon {
   width: 55px;
    height: 55px;
    object-fit: contain;
    /* Change margin to auto on left/right to center the image */
    margin: 0 auto 1.5rem auto;
}

.value-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
    
    /* ADD THESE TO CENTER: */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Cookies Modal CSS */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14, 23, 29, 0.8);
    z-index: 2000;
}
.modal-overlay.active { display: block; }

.policy-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-light);
    width: 90%;
    max-width: 600px;
    border-radius: 16px;
    z-index: 2001;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.policy-modal.active { display: block; }

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-muted);
    padding-bottom: 1rem;
}

.modal-header h3 { color: var(--color-primary); margin: 0; }
.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-dark);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .feature-content, .feature-content-reversed {
        flex-direction: column;
        gap: 3rem;
    }
}

/* =========================================
   CAREERS PAGE LAYOUT
========================================= */
/* --- Careers Page Specifics --- */

.ongoing-projects-section {
    /* Increased top padding to 10rem to create a large gap from the Hero section */
    padding: 10rem 2rem 6rem; 
    max-width: 950px; /* Smaller container makes the grid look more "premium" and centered */
    margin: 0 auto;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.project-card {
    background: var(--color-light);
    border-radius: 12px; /* Slightly tighter corners for a modern feel */
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(16, 52, 166, 0.1); /* Very subtle border */
    box-shadow: 0 4px 20px rgba(14, 23, 29, 0.03); /* Lighter, more sophisticated shadow */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 52, 166, 0.08);
    border-color: var(--color-primary);
}

.project-img-container {
    position: relative;
    height: 160px; /* Reduced height to make the cards smaller and sleeker */
    overflow: hidden;
}

.project-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Premium Overlay Effect */
.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 52, 166, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-overlay span {
    color: white;
    font-weight: 700;
    font-size: 0.75rem; /* Smaller button text */
    letter-spacing: 1px;
    border: 1.5px solid white;
    padding: 6px 16px;
    border-radius: 20px;
}

.project-info {
    padding: 1.2rem; /* Reduced padding for a more compact look */
    text-align: center;
}

.project-info h3 {
    color: var(--color-primary);
    font-size: 1.1rem; /* Slightly smaller heading */
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

.project-info p {
    color: var(--color-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive fix for smaller grids */
@media (max-width: 900px) {
    .ongoing-projects-section {
        padding-top: 6rem;
    }
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}
.project-card i { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 1rem; }
.project-card h3 { color: var(--color-primary); margin-bottom: 0.5rem; }

.open-positions-section { background: var(--color-gray); padding: 5rem 0; }
.jobs-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

/* Pill Shape Item */
.job-item {
    background: var(--color-light);
    padding: 1rem 2.5rem;
    border-radius: 50px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.job-item:hover { transform: scale(1.02); }
.job-item.disabled { display: none; }

.job-main-info h3 { font-size: 1.1rem; color: var(--color-primary); margin-bottom: 0.2rem; }
.job-main-info p { font-size: 0.85rem; color: var(--color-muted); margin: 0; }

.job-actions { display: flex; gap: 1rem; }

.btn-more-info, .btn-apply-job {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid var(--color-primary);
}

.btn-more-info { background: transparent; color: var(--color-primary); }
.btn-apply-job { background: var(--color-primary); color: var(--color-light); }

/* --- Popup Modal --- */
.job-modal-overlay {
    display: none; position: fixed; inset: 0; 
    background: rgba(14, 23, 29, 0.8); z-index: 2000;
}

.job-modal {
    display: none; position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%); width: 90%; max-width: 700px;
    background: var(--color-light); border-radius: 20px;
    padding: 3rem; z-index: 2001; box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.close-modal-btn {
    position: absolute; top: 20px; right: 20px; font-size: 2rem;
    background: none; border: none; cursor: pointer; color: var(--color-muted);
}

/* --- Ongoing Projects with Images --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.project-card {
    background: var(--color-light);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(16, 52, 166, 0.05);
    transition: var(--transition);
}

.project-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 52, 166, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-overlay span {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid white;
    padding: 8px 20px;
    border-radius: 30px;
}

.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover img { transform: scale(1.1); }

.project-info { padding: 1.5rem; text-align: center; }
.project-info h3 { color: var(--color-primary); font-size: 1.3rem; margin-bottom: 0.3rem; }
.project-info p { color: var(--color-muted); font-size: 0.9rem; font-weight: 600; }

/* --- Project Modal Styling --- */
.project-details-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    background: var(--color-light);
    border-radius: 20px;
    padding: 0;
    z-index: 3001;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.project-modal-header-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-modal-body { padding: 3rem; }
.project-modal-body h2 { color: var(--color-primary); margin-bottom: 1rem; }
.project-modal-body p { line-height: 1.8; color: var(--color-dark); margin-bottom: 2rem; }

.project-stats-mini {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--color-gray);
    padding-top: 1.5rem;
}

.stat-item b { display: block; color: var(--color-primary); font-size: 1.1rem; }
.stat-item span { font-size: 0.85rem; color: var(--color-muted); }

/* Modal Overlay logic remains the same as previously used for jobs */

/* --- Modern Contact Form Layout --- */
.contact-section {
    padding: 6rem 2rem;
    background-color: var(--color-light); /* #F9F9F9 */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Sidebar Info */
.contact-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-detail a {
    color: var(--color-primary);
    text-decoration: none;
}

.social-link-inline {
    margin-top: 2rem;
}

.social-link-inline a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Form Styling */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary); /* #1034A6 */
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.form-instruction {
    font-size: 0.85rem;
    color: var(--color-dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.modern-form input, 
.modern-form select, 
.modern-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-muted); /* #C4C4C4 */
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #fff;
    transition: var(--transition);
}

.modern-form input:focus, 
.modern-form select:focus, 
.modern-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-submit {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: var(--color-dark);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-sidebar h3 {
    font-size: 1.2rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.location-item {
    margin-bottom: 2rem;
}

.location-item h4 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
}

.sidebar-separator {
    height: 1px;
    background-color: var(--color-muted);
    opacity: 0.2;
    width: 100%;
    margin: 2.5rem 0;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.contact-detail i {
    color: var(--color-primary);
    width: 20px;
    font-size: 1.1rem;
}

.social-link-inline a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.social-link-inline a:hover {
    color: var(--color-dark);
}

/* --- Premium Services Slideshow --- */
.services-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 2rem 0;
}

.services-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 30px;
}

.service-slide {
    flex: 0 0 calc(33.333% - 20px); /* 3 cards on desktop */
    min-width: 300px;
}

.service-card-premium {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 32, 91, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f1f1;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 32, 91, 0.12);
}

.service-img-wrap {
    height: 200px;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-premium:hover .service-img-wrap img {
    transform: scale(1.1);
}

.service-info-wrap {
    padding: 2rem;
}

.service-info-wrap h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.service-info-wrap p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    color: var(--color-primary);
    transition: background 0.3s;
}

.slider-nav:hover { background: var(--color-primary); color: #fff; }
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

@media (max-width: 992px) {
    .service-slide { flex: 0 0 calc(50% - 15px); }
}

@media (max-width: 768px) {
    .service-slide { flex: 0 0 100%; }
    .slider-nav { display: none; } /* Hide arrows on mobile for swipe */
}

/* --- Premium Compact Slider --- */
.slider-outer-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px; /* Space between cards */
}

.premium-card {
    flex: 0 0 calc(25% - 15px); /* Forces 4 cards per view */
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.card-img {
    height: 140px; /* Smaller image height for "premium" feel */
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1.2rem;
    text-align: center;
    flex-grow: 1;
}

.card-content h4 {
    font-size: 0.9rem; /* Smaller, cleaner titles */
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 800;
}

.card-content p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* Arrows */
.nav-arrow {
    background: #fff;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    color: var(--color-primary);
    position: absolute;
    transition: all 0.3s;
}

.nav-arrow:hover { background: var(--color-primary); color: white; border-color: var(--color-primary); }
.nav-arrow.prev { left: -50px; }
.nav-arrow.next { right: -50px; }

/* Pagination Dots */
.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.pagination-dot.active { background: var(--color-primary); width: 20px; border-radius: 10px; }

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .premium-card { flex: 0 0 calc(50% - 10px); } /* 2 cards on tablet */
    .nav-arrow { display: none; }
}

@media (max-width: 600px) {
    .premium-card { flex: 0 0 100%; } /* 1 card on mobile */
}

/* =========================================
   PREMIUM LANGUAGE SELECTOR
========================================= */

.premium-lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    border: 1px solid rgba(16, 52, 166, 0.1);
    padding: 4px 8px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.premium-lang-switcher:hover {
    border-color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(16, 52, 166, 0.1);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0px 12px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-option img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    filter: grayscale(100%); /* Desaturated by default for premium look */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.lang-option span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-muted);
    letter-spacing: 0.5px;
}

/* Active State Styles */
.lang-option.active {
    background-color: var(--color-primary);
}

.lang-option.active img {
    filter: grayscale(0%);
    opacity: 1;
}

.lang-option.active span {
    color: #ffffff;
}

/* Hover effects for non-active */
.lang-option:not(.active):hover img {
    filter: grayscale(0%);
    opacity: 0.9;
}

.lang-option:not(.active):hover span {
    color: var(--color-primary);
}

.lang-divider {
    width: 1px;
    height: 14px;
    background-color: rgba(16, 52, 166, 0.1);
    margin: 0 4px;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .premium-lang-switcher {
        padding: 2px 4px;
    }
    .lang-option span {
        display: none; /* Hide text on mobile for ultra-compact look */
    }
}

/* =========================================
   PREMIUM ACCREDITATIONS SECTION
========================================= */

/* =========================================
   PREMIUM ACCREDITATIONS (Refined)
========================================= */

.premium-acc-section {
    padding: 7rem 0;
    background-color: var(--color-gray); /* #F5F5F5 */
    border-top: 1px solid rgba(16, 52, 166, 0.05);
}

.acc-grid-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5rem;
    margin-top: 4rem;
}

.acc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.acc-icon-wrap {
    width: 140px; /* Slightly larger for detail */
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: 0 12px 30px rgba(14, 23, 29, 0.04);
    margin-bottom: 1.5rem;
    position: relative;
    border: 1px solid rgba(16, 52, 166, 0.05);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.acc-icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%); /* Desaturated by default */
    opacity: 0.5;
    transition: all 0.5s ease;
}

.acc-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 2px; /* Extra spacing for luxury feel */
}

/* Premium Hover Interaction */
.acc-card:hover .acc-icon-wrap {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(16, 52, 166, 0.12);
    border-color: var(--color-primary);
}

.acc-card:hover .acc-icon-wrap img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.acc-card:hover .acc-label {
    color: var(--color-primary);
}

/* Mobile responsive scaling */
@media (max-width: 768px) {
    .acc-grid-premium { gap: 3rem; }
    .acc-icon-wrap { width: 110px; height: 110px; }
}

/* =========================================
   ZIG-ZAG INDUSTRIES LAYOUT
========================================= */

.industries-zigzag-container {
    padding: 6rem 0;
    overflow: hidden;
}

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 8rem;
    padding: 0 5%;
}

/* This creates the zig-zag effect */
.zigzag-reverse {
    flex-direction: row-reverse;
}

.zigzag-image {
    flex: 1;
}

.zigzag-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.zigzag-image2 img {
    width: 90%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
}

.zigzag-text {
    flex: 1;
}

.zigzag-text h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.zigzag-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

/* Services List Styling */
.services-list-mini {
    background-color: var(--color-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--color-primary);
}

.services-list-mini strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.services-list-mini ul {
    list-style: none;
    padding: 0;
}

.services-list-mini ul li {
    font-weight: 600;
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.services-list-mini ul li::before {
    content: '\f00c'; /* FontAwesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* Mobile Tweaks */
@media (max-width: 992px) {
    .zigzag-row, .zigzag-reverse {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 6rem;
    }
    .zigzag-image img {
        height: 300px;
    }
}
/* =========================================
   GLOBAL UTILITIES (SCROLL ANIMATIONS)
========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

/* =========================================
   LEGAL / PRIVACY & DATA POLICY PAGE
========================================= */
.hero-legal {
    height: 40vh;
    min-height: 350px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-legal h1 {
    color: #ffffff;
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-legal .effective-date {
    color: #00E5FF; /* Secondary cyan accent */
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.policy-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 5rem 20px;
    background-color: var(--color-light);
}

.policy-section {
    margin-bottom: 3.5rem;
}

.policy-section h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(16, 52, 166, 0.1);
}

.policy-section p, 
.policy-section ul li {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-dark);
}

.policy-section p {
    margin-bottom: 1.5rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section ul li {
    margin-bottom: 0.8rem;
    position: relative;
}

.policy-section ul li strong {
    font-weight: 600;
}

.contact-highlight {
    background-color: var(--color-gray);
    padding: 20px;
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
    font-weight: 500;
}

.contact-highlight a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.contact-highlight a:hover {
    text-decoration: underline;
    color: var(--color-dark);
}

/* =========================================
   MAP MARKER ANIMATIONS (WITH CENTER DOT)
========================================= */

/* 1. The Permanent Center Dot */
.hub-marker {
    position: absolute;
    width: 12px;  /* Size of the solid center dot */
    height: 12px;
    background-color: #00E5FF; /* Cyan Accent */
    border-radius: 50%;
    z-index: 10;
    transform: translate(-50%, -50%); 
    pointer-events: none;
    box-shadow: 0 0 8px #00E5FF; /* Slight glow so it pops */
}

/* 2. The Expanding Radar Ring */
.hub-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%; /* Starts at the exact size of the dot */
    height: 100%;
    border: 2px solid #00E5FF;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    
    /* The animation triggers only on this ring, not the center dot */
    animation: radar-pulse 1.5s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes radar-pulse {
    0% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 1; 
    }
    100% { 
        transform: translate(-50%, -50%) scale(5); /* Expands to 5x the dot size */
        opacity: 0; 
    }
}
/* --- COORDINATES --- */
/* Adjust these percentages until the rings sit perfectly over your flags */
.location-1 { top: 40%; left: 35%; } /* Example: Oslo */
.location-2 { top: 42%; left: 50%; } /* Example: Stockholm */
.location-3 { top: 37%; left: 65%; } /* Example: Helsinki */

.location-4 { top: 60%; left: 52%; } /* Example: Poland */

.location-5 { top: 60%; left: 4%; } /* Example: Ireland */
.location-6 { top: 88%; left: 5%; } /* Example: Portugal */
.location-7 { top: 75%; left: 25%; } /* Example: Paris */
.location-8 { top: 80%; left: 38%; } /* Example: Rome */

/* =========================================
   SERVICES SLIDER / SCROLL CONTAINER
========================================= */
.services-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.services-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* The invisible scroll window */
.services-track-container {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory; /* Snaps cards into place */
    padding: 20px 10px; /* Room for card shadows */
    
    /* Hide scrollbars for a clean UI */
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.services-track-container::-webkit-scrollbar {
    display: none;
}

/* The flex row holding the cards */
.services-track {
    display: flex;
    gap: 30px;
    width: max-content; /* Expands to fit all cards */
}

/* Individual Service Cards */
.premium-card {
    width: 350px; /* Fixed width for consistent scrolling */
    flex-shrink: 0;
    scroll-snap-align: start; /* Snapping point */
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(16, 52, 166, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.premium-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.premium-card p {
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #00E5FF;
}

/* Desktop Navigation Arrow Buttons */
.slider-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: absolute;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(16, 52, 166, 0.3);
    transition: transform 0.2s ease, background 0.2s ease;
}

.slider-btn:hover { 
    transform: scale(1.1); 
    background: var(--color-dark);
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .premium-card {
        width: 300px; /* Slightly smaller cards on mobile */
    }
    .slider-btn {
        display: none; /* Hide buttons on mobile, let users swipe */
    }
    .services-slider-wrapper {
        margin: 0 -15px; /* Bleed edge-to-edge on mobile */
    }
    .services-track-container {
        padding: 20px 15px;
    }
}

/* =========================================
   INDIVIDUAL SERVICE PAGES
========================================= */
.service-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    color: #ffffff;
    text-align: center;
}

.service-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
    align-items: center;
}

.service-image-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(16, 52, 166, 0.15);
}

.service-text h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-text p {
    color: var(--color-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 30px;
}

.service-features li {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: #00E5FF;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
    }
}
.title-wrapper {
  display: flex;
  align-items: center; /* Vertically centers the image and text */
  gap: 15px; /* Adds a nice space between the image and the h2 */
}

/* Optional: Removes default h2 margins so it lines up perfectly */
.title-wrapper h2 {
  margin: 0; 
}
.title-wrapper p {
  margin: 0; 
}


/* =========================================
   PREMIUM BRAND STATEMENT
========================================= */
.brand-statement-section {
    background-color: #ffffff; 
    padding: 120px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.statement-text {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 3.2rem); 
    line-height: 1.5;
    color: var(--color-dark);
    max-width: 1200px;
    margin: 0 auto;
}

.statement-intro {
    color: var(--color-primary); 
    font-weight: 800;
    display: block; 
    margin-bottom: 10px;
    font-size: clamp(2.2rem, 5vw, 4.5rem); 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.statement-body {
    font-weight: 300; 
    color: #333333;
}

.statement-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #00E5FF);
    margin: 40px auto 0;
    border-radius: 2px;
}

/* =========================================
   ULTRA-PREMIUM FOOTER
========================================= */
.main-footer {
    background: linear-gradient(135deg, #090f14 0%, #0e171d 100%);
    color: #94a3b8;
    padding: 80px 0 40px; 
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), #00E5FF, var(--color-primary), transparent);
    opacity: 0.6;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    
    /* FIX: Forces content to stay centered and away from screen corners */
    max-width: 1200px;
    margin: 0 auto 50px auto; 
    padding: 0 40px; 
}

.footer-left { max-width: 420px; }
.footer-logo { width: 220px; margin-bottom: 35px; display: block; opacity: 0.95; }

.footer-contact p { font-size: 0.95rem; line-height: 1.6; color: #94a3b8; margin-bottom: 20px; display: flex; align-items: center; gap: 20px; }
.footer-contact p i { color: #00E5FF; font-size: 1.1rem; background: rgba(0, 229, 255, 0.08); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.footer-contact a { color: #cbd5e1; text-decoration: none; transition: var(--transition); font-weight: 500; }
.footer-contact a:hover { color: #ffffff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }

.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 50px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 35px; justify-content: flex-end; }
.footer-links a { color: #cbd5e1; text-decoration: none; font-weight: 600; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; position: relative; padding-bottom: 6px; transition: color 0.3s ease; }
.footer-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px; background: var(--color-primary); transition: width 0.3s ease; }
.footer-links a:hover { color: #ffffff; }
.footer-links a:hover::after { width: 100%; }

.footer-socials { display: flex; gap: 20px; }
.footer-socials a { display: flex; justify-content: center; align-items: center; width: 48px; height: 48px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; color: #94a3b8; font-size: 1.3rem; text-decoration: none; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.footer-socials a:hover { background: var(--color-primary); border-color: var(--color-primary); color: #ffffff; transform: translateY(-6px) scale(1.05); box-shadow: 0 15px 25px rgba(16, 52, 166, 0.4); }

/* ==============================================
   FIX: EXPLICITLY TARGET THE P TAG TO OVERRIDE 
   THE GLOBAL DARK TEXT COLOR
============================================== */
.footer-bottom { 
    text-align: center; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    padding-top: 30px; 
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* This forces the paragraph text to be bright */
.footer-bottom p {
    color: #E2E8F0; /* Bright, visible text */
    font-weight: 600;
    font-size: 0.85rem; 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    margin: 0;
}
@media screen and (max-width: 768px) {
    .footer-wrapper { flex-direction: column; align-items: center; text-align: center; gap: 50px; padding: 0 20px; }
    .footer-left { display: flex; flex-direction: column; align-items: center; }
    .footer-contact p { flex-direction: column; align-items: center; gap: 10px; }
    .footer-right { align-items: center; width: 100%; gap: 40px; }
    .footer-links { justify-content: center; gap: 25px; }
}
.highlight-swedish{
	display: none !Important;
}

/* =========================================
   MOBILE RESPONSIVENESS & HAMBURGER MENU
========================================= */

/* Hide the hamburger button on Desktop */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Ensure logos shrink properly on all screens */
.nav-logo, .footer-logo, .acc-box img {
    max-width: 100%;
    height: auto;
}

/* Mobile Layout Rules */
@media screen and (max-width: 992px) {
    /* 1. Show the Hamburger Icon */
    .mobile-toggle {
        display: flex;
    }

    /* 2. Style the Mobile Dropdown Menu */
    .nav-center {
        position: absolute;
        top: 80px;
        left: 5%;
        width: 90%;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        padding: 20px 0;
        
        /* Hidden by default */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.3s ease;
    }

    /* Active state when menu is opened */
    .nav-center.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu {
        flex-direction: column;
        display: flex;
        width: 100%;
        gap: 15px;
    }

    .nav-menu li {
        width: 100%;
        justify-content: center;
    }

    .nav-menu li a {
        font-size: 1rem;
        padding: 12px;
    }

    /* Fix Dropdown inside Mobile Menu */
    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none; /* Hide sub-menu until hovered/clicked */
        background: var(--color-gray);
        margin-top: 10px;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* 3. Fix Logo Sizes for Mobile */
    .nav-logo {
        height: 28px; /* Slightly smaller for mobile header */
    }
    
    .footer-logo {
        width: 180px; /* Prevents stretching in footer */
    }
    
    /* Center the Pill Nav on Mobile */
    .pill-nav-container {
        padding: 0 20px;
    }
}

/* =========================================
   MOBILE OPTIMIZATION OVERHAUL 
========================================= */

@media screen and (max-width: 768px) {
    /* 1. Global Spacing Fixes */
    section, .services-section, .industries-section, .contact-section {
        padding: 50px 0 !important; /* Reduces massive 100px+ gaps to 50px */
    }

    .container {
        padding: 0 20px !important;
    }

    /* 2. Hero Section Adjustments */
    .hero, .hero-inner {
        height: auto !important;
        min-height: 80vh;
        padding: 120px 20px 60px !important;
    }

    .hero-content h1 {
        font-size: 2.2rem !important; /* Smaller text for mobile screens */
    }

    .hero-strip {
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin-top: 30px;
        flex-direction: column;
        padding: 0 !important;
    }

    .strip-img {
        height: 120px !important;
        width: 100% !important;
    }

    /* 3. Bento Grid & Stats Fix */
    .bento-grid {
        grid-template-columns: 1fr !important; /* Stack everything */
        grid-template-rows: auto !important;
        gap: 15px !important;
    }

    .bento-card {
        height: 200px !important;
    }

    /* 4. Zig-Zag & Industries Fix */
    .zigzag-row, .zigzag-reverse {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 0 !important;
        margin-bottom: 50px !important;
    }

    .zigzag-image, .zigzag-image2, .zigzag-text {
        max-width: 100% !important;
        width: 100% !important;
    }

    .zigzag-image img, .zigzag-image2 img, .service-img-col img {
        height: 250px !important; /* Prevent images from being too tall */
        width: 100% !important;
    }

    /* 5. Brand Statement Fix */
    .brand-statement-section {
        padding: 60px 20px !important;
    }

    .statement-intro {
        font-size: 1.8rem !important;
    }

    /* 6. Service Slider / Tracks Fix */
    .services-track {
        gap: 15px !important;
    }

    .premium-card {
        width: 280px !important; /* Force a size that fits mobile viewport */
        padding: 30px 20px !important;
    }

    /* 7. Contact Form Fix */
    .form-row {
        grid-template-columns: 1fr !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* 8. Table/List Overflows */
    .services-list-mini {
        padding: 1.5rem !important;
    }

    /* 9. Global Image Scaling */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Extra Small Phones Fix */
@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .stat-number {
        font-size: 2.2rem !important;
    }
}

/* =========================================
   CAREER MODAL MOBILE COMPATIBILITY 
========================================= */

@media screen and (max-width: 768px) {
    /* 1. Fix the Job and Project Modals */
    .job-modal, .project-details-modal, .policy-modal {
        width: 95% !important;
        max-height: 90vh !important; /* Prevents modal from going off-screen */
        overflow-y: auto !important; /* Allows internal scrolling */
        padding: 40px 20px 20px !important; /* Reduced padding */
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        border-radius: 12px !important;
    }

    /* 2. Fix the Close Button */
    .close-modal-btn, .close-modal {
        position: fixed !important; /* Keeps it locked to the corner of the modal */
        top: 10px !important;
        right: 10px !important;
        background: #ffffff !important; /* White background to make it visible */
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 9999 !important; /* Higher than modal content */
        font-size: 1.5rem !important;
        color: var(--color-primary) !important;
        opacity: 1 !important;
    }

    /* 3. Fix Project Modal Header Image */
    .project-modal-header-img {
        height: 180px !important; /* Smaller image on mobile */
    }

    .project-modal-body {
        padding: 20px !important;
    }

    /* 4. Fix the bottom stats row */
    .project-stats-mini {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center;
    }
}

/* =========================================
   HIGH-PRIORITY MOBILE NAV FIX
========================================= */

@media screen and (max-width: 992px) {
    /* Ensure the toggle button is visible and clickable */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1100 !important;
        margin-left: auto; /* Pushes toggle to the right */
        margin-right: 15px;
    }

    .mobile-toggle span {
        width: 28px;
        height: 3px;
        background-color: var(--color-primary) !important;
        transition: 0.3s;
        display: block !important;
    }

    /* Animate Hamburger to 'X' when open */
    .mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .mobile-toggle.open span:nth-child(2) { opacity: 0; }
    .mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    /* The actual Menu Card */
    .nav-center {
        position: fixed !important; /* Fixed is better for mobile overlays */
        top: 90px !important;
        left: 5% !important;
        width: 90% !important;
        background: #ffffff !important;
        border-radius: 15px !important;
        box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
        padding: 30px 0 !important;
        
        /* State when closed */
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-20px) !important;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        z-index: 1050 !important;
    }

    /* State when OPEN */
    .nav-center.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .nav-menu {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .nav-menu li a {
        text-decoration: none;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 10px 17px;
    border-radius: 30px;
    transition: var(--transition);
    display: inline-flex;    
    align-items: center;     
    justify-content: center; 
    
    /* ADD THIS LINE */
    text-transform: uppercase;
    }

    /* Hide Language Switcher text to save space if needed */
    .nav-right .lang-option span {
        display: none;
    }
	
}
/* =========================================
   FORCE NAVIGATION & DROPDOWN TO UPPERCASE
========================================= */
.nav-menu li a, 
.dropdown-menu li a, 
.footer-links a {
    text-transform: uppercase !important;
    letter-spacing: 1px; /* Makes the uppercase text look cleaner and more premium */
}
/* =========================================
   ACCREDITATION: CIRCULAR LOGOS (NO BOXES)
========================================= */

@media screen and (max-width: 768px) {
    /* 1. Keep the 2x2 grid but remove container styling */
    .acc-grid-premium {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 15px !important; /* More vertical space between rows */
        padding: 20px 0 !important;
    }

    /* 2. Remove the card/box styling */
    .acc-card {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* 3. Create the Circular Logo Wrapper */
    .acc-icon-wrap {
        width: 85px !important;   /* Size of the circle */
        height: 85px !important;
        background-color: #ffffff !important; /* White background for the circle */
        border: 2px solid #1034A6 !important; /* Premium blue border */
        border-radius: 50% !important;        /* Makes it a perfect circle */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 12px !important;
        overflow: hidden !important;
        padding: 10px !important; /* Padding so the logo doesn't touch the circle edge */
    }

    /* 4. Ensure the image fits perfectly inside the circle */
    .acc-icon-wrap img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important; /* Keeps logo proportions perfect */
    }

    /* 5. Clean Montserrat label underneath */
    .acc-label {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        color: #1034A6 !important; /* Blue text to match the brand */
        letter-spacing: 0.5px !important;
        text-align: center !important;
    }
}
/* =========================================
   OUR SERVICES: MOBILE ALIGNMENT FIX
========================================= */

@media screen and (max-width: 768px) {
    /* 1. Center the Section Heading */
    .services-section .section-title {
        text-align: center !important;
        font-size: 1.8rem !important;
        padding: 0 20px !important;
        margin-bottom: 30px !important;
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 800 !important;
    }

    /* 2. Fix the Scroll Container */
    #servicesScrollContainer {
        display: flex !important;
        overflow-x: auto !important; /* Allow horizontal swiping */
        scroll-snap-type: x mandatory !important; /* Makes cards 'snap' into place */
        -webkit-overflow-scrolling: touch;
        padding: 10px 20px 30px !important; /* Space for the shadow */
        gap: 20px !important;
        scrollbar-width: none; /* Hide scrollbar for Chrome/Safari */
    }

    #servicesScrollContainer::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Firefox */
    }

    /* 3. Style the Service Cards for Mobile */
    .premium-card {
        min-width: 85vw !important; /* Each card takes up 85% of screen width */
        max-width: 85vw !important;
        scroll-snap-align: center !important; /* Snaps card to the center of the screen */
        background: #ffffff !important;
        border-radius: 20px !important;
        padding: 30px 20px !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Center content inside the card */
        text-align: center !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    }

    /* 4. Fix Icons and Text inside Cards */
    .service-icon-box {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 20px !important;
    }

    .premium-card h3 {
        font-size: 1.2rem !important;
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 700 !important;
        margin-bottom: 15px !important;
        text-transform: uppercase !important;
    }

    .premium-card p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        color: #666 !important;
        margin-bottom: 20px !important;
    }

    /* 5. Center the Slider Buttons (Arrows) */
    .slider-controls {
        display: flex !important;
        justify-content: center !important;
        gap: 20px !important;
        margin-top: 10px !important;
    }
}

/* =========================================
   OUR REACH: SPACING FIX (MAP TO FOOTER)
========================================= */

@media screen and (max-width: 768px) {
    /* 1. Add breathing room below the reach/map section */
    .reach-section, 
    .our-reach-section,
    #reach {
        padding-bottom: 80px !important; /* Increases space before the footer starts */
        margin-bottom: 0 !important;
    }

    /* 2. Ensure the map container itself has some spacing */
    .reach-map-container, 
    .map-wrapper {
        margin-bottom: 40px !important;
        border-radius: 15px !important; /* Matches the premium rounded look of other sections */
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* 3. Optional: Fix the footer top spacing to match */
    .main-footer {
        margin-top: 0 !important;
        padding-top: 60px !important;
        border-top: 1px solid rgba(16, 52, 166, 0.1); /* Subtle divider line */
    }
}
/* =========================================
   STRUCTURED CABLING: MOBILE SPACING FIX
========================================= */

@media screen and (max-width: 768px) {
    /* 1. Global Container Fix for this page */
    .cabling-page .container, 
    .cabling-section .container,
    .service-detail-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 25px !important;  /* Creates the "breathing room" */
        padding-right: 25px !important;
        box-sizing: border-box !important;
    }

    /* 2. Fix the Hero text (Subtitle/Intro) */
    .cabling-hero-content p,
    .cabling-intro-text {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin: 0 auto 20px !important;
        width: 100% !important;
        text-align: left !important; /* Easier to read on narrow screens */
    }

    /* 3. Fix the Zig-Zag or Service Rows */
    .cabling-row, .service-feature-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 40px 0 !important;
        display: flex !important;
        flex-direction: column !important; /* Stack them */
        align-items: center !important;
    }

    /* 4. Ensure images don't touch the edges */
    .cabling-img-box, .service-img-wrap {
        width: 100% !important;
        margin-bottom: 25px !important;
        border-radius: 12px !important;
        overflow: hidden;
    }

    .cabling-img-box img {
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    /* 5. Fix text-blocks inside rows */
    .cabling-text-box {
        padding: 0 !important;
        width: 100% !important;
    }

    .cabling-text-box h2, 
    .cabling-text-box h3 {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 800 !important;
    }
}
/* =========================================
   UNIVERSAL MOBILE-FRIENDLY RESET
========================================= */

/* 1. Force the browser to calculate width correctly */
* {
    box-sizing: border-box !important;
}

@media screen and (max-width: 768px) {
    /* 2. Kill the horizontal scroll/wobble */
    html, body {
        width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 3. Force every container to stay inside the screen */
    .container, 
    section, 
    .content-wrapper,
    .cabling-grid,
    .service-details {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin: 0 auto !important;
        float: none !important; /* Removes any old floating layouts */
    }

    /* 4. Stack columns vertically */
    .row, .flex-row, .cabling-feature {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        padding: 20px 0 !important;
    }

    /* 5. Make images responsive */
    img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        margin: 0 auto 15px !important;
    }

    /* 6. Fix Typography for Montserrat */
    h1, h2, h3 {
        font-family: 'Montserrat', sans-serif !important;
        text-align: center !important;
        word-wrap: break-word !important; /* Prevents long words from pushing the edge */
    }
}

/* =========================================
   BODY TEXT OPTIMIZATION (MOBILE ONLY)
========================================= */

@media screen and (max-width: 768px) {
    /* 1. Target all body text elements */
    p, 
    span, 
    li, 
    .zigzag-text p, 
    .cabling-text-box p,
    .service-desc {
        font-family: 'Montserrat', sans-serif !important;
        /* Force Center Alignment */
        text-align: center !important; 
        
        /* Optimization for readability */
        font-size: 0.95rem !important;
        line-height: 1.7 !important; /* Adds space between lines for easier reading */
        color: #444 !important;      /* A slightly softer black is easier on the eyes */
        
        /* Ensure text doesn't touch the edges */
        max-width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
    }

    /* 2. Special fix for Lists (bullet points) */
    /* Centering lists can look messy with bullets, so we center the container */
    ul {
        padding: 0 !important;
        list-style-position: inside !important; /* Moves bullet inside the center alignment */
        text-align: center !important;
    }

    li {
        margin-bottom: 10px !important;
        list-style: none !important; /* Optional: Remove bullets for a cleaner look */
    }

    /* 3. Ensure "Our Reach" and "Structured Cabling" intro text is centered too */
    .reach-desc, .cabling-intro-text {
        text-align: center !important;
        padding: 0 10px !important;
    }
}
/* =========================================
   AGGRESSIVE TEXT CENTER & OPTIMIZATION
========================================= */

@media screen and (max-width: 768px) {
    /* 1. Force the parent containers to center their children */
    .cabling-page, 
    .container, 
    .cabling-text-box, 
    .zigzag-text, 
    section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Centers the text blocks themselves */
        justify-content: center !important;
        text-align: center !important; /* Centers the lines of text */
    }

    /* 2. Target every paragraph and span specifically */
    .cabling-page p, 
    .cabling-text-box p, 
    section p, 
    section span, 
    .service-description {
        text-align: center !important;
        font-family: 'Montserrat', sans-serif !important;
        font-size: 1rem !important; /* Slightly larger for readability */
        line-height: 1.8 !important; /* Premium spacing */
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 340px !important; /* Keeps lines from being too long on big phones */
        color: #333333 !important;
    }

    /* 3. Fix the "Left-Align" ghosting in lists */
    ul, ol {
        display: inline-block !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 auto 20px !important;
        list-style-position: inside !important;
    }

    li {
        font-family: 'Montserrat', sans-serif !important;
        text-align: center !important;
        margin-bottom: 12px !important;
    }
}
/* =========================================
   MOBILE MENU ICON: SPACING FIX
========================================= */

@media screen and (max-width: 992px) {
    /* 1. Target the button container */
    #mobile-toggle, 
    .mobile-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        
        /* This is the key: it controls the distance between lines */
        gap: 5px !important; 
        
        width: 45px !important;
        height: 45px !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 9999 !important;
    }

    /* 2. Target the 3 individual lines (spans) */
    #mobile-toggle span, 
    .mobile-toggle span {
        width: 28px !important;
        height: 3px !important;
        background-color: #1034A6 !important; /* Your brand blue */
        display: block !important;
        border-radius: 4px !important;
        
        /* Reset any accidental margins that might be pushing them apart */
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        
        transition: all 0.3s ease !important;
    }

    /* 3. Ensure the 'X' animation still looks right when open */
    .mobile-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }

    .mobile-toggle.open span:nth-child(2) {
        opacity: 0 !important;
    }

    .mobile-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }
}
/* =========================================
   DATACENTER: ZIGZAG SPACING FIX
========================================= */

@media screen and (max-width: 768px) {
    /* Target the specific class you provided */
    .zigzag-row.zigzag.fade-in {
        margin-top: 100px !important; /* Forces a massive gap from the Hero */
        padding-top: 20px !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important; /* Ensures image and text stack */
        align-items: center !important;
    }

    /* Target the image inside that zigzag row */
    .zigzag-row.zigzag .zigzag-image,
    .zigzag-row.zigzag img {
        width: 100% !important;
        max-width: 350px !important; /* Keeps the image from getting too huge */
        margin-bottom: 30px !important; /* Gap between image and the headline below it */
        border-radius: 15px !important;
    }

    /* Center the headline inside the zigzag */
    .zigzag-row.zigzag h2 {
        text-align: center !important;
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 800 !important;
        margin-bottom: 15px !important;
    }

    /* Justify and center the body text inside the zigzag */
    .zigzag-row.zigzag p {
        font-family: 'Montserrat', sans-serif !important;
        text-align: justify !important;
        text-justify: inter-word;
        text-align-last: center;
        line-height: 1.8 !important;
        padding: 0 20px !important; /* Keeps text away from phone edges */
    }
}
/* =========================================
   FIX FOR OVERSIZED TITLE-WRAPPER IMAGES
========================================= */

@media screen and (max-width: 768px) {
    /* Target only the images inside the title-wrapper */
    .title-wrapper img, 
    .zigzag-row .title-wrapper img {
        width: auto !important;      /* Stops it from stretching to 100% */
        max-width: 80px !important;  /* Adjust this (e.g., 60px or 100px) based on the logo/icon size */
        height: auto !important;
        margin: 0 auto 15px !important; /* Centers it and adds a gap below */
        display: block !important;
    }

   
    }
}
/* =========================================
   HOME PAGE: BENTO GRID RECOVERY
========================================= */

@media screen and (max-width: 768px) {
    /* 1. Force the main container to be visible */
    .bento-grid, 
    .bento-container,
    .bento-wrapper {
        display: block !important; /* Stack cards vertically */
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
        padding: 20px !important;
        margin-top: 30px !important;
    }

    /* 2. Target the individual Bento cards */
    .bento-card, 
    .bento-item {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin-bottom: 20px !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important; /* Kills any stuck animations */
        background: #ffffff !important;
        border-radius: 20px !important;
        padding: 25px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    }

    /* 3. Fix the images/icons inside Bento cards */
    .bento-card img {
        max-width: 100% !important;
        height: auto !important;
        margin-bottom: 15px !important;
    }

    /* 4. Ensure Montserrat and Center Alignment */
    .bento-card h3, 
    .bento-card h4 {
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 800 !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }

    .bento-card p {
        font-family: 'Montserrat', sans-serif !important;
        text-align: center !important;
        line-height: 1.6 !important;
        font-size: 0.9rem !important;
    }
}
/* =========================================
   BENTO GRID: SQUARE CARDS WITH IMAGES
========================================= */

@media screen and (max-width: 768px) {
    /* 1. The Grid Container */
    [class*="bento"], .bento-grid {
        display: grid !important;
        grid-template-columns: 1fr !important; /* One square per row */
        gap: 20px !important;
        padding: 20px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* 2. Making the Cards Square */
    [class*="bento"] > div, 
    [class*="bento"] > article,
    .bento-card {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important; /* Pushes text to the bottom like desktop */
        align-items: center !important;
        
        /* THE SQUARE TRICK */
        width: 100% !important;
        aspect-ratio: 1 / 1 !important; /* Forces height to equal width */
        
        /* Image Visibility */
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        
        /* Dark overlay so white text is readable over the image 
        background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.7)), 
                          url('YOUR-IMAGE-URL-HERE') !important; */
        
        border-radius: 24px !important;
        padding: 25px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        position: relative !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }

    /* 3. Handling Inline Images (if you don't use background-images) */
    .bento-card img, 
    [class*="bento"] img {
        position: absolute !important;
        top: 0;
        left: 0;
       /* width: 100% !important;
        height: 100% !important;*/
        object-fit: cover !important; /* Ensures the image fills the square */
        z-index: 1 !important;
    }

    /* 4. Text Content (Floating over the image) */
    .bento-card h3, 
    .bento-card p, 
    [class*="bento"] h3, 
    [class*="bento"] p {
        position: relative !important;
        z-index: 2 !important; /* Sits above the image */
        font-family: 'Montserrat', sans-serif !important;
        color: #FFFFFF !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .bento-card h3 {
        font-weight: 800 !important;
        font-size: 1.3rem !important;
        margin-bottom: 8px !important;
    }

    .bento-card p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        text-align: justify !important;
        text-align-last: center;
    }
}

/* =========================================
   CAREER PAGE: ONGOING PROJECTS MOBILE FIX
========================================= */

@media screen and (max-width: 768px) {
    /* 1. Target the container holding the projects */
    .projects-container, 
    .projects-grid, 
    .ongoing-projects-wrapper {
        display: flex !important;
        flex-direction: column !important; /* Forces stacking instead of one line */
        gap: 30px !important;
        padding: 20px !important;
    }

    /* 2. Target the individual project cards */
    .project-card, 
    .ongoing-project-item {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
        display: block !important;
        background: #ffffff !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
    }

    /* 3. Fix Project Images */
    .project-card img, 
    .project-image-wrap img {
        width: 100% !important;
        height: 220px !important; /* Set a consistent height for the project photos */
        object-fit: cover !important;
        display: block !important;
    }

    /* 4. Project Content (Text) */
    .project-content {
        padding: 25px !important;
        text-align: center !important;
    }

    .project-content h3 {
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 800 !important;
        font-size: 1.4rem !important;
        color: #1034A6 !important;
        margin-bottom: 12px !important;
        text-transform: uppercase !important;
    }

    .project-content p {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        color: #444 !important;
        /* Justify text for that professional look we used elsewhere */
        text-align: justify !important;
        text-justify: inter-word;
        text-align-last: center;
    }

    /* 5. Career Page "Apply" or "View" Button */
    .project-btn, .career-apply-btn {
        width: 100% !important;
        margin-top: 15px !important;
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 700 !important;
    }
}
/* =========================================
   CAREER PAGE: MODERN TECH-STYLE OPENINGS
========================================= */

@media screen and (max-width: 768px) {
    /* 1. The Container - Adding more space between jobs */
    .positions-section, .jobs-wrapper {
        padding: 30px 20px !important;
        background-color: #F9FAFB !important; /* Very light grey background for the section */
    }

    /* 2. The Card - Minimalist approach */
    .job-card, .opening-item {
        background: #ffffff !important;
        border: 1px solid #E5E7EB !important; /* Thin, elegant border */
        border-radius: 16px !important;
        padding: 30px !important;
        margin-bottom: 25px !important;
        text-align: left !important; /* Left align for a more "corporate" professional feel */
        position: relative;
    }

    /* 3. The Job Title */
    .job-card h3, .position-title {
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 800 !important;
        font-size: 1.25rem !important;
        color: #111827 !important;
        margin-bottom: 8px !important;
        letter-spacing: -0.5px !important;
    }

    /* 4. Metadata Badges (Location/Type) */
    .job-meta-row {
        display: flex !important;
        gap: 8px !important;
        margin-bottom: 20px !important;
    }

    .job-badge {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        padding: 4px 10px !important;
        background: #F3F4F6 !important;
        color: #4B5563 !important;
        border-radius: 6px !important;
        text-transform: uppercase !important;
    }

    /* 5. The Description - Using that Justified look you like */
    .job-description p, .position-text {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: #6B7280 !important;
        text-align: justify !important;
        text-justify: inter-word;
        margin-bottom: 25px !important;
    }

    /* 6. The Action Row - Button and "Details" */
    .job-footer {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        border-top: 1px solid #F3F4F6 !important;
        padding-top: 20px !important;
    }

    .btn-apply-small {
        background: #1034A6 !important;
        color: #ffffff !important;
        padding: 10px 20px !important;
        border-radius: 8px !important;
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 700 !important;
        font-size: 0.85rem !important;
        text-decoration: none !important;
        display: inline-block !important;
    }

    .view-more-link {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        color: #1034A6 !important;
        text-decoration: underline !important;
    }
}

/* =========================================
   CONTACT PAGE: BUTTON TO FOOTER SPACING
========================================= */

@media screen and (max-width: 768px) {
    /* 1. Push the entire contact section away from the footer */
    .contact-section, 
    #contact, 
    .contact-wrapper {
        padding-bottom: 100px !important; /* Forces a large gap at the bottom */
    }

    /* 2. Add extra space specifically below the Send button */
    .btn-submit, 
    .contact-form button[type="submit"],
    .wpcf7-submit {
        margin-bottom: 60px !important; /* Extra breathing room */
        display: block !important;
        width: 100% !important; /* Full width button is better for mobile thumbs */
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        padding: 15px !important;
        border-radius: 8px !important;
    }

    /* 3. Ensure the form container doesn't hug the footer */
    .contact-form-container, 
    .form-wrapper {
        margin-bottom: 40px !important;
    }
}

/* =========================================
   MOBILE NAVIGATION: LANGUAGE TOGGLE FIX
========================================= */

@media screen and (max-width: 992px) {
    /* 1. Target the toggle container */
    .lang-switcher, 
    .language-toggle, 
    #lang-switch {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(16, 52, 166, 0.05) !important; /* Very faint brand blue */
        border: 1px solid rgba(16, 52, 166, 0.2) !important;
        border-radius: 50px !important; /* Perfect Pill Shape */
        padding: 4px !important;
        margin-left: 15px !important;
        margin-right: 15px !important;
        transition: all 0.3s ease !important;
    }

    /* 2. Style the individual language links/buttons */
    .lang-switcher a, 
    .language-toggle span,
    .lang-item a {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        padding: 6px 12px !important;
        color: #1034A6 !important; /* Your brand blue */
        text-decoration: none !important;
        border-radius: 50px !important;
        transition: all 0.2s ease !important;
    }

    /* 3. The "Active" or "Selected" Language */
    .lang-switcher a.active, 
    .lang-switcher a.current-lang,
    .lang-item.current-lang-item a {
        background: #1034A6 !important; /* Solid brand blue */
        color: #ffffff !important; /* White text */
        box-shadow: 0 4px 10px rgba(16, 52, 166, 0.2) !important;
    }

    /* 4. Positioning if it's in the Header bar */
    .nav-container-mobile {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
}
@media screen and (max-width: 992px) {
    .nav-center.active .lang-switcher {
        margin-top: 30px !important;
        border-top: 1px solid #eee !important;
        padding-top: 20px !important;
        background: transparent !important;
        border: none !important;
    }
}
/* =========================================
   RESPONSIVE TEXT: PREVENT WORD BREAKING
========================================= */

@media screen and (max-width: 768px) {
    /* 1. Force words to stay in one piece */
    p, span, li, h1, h2, h3, h4, a {
        hyphens: none !important;            /* Disables the dashes (-) at ends of lines */
        word-break: keep-all !important;      /* Prevents breaking a word in the middle */
        overflow-wrap: break-word !important; /* Only breaks if the word is LONGER than the screen */
    }

    /* 2. Fluid Typography for Headlines */
    /* If a headline is too big, it forces a break. This shrinks it slightly to fit. */
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.2rem !important; }

    /* 3. Special rule for Buttons & Tabs */
    /* These should NEVER wrap into two lines */
    .btn, .button, .lang-switcher a, .project-btn {
        white-space: nowrap !important; 
    }
}
/* =========================================
   MOBILE NAV: LANGUAGE TOGGLE PRECISION FIT
========================================= */

@media screen and (max-width: 992px) {
    /* 1. The Container: Keep it tight and centered */
    .lang-switcher, 
    .language-toggle, 
    #lang-switch {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        
        /* Forces the container to be a specific size */
        height: 35px !important; 
        min-width: 40px !important; 
        
        /* Remove any old margins that push it out of place */
        margin: 0 10px !important; 
        padding: 0 !important;
        overflow: hidden !important;
    }

    /* 2. The Flag / Image: Force it to fit the box */
    .lang-switcher img, 
    .language-toggle img, 
    .flag-icon {
        width: 24px !important;  /* Standard professional icon size */
        height: 18px !important; /* Keeps the rectangular flag shape */
        object-fit: contain !important; /* Prevents stretching */
        display: block !important;
        border-radius: 2px !important; /* Subtle rounded corners */
        margin: 0 auto !important;
    }

    /* 3. If the toggle is text (e.g., "EN" or "SV") instead of a flag */
    .lang-switcher a, 
    .language-toggle span {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}
/* =========================================
   MOBILE NAV: VERTICAL FLAG CENTERING
========================================= */

@media screen and (max-width: 992px) {
    /* 1. The Blue Area (Container) */
    .lang-switcher, 
    .language-toggle, 
    [class*="lang-item"] {
        display: flex !important;
        align-items: center !important;     /* VERTICAL CENTER */
        justify-content: center !important;   /* HORIZONTAL CENTER */
        
        background-color: #1034A6 !important; /* Your Brand Blue */
        height: 32px !important;              /* Consistent height for the area */
        width: 45px !important;               /* Consistent width */
        border-radius: 4px !important;
        
        /* Kill any inherited margins pushing it from the top */
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;            /* Removes "text-line" spacing */
    }

    /* 2. The Flag Image itself */
    .lang-switcher img, 
    .language-toggle img, 
    .flag-icon {
        display: block !important;
        
        /* Reset all margins to ensure no "push" from the top */
        margin: 0 !important; 
        padding: 0 !important;
        
        width: 24px !important;
        height: auto !important;
        max-height: 18px !important;
        
        /* Ensures the image doesn't shift due to vertical-align defaults */
        vertical-align: middle !important; 
    }
}</style>
<!-- end Simple Custom CSS and JS -->
