   :root {
            --navy-primary: #061525;
            --navy-secondary: #0B243B;
            --brand-blue: #006EDB;
            --accent-blue: #1597FF;
            --white: #FFFFFF;
            --off-white: #F5F7F9;
            --tech-grey: #647180;
            --border-grey: #DCE3E9;
            --font-head: 'Manrope', sans-serif;
            --font-body: 'Inter', sans-serif;
            --header-h: 80px;
        }

        * { box-sizing: border-box; }

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
        body {
            font-family: var(--font-body);
            color: var(--navy-primary);
            background-color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
            margin: 0;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-head);
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .eyebrow {
            font-family: var(--font-body);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            color: var(--accent-blue);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .btn {
            font-family: var(--font-body);
            font-weight: 600;
            padding: 0.85rem 1.75rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .btn-primary {
            background-color: var(--brand-blue);
            border: 1px solid var(--brand-blue);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--navy-secondary);
            border-color: var(--navy-secondary);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 110, 219, 0.2);
        }

        .btn-outline-light {
            border: 1px solid rgba(255,255,255,0.3);
            color: var(--white);
        }

        .btn-outline-light:hover {
            background-color: var(--white);
            color: var(--navy-primary);
            border-color: var(--white);
        }

        .theme-txt{color: var(--brand-blue);}
        /* =========================================
           HEADER & NAVIGATION (WP Friendly)
        ========================================= */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1030;
            transition: all 0.3s ease;
            background-color: #01172969;
        }

        header.scrolled {
            background-color: var(--navy-primary);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .navbar {
            height: var(--header-h);
            padding: 0;
        }

        .custom-logo-link {
            font-family: var(--font-head);
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--white);
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
        }
a.custom-logo-link {
    max-width: 150px;
}
a.custom-logo-link img{width: 100%; height: auto;}
        .navbar-brand span { color: var(--brand-blue); }

        /* Custom Ul Li Menu Structure */
        .main-menu {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            align-items: center;
        }

        .main-menu > li {
            position: relative;
            margin: 0 1rem;
        }

        .main-menu > li > a {
            color: rgba(255,255,255,0.8);
            font-weight: 500;
            font-size: 1.1rem;
            text-decoration: none;
            padding: 10px 0;
            display: block;
            position: relative;
            transition: color 0.2s;
        }

        .main-menu > li > a:hover, 
        .main-menu > li > a.active {
            color: var(--white);
        }

        .main-menu > li > a::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--brand-blue);
            transition: width 0.3s;
        }

        .main-menu > li > a:hover::after, 
        .main-menu > li > a.active::after {
            width: 100%;
        }

        /* Dropdown (menu-item-has-children) */
        /* .menu-item-has-children > a::before {
            content: '\F282'; 
            font-family: "bootstrap-icons";
            font-size: 0.7rem;
            margin-left: 5px;
            float: right;
            margin-top: 3px;
            transition: transform 0.3s;
        }

        .menu-item-has-children:hover > a::before {
            transform: rotate(180deg);
        } */

        .sub-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--navy-secondary);
            min-width: 220px;
            list-style: none;
            padding: 1rem 0;
            margin: 0;
            border-radius: 0 0 8px 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .menu-item-has-children:hover > .sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .sub-menu li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            padding: 0.6rem 1.5rem;
            display: block;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
        }

        .sub-menu li a:hover {
            background-color: var(--navy-primary);
            color: var(--accent-blue);
        }

        .btn-quote {
            background-color: var(--brand-blue);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-quote:hover {
            background-color: var(--accent-blue);
            color: var(--white);
        }

        .navbar-toggler {
            border: 1px solid rgba(255,255,255,0.5);
            padding: 0.4rem 0.6rem;
        }
        .navbar-toggler:focus { box-shadow: none; }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }

        /* =========================================
           MOBILE OFFCANVAS MENU
        ========================================= */
        .offcanvas {
            background-color: var(--navy-primary);
            color: var(--white);
            width: 320px;
        }
        .offcanvas-header {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 1.5rem;
        }
        .offcanvas-title {
            color: var(--white);
            font-family: var(--font-head);
            font-weight: 800;
        }
        .btn-close {
            filter: invert(1) grayscale(100%) brightness(200%);
        }

        .mobile-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu > li {
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .mobile-menu > li > a {
            color: var(--white);
            text-decoration: none;
            padding: 1.1rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            font-size: 1.05rem;
        }

        .mobile-menu .menu-item-has-children > a {
            cursor: pointer;
        }

        .mobile-menu .menu-item-has-children > a .chevron {
            transition: transform 0.3s;
            font-size: 1.2rem;
        }

        .mobile-menu .menu-item-has-children.active > a .chevron {
            transform: rotate(180deg);
        }

        .mobile-sub-menu {
            list-style: none;
            padding: 0; /* Remove padding so it collapses fully to 0 height */
            margin: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease; /* Smooth transition */
            background-color: rgba(0, 0, 0, 0.1); /* Subtle background for sub-menu */
        }

        .mobile-menu .menu-item-has-children.active > .mobile-sub-menu {
            max-height: 1000px; 
            padding: 0.5rem 0 1rem 1rem; /* Add padding ONLY when active */
        }

        /* Ensure the offcanvas body scrolls properly if menu gets long */
        .offcanvas-body {
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            padding: 1.5rem; 
        }

        /* Highlight active parent link */
        .mobile-menu > li.menu-item-has-children.active > a {
            color: var(--accent-blue);
        }

        .mobile-sub-menu li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            padding: 0.7rem 1.5rem; /* Better touch target spacing */
            display: block;
            font-size: 0.95rem;
            border-left: 1px solid rgba(255,255,255,0.1); /* Subtle indent line */
            margin-left: 0.5rem;
            transition: color 0.2s;
        }

        .mobile-sub-menu li a:hover {
            color: var(--brand-blue);
        }

        .mobile-sub-menu li a:hover {
            color: var(--brand-blue);
        }

        /* =========================================
           HERO VIDEO SLIDER
        ========================================= */
        .hero {
            height: 100svh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
            background-color: var(--navy-primary);
        }

        .hero .swiper {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

        .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Fully responsive video */
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, rgba(6, 21, 37, 0.9) 0%, rgba(6, 21, 37, 0.5) 60%, rgba(6, 21, 37, 0.8) 100%);
            z-index: 2;
        }

        .hero-grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 3;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 4;
            color: var(--white);
/*             max-width: 900px; */
            padding-top: var(--header-h);
        }

        .hero-content h1, .hero-content .h1 {
            color: var(--white);
            font-size: clamp(2.2rem, 6vw, 4.5rem); /* Responsive typography */
            line-height: 1.05;
            margin-bottom: 1.5rem;
			font-weight: 600;
        }

        .hero-content p {
            color: rgba(255,255,255,0.85);
            font-size: clamp(1rem, 2vw, 1.25rem); /* Responsive typography */
            max-width: 600px;
            margin-bottom: 2.5rem;
        }

        .vertical-contact {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            transform-origin: right center;
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .vertical-contact a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-bottom: 1px solid var(--brand-blue);
            padding-bottom: 5px;
        }

        @media (max-width: 991px) {
            .vertical-contact { display: none; }
            .mobile-sticky-contact {
                display: flex !important;
                position: fixed;
                bottom: 20px;
                right: 20px;
                z-index: 1000;
                background: var(--brand-blue);
                color: white;
                width: 60px;
                height: 60px;
                border-radius: 50%;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 15px rgba(0,110,219,0.4);
                text-decoration: none;
            }
        }
        .mobile-sticky-contact { display: none; }

        /* Credibility Bar */
          .credibility-bar {
            position: relative;
            /* bottom: 0; */
            /* left: 0; */
            width: 100%;
            /* z-index: 5; */
            background: rgb(6 21 37);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 1.25rem 0;
        }
        

        .cred-item {
            text-align: center;
            color: var(--white);
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        .cred-item:last-child { border-right: none; }
        .cred-item h4 {
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 0;
        }
        .cred-item p {
            color: rgba(255,255,255,0.7);
            font-size: 0.8rem;
            margin-bottom: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Swiper Pagination */
        .swiper-pagination-bullet {
            background: rgba(255,255,255,0.4);
            opacity: 1;
            width: 10px;
            height: 10px;
        }
        .swiper-pagination-bullet-active {
            background: var(--brand-blue);
            width: 30px;
            border-radius: 4px;
        }

        /* =========================================
           FOOTER
        ========================================= */
        footer {
            background-color: var(--navy-primary);
            color: rgba(255,255,255,0.7);
            padding: 5rem 0 2rem 0;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-col h5 {
            color: var(--white);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            font-family: var(--font-body);
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: var(--brand-blue);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 4rem;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.85rem;
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            margin-right: 1rem;
        }
        .footer-bottom a:hover { color: var(--white); }

        .footer-social a {
            color: rgba(255,255,255,0.7);
            margin-left: 1rem;
            font-size: 1.1rem;
            transition: color 0.2s;
        }
        .footer-social a:hover { color: var(--white); }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
    
    /* =========================================
       ABOUT SECTION
    ========================================== */
    .about-section {
        padding: 6rem 0;
        background-color: var(--white);
        position: relative;
    }

    .about-section h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1.5rem;
        color: var(--navy-primary);
    }

    .about-section p {
        color: var(--tech-grey);
        margin-bottom: 1.2rem;
        font-size: 1.05rem;
    }

    .about-features {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-grey);
    }

    .about-feature-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 600;
        color: var(--navy-primary);
        font-size: 0.95rem;
    }

    .about-feature-item i {
        color: var(--brand-blue);
        font-size: 1.3rem;
    }

    .about-image-wrapper {
        position: relative;
        border-radius: 8px;
        overflow: visible; /* Allows the stat card to pop out */
    }

    .about-img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(6, 21, 37, 0.08);
        border: 1px solid var(--border-grey);
    }

    .about-stat-card {
        position: absolute;
        bottom: -30px;
        left: -30px;
        background-color: var(--navy-primary);
        color: var(--white);
        padding: 1.5rem 2rem;
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        border-left: 4px solid var(--brand-blue);
    }

    .about-stat-card h3 {
        color: var(--white);
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
        line-height: 1;
    }

    .about-stat-card p {
        color: rgba(255,255,255,0.8);
        font-size: 0.9rem;
        margin-bottom: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .about-image-wrapper {
            margin-top: 3rem;
        }
        .about-stat-card {
            left: 50%;
            transform: translateX(-50%);
            bottom: -25px;
            padding: 1.2rem 1.5rem;
        }
        .about-stat-card h3 {
            font-size: 2rem;
        }
        .about-img {
            height: 400px;
        }
        .about-features {
            flex-wrap: wrap;
            gap: 1rem;
        }
    }

    @media (max-width: 576px) {
        .about-section {
            padding: 4rem 0;
        }
        .about-img {
            height: 300px;
        }
    }

        /* =========================================
       PRODUCTS SECTION (DARK)
    ========================================== */
    .dark-section {
        background-color: var(--navy-primary);
        color: var(--white);
        position: relative;
        overflow: hidden;
        padding: 6rem 0;
    }
    
    /* Subtle technical grid background */
    .dark-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: 
            linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
        background-size: 80px 80px;
        pointer-events: none;
        z-index: 0;
    }

    .dark-section .container {
        position: relative;
        z-index: 1;
    }

    .dark-section h2, 
    .dark-section h4 {
        color: var(--white);
    }

    .dark-section p {
        color: rgba(255,255,255,0.7);
    }

    .dark-section .eyebrow {
        color: var(--accent-blue);
    }

    /* Section Header */
    .section-header {
        margin-bottom: 3rem;
        max-width: 800px;
    }
    .section-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.1;
    }

    /* Product Card Styles */
    .product-card-dark {
        background: var(--navy-secondary);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 8px;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
    }

    .product-card-dark:hover {
        border-color: var(--brand-blue);
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    .product-img {
        height: 240px;
        overflow: hidden;
        position: relative;
    background: #061525;
    }

    .product-img::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; width: 100%; height: 50%;
        background: linear-gradient(to top, var(--navy-secondary), transparent);
        z-index: 1;
    }

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card-dark:hover .product-img img {
        transform: scale(1.08);
    }

    .product-body {
        padding: 1.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 2;
    }

    .product-cat {
        font-size: 0.8rem;
        color: var(--accent-blue);
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .product-body h4 {
        font-size: 1.7rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    }

    .product-card-dark:hover .product-body h4 {
        color: var(--brand-blue);
    }

    .product-body p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    .product-link {
        color: var(--white);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        transition: gap 0.3s ease;
    }

    .product-card-dark:hover .product-link {
        gap: 1rem;
        color: var(--accent-blue);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .dark-section {
            padding: 4rem 0;
        }
        .product-img {
            height: 200px;
        }
    }

        /* =========================================
       WHAT WE OFFER SECTION (LIGHT)
    ========================================== */
    .offer-section {
        background-color: var(--off-white); /* Slight contrast against pure white */
        padding: 6rem 0;
        position: relative;
    }

    .offer-section .section-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--navy-primary);
    }

    .offer-card {
        background: var(--white);
        border: 1px solid var(--border-grey);
        border-radius: 8px;
        padding: 2.5rem 1.75rem;
        height: 100%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    /* Subtle blue top border on hover */
    .offer-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: var(--brand-blue);
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.4s ease;
    }

    .offer-card:hover {
        border-color: transparent;
        box-shadow: 0 15px 40px rgba(6, 21, 37, 0.08);
        transform: translateY(-5px);
    }

    .offer-card:hover::before {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .offer-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(0, 110, 219, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-blue);
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }

    .offer-card:hover .offer-icon {
        background-color: var(--brand-blue);
        color: var(--white);
    }

    .offer-card h4 {
        font-size: 1.15rem;
        color: var(--navy-primary);
        margin-bottom: 0.85rem;
        font-weight: 700;
        line-height: 1.4;
    }

    .offer-card p {
        color: var(--tech-grey);
        font-size: 0.95rem;
        margin-bottom: 0;
        line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .offer-section {
            padding: 4rem 0;
        }
        .offer-card {
            padding: 2rem 1.5rem;
        }
    }


    /* =========================================================
   JASCH INTERNATIONAL LOCATIONS
   ========================================================= */

.jasch-locations {
    position: relative;
    overflow: hidden;

    background: #ffffff;
    color: #061525;

    padding: 120px 0;
}


/* CONTAINER */

.jasch-locations-container {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.jasch-locations-heading {
    max-width: 700px;
    margin-bottom: 70px;
}

.jasch-locations-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: #006EDB;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.jasch-locations-eyebrow::before {
    content: "";

    width: 32px;
    height: 2px;

    background: #006EDB;
}

.jasch-locations-title {
    margin: 0;

    font-size: clamp(44px, 5vw, 68px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.jasch-locations-title span {
    color: #006EDB;
}

.jasch-locations-intro {
    max-width: 620px;

    margin: 24px 0 0;

    color: #536270;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.jasch-location-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(390px, 0.65fr);

    gap: 80px;

    align-items: center;
}


/* =========================================================
   MAP VISUAL
   ========================================================= */

.jasch-location-visual {
    position: relative;

    min-height: 500px;

    background: #f5f8fa;

    overflow: hidden;

    border: 1px solid #e3e9ed;
}


/* TECHNICAL GRID */

.jasch-map-grid {
    position: absolute;
    inset: 0;

    opacity: 0.5;

    background-image:
        linear-gradient(
            rgba(6, 21, 37, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(6, 21, 37, 0.045) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}


/* WORLD MAP */

.jasch-world-map {
    position: absolute;

    width: 90%;
    left: 5%;
    top: 14%;

    color: #dfe8ed;

    transition:
        transform 800ms ease,
        opacity 500ms ease;
}

.jasch-world-map svg {
    width: 100%;
    height: auto;
}


/* MAP MARKERS */

.jasch-location-marker {
    position: absolute;

    left: var(--x);
    top: var(--y);

    width: 34px;
    height: 34px;

    padding: 0;

    transform: translate(-50%, -50%);

    border: 0;
    background: transparent;

    cursor: pointer;

    z-index: 5;
}


.jasch-marker-dot {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 11px;
    height: 11px;

    transform: translate(-50%, -50%);

    background: #006EDB;

    border: 3px solid #ffffff;

    border-radius: 50%;

    box-shadow:
        0 0 0 1px #006EDB,
        0 5px 15px rgba(0, 110, 219, 0.35);

    transition:
        transform 250ms ease,
        background 250ms ease;
}


.jasch-marker-pulse {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 28px;
    height: 28px;

    transform: translate(-50%, -50%);

    border: 1px solid #006EDB;

    border-radius: 50%;

    opacity: 0;

    animation:
        jaschLocationPulse 2.4s infinite;
}


.jasch-location-marker.active .jasch-marker-dot,
.jasch-location-marker:hover .jasch-marker-dot {
    background: #1597FF;

    transform:
        translate(-50%, -50%)
        scale(1.25);
}


@keyframes jaschLocationPulse {

    0% {
        transform:
            translate(-50%, -50%)
            scale(0.6);

        opacity: 0.7;
    }

    70% {
        transform:
            translate(-50%, -50%)
            scale(1.5);

        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* MAP LABEL */

.jasch-map-label {
    position: absolute;

    left: 30px;
    bottom: 26px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #7a8995;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
}


.jasch-map-label-line {
    width: 28px;
    height: 1px;

    background: #006EDB;
}


/* =========================================================
   LOCATION LIST
   ========================================================= */

.jasch-location-list {
    border-top: 1px solid #dfe6ea;
}


/* LOCATION ITEM */

.jasch-location-item {
    width: 100%;

    min-height: 94px;

    display: grid;

    grid-template-columns:
        38px
        48px
        1fr
        35px;

    align-items: center;

    gap: 12px;

    padding: 12px 0;

    border: 0;
    border-bottom: 1px solid #dfe6ea;

    background: transparent;

    color: #061525;

    text-align: left;

    cursor: pointer;

    transition:
        background 250ms ease,
        padding 250ms ease;
}


.jasch-location-item:hover,
.jasch-location-item.active {
    background: #f5f8fa;

    padding-left: 15px;
    padding-right: 15px;
}


/* NUMBER */

.jasch-location-number {
    color: #9aa7b0;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}


.jasch-location-item.active
.jasch-location-number {
    color: #006EDB;
}


/* FLAG */

.jasch-location-flag {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #e0e6ea;

    font-size: 21px;

    border-radius: 50%;

    box-shadow:
        0 5px 15px rgba(6, 21, 37, 0.06);
}


/* LOCATION INFO */

.jasch-location-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.jasch-location-info strong {
    color: #061525;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.01em;
}


.jasch-location-info small {
    color: #71808b;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* ARROW */

.jasch-location-arrow {
    color: #8c9aa4;

    font-size: 18px;

    transition:
        color 200ms ease,
        transform 200ms ease;
}


.jasch-location-item:hover
.jasch-location-arrow,
.jasch-location-item.active
.jasch-location-arrow {
    color: #006EDB;

    transform: translateX(4px);
}


/* =========================================================
   BOTTOM BAR
   ========================================================= */

.jasch-locations-bottom {
    margin-top: 65px;
}


.jasch-locations-line {
    width: 100%;
    height: 1px;

    background: #dfe6ea;
}


.jasch-locations-bottom-content {
    min-height: 75px;

    display: grid;

    grid-template-columns:
        180px
        1fr
        auto;

    align-items: center;

    gap: 30px;
}


.jasch-locations-bottom-content span {
    color: #8b98a1;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;
}


.jasch-locations-bottom-content strong {
    color: #061525;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;
}


.jasch-locations-bottom-content a {
    color: #006EDB;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.08em;

    transition: color 200ms ease;
}


.jasch-locations-bottom-content a:hover {
    color: #1597FF;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .jasch-locations {
        padding: 90px 0;
    }

    .jasch-location-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .jasch-location-visual {
        min-height: 420px;
    }

    .jasch-location-list {
        max-width: 700px;
    }

}


@media (max-width: 767px) {

    .jasch-locations {
        padding: 70px 0;
    }

    .jasch-locations-container {
        width: calc(100% - 32px);
    }

    .jasch-locations-heading {
        margin-bottom: 45px;
    }

    .jasch-locations-title {
        font-size: 43px;
    }

    .jasch-locations-intro {
        font-size: 13px;
    }

    .jasch-location-visual {
        min-height: 320px;
    }

    .jasch-location-item {
        grid-template-columns:
            28px
            40px
            1fr
            25px;

        min-height: 80px;

        gap: 8px;
    }

    .jasch-location-item:hover,
    .jasch-location-item.active {
        padding-left: 10px;
        padding-right: 10px;
    }

    .jasch-location-flag {
        width: 34px;
        height: 34px;

        font-size: 18px;
    }

    .jasch-location-info strong {
        font-size: 13px;
    }

    .jasch-location-info small {
        font-size: 7px;
    }

    .jasch-locations-bottom-content {
        grid-template-columns: 1fr;

        gap: 12px;

        padding: 20px 0;
    }

    .jasch-locations-bottom-content strong {
        line-height: 1.5;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .jasch-marker-pulse {
        animation: none;
    }

    .jasch-location-item,
    .jasch-location-arrow,
    .jasch-marker-dot {
        transition: none;
    }

}

    /* =========================================
       CTA SPLIT SECTION
    ========================================== */
    .cta-split-section {
        background-color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .cta-content {
        background-color: var(--navy-primary);
        color: var(--white);
        padding: 6rem 4rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    /* Technical Grid Pattern for Left Side */
    .cta-content::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: 
            linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        pointer-events: none;
        z-index: 0;
    }

    .cta-content > * {
        position: relative;
        z-index: 1;
    }

    .cta-content .eyebrow {
        color: var(--accent-blue);
    }

    .cta-content h2 {
        color: var(--white);
        font-size: clamp(1.8rem, 4vw, 3rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .cta-content p {
        color: rgba(255,255,255,0.8);
        font-size: 1.15rem;
        max-width: 500px;
        margin-bottom: 2.5rem;
    }

    .cta-image {
        position: relative;
        height: 100%;
        min-height: 450px;
        overflow: hidden;
    }

    .cta-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 8s ease; /* Slow zoom effect */
    }

    .cta-split-section:hover .cta-image img {
        transform: scale(1.05);
    }

    /* Subtle dark gradient overlay to blend image with dark side */
    .cta-image-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to right, rgba(6, 21, 37, 0.4) 0%, rgba(6, 21, 37, 0) 50%);
        pointer-events: none;
    }

    /* Responsive Adjustments */
    @media (max-width: 991px) {
        .cta-content {
            padding: 4rem 2rem;
            text-align: center;
            align-items: center;
        }
        .cta-content p {
            margin-left: auto;
            margin-right: auto;
        }
        .cta-image {
            min-height: 300px;
        }
        /* Flip image below content on mobile */
        .cta-split-section .row {
            display: flex;
            flex-direction: column-reverse;
        }
    }

        /* =========================================
       FOOTER OPTIMIZED
    ========================================== */
    footer {
        background-color: var(--navy-primary);
        color: rgba(255,255,255,0.7);
        padding: 5rem 0 2rem 0;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .footer-about .navbar-brand {
        max-width: 140px;
        display: block;
        margin-bottom: 1.5rem;
    }
    
    .footer-about .navbar-brand img {
        width: 100%;
        height: auto;
    }

    .footer-about p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        color: rgba(255,255,255,0.6);
    }

    .footer-contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.85rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(255,255,255,0.8);
    }

    .footer-contact-list li a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-contact-list li a:hover {
        color: var(--accent-blue);
    }

    .footer-contact-list i {
        color: var(--brand-blue);
        font-size: 1rem;
        margin-top: 3px;
    }

    .footer-col h5 {
        color: var(--white);
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
        font-family: var(--font-body);
        font-weight: 600;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-col ul li {
        margin-bottom: 0.85rem;
    }

    .footer-col ul li a {
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s ease, padding-left 0.2s ease;
        position: relative;
    }

    .footer-col ul li a:hover {
        color: var(--accent-blue);
        padding-left: 5px;
    }

    /* Footer Bottom */
    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 4rem;
        padding-top: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.85rem;
    }

    .footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,0.6);
    }

    .footer-bottom-links {
        display: flex;
        gap: 1.5rem;
    }

    .footer-bottom-links a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-bottom-links a:hover { 
        color: var(--white); 
    }

    .footer-social a {
        color: rgba(255,255,255,0.6);
        margin-left: 1.25rem;
        font-size: 1.1rem;
        transition: color 0.2s, transform 0.2s;
        display: inline-block;
    }

    .footer-social a:hover { 
        color: var(--accent-blue); 
        transform: translateY(-3px);
    }

    /* Responsive */
    @media (max-width: 768px) {
        footer {
            padding: 4rem 0 2rem 0;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-bottom-links {
            gap: 1rem;
        }
        .footer-social a {
            margin: 0 0.5rem;
        }
    }

        /* =========================================
       BREADCRUMB BANNER
    ========================================== */
    .page-breadcrumb {
        background-color: var(--navy-primary);
        position: relative;
        padding: 160px 0 100px 0; /* Top padding clears the fixed header */
        overflow: hidden;
        /* Subtle gradient to match the dark sections */
        background-image: linear-gradient(to bottom right, var(--navy-secondary), var(--navy-primary));
    }

    /* Technical Grid Pattern */
    .breadcrumb-grid {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
        z-index: 1;
    }

    .breadcrumb-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-breadcrumb .eyebrow {
        color: var(--accent-blue);
        margin-bottom: 1rem;
    }

    .page-breadcrumb h1 {
        color: var(--white);
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    /* Bootstrap Breadcrumb Overrides */
    .page-breadcrumb .breadcrumb {
        justify-content: center;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .page-breadcrumb .breadcrumb-item {
        font-size: 0.95rem;
        color: rgba(255,255,255,0.6);
    }

    .page-breadcrumb .breadcrumb-item a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: color 0.2s;
    }

    .page-breadcrumb .breadcrumb-item a:hover {
        color: var(--accent-blue);
    }

    /* Custom Separator */
    .page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        content: '\F285'; /* Bootstrap Icons chevron-right */
        font-family: "bootstrap-icons";
        color: rgba(255,255,255,0.3);
        padding: 0 0.75rem;
    }

    .page-breadcrumb .breadcrumb-item.active {
        color: var(--white);
        font-weight: 600;
    }

    /* Bottom Accent Line */
    .breadcrumb-accent {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--brand-blue) 0%, var(--accent-blue) 50%, transparent 100%);
        z-index: 2;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .page-breadcrumb {
            padding: 130px 0 70px 0;
        }
        .page-breadcrumb h1 {
            font-size: 2rem;
        }
    }

            /* =========================================
       ABOUT PAGE ENHANCED STYLES
    ========================================== */

    /* --- Section 1: Introduction --- */
    .about-intro-section {
        padding: 7rem 0;
        background-color: var(--white);
        position: relative;
        overflow: hidden;
    }
    .about-intro-section h2 {
        font-size: clamp(2.2rem, 4vw, 3rem);
        color: var(--navy-primary);
        line-height: 1.1;
    }
    .about-intro-section h3 {
        font-size: 1.5rem;
        color: var(--brand-blue);
        font-weight: 700;
    }
    .about-intro-section p {
        color: var(--tech-grey);
        margin-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.8;
    }
    /* Drop Cap */
    .drop-cap {
        float: left;
        font-size: 3.5rem;
        line-height: 0.8;
        padding-top: 10px;
        padding-right: 10px;
        font-family: var(--font-head);
        font-weight: 800;
        color: var(--navy-primary);
    }
    /* Highlight */
    .text-highlight {
        color: var(--brand-blue);
        font-weight: 700;
    }

    /* Image Frame with Line */
    .intro-frame-wrapper {
        position: relative;
        padding: 0;
    }
    .intro-image-wrapper {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        z-index: 2;
        box-shadow: 0 20px 50px rgba(6, 21, 37, 0.15);
    }
    .intro-image-wrapper img {
        width: 100%;
        height: 550px;
        object-fit: cover;
        transition: transform 0.8s ease;
    }
    .intro-frame-wrapper:hover .intro-image-wrapper img {
        transform: scale(1.05);
    }
    .intro-frame-line {
        position: absolute;
        top: 30px;
        left: 30px;
        width: 100%;
        height: 100%;
        border: 2px solid var(--brand-blue);
        border-radius: 8px;
        z-index: 1;
        transition: all 0.4s ease;
    }
    .intro-frame-wrapper:hover .intro-frame-line {
        top: 20px;
        left: 20px;
    }
    .intro-stat-badge {
        position: absolute;
        bottom: -30px;
        right: -20px;
        background: var(--navy-primary);
        padding: 1.5rem 2rem;
        border-radius: 8px;
        border-left: 4px solid var(--brand-blue);
        box-shadow: 0 15px 35px rgba(0,0,0,0.25);
        z-index: 3;
        text-align: left;
    }
    .intro-stat-badge h4 {
        color: var(--white);
        font-size: 2.5rem;
        margin-bottom: 0;
        line-height: 1;
    }
    .intro-stat-badge p {
        color: rgba(255,255,255,0.8);
        font-size: 0.85rem;
        margin-bottom: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* --- Section 2: Global Presence --- */
    .global-presence-about {
        padding: 7rem 0;
        background-color: var(--off-white);
        position: relative;
    }
    .global-presence-about h2 {
        font-size: clamp(2.2rem, 4vw, 3rem);
        color: var(--navy-primary);
    }
    .global-map-wrapper {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(6, 21, 37, 0.1);
    }
    .global-map-wrapper img {
        width: 100%;
        height: 480px;
        object-fit: cover;
    }
    .map-glow {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to top, rgba(6, 21, 37, 0.6), transparent);
    }

    /* Country Flags Pills */
    .country-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin: 2rem 0;
    }
    .country-pills span {
        background: var(--white);
        border: 1px solid var(--border-grey);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--navy-primary);
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        transition: all 0.3s;
    }
    .country-pills span:hover {
        border-color: var(--brand-blue);
        color: var(--brand-blue);
        transform: translateY(-2px);
    }

    /* --- Section 3: Technology (Dark) --- */
    .tech-about-section {
        padding: 7rem 0;
        position: relative;
        overflow: hidden;
    }
    .tech-glow {
        position: absolute;
        top: 0;
        right: 0;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(0, 110, 219, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }
    .tech-about-section h2 {
        font-size: clamp(2.2rem, 4vw, 3rem);
        color: var(--white);
    }
    .tech-about-section p {
        color: rgba(255,255,255,0.8);
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    /* --- Section 4: Industries Served --- */
    .industries-served-section {
        padding: 7rem 0;
        background-color: var(--white);
    }
    .industries-served-section .section-header h2 {
        font-size: clamp(2.2rem, 4vw, 3rem);
        color: var(--navy-primary);
    }
    .industry-serve-card {
        background: var(--white);
        border: 1px solid var(--border-grey);
        border-radius: 12px;
        padding: 2.5rem 2rem;
        height: 100%;
        position: relative;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        overflow: hidden;
    }
    .industry-serve-card:hover {
        border-color: transparent;
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(6, 21, 37, 0.12);
    }
    /* Card Number Watermark */
    .card-num {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-family: var(--font-head);
        font-size: 3.5rem;
        font-weight: 800;
        color: rgba(0, 0, 0, 0.03);
        transition: color 0.3s;
        z-index: 0;
    }
    .industry-serve-card:hover .card-num {
        color: rgba(0, 110, 219, 0.1);
    }
    .serve-icon {
        width: 55px;
        height: 55px;
        background: rgba(0, 110, 219, 0.1);
        color: var(--brand-blue);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        transition: all 0.4s;
        position: relative;
        z-index: 1;
    }
    .industry-serve-card:hover .serve-icon {
        background: var(--brand-blue);
        color: var(--white);
        transform: scale(1.1);
        border-radius: 50%;
    }
    .industry-serve-card h4 {
        font-size: 1.15rem;
        color: var(--navy-primary);
        margin-bottom: 1rem;
        font-weight: 700;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    .industry-serve-card:hover h4 {
        color: var(--brand-blue);
    }
    .industry-serve-card p {
        font-size: 0.95rem;
        color: var(--tech-grey);
        margin-bottom: 0;
        position: relative;
        z-index: 1;
        line-height: 1.7;
    }

    /* --- Section 5: Approach & Relationships --- */
    .approach-section {
        padding: 7rem 0;
        background-color: var(--off-white);
    }
    .approach-card {
        background: var(--white);
        padding: 3rem;
        border-radius: 12px;
        height: 100%;
        border-top: 4px solid var(--brand-blue);
        box-shadow: 0 10px 30px rgba(6, 21, 37, 0.05);
        transition: transform 0.3s;
    }
    .approach-card:hover {
        transform: translateY(-5px);
    }
    .approach-section h2 {
        font-size: clamp(1.8rem, 3vw, 2.3rem);
        color: var(--navy-primary);
        margin-bottom: 1.5rem;
    }
    .approach-section p {
        color: var(--tech-grey);
        margin-bottom: 1rem;
        line-height: 1.8;
    }

    /* --- Section 6: Looking Ahead (Dark) --- */
    .looking-ahead-section {
        padding: 7rem 0;
        position: relative;
        overflow: hidden;
    }
    .looking-ahead-section h2 {
        font-size: clamp(2.2rem, 4vw, 3rem);
        color: var(--white);
        margin-bottom: 2rem;
    }
    .looking-ahead-section p {
        color: rgba(255,255,255,0.8);
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    .ahead-quote {
        position: relative;
        margin-top: 4rem;
        padding: 3rem 2rem;
        background: rgba(255,255,255,0.03);
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.1);
    }
    .quote-icon {
        font-size: 4rem;
        color: var(--brand-blue);
        opacity: 0.5;
        display: block;
        margin-bottom: 1rem;
    }
    .ahead-quote p {
        font-size: 1.4rem !important;
        font-style: italic;
        color: var(--white) !important;
        font-family: var(--font-head);
        font-weight: 600;
        margin-bottom: 0;
        line-height: 1.5;
    }

    /* Responsive Adjustments */
    @media (max-width: 991px) {
        .intro-frame-wrapper {
            margin-top: 4rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .intro-image-wrapper img {
            height: 450px;
        }
        .global-map-wrapper {
            margin-bottom: 3rem;
        }
        .approach-card {
            margin-bottom: 2rem;
        }
    }
    @media (max-width: 768px) {
        .about-intro-section, .global-presence-about, .tech-about-section, .industries-served-section, .approach-section, .looking-ahead-section {
            padding: 4rem 0;
        }
        .intro-stat-badge {
            right: 10px;
            bottom: -20px;
            padding: 1rem 1.5rem;
        }
        .intro-stat-badge h4 { font-size: 1.8rem; }
        .approach-card { padding: 2rem 1.5rem; }
        .ahead-quote { padding: 2rem 1.5rem; }
        .ahead-quote p { font-size: 1.1rem !important; }
    }

    /* =========================================================
   JASCH ABOUT INTRO
   Dark Industrial About Section
   All styles scoped to .jasch-about-intro
   ========================================================= */

.jasch-about-intro {
    --jasch-navy: #061525;
    --jasch-navy-2: #091c30;
    --jasch-blue: #006edb;
    --jasch-blue-light: #1597ff;
    --jasch-white: #ffffff;
    --jasch-text: #d5dee8;
    --jasch-muted: #9aaabd;
    --jasch-border: rgba(255, 255, 255, 0.14);

    position: relative;
    overflow: hidden;

    padding: 120px 0;

    background:
        radial-gradient(
            circle at 8% 50%,
            rgba(0, 110, 219, 0.08),
            transparent 28%
        ),
        var(--jasch-navy);

    color: var(--jasch-white);
}


/* =========================================================
   TECHNICAL BACKGROUND
   ========================================================= */

.jasch-about-intro::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 240px;
    height: 240px;

    opacity: 0.25;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );

    background-size: 24px 24px;

    mask-image: linear-gradient(
        135deg,
        #000,
        transparent
    );

    pointer-events: none;
}


.jasch-about-intro::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    bottom: -250px;

    border: 1px solid rgba(0, 110, 219, 0.12);
    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(0, 110, 219, 0.025),
        0 0 0 140px rgba(0, 110, 219, 0.02);

    pointer-events: none;
}


/* =========================================================
   MAIN GRID
   ========================================================= */

.jasch-about-intro .jasch-about-intro__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 85px;
}


/* =========================================================
   LEFT IMAGE
   ========================================================= */

.jasch-about-intro .jasch-about-intro__visual {
    position: relative;

    min-width: 0;
}


.jasch-about-intro .jasch-about-intro__image-box {
    position: relative;

    width: 100%;
    min-height: 680px;

    overflow: hidden;

    background: #020b14;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 6px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35);
}


/* Image */

.jasch-about-intro .jasch-about-intro__image {
    display: block;

    width: 100%;
    height: 680px;

    object-fit: cover;

    object-position: center;

    filter:
        brightness(0.72)
        contrast(1.08)
        saturate(0.85);

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}


.jasch-about-intro
.jasch-about-intro__image-box:hover
.jasch-about-intro__image {
    transform: scale(1.035);

    filter:
        brightness(0.78)
        contrast(1.08)
        saturate(0.95);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.jasch-about-intro .jasch-about-intro__image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(2, 12, 23, 0.12) 20%,
            rgba(2, 12, 23, 0.18) 45%,
            rgba(2, 12, 23, 0.88) 100%
        );

    pointer-events: none;
}


/* Blue glow */

.jasch-about-intro .jasch-about-intro__image-box::after {
    content: "";

    position: absolute;

    left: -100px;
    bottom: 80px;

    width: 280px;
    height: 280px;

    background: rgba(0, 110, 219, 0.15);

    filter: blur(80px);

    pointer-events: none;
}


/* =========================================================
   TECHNICAL CORNER LINES
   ========================================================= */

.jasch-about-intro .jasch-about-intro__corner {
    position: absolute;

    z-index: 3;

    width: 55px;
    height: 55px;

    pointer-events: none;
}


.jasch-about-intro .jasch-about-intro__corner--top {
    top: -1px;
    right: -1px;

    border-top: 2px solid var(--jasch-blue);
    border-right: 2px solid var(--jasch-blue);
}


.jasch-about-intro .jasch-about-intro__corner--bottom {
    left: -1px;
    bottom: -1px;

    border-left: 2px solid var(--jasch-blue);
    border-bottom: 2px solid var(--jasch-blue);
}


/* =========================================================
   STATISTICS PANEL
   ========================================================= */

.jasch-about-intro .jasch-about-intro__stats {
    position: absolute;

    z-index: 5;

    right: 32px;
    bottom: 32px;
    left: 32px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    background:
        rgba(3, 16, 30, 0.94);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);
}


.jasch-about-intro .jasch-about-intro__stat {
    position: relative;

    min-width: 0;

    padding: 22px 24px 24px;
}


.jasch-about-intro .jasch-about-intro__stat
+ .jasch-about-intro__stat {
    border-left: 1px solid var(--jasch-border);
}


/* Stat icon */

.jasch-about-intro .jasch-about-intro__stat-icon {
    width: 29px;
    height: 29px;

    margin-bottom: 17px;
}


.jasch-about-intro .jasch-about-intro__stat-icon svg {
    display: block;

    width: 100%;
    height: 100%;

    fill: none;

    stroke: var(--jasch-blue-light);

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Stat number */

.jasch-about-intro .jasch-about-intro__stat strong {
    display: block;

    margin-bottom: 7px;

    color: var(--jasch-white);

    font-size: clamp(28px, 2.5vw, 38px);
    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.03em;
}


/* Stat label */

.jasch-about-intro .jasch-about-intro__stat span {
    display: block;

    max-width: 150px;

    color: var(--jasch-muted);

    font-size: 12px;
    font-weight: 500;

    line-height: 1.45;
}


/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.jasch-about-intro .jasch-about-intro__content {
    min-width: 0;

    max-width: 760px;
}


/* Eyebrow */

.jasch-about-intro .jasch-about-intro__eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--jasch-blue-light);

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.16em;
}


.jasch-about-intro .jasch-about-intro__eyebrow::after {
    content: "";

    width: 55px;
    height: 1px;

    background: var(--jasch-blue);
}


/* =========================================================
   TITLE
   ========================================================= */

.jasch-about-intro .jasch-about-intro__title {
    max-width: 700px;

    margin: 0;

    color: var(--jasch-white);

    font-size: clamp(46px, 5vw, 48px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.055em;
}


.jasch-about-intro .jasch-about-intro__title span {
    display: block;

    color: var(--jasch-blue-light);
}


/* =========================================================
   SMALL BLUE LINE
   ========================================================= */

.jasch-about-intro .jasch-about-intro__line {
    width: 62px;
    height: 3px;

    margin: 30px 0 25px;

    background: var(--jasch-blue);
}


/* =========================================================
   COMPANY NAME
   ========================================================= */

.jasch-about-intro .jasch-about-intro__company {
    margin: 0 0 27px;

    color: var(--jasch-blue-light);

    font-size: 23px;

    font-weight: 700;

    line-height: 1.35;
}


/* =========================================================
   BODY COPY
   ========================================================= */

.jasch-about-intro .jasch-about-intro__copy {
    max-width: 720px;
}


.jasch-about-intro .jasch-about-intro__copy p {
    margin: 0 0 20px;

    color: var(--jasch-text);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.72;
}


.jasch-about-intro .jasch-about-intro__copy p:last-child {
    margin-bottom: 0;
}


.jasch-about-intro .jasch-about-intro__copy strong {
    color: var(--jasch-white);

    font-weight: 700;
}


/* =========================================================
   BUTTON
   ========================================================= */

.jasch-about-intro .jasch-about-intro__button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 22px;

    min-height: 52px;

    margin-top: 28px;

    padding: 0 23px;

    color: var(--jasch-white);

    background: var(--jasch-blue);

    border: 1px solid var(--jasch-blue);

    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.07em;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.jasch-about-intro .jasch-about-intro__button svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}


.jasch-about-intro .jasch-about-intro__button:hover {
    color: var(--jasch-white);

    background: var(--jasch-blue-light);

    border-color: var(--jasch-blue-light);

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(0, 110, 219, 0.25);
}


.jasch-about-intro .jasch-about-intro__button:hover svg {
    transform: translateX(5px);
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1199.98px) {

    .jasch-about-intro {
        padding: 100px 0;
    }


    .jasch-about-intro .jasch-about-intro__grid {
        gap: 55px;
    }


    .jasch-about-intro .jasch-about-intro__image-box,
    .jasch-about-intro .jasch-about-intro__image {
        min-height: 620px;
        height: 620px;
    }


    .jasch-about-intro .jasch-about-intro__stats {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }


    .jasch-about-intro .jasch-about-intro__stat {
        padding: 18px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .jasch-about-intro {
        padding: 80px 0;
    }


    .jasch-about-intro .jasch-about-intro__grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    .jasch-about-intro .jasch-about-intro__visual {
        max-width: 720px;

        margin: 0 auto;

        width: 100%;
    }


    .jasch-about-intro .jasch-about-intro__content {
        max-width: 720px;

        margin: 0 auto;
    }


    .jasch-about-intro .jasch-about-intro__image-box,
    .jasch-about-intro .jasch-about-intro__image {
        min-height: 600px;
        height: 600px;
    }


    .jasch-about-intro .jasch-about-intro__title {
        font-size: 48px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .jasch-about-intro {
        padding: 65px 0;
    }


    .jasch-about-intro .jasch-about-intro__grid {
        gap: 48px;
    }


    .jasch-about-intro .jasch-about-intro__image-box,
    .jasch-about-intro .jasch-about-intro__image {
        min-height: 520px;
        height: 520px;
    }


    .jasch-about-intro .jasch-about-intro__stats {
        right: 15px;
        bottom: 15px;
        left: 15px;

        grid-template-columns: 1fr;
    }


    .jasch-about-intro .jasch-about-intro__stat {
        display: grid;

        grid-template-columns: 34px 1fr;

        column-gap: 12px;

        padding: 14px 17px;
    }


    .jasch-about-intro .jasch-about-intro__stat
    + .jasch-about-intro__stat {
        border-top: 1px solid var(--jasch-border);
        border-left: 0;
    }


    .jasch-about-intro .jasch-about-intro__stat-icon {
        grid-row: span 2;

        width: 25px;
        height: 25px;

        margin: 0;
    }


    .jasch-about-intro .jasch-about-intro__stat strong {
        font-size: 25px;
    }


    .jasch-about-intro .jasch-about-intro__stat span {
        max-width: none;

        font-size: 11px;
    }


    .jasch-about-intro .jasch-about-intro__title {
        font-size: 45px;
    }


    .jasch-about-intro .jasch-about-intro__company {
        font-size: 19px;
    }


    .jasch-about-intro .jasch-about-intro__copy p {
        font-size: 15px;

        line-height: 1.7;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 479.98px) {

    .jasch-about-intro {
        padding: 55px 0;
    }


    .jasch-about-intro .jasch-about-intro__title {
        font-size: 38px;

        letter-spacing: -0.045em;
    }


    .jasch-about-intro .jasch-about-intro__image-box,
    .jasch-about-intro .jasch-about-intro__image {
        min-height: 450px;
        height: 450px;
    }


    .jasch-about-intro .jasch-about-intro__eyebrow {
        font-size: 11px;
    }


    .jasch-about-intro .jasch-about-intro__company {
        font-size: 18px;
    }


    .jasch-about-intro .jasch-about-intro__button {
        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .jasch-about-intro *,
    .jasch-about-intro *::before,
    .jasch-about-intro *::after {
        transition: none !important;
        animation: none !important;
    }

}



/* =========================================================
   JASCH PRODUCT DETAIL
   Dark Industrial Technology Theme
========================================================= */

.jasch-product-detail {

    --jasch-black: #050d16;
    --jasch-dark: #071321;
    --jasch-dark-2: #0b1b2c;
    --jasch-card: #10263a;

    --jasch-blue: #087cff;
    --jasch-blue-light: #2d91ff;

    --jasch-white: #ffffff;
    --jasch-text: #d8e1eb;
    --jasch-muted: #8998aa;

    --jasch-border: rgba(255,255,255,.10);

    background: var(--jasch-dark);
    color: var(--jasch-white);

}


/* =========================================================
   RESET / GLOBAL
========================================================= */

.jasch-product-detail *,
.jasch-product-detail *::before,
.jasch-product-detail *::after {
    box-sizing: border-box;
}


.jasch-product-detail img {
    display: block;

    max-width: 100%;
}


.jasch-product-detail a {
    text-decoration: none;
}


.jasch-product-detail button {
    font-family: inherit;
}


/* =========================================================
   HERO
========================================================= */

.jasch-product-detail__hero {

    position: relative;

    padding: 110px 0 100px;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(8,124,255,.15),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #06111e 0%,
            #091a2b 55%,
            #071321 100%
        );
}


.jasch-product-detail__hero::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    opacity: .6;
}


.jasch-product-detail__hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, .95fr);

    gap: 80px;

    align-items: center;
}


/* =========================================================
   GALLERY
========================================================= */

.jasch-product-detail__gallery {
    min-width: 0;
}


.jasch-product-detail__main-image {

    position: relative;

    overflow: hidden;

    background: var(--jasch-card);

    border: 1px solid var(--jasch-border);

    border-radius: 18px;
}


.jasch-product-detail__main-image img {

    width: 100%;

/*     aspect-ratio: 4 / 3; */

    object-fit: cover;

    transition: transform .6s ease;
}


.jasch-product-detail__main-image:hover img {

    transform: scale(1.025);
}


.jasch-product-detail__zoom {

    position: absolute;

    right: 20px;

    bottom: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 45px;

    height: 45px;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    background: rgba(7,19,33,.85);

    color: #fff;

    font-size: 22px;

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease;
}


.jasch-product-detail__zoom:hover {

    background: var(--jasch-blue);

    border-color: var(--jasch-blue);
}


/* =========================================================
   THUMBNAILS
========================================================= */

.jasch-product-detail__thumbnails {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    margin-top: 14px;
}


.jasch-product-detail__thumbnail {

    position: relative;

    overflow: hidden;

    padding: 0;

    border: 1px solid var(--jasch-border);

    border-radius: 8px;

    background: var(--jasch-card);

    cursor: pointer;

    transition:
        border-color .25s ease,
        opacity .25s ease;
}


.jasch-product-detail__thumbnail img {

    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;

    opacity: .65;

    transition: opacity .25s ease;
}


.jasch-product-detail__thumbnail:hover img,
.jasch-product-detail__thumbnail.is-active img {

    opacity: 1;
}


.jasch-product-detail__thumbnail.is-active {

    border-color: var(--jasch-blue);
}


.jasch-product-detail__thumbnail--video {

    position: relative;
}


.jasch-product-detail__play {

    position: absolute;

    top: 50%;
    left: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: var(--jasch-blue);

    color: #fff;

    font-size: 10px;

    transform: translate(-50%, -50%);
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.jasch-product-detail__information {

    position: relative;
}


.jasch-product-detail__eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--jasch-blue);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.jasch-product-detail__eyebrow::before {

    content: "";

    width: 35px;

    height: 1px;

    background: var(--jasch-blue);
}


.jasch-product-detail__title {

    max-width: 700px;

    margin: 0;

    color: var(--jasch-white);

    font-size: clamp(42px, 5vw, 48px);

    font-weight: 700;

    line-height: 1.02;

    letter-spacing: -3px;
}


.jasch-product-detail__short-description {

    max-width: 650px;

    margin-top: 28px;
}


.jasch-product-detail__short-description p {

    margin-bottom: 10px;

    color: var(--jasch-muted);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.jasch-product-detail__highlights {

    margin-top: 35px;

    border-top: 1px solid var(--jasch-border);
}


.jasch-product-detail__highlight {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 17px 0;

    border-bottom: 1px solid var(--jasch-border);
}


.jasch-product-detail__highlight-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    flex: 0 0 38px;

    background: rgba(8,124,255,.10);

    border: 1px solid rgba(8,124,255,.30);

    color: var(--jasch-blue);

    font-size: 9px;

    font-weight: 700;
}


.jasch-product-detail__highlight strong {

    display: block;

    color: #fff;

    font-size: 14px;
}


.jasch-product-detail__highlight div span {

    display: block;

    margin-top: 3px;

    color: var(--jasch-muted);

    font-size: 12px;
}


/* =========================================================
   BUTTONS
========================================================= */

.jasch-product-detail__actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


.jasch-product-detail__button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 28px;

    min-height: 54px;

    padding: 0 24px;

    background: var(--jasch-blue);

    border: 1px solid var(--jasch-blue);

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}


.jasch-product-detail__button span {

    font-size: 18px;

    transition: transform .25s ease;
}


.jasch-product-detail__button:hover {

    color: #fff;

    background: var(--jasch-blue-light);

    transform: translateY(-2px);
}


.jasch-product-detail__button:hover span {

    transform: translateX(4px);
}


.jasch-product-detail__button--outline {

    background: transparent;

    border-color: rgba(255,255,255,.22);
}


.jasch-product-detail__button--outline:hover {

    background: rgba(255,255,255,.05);

    border-color: var(--jasch-blue);
}


/* =========================================================
   PRODUCT META
========================================================= */

.jasch-product-detail__meta {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid var(--jasch-border);
}


.jasch-product-detail__meta div span {

    display: block;

    margin-bottom: 7px;

    color: var(--jasch-muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.3px;
}


.jasch-product-detail__meta div strong {

    color: #fff;

    font-size: 13px;
}


/* =========================================================
   BOOTSTRAP PRODUCT TABS
========================================================= */

.jasch-product-detail__tabs-nav {

    display: flex;

    flex-wrap: nowrap;

    overflow-x: auto;

    margin: 0;

    padding: 0;

    background: rgba(7, 19, 33, .96);

    border-top: 1px solid var(--jasch-border);

    border-bottom: 1px solid var(--jasch-border);

    scrollbar-width: none;
}


.jasch-product-detail__tabs-nav::-webkit-scrollbar {
    display: none;
}


/* Bootstrap nav item */

.jasch-product-detail__tabs-nav .nav-item {

    flex: 0 0 auto;
}


/* Bootstrap nav-link */

.jasch-product-detail__tabs-nav .nav-link {

    position: relative;

    display: block;

    padding: 22px 25px;

    border: 0 !important;

    border-radius: 0 !important;

    background: transparent !important;

    color: var(--jasch-muted) !important;

    font-size: 16px;

    font-weight: 600;

    box-shadow: none !important;

    transition: color .25s ease;
}


/* Active underline */

.jasch-product-detail__tabs-nav .nav-link::after {

    content: "";

    position: absolute;

    right: 25px;

    bottom: -1px;

    left: 25px;

    height: 2px;

    background: var(--jasch-blue);

    transform: scaleX(0);

    transition: transform .25s ease;
}


/* Hover */

.jasch-product-detail__tabs-nav .nav-link:hover {

    color: #fff !important;
}


/* Active */

.jasch-product-detail__tabs-nav .nav-link.active {

    color: #fff !important;

    background: transparent !important;
}


.jasch-product-detail__tabs-nav .nav-link.active::after {

    transform: scaleX(1);
}


/* Bootstrap tab content */

.jasch-product-detail__tab-content {

    padding-top: 30px;
	padding-bottom: 30px;
}


/* Bootstrap fade */

.jasch-product-detail__tab-content .tab-pane {

    color: var(--jasch-text);
}


/* Mobile */

@media (max-width: 767px) {

    .jasch-product-detail__tabs-nav .nav-link {

        padding: 18px 17px;

        font-size: 14px;
    }


    .jasch-product-detail__tabs-nav .nav-link::after {

        right: 17px;

        left: 17px;
    }


    .jasch-product-detail__tab-content {

        padding-top: 50px;
    }

}


/* =========================================================
   SECTION LABEL
========================================================= */

.jasch-product-detail__section-label {

    display: block;

    margin-bottom: 18px;

    color: var(--jasch-blue);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   CONTENT GRID
========================================================= */

/* .jasch-product-detail__content-grid {

    display: grid;

    grid-template-columns:
        minmax(0, .8fr)
        minmax(0, 1.2fr);

    gap: 100px;
} */


.jasch-product-detail__content-grid h2,
.jasch-product-detail__technology-grid h2 {

    max-width: 550px;

    margin: 0;

    color: #fff;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -2px;
}


.jasch-product-detail__rich-content {

    color: var(--jasch-muted);

    font-size: 16px;

    line-height: 1.9;
}


.jasch-product-detail__rich-content p {

    margin: 0 0 22px;
}


.jasch-product-detail__rich-content p:last-child {

    margin-bottom: 0;
}


/* =========================================================
   CONTENT HEADING
========================================================= */

.jasch-product-detail__content-heading {

    margin-bottom: 45px;
}


.jasch-product-detail__content-heading h2 {

    max-width: 700px;

    margin: 0;

    color: #fff;

    font-size: clamp(34px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;
}


/* =========================================================
   FEATURES
========================================================= */

.jasch-product-detail__feature-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid var(--jasch-border);

    border-left: 1px solid var(--jasch-border);
}


.jasch-product-detail__feature-card {

    min-height: 260px;

    padding: 30px;

    border-right: 1px solid var(--jasch-border);

    border-bottom: 1px solid var(--jasch-border);

    background: rgba(255,255,255,.01);

    transition:
        background .3s ease,
        transform .3s ease;
}


.jasch-product-detail__feature-card:hover {

    background: rgba(8,124,255,.05);

    transform: translateY(-4px);
}


.jasch-product-detail__feature-card > span {

    display: block;

    margin-bottom: 55px;

    color: var(--jasch-blue);

    font-size: 10px;

    font-weight: 700;
}


.jasch-product-detail__feature-card h3 {

    margin: 0 0 14px;

    color: #fff;

    font-size: 19px;
}


.jasch-product-detail__feature-card p {

    margin: 0;

    color: var(--jasch-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   APPLICATIONS
========================================================= */

.jasch-product-detail__application-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid var(--jasch-border);

    border-left: 1px solid var(--jasch-border);
}


.jasch-product-detail__application-grid div {

    display: flex;

    align-items: center;

    gap: 18px;

    min-height: 100px;

    padding: 20px;

    border-right: 1px solid var(--jasch-border);

    border-bottom: 1px solid var(--jasch-border);

    transition:
        background .25s ease,
        padding-left .25s ease;
}


.jasch-product-detail__application-grid div:hover {

    padding-left: 30px;

    background: rgba(8,124,255,.05);
}


.jasch-product-detail__application-grid span {

    color: var(--jasch-blue);

    font-size: 10px;

    font-weight: 700;
}


.jasch-product-detail__application-grid strong {

    color: #fff;

    font-size: 14px;
}


/* =========================================================
   TECHNOLOGY
========================================================= */

.jasch-product-detail__technology-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.jasch-product-detail__technology-image {

    overflow: hidden;

    border-radius: 16px;

    border: 1px solid var(--jasch-border);
}


.jasch-product-detail__technology-image img {

    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;
}


/* =========================================================
   SPECIFICATIONS
========================================================= */

.jasch-product-detail__specifications {

    border-top: 1px solid var(--jasch-border);
}


.jasch-product-detail__spec-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;

    padding: 22px 25px;

    border-bottom: 1px solid var(--jasch-border);
}


.jasch-product-detail__spec-row span {

    color: var(--jasch-muted);

    font-size: 13px;
}


.jasch-product-detail__spec-row strong {

    color: #fff;

    font-size: 13px;

    font-weight: 500;
}


/* =========================================================
   DOWNLOADS
========================================================= */

.jasch-product-detail__downloads {

    border-top: 1px solid var(--jasch-border);
}


.jasch-product-detail__download {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid var(--jasch-border);

    color: #fff;

    transition: padding-left .25s ease;
}


.jasch-product-detail__download:hover {

    padding-left: 15px;

    color: #fff;
}


.jasch-product-detail__download-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 50px;

    height: 50px;

    flex: 0 0 50px;

    background: rgba(8,124,255,.08);

    border: 1px solid rgba(8,124,255,.3);

    color: var(--jasch-blue);

    font-size: 9px;

    font-weight: 700;
}


.jasch-product-detail__download strong {

    display: block;

    margin-bottom: 4px;

    font-size: 14px;
}


.jasch-product-detail__download div span {

    color: var(--jasch-muted);

    font-size: 11px;
}


.jasch-product-detail__download-arrow {

    margin-left: auto;

    color: var(--jasch-blue);

    font-size: 20px;
}


/* =========================================================
   RELATED PRODUCTS
========================================================= */

.jasch-product-detail__related {

    padding: 110px 0;

    background: #081625;
}


.jasch-product-detail__related-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}


.jasch-product-detail__related-heading h2 {

    margin: 0;

    color: #fff;

    font-size: clamp(38px, 4vw, 48px);

    line-height: 1;

    letter-spacing: -2px;
}


.jasch-product-detail__view-all {

    color: var(--jasch-blue);

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1px;
}


.jasch-product-detail__view-all:hover {

    color: var(--jasch-blue-light);
}


/* =========================================================
   PRODUCT CARDS
========================================================= */

.jasch-product-detail__product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.jasch-product-detail__product-card {

    display: block;

    overflow: hidden;

    background: var(--jasch-dark-2);

    border: 1px solid var(--jasch-border);

    color: #fff;

    transition:
        transform .3s ease,
        border-color .3s ease;
}


.jasch-product-detail__product-card:hover {

    color: #fff;

    transform: translateY(-6px);

    border-color: rgba(8,124,255,.45);
}


.jasch-product-detail__product-image {

    overflow: hidden;

    aspect-ratio: 16 / 10;
}


.jasch-product-detail__product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}


.jasch-product-detail__product-card:hover
.jasch-product-detail__product-image img {

    transform: scale(1.05);
}


.jasch-product-detail__product-content {

    padding: 28px;
}


.jasch-product-detail__product-content > span {

    display: block;

    margin-bottom: 10px;

    color: var(--jasch-blue);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.jasch-product-detail__product-content h3 {

    margin: 0 0 25px;

    color: #fff;

    font-size: 30px;

    line-height: 1.25;
}


.jasch-product-detail__product-content strong {

    color: var(--jasch-blue);

    font-size: 16px;

    letter-spacing: .8px;

    transition: color .25s ease;
}


.jasch-product-detail__product-card:hover
.jasch-product-detail__product-content strong {

    color: var(--jasch-blue);
}


/* =========================================================
   CTA
========================================================= */

.jasch-product-detail__cta {

    padding: 90px 0;

    background:

        radial-gradient(
            circle at 80% 50%,
            rgba(255,255,255,.10),
            transparent 35%
        ),

        #006edb;
}


.jasch-product-detail__cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}


.jasch-product-detail__cta-inner > div {

    max-width: 700px;
}


.jasch-product-detail__cta-inner > div > span {

    display: block;

    margin-bottom: 14px;

    color: rgba(255,255,255,.75);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.jasch-product-detail__cta h2 {

    margin: 0;

    color: #fff;

    font-size: clamp(38px, 4vw, 60px);

    line-height: 1;

    letter-spacing: -2px;
}


.jasch-product-detail__cta p {

    margin: 20px 0 0;

    color: rgba(255,255,255,.78);

    font-size: 15px;

    line-height: 1.7;
}


.jasch-product-detail__button--dark {

    flex: 0 0 auto;

    background: #061321;

    border-color: #061321;
}


.jasch-product-detail__button--dark:hover {

    background: #0c2032;

    border-color: #0c2032;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .jasch-product-detail__hero-grid {

        gap: 50px;
    }


    .jasch-product-detail__title {

        font-size: 48px;
    }


    .jasch-product-detail__feature-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 991px) {

    .jasch-product-detail__hero {

        padding: 75px 0;
    }


    .jasch-product-detail__hero-grid {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .jasch-product-detail__title {

        font-size: 48px;
    }


    .jasch-product-detail__content-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .jasch-product-detail__technology-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .jasch-product-detail__application-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .jasch-product-detail__product-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .jasch-product-detail__cta-inner {

        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 767px) {

    .jasch-product-detail__hero {

        padding: 55px 0 70px;
    }


    .jasch-product-detail__title {

        font-size: 43px;

        letter-spacing: -2px;
    }


    .jasch-product-detail__short-description p {

        font-size: 15px;
    }


    .jasch-product-detail__actions {

        flex-direction: column;
    }


    .jasch-product-detail__button {

        width: 100%;
    }


    .jasch-product-detail__meta {

        grid-template-columns: 1fr;
    }


    .jasch-product-detail__tabs-section {

        padding-bottom: 80px;
    }


    .jasch-product-detail__tab-content {

        padding-top: 50px;
    }


    .jasch-product-detail__feature-grid {

        grid-template-columns: 1fr;
    }


    .jasch-product-detail__feature-card {

        min-height: auto;
    }


    .jasch-product-detail__application-grid {

        grid-template-columns: 1fr;
    }


    .jasch-product-detail__spec-row {

        grid-template-columns: 1fr;

        gap: 8px;
    }


    .jasch-product-detail__related {

        padding: 80px 0;
    }


    .jasch-product-detail__related-heading {

        align-items: flex-start;

        flex-direction: column;
    }


    .jasch-product-detail__product-grid {

        grid-template-columns: 1fr;
    }


    .jasch-product-detail__cta {

        padding: 70px 0;
    }


    .jasch-product-detail__cta h2 {

        font-size: 40px;
    }

}


@media (max-width: 575px) {

    .jasch-product-detail__thumbnails {

        gap: 7px;
    }


    .jasch-product-detail__title {

        font-size: 38px;
    }


    .jasch-product-detail__hero-grid {

        gap: 40px;
    }


    .jasch-product-detail__highlight {

        align-items: flex-start;
    }


    .jasch-product-detail__tab {

        padding: 18px 17px;
    }


    .jasch-product-detail__tab::after {

        right: 17px;
        left: 17px;
    }


    .jasch-product-detail__content-grid h2,
    .jasch-product-detail__technology-grid h2,
    .jasch-product-detail__content-heading h2 {

        font-size: 34px;
    }


    .jasch-product-detail__product-content {

        padding: 22px;
    }

}

/* =========================================================
   SIMPLE TAB CONTENT
========================================================= */

.jasch-product-detail__tab-content h2 {

    margin: 0 0 22px;

    color: #fff;

    font-size: 32px;

    line-height: 1.2;
}


.jasch-product-detail__tab-content h2:not(:first-child) {

    margin-top: 55px;
}


.jasch-product-detail__tab-content p {

    max-width: 900px;

    margin: 0 0 18px;

    color: var(--jasch-muted);

    font-size: 15px;

    line-height: 1.8;
}


.jasch-product-detail__tab-content ul {

    max-width: 900px;

    margin: 0 0 30px;

    padding-left: 20px;

    color: var(--jasch-muted);
}


.jasch-product-detail__tab-content li {

    margin-bottom: 9px;

    padding-left: 5px;

    font-size: 14px;

    line-height: 1.6;
}


.jasch-product-detail__tab-content li::marker {

    color: var(--jasch-blue);
}


/* =========================================================
   SPECIFICATION TABLE
========================================================= */

.jasch-product-detail__spec-table {

    width: 100%;

    max-width: 1000px;

    margin: 0 0 40px;

    border-collapse: collapse;

    border-top: 1px solid var(--jasch-border);
}


.jasch-product-detail__spec-table th,
.jasch-product-detail__spec-table td {

    padding: 15px 18px;

    border-bottom: 1px solid var(--jasch-border);

    text-align: left;

    font-size: 13px;

    line-height: 1.5;
}


.jasch-product-detail__spec-table th {

    width: 40%;

    color: #fff;

    font-weight: 600;

    background: rgba(255,255,255,.025);
}


.jasch-product-detail__spec-table td {

    color: var(--jasch-muted);
}


.jasch-product-detail__tab-content a {

    color: var(--jasch-blue);

    font-weight: 600;

    text-decoration: none;
}


.jasch-product-detail__tab-content a:hover {

    color: var(--jasch-blue-light);
}


@media (max-width: 767px) {

    .jasch-product-detail__tab-content h2 {

        font-size: 27px;
    }


    .jasch-product-detail__tab-content p {

        font-size: 14px;
    }


    .jasch-product-detail__spec-table th,
    .jasch-product-detail__spec-table td {

        padding: 12px;

        font-size: 12px;
    }


    .jasch-product-detail__spec-table th {

        width: 45%;
    }

}

/* =========================================================
   CONTACT HERO
========================================================= */
/* =========================================================
   JASCH CONTACT PAGE
========================================================= */
/* =========================================================
   JASCH CONTACT PAGE
========================================================= */

.jasch-contact-page {

    --contact-bg: #061525;
    --contact-bg-2: #091c30;
    --contact-bg-3: #0d243a;

    --contact-blue: #087cff;
    --contact-blue-light: #1597ff;

    --contact-white: #ffffff;
    --contact-text: #d5dee8;
    --contact-muted: #8fa0b3;

    --contact-border: rgba(255, 255, 255, 0.12);
    --contact-border-light: rgba(6, 21, 37, 0.12);

    --contact-radius: 4px;

    background: var(--contact-bg);

    color: var(--contact-text);

    overflow: hidden;
}


/* =========================================================
   GLOBAL CONTACT PAGE
========================================================= */

.jasch-contact-page * {
    box-sizing: border-box;
}


.jasch-contact-page a {
    text-decoration: none;
}


.jasch-contact-page address {
    margin: 0;
}


/* =========================================================
   CONTACT HERO
========================================================= */

.jasch-contact-page .jasch-contact-hero {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    padding: 100px 0;

    background:
        linear-gradient(
            90deg,
            rgba(6, 21, 37, 0.98),
            rgba(6, 21, 37, 0.82)
        ),
        url("../images/contact-hero.jpg") center / cover no-repeat;

    border-bottom: 1px solid var(--contact-border);

}


/* Technical grid */

.jasch-contact-page .jasch-contact-hero::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to right,
        black,
        transparent 75%
    );
}


.jasch-contact-page .jasch-contact-hero__content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}


.jasch-contact-page .jasch-contact-hero .jasch-product-detail__section-label {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--contact-blue-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.jasch-contact-page .jasch-contact-hero .jasch-product-detail__section-label::before {

    content: "";

    width: 32px;

    height: 1px;

    background: var(--contact-blue);
}


.jasch-contact-page .jasch-contact-hero h1 {

    max-width: 850px;

    margin: 0;

    color: var(--contact-white);

    font-size: clamp(48px, 6vw, 82px);

    font-weight: 700;

    line-height: .98;

    letter-spacing: -3px;
}


.jasch-contact-page .jasch-contact-hero p {

    max-width: 650px;

    margin: 28px 0 0;

    color: var(--contact-muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.jasch-contact-page .jasch-contact-section-heading {

    max-width: 760px;

    margin-bottom: 55px;
}


.jasch-contact-page .jasch-contact-section-heading
.jasch-product-detail__section-label {

    display: block;

    margin-bottom: 15px;

    color: var(--contact-blue);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.jasch-contact-page .jasch-contact-section-heading h2 {

margin: 0;

color: var(--contact-white);

font-size: clamp(38px, 4vw, 48px);

font-weight: 700;

line-height: 1.05;

letter-spacing: -2px;
}


.jasch-contact-page .jasch-contact-section-heading p {

max-width: 650px;

margin: 20px 0 0;

color: var(--contact-muted);

font-size: 16px;

line-height: 1.8;
}


/* =========================================================
   OFFICES SECTION
========================================================= */

.jasch-contact-page .jasch-contact-offices {

padding: 70px 0;

background: #ffffff;

color: #162638;
}


.jasch-contact-page .jasch-contact-offices
.jasch-contact-section-heading
.jasch-product-detail__section-label {

    color: var(--contact-blue);
}


.jasch-contact-page .jasch-contact-offices
.jasch-contact-section-heading h2 {

    color: #081525;
}


.jasch-contact-page .jasch-contact-offices
.jasch-contact-section-heading p {

    color: #66778a;
}


.jasch-contact-page .jasch-contact-offices__grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}


/* Office card */

.jasch-contact-page .jasch-contact-office {

    position: relative;

    min-height: 330px;

    padding: 42px;

    background: #f7f9fb;

    border: 1px solid #e3e9ef;

    border-top: 3px solid var(--contact-blue);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.jasch-contact-page .jasch-contact-office:hover {

    transform: translateY(-5px);

    box-shadow: 0 18px 45px rgba(6,21,37,.10);
}


.jasch-contact-page .jasch-contact-office__number {

display: block;

margin-bottom: 45px;

color: var(--contact-blue);

font-size: 20px;

font-weight: 700;

letter-spacing: 2px;
}


.jasch-contact-page .jasch-contact-office h3 {

    margin: 0 0 15px;

    color: #071525;

    font-size: 26px;

    line-height: 1.2;
}


.jasch-contact-page .jasch-contact-office p {

margin: 0 0 7px;

color: #26384b;

font-size: 18px;

font-weight: 600;
}


.jasch-contact-page .jasch-contact-office address {

margin-bottom: 22px;

color: #66778a;

font-size: 16px;

line-height: 1.8;
}


.jasch-contact-page .jasch-contact-office a {

display: inline-block;

color: var(--contact-blue);

font-size: 18px;

font-weight: 700;
}


.jasch-contact-page .jasch-contact-office a:hover {

    color: #0059b8;
}


.jasch-contact-page .jasch-contact-office__fax {

    display: block;

    margin-top: 7px;

    color: #7c8b9b;

    font-size: 12px;
}


/* =========================================================
   CONTACT FORM SECTION
========================================================= */

.jasch-contact-page .jasch-contact-form-section {

    padding: 110px 0;

    background: var(--contact-bg);
}


.jasch-contact-page .jasch-contact-form-section__grid {

    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 70px;

    align-items: start;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.jasch-contact-page .jasch-contact-form {

    padding: 45px;

    background: var(--contact-bg-2);

    border: 1px solid var(--contact-border);

    border-top: 3px solid var(--contact-blue);
}


.jasch-contact-page .jasch-contact-form
.jasch-product-detail__section-label {

    display: block;

    margin-bottom: 15px;

    color: var(--contact-blue-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.jasch-contact-page .jasch-contact-form h2 {

    margin: 0;

    color: var(--contact-white);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.jasch-contact-page .jasch-contact-form > p {

max-width: 560px;

margin: 18px 0 38px;

color: var(--contact-muted);

font-size: 16px;

line-height: 1.8;
}


/* Form rows */

.jasch-contact-page .jasch-contact-form__row {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


.jasch-contact-page .jasch-contact-form__field {

    margin-bottom: 20px;
}


.jasch-contact-page .jasch-contact-form__field label {

display: block;

margin-bottom: 9px;

color: var(--contact-text);

font-size: 16px;

font-weight: 600;

letter-spacing: .6px;
}


.jasch-contact-page .jasch-contact-form__field input,
.jasch-contact-page .jasch-contact-form__field textarea {

    display: block;

    width: 100%;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 2px;

    outline: none;

    background: rgba(255,255,255,.035);

    color: var(--contact-white);

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color .25s ease,
        background .25s ease;
}


.jasch-contact-page .jasch-contact-form__field input {

    height: 52px;

    padding: 0 16px;
}


.jasch-contact-page .jasch-contact-form__field textarea {

    min-height: 145px;

    padding: 15px 16px;

    resize: vertical;
}


.jasch-contact-page .jasch-contact-form__field input::placeholder,
.jasch-contact-page .jasch-contact-form__field textarea::placeholder {

    color: #6f8092;
}


.jasch-contact-page .jasch-contact-form__field input:focus,
.jasch-contact-page .jasch-contact-form__field textarea:focus {

    background: rgba(8,124,255,.05);

    border-color: var(--contact-blue);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.jasch-contact-page .jasch-contact-form__submit {

    margin-top: 8px;
}


.jasch-contact-page .jasch-contact-form__submit
.jasch-product-detail__button {

display: inline-flex;

align-items: center;

gap: 20px;

min-height: 48px;

padding: 0 24px;

border: 0;

border-radius: 2px;

background: var(--contact-blue);

color: #ffffff;

font-size: 16px;

font-weight: 700;

letter-spacing: 1px;

cursor: pointer;

transition:
        background .25s ease,
        transform .25s ease;
}


.jasch-contact-page .jasch-contact-form__submit
.jasch-product-detail__button:hover {

    background: var(--contact-blue-light);

    transform: translateY(-2px);
}


/* =========================================================
   MAP
========================================================= */

.jasch-contact-page .jasch-contact-map {

    position: static;

    overflow: hidden;

    border: 1px solid var(--contact-border);

    background: var(--contact-bg-2);
}


.jasch-contact-page .jasch-contact-map__map {

    overflow: hidden;

    border: 0;
}


.jasch-contact-page .jasch-contact-map__map iframe {

    display: block;

    width: 100%;

    height: 425px;

    border: 0;

    filter: grayscale(.25);
}


.jasch-contact-page .jasch-contact-map__details {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    padding: 35px;

    border: 0;

    background: var(--contact-bg-2);
}


.jasch-contact-page .jasch-contact-map__details h3 {

    grid-column: 1 / -1;

    margin: 0;

    color: var(--contact-white);

    font-size: 20px;
}


.jasch-contact-page .jasch-contact-map__details p {

grid-column: 1 / -1;

margin: -15px 0 0;

color: var(--contact-muted);

font-size: 16px;

line-height: 1.8;
}


.jasch-contact-page .jasch-contact-map__details div {

    margin: 0;

    padding: 0;

    border: 0;
}


.jasch-contact-page .jasch-contact-map__details div span {

display: block;

margin-bottom: 10px;

color: var(--contact-blue-light);

font-size: 15px;

font-weight: 700;

letter-spacing: 1.5px;
}


.jasch-contact-page .jasch-contact-map__details div a {

display: block;

margin-bottom: 6px;

color: var(--contact-text);

font-size: 16px;

line-height: 1.5;
}


.jasch-contact-page .jasch-contact-map__details div a:hover {

    color: var(--contact-blue-light);
}


/* =========================================================
   INTERNATIONAL LOCATIONS
========================================================= */

.jasch-contact-page .jasch-contact-international {

    padding: 110px 0;

    background: #ffffff;
}


.jasch-contact-page .jasch-contact-international
.jasch-contact-section-heading h2 {

    color: #071525;
}


.jasch-contact-page .jasch-contact-international
.jasch-contact-section-heading p {

    color: #66778a;
}


.jasch-contact-page .jasch-contact-international__grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* Location card */

.jasch-contact-page .jasch-contact-location {

    min-height: 390px;

    padding: 32px;

    background: #f7f9fb;

    border: 1px solid #e1e7ed;

    border-top: 3px solid #dce4ec;

    transition:
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.jasch-contact-page .jasch-contact-location:hover {

    border-top-color: var(--contact-blue);

    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(6,21,37,.08);
}


.jasch-contact-page .jasch-contact-location > span {

    display: block;

    margin-bottom: 45px;

    color: var(--contact-blue);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.jasch-contact-page .jasch-contact-location h3 {

    margin: 0 0 5px;

    color: #071525;

    font-size: 23px;
}


.jasch-contact-page .jasch-contact-location h4 {

margin: 0 0 22px;

color: var(--contact-blue);

font-size: 16px;

font-weight: 700;
}


.jasch-contact-page .jasch-contact-location address {

margin-bottom: 18px;

color: #68798a;

font-size: 15px;

line-height: 1.8;
}


.jasch-contact-page .jasch-contact-location p {

margin: 0 0 17px;

color: #68798a;

font-size: 16px;

line-height: 1.7;
}


.jasch-contact-page .jasch-contact-location a {

    display: inline-block;

    color: #203447;

    font-size: 14px;

    font-weight: 600;

    word-break: break-word;
}


.jasch-contact-page .jasch-contact-location a:hover {

    color: var(--contact-blue);
}


/* =========================================================
   FINAL CTA
========================================================= */

.jasch-contact-page .jasch-contact-cta {

    position: relative;

    padding: 90px 0;

    background: var(--contact-blue);

    overflow: hidden;
}


.jasch-contact-page .jasch-contact-cta::after {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -150px;

    top: -250px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(255,255,255,.025),
        0 0 0 140px rgba(255,255,255,.02);

    pointer-events: none;
}


.jasch-contact-page .jasch-contact-cta__inner {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}


.jasch-contact-page .jasch-contact-cta
.jasch-product-detail__section-label {

    display: block;

    margin-bottom: 14px;

    color: rgba(255,255,255,.7);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.jasch-contact-page .jasch-contact-cta h2 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1;

    letter-spacing: -2px;
}


.jasch-contact-page .jasch-contact-cta p {

    max-width: 600px;

    margin: 18px 0 0;

    color: rgba(255,255,255,.78);

    font-size: 15px;

    line-height: 1.7;
}


/* CTA button */

.jasch-contact-page .jasch-contact-cta
.jasch-product-detail__button {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    min-width: 190px;

    min-height: 52px;

    justify-content: center;

    padding: 0 25px;

    background: #061525;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.1);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    white-space: nowrap;

    transition:
        background .25s ease,
        transform .25s ease;
}


.jasch-contact-page .jasch-contact-cta
.jasch-product-detail__button:hover {

    background: #ffffff;

    color: #061525;

    transform: translateY(-3px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .jasch-contact-page .jasch-contact-international__grid {

        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 991px) {

    .jasch-contact-page .jasch-contact-hero {

        min-height: 380px;

        padding: 80px 0;
    }


    .jasch-contact-page .jasch-contact-form-section__grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .jasch-contact-page .jasch-contact-map {

        max-width: none;
    }


    .jasch-contact-page .jasch-contact-cta__inner {

        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 767px) {

    .jasch-contact-page .jasch-contact-hero {

        min-height: 340px;

        padding: 70px 0;
    }


    .jasch-contact-page .jasch-contact-hero h1 {

        font-size: 46px;

        letter-spacing: -2px;
    }


    .jasch-contact-page .jasch-contact-offices,
    .jasch-contact-page .jasch-contact-form-section,
    .jasch-contact-page .jasch-contact-international {

        padding: 75px 0;
    }


    .jasch-contact-page .jasch-contact-offices__grid {

        grid-template-columns: 1fr;
    }


    .jasch-contact-page .jasch-contact-office {

        min-height: auto;

        padding: 32px;
    }


    .jasch-contact-page .jasch-contact-form {

        padding: 30px 25px;
    }


    .jasch-contact-page .jasch-contact-form__row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .jasch-contact-page .jasch-contact-map__map iframe {

        height: 330px;
    }


    .jasch-contact-page .jasch-contact-map__details {

        grid-template-columns: 1fr;

        padding: 28px;
    }


    .jasch-contact-page .jasch-contact-map__details h3,
    .jasch-contact-page .jasch-contact-map__details p {

        grid-column: auto;
    }


    .jasch-contact-page .jasch-contact-international__grid {

        grid-template-columns: 1fr;
    }


    .jasch-contact-page .jasch-contact-location {

        min-height: auto;

        padding: 30px;
    }


    .jasch-contact-page .jasch-contact-cta {

        padding: 70px 0;
    }


    .jasch-contact-page .jasch-contact-cta__inner {

        gap: 35px;
    }


    .jasch-contact-page .jasch-contact-cta h2 {

        font-size: 40px;
    }

}


@media (max-width: 575px) {

    .jasch-contact-page .jasch-contact-hero h1 {

        font-size: 40px;
    }


    .jasch-contact-page .jasch-contact-hero p {

        font-size: 14px;
    }


    .jasch-contact-page .jasch-contact-section-heading h2 {

        font-size: 37px;
    }


    .jasch-contact-page .jasch-contact-office__number,
    .jasch-contact-page .jasch-contact-location > span {

        margin-bottom: 30px;
    }

}

/* =========================================================
   PRODUCT DETAIL - SPECIFICATION TABLE
   DARK THEME + JASCH BLUE ACCENT
========================================================= */

.jasch-product-detail__tab-content table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 30px 0 45px;

    background: transparent;
    color: #fff;

    border-top: 1px solid rgba(0, 123, 255, 0.65);
    border-bottom: 1px solid rgba(0, 123, 255, 0.65);
}


/* =========================================================
   ROW
========================================================= */

.jasch-product-detail__tab-content table tr {
    background: transparent;
    border-bottom: 1px solid rgba(0, 123, 255, 0.25);
}

.jasch-product-detail__tab-content table tr:last-child {
    border-bottom: 0;
}


/* =========================================================
   HEADER
========================================================= */

.jasch-product-detail__tab-content table th {
    padding: 15px 20px;

    text-align: left;
    vertical-align: middle;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;

    color: #ffffff;
    background: rgba(0, 123, 255, 0.08);

    border-right: 1px solid rgba(0, 123, 255, 0.35);
    border-bottom: 1px solid rgba(0, 123, 255, 0.45);
}


/* =========================================================
   DATA
========================================================= */

.jasch-product-detail__tab-content table td {
    padding: 15px 20px;

    text-align: left;
    vertical-align: top;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;

    color: #f1f5f9;
    background: transparent;

    border-right: 1px solid rgba(0, 123, 255, 0.25);
}


/* Remove right border from last column */

.jasch-product-detail__tab-content table th:last-child,
.jasch-product-detail__tab-content table td:last-child {
    border-right: 0;
}


/* =========================================================
   COLUMN WIDTH
========================================================= */

.jasch-product-detail__tab-content table th:first-child,
.jasch-product-detail__tab-content table td:first-child {
    width: 38%;
}

.jasch-product-detail__tab-content table th:last-child,
.jasch-product-detail__tab-content table td:last-child {
    width: 62%;
}


/* =========================================================
   HOVER - VERY SUBTLE
========================================================= */

.jasch-product-detail__tab-content table tbody tr:hover td {
    background: rgba(0, 123, 255, 0.04);
}


/* =========================================================
   TABLE HEAD / BODY RESET
========================================================= */

.jasch-product-detail__tab-content table thead,
.jasch-product-detail__tab-content table tbody {
    background: transparent;
    border: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .jasch-product-detail__tab-content table {
        margin: 25px 0 35px;
    }

    .jasch-product-detail__tab-content table th,
    .jasch-product-detail__tab-content table td {
        padding: 12px 14px;
        font-size: 14px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .jasch-product-detail__tab-content {
        overflow-x: auto;
    }

    .jasch-product-detail__tab-content table {
        min-width: 600px;
    }
}


/* ================================
 * PDF LISTING SECTION CSS 
 * ===========================================================*/
/* =========================================================
   JASCH DOCUMENT / PDF LIST
========================================================= */

.jasch-documents-section {

    --documents-dark: #061525;
    --documents-dark-2: #0a1b2c;

    --documents-blue: #087cff;
    --documents-blue-light: #1597ff;

    --documents-text: #142638;
    --documents-muted: #718195;

    --documents-border: #dce4ec;

    padding: 110px 0;

    background: #f7f9fb;

}


/* =========================================================
   HEADING
========================================================= */

.jasch-documents-heading {

    max-width: 760px;

    margin-bottom: 55px;

}


.jasch-documents-heading__eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: var(--documents-blue);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.jasch-documents-heading__eyebrow::before {

    content: "";

    width: 32px;

    height: 1px;

    background: var(--documents-blue);

}


.jasch-documents-heading h1 {

    margin: 0;

    color: var(--documents-dark);

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -2.5px;

}


.jasch-documents-heading p {

    max-width: 650px;

    margin: 22px 0 0;

    color: var(--documents-muted);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   DOCUMENT LIST
========================================================= */

.jasch-documents-list {

    border-top: 1px solid var(--documents-border);

}


/* =========================================================
   DOCUMENT ITEM
========================================================= */

.jasch-document-item {

    display: grid;

grid-template-columns: 90px minmax(0, 1fr) 44px 55px;
    align-items: center;

    gap: 30px;

    min-height: 125px;

    padding: 25px 10px;

    border-bottom: 1px solid var(--documents-border);

    transition:
        background .25s ease,
        padding .25s ease;
}


.jasch-document-item:hover {

    padding-left: 20px;

    padding-right: 20px;

    background: #ffffff;

}


/* =========================================================
   PDF ICON
========================================================= */

.jasch-document-item__pdf {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 68px;

    height: 68px;

    border: 1px solid #d9e2eb;

    background: #ffffff;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.jasch-document-item__pdf:hover {

    border-color: var(--documents-blue);

    background: var(--documents-blue);

    transform: translateY(-3px);

}


.jasch-document-item__pdf-icon {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 3px;

}


.jasch-document-item__pdf-icon svg {

    width: 27px;

    height: 27px;

    fill: none;

    stroke: var(--documents-blue);

    stroke-width: 1.5;

}


.jasch-document-item__pdf:hover svg {

    stroke: #ffffff;

}


.jasch-document-item__pdf-icon span {

    color: var(--documents-blue);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.jasch-document-item__pdf:hover span {

    color: #ffffff;

}


/* =========================================================
   DOCUMENT CONTENT
========================================================= */

.jasch-document-item__content {

    min-width: 0;

}


.jasch-document-item__title {

    display: inline;

    color: var(--documents-dark);

    font-size: 17px;

    font-weight: 650;

    line-height: 1.5;

    text-decoration: none;

    transition: color .2s ease;
}


.jasch-document-item__title:hover {

    color: var(--documents-blue);

}


/* =========================================================
   META
========================================================= */

.jasch-document-item__meta {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 9px;

}


.jasch-document-item__meta span {

    position: relative;

    color: var(--documents-muted);

    font-size: 11px;

    font-weight: 500;

}


.jasch-document-item__meta span + span {

    padding-left: 18px;

}


.jasch-document-item__meta span + span::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: var(--documents-blue);

    transform: translateY(-50%);

}

/* =========================================================
   DOWNLOAD
========================================================= */

.jasch-document-item__download {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    border: 1px solid var(--documents-border);

    background: #ffffff;

    color: var(--documents-dark);

    text-decoration: none;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;

}


.jasch-document-item__download svg {

    width: 17px;

    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

}


.jasch-document-item__download:hover {

    border-color: var(--documents-blue);

    background: var(--documents-blue);

    color: #ffffff;

    transform: translateY(-2px);

}


/* =========================================================
   ARROW
========================================================= */

.jasch-document-item__arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    border: 1px solid var(--documents-border);

    color: var(--documents-dark);

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.jasch-document-item__arrow svg {

    width: 18px;

    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;
}


.jasch-document-item__arrow:hover {

    border-color: var(--documents-blue);

    background: var(--documents-blue);

    color: #ffffff;

    transform: translateX(3px);

}


/* =========================================================
   PAGINATION
========================================================= */

.jasch-documents-pagination {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 7px;

    margin-top: 45px;

}


.jasch-documents-pagination a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    border: 1px solid var(--documents-border);

    background: #ffffff;

    color: var(--documents-muted);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease;
}


.jasch-documents-pagination a:hover,
.jasch-documents-pagination a.is-active {

    border-color: var(--documents-blue);

    background: var(--documents-blue);

    color: #ffffff;

}


.jasch-documents-pagination__next svg {

    width: 17px;

    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .jasch-documents-section {

        padding: 75px 0;

    }


    .jasch-documents-heading {

        margin-bottom: 40px;

    }


    .jasch-documents-heading h1 {

        font-size: 44px;

    }


    .jasch-document-item {

        grid-template-columns: 65px minmax(0, 1fr) 40px 40px;

        gap: 18px;

        min-height: 110px;

        padding: 20px 5px;

    }
.jasch-document-item__download {

    width: 36px;

    height: 36px;

}


.jasch-document-item__download svg {

    width: 15px;

    height: 15px;

}

    .jasch-document-item:hover {

        padding-left: 10px;

        padding-right: 10px;

    }


    .jasch-document-item__pdf {

        width: 58px;

        height: 58px;

    }


    .jasch-document-item__pdf-icon svg {

        width: 23px;

        height: 23px;

    }


    .jasch-document-item__title {

        font-size: 14px;

    }


    .jasch-document-item__meta {

        flex-wrap: wrap;

        gap: 10px;

    }


    .jasch-document-item__meta span + span {

        padding-left: 12px;

    }


    .jasch-document-item__arrow {

        width: 36px;

        height: 36px;

    }


    .jasch-documents-pagination {

        justify-content: flex-start;

    }

}


@media (max-width: 480px) {

.jasch-document-item {

    grid-template-columns: 58px minmax(0, 1fr) 36px;

    gap: 15px;

}


.jasch-document-item__arrow {

    display: none;

}


.jasch-document-item__download {

    width: 34px;

    height: 34px;

}


.jasch-document-item__download svg {

    width: 15px;

    height: 15px;

}



    .jasch-document-item__pdf {

        width: 52px;

        height: 52px;

    }


    .jasch-document-item__title {

        font-size: 13px;

        line-height: 1.45;

    }

}

/* =========================================
   JASCH BLOG SECTION
========================================= */

.jasch-blog-section {
    background: var(--dark-bg, #07111f);
}


/* =========================================
   BLOG CARD
========================================= */

.jasch-blog-card {
    height: 100%;
    position: relative;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(0, 126, 255, 0.25);

    border-radius: 8px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Blue top accent */

.jasch-blog-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--primary-color, #007eff);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}


/* Hover */

.jasch-blog-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 126, 255, 0.65);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(0, 126, 255, 0.08);
}

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


/* =========================================
   CARD BODY
========================================= */

.jasch-blog-card__body {
    height: 100%;

    padding: 32px;

    display: flex;
    flex-direction: column;
}


/* =========================================
   TITLE
========================================= */

.jasch-blog-card__title {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;

    transition: color 0.3s ease;
}

.jasch-blog-card:hover .jasch-blog-card__title {
    color: var(--primary-color, #007eff);
}


/* =========================================
   DESCRIPTION
========================================= */

.jasch-blog-card__excerpt {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   READ MORE
========================================= */

.jasch-blog-card__link {
    margin-top: 24px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;

    text-decoration: none;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.jasch-blog-card__link i {
    font-size: 16px;

    transition: transform 0.3s ease;
}

.jasch-blog-card__link:hover {
    color: var(--primary-color, #007eff);

    gap: 12px;
}

.jasch-blog-card__link:hover i {
    transform: translateX(3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 767.98px) {

    .jasch-blog-card__body {
        padding: 26px;
    }

    .jasch-blog-card__title {
        font-size: 21px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .jasch-blog-card__body {
        padding: 24px;
    }

    .jasch-blog-card__title {
        font-size: 20px;
    }

}

/* =========================================
   SINGLE BLOG POST
========================================== */

.jasch-single-post-section {
    background: #f5f7fa;
}


/* =========================================
   ARTICLE CONTAINER
========================================== */

.jasch-single-post {
    max-width: 1000px;
    margin: 0 auto;

    background: #ffffff;

    border: 1px solid #e5e9ef;
    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}


/* =========================================
   POST HEADER
========================================== */

.jasch-single-post__header {
    padding: 45px 55px 35px;

    border-bottom: 1px solid #e9edf2;
}


.jasch-single-post__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 18px;

    color: #687386;

    font-size: 13px;
    font-weight: 500;
}


.jasch-single-post__separator {
    color: #007eff;
}


.jasch-single-post__title {
    margin: 0;

    color: #101828;

    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.2;
}


/* =========================================
   POST CONTENT
========================================== */

.jasch-single-post__content {
    padding: 45px 55px;

    color: #344054;

    font-size: 17px;
    line-height: 1.85;
}


/* Paragraph */

.jasch-single-post__content p {
    margin-bottom: 22px;
}


/* Headings */

.jasch-single-post__content h2,
.jasch-single-post__content h3,
.jasch-single-post__content h4,
.jasch-single-post__content h5,
.jasch-single-post__content h6 {
    margin-top: 35px;
    margin-bottom: 18px;

    color: #101828;

    font-weight: 650;
    line-height: 1.35;
}


.jasch-single-post__content h2 {
    font-size: 30px;
}


.jasch-single-post__content h3 {
    font-size: 25px;
}


.jasch-single-post__content h4 {
    font-size: 21px;
}


/* Links */

.jasch-single-post__content a {
    color: #007eff;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


.jasch-single-post__content a:hover {
    color: #005ec4;
}


/* Lists */

.jasch-single-post__content ul,
.jasch-single-post__content ol {
    margin: 0 0 25px;

    padding-left: 25px;
}


.jasch-single-post__content li {
    margin-bottom: 9px;
}


/* Strong */

.jasch-single-post__content strong {
    color: #1d2939;
}


/* Blockquote */

.jasch-single-post__content blockquote {
    margin: 30px 0;

    padding: 22px 25px;

    background: #f5f8fc;

    border-left: 4px solid #007eff;

    color: #475467;

    font-size: 18px;
    font-style: italic;
}


/* Images */

.jasch-single-post__content img {
    max-width: 100%;
    height: auto;

    margin: 25px 0;

    border-radius: 6px;
}


/* Tables */

.jasch-single-post__content table {
    width: 100%;

    margin: 30px 0;

    border-collapse: collapse;

    font-size: 15px;
}


.jasch-single-post__content th,
.jasch-single-post__content td {
    padding: 12px 15px;

    border: 1px solid #dce2e9;

    text-align: left;
}


.jasch-single-post__content th {
    background: #f2f6fa;

    color: #101828;

    font-weight: 600;
}


/* Code */

.jasch-single-post__content pre {
    margin: 25px 0;

    padding: 20px;

    overflow-x: auto;

    background: #101828;

    border-radius: 6px;

    color: #ffffff;

    font-size: 14px;
}


.jasch-single-post__content code {
    font-size: 0.9em;
}


/* =========================================
   POST FOOTER
========================================== */

.jasch-single-post__footer {
    padding: 25px 55px;

    border-top: 1px solid #e9edf2;
}


.jasch-single-post__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}


.jasch-single-post__tags-label {
    margin-right: 5px;

    color: #475467;

    font-size: 14px;
    font-weight: 600;
}


.jasch-single-post__tags a {
    display: inline-block;

    padding: 5px 11px;

    background: #f1f6fb;

    border: 1px solid #dce8f4;
    border-radius: 4px;

    color: #007eff;

    font-size: 12px;
    text-decoration: none;

    transition: all 0.25s ease;
}


.jasch-single-post__tags a:hover {
    background: #007eff;
    border-color: #007eff;

    color: #ffffff;
}


/* =========================================
   TABLET
========================================== */

@media (max-width: 767.98px) {

    .jasch-single-post__header {
        padding: 35px 30px 28px;
    }

    .jasch-single-post__content {
        padding: 35px 30px;
        font-size: 16px;
    }

    .jasch-single-post__footer {
        padding: 22px 30px;
    }

    .jasch-single-post__content h2 {
        font-size: 27px;
    }

    .jasch-single-post__content h3 {
        font-size: 23px;
    }

}


/* =========================================
   MOBILE
========================================== */

@media (max-width: 575.98px) {

    .jasch-single-post-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .jasch-single-post {
        border-radius: 6px;
    }

    .jasch-single-post__header {
        padding: 28px 20px 24px;
    }

    .jasch-single-post__content {
        padding: 28px 20px;

        font-size: 16px;
        line-height: 1.75;
    }

    .jasch-single-post__footer {
        padding: 20px;
    }

    .jasch-single-post__title {
        font-size: 28px;
    }

}