@font-face {
  font-family: schedule;
  src: url("/assets/fonts/gilroy.otf");
}


@font-face {
  font-family: jost;
  src: url("/assets/fonts/jost.ttf");
}

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

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


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

.header {
    width: 100%;
    padding: 18px 5%;

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

    background: #ffffff;

    position: sticky;
    top: 0;

    z-index: 1000;

    transition: all 0.3s ease;
}


/* =========================================
   LOGO
========================================= */

.logo img {
    display: block;

    max-width: 220px;

    width: 100%;
    height: auto;
}


/* =========================================
   NAVIGATION
========================================= */

.main_nav {
    display: flex;
    align-items: center;
}


.main_nav ul {
    display: flex;
    align-items: center;

    gap: 40px;

    list-style: none;

    margin: 0;
    padding: 0;
}


.main_nav ul li {
    position: relative;
}


/* =========================================
   NAV LINKS
========================================= */

.main_nav ul li a {
    position: relative;

    display: flex;
    align-items: center;

    padding: 6px 2px;

    text-decoration: none;

    white-space: nowrap;

    color: rgba(63, 55, 55, 0.85);

    font-family: "Jost", sans-serif;

    font-size: 0.95rem;

    font-weight: 500;

    letter-spacing: 0.2px;

    transition: color 0.25s ease;
}


/* Hover */

.main_nav ul li a:hover {
    color: #06c9ff;
}


/* =========================================
   UNDERLINE
========================================= */

.main_nav ul li a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 0;
    height: 2px;

    background: #0ae5f4;

    transition: width 0.3s ease;
}


.main_nav ul li a:hover::after {
    width: 100%;
}


/* =========================================
   DROPDOWN
========================================= */

.main_nav .dropdown {
    position: relative;
}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1200px) {

    .header {
        padding: 15px 4%;
    }

    .logo img {
        max-width: 180px;
    }

    .main_nav ul {
        gap: 20px;
    }

}


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

@media (max-width: 992px) {

    .header {
        padding: 15px 20px;
    }

    .logo img {
        max-width: 160px;
    }

    .main_nav {
        display: none;
    }

}


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

@media (max-width: 576px) {

    .header {
        padding: 12px 15px;
    }

    .logo img {
        max-width: 140px;
    }

}


/* =========================================
   DROPDOWN BOX
========================================= */

.main_nav .dropdown {
    position: relative;
}


/* Invisible bridge between button and dropdown */

.main_nav .dropdown::after {
    content: "";

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;
    height: 15px;

    background: transparent;
}


/* Dropdown box */

.main_nav .dropdown .content {

    position: absolute;

    top: calc(100% + 5px);
    left: 0;

    min-width: 220px;

    padding: 10px 0;

    background: #50505b;

    border-radius: 8px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 1200;
}


/* =========================================
   DROPDOWN LINKS
========================================= */

.main_nav .dropdown .content a {

    display: block;

    width: 100%;

    box-sizing: border-box;

    padding: 11px 18px;

    color: #ffffff;

    font-size: 0.95rem;

    font-family: "Jost", sans-serif;

    white-space: nowrap;
}


/* Dropdown hover */

.main_nav .dropdown .content a:hover {

    color: #00e5f4;

    background: rgba(255, 255, 255, 0.08);
}


/* Remove navbar underline from dropdown */

.main_nav .dropdown .content a::after {

    display: none;

}


/* =========================================
   SHOW DROPDOWN - DESKTOP
========================================= */

@media (min-width: 993px) {

    .main_nav .dropdown:hover .content {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }

}



/* =========================================
   HAMBURGER MENU
========================================= */

.menu-toggle {
    width: 40px;
    height: 32px;

    display: none;

    flex-direction: column;
    justify-content: space-between;

    cursor: pointer;

    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 4px;

    background: #070775;

    border-radius: 10px;

    transition: 0.35s ease;
}


/* =========================================
   MAIN NAVIGATION
========================================= */

.main_nav {
    display: flex;
    align-items: center;
}

.main_nav ul {
    display: flex;
    align-items: center;

    list-style: none;

    gap: 40px;

    margin: 0;
    padding: 0;
}

.main_nav ul li {
    position: relative;
}


/* =========================================
   NAVIGATION LINKS
========================================= */

.main_nav a {
    text-decoration: none;

    color: rgba(63, 55, 55, 0.847);

    font-size: 0.95rem;

    font-weight: 500;

    letter-spacing: 0.2px;

    padding: 6px 2px;

    display: flex;

    position: relative;

    font-family: "Jost", sans-serif;

    transition: color 0.2s ease;
}

.main_nav a:hover {
    color: #0617ffc6;
}


/* =========================================
   HOVER UNDERLINE
========================================= */

.main_nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -3px;

    width: 0%;

    height: 2px;

    background: #0ae5f4;

    transition: width 0.3s ease;
}

.main_nav a:hover::after {
    width: 100%;
}


/* =========================================
   DROPDOWN
========================================= */

.dropdown {
    position: relative;

    display: inline-block;
}


/* =========================================
   DROPDOWN CONTENT
========================================= */

.dropdown .content {
    position: absolute;

    top: calc(100% + 5px);

    left: 0;

    min-width: 220px;

    padding: 10px 0;

    background: #50505b;

    border-radius: 8px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 1200;
}


/* Invisible bridge so dropdown doesn't disappear */

.dropdown::after {
    content: "";

    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    height: 10px;

    background: transparent;
}


/* =========================================
   DROPDOWN LINKS
========================================= */

.dropdown .content a {
    display: block;

    width: 100%;

    padding: 11px 18px;

    box-sizing: border-box;

    color: #ffffff;

    font-size: 0.95rem;

    font-family: "Jost", sans-serif;

    white-space: nowrap;
}


/* Dropdown hover */

.dropdown .content a:hover {
    color: #00e5f4;

    background: rgba(255, 255, 255, 0.08);
}


/* Remove underline from dropdown items */

.dropdown .content a::after {
    display: none;
}


/* =========================================
   DESKTOP DROPDOWN
========================================= */

@media (min-width: 993px) {

    .dropdown:hover .content {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }

}


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

@media (max-width: 992px) {

    /* Show hamburger */

    .menu-toggle {
        display: flex;
    }


    /* Mobile navigation */

    .main_nav {

        position: fixed;

        top: 0;

        right: -100%;

        width: 300px;

        height: 100vh;

        padding: 100px 30px 40px;

        background: #070775;

        display: block;

        transition: right 0.4s ease;

        overflow-y: auto;

        z-index: 1050;
    }


    /* Open menu */

    .main_nav.active {
        right: 0;
    }


    /* Mobile list */

    .main_nav ul {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }


    .main_nav ul li {
        width: 100%;
    }


    /* Mobile links */

    .main_nav a {

        color: #ffffff;

        font-size: 18px;

        width: 100%;
    }


    .main_nav a:hover {
        color: #22d3ee;
    }


    /* Remove normal underline on mobile */

    .main_nav a::after {
        display: none;
    }


    /* Mobile dropdown */

    .dropdown .content {

        position: static;

        width: 100%;

        min-width: 0;

        padding: 5px 0 5px 15px;

        background: transparent;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        display: none;
    }


    /* If dropdown is active */

    .dropdown.active .content {
        display: block;
    }


    .dropdown .content a {

        padding: 10px 5px;

        color: #ffffff;

        font-size: 16px;
    }


    .dropdown::after {
        display: none;
    }

}




/* =============================
   HAMBURGER MENU
============================= */

.menu-toggle {
    width: 40px;
    height: 32px;

    display: none;

    flex-direction: column;
    justify-content: space-between;

    cursor: pointer;

    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 4px;

    background: #070775;

    border-radius: 10px;

    transition: 0.35s;
}


/* =============================
   MAIN NAVIGATION
============================= */

.main_nav {
    display: flex;
    align-items: center;
}

.main_nav ul {
    display: flex;

    list-style: none;

    gap: 40px;

    margin: 0;
    padding: 0;
}

.main_nav ul li {
    position: relative;
}


/* =============================
   NAVIGATION LINKS
============================= */

.main_nav a {
    text-decoration: none;

    color: rgba(63, 55, 55, 0.847);

    font-size: 0.95rem;

    font-weight: 500;

    letter-spacing: 0.2px;

    padding: 6px 2px;

    display: flex;

    position: relative;

    font-family: "Jost", sans-serif;

    transition: color 0.2s ease;
}

.main_nav a:hover {
    color: #0617ffc6;
}


/* =============================
   HOVER UNDERLINE
============================= */

.main_nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -3px;

    width: 0%;

    height: 2px;

    background: #0ae5f4;

    transition: width 0.3s ease;
}

.main_nav a:hover::after {
    width: 100%;
}




/* =============================
   TABLET & MOBILE
============================= */

@media (max-width: 992px) {

    /* Show hamburger */

    .menu-toggle {
        display: flex;
    }


    /* Hide desktop navigation */

    .main_nav {
        position: fixed;

        top: 0;
        right: -100%;

        width: 300px;
        height: 100vh;

        padding: 100px 30px 40px;

        background: #070775;

        display: block;

        overflow-y: auto;

        transition: right 0.4s ease;

        z-index: 1050;
    }


    /* Open navigation */

    .main_nav.active {
        right: 0;
    }


    /* Mobile menu */

    .main_nav ul {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }


    .main_nav ul li {
        width: 100%;
    }


    .main_nav ul li a {
        color: #ffffff;

        font-size: 18px;

        width: 100%;
    }


    .main_nav ul li a:hover {
        color: #22d3ee;
    }


    /* Remove underline on mobile */

    .main_nav ul li a::after {
        display: none;
    }


    /* Mobile dropdown */

    .main_nav .dropdown .content {

        position: static;

        min-width: 0;

        width: 100%;

        padding: 5px 0 5px 15px;

        background: transparent;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        display: none;
    }


    /* Show mobile dropdown */

    .main_nav .dropdown.active .content {
        display: block;
    }


    .main_nav .dropdown .content a {
        color: #ffffff;

        font-size: 16px;

        padding: 10px 5px;
    }


    .main_nav .dropdown::after {
        display: none;
    }

}

/* =============================
   DROPDOWN
============================= */

.main_nav .dropdown {
    position: relative;
}


/* Dropdown box */

.main_nav .dropdown .content {
    position: absolute;

    top: calc(100% + 5px);
    left: 0;

    min-width: 220px;

    padding: 10px 0;

    background: #50505b;

    border-radius: 8px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 1200;
}


/* Invisible bridge */

.main_nav .dropdown::after {
    content: "";

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;
    height: 10px;

    background: transparent;
}


/* Dropdown links */

.main_nav .dropdown .content a {
    display: block;

    width: 100%;

    padding: 11px 18px;

    color: #ffffff;

    font-size: 0.95rem;

    font-family: "Jost", sans-serif;

    white-space: nowrap;

    box-sizing: border-box;
}


/* Dropdown hover */

.main_nav .dropdown .content a:hover {
    color: #00e5f4;

    background: rgba(255, 255, 255, 0.08);
}


/* Remove underline from dropdown items */

.main_nav .dropdown .content a::after {
    display: none;
}


/* Show dropdown on desktop */

@media (min-width: 993px) {

    .main_nav .dropdown:hover .content {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }

}






/* =============================
   DROPDOWN
============================= */

.dropdown {
    position: relative;
    display: inline-block;
}


/* Dropdown content */

.dropdown .content {
    position: absolute;

    top: calc(100% + 5px);
    left: 0;

    min-width: 210px;

    padding: 8px 0;

    background: #070775;

    border-radius: 6px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

    z-index: 1000;

    /* Hidden state */
    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}


/* Invisible bridge */

.dropdown::after {
    content: "";

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;
    height: 8px;

    background: transparent;
}


/* Show dropdown on desktop */

@media (min-width: 993px) {

    .dropdown:hover .content {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }

}


/* =============================
   DROPDOWN LINKS
============================= */

.dropdown .content a {
    display: block;

    width: 100%;

    box-sizing: border-box;

    padding: 11px 18px;

    color: #ffffff;

    font-size: 0.95rem;

    font-family: "Jost", sans-serif;

    text-decoration: none;

    white-space: nowrap;
}


/* Dropdown hover */

.dropdown .content a:hover {
    background: rgba(255, 255, 255, 0.08);

    color: #00e5f4;
}


/* Remove navbar underline */

.dropdown .content a::after {
    display: none;
}


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

@media (max-width: 992px) {

    .menu-toggle {
        display: flex;
    }


    .main_nav {

        position: fixed;

        top: 0;
        right: -100%;

        width: 300px;
        height: 100vh;

        box-sizing: border-box;

        background: #070775;

        padding: 100px 30px 40px;

        overflow-y: auto;

        display: block;

        z-index: 1050;

        transition: right 0.4s ease;
    }


    /* Open menu */

    .main_nav.active {
        right: 0;
    }


    /* Mobile list */

    .main_nav ul {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        width: 100%;
    }


    .main_nav ul li {
        width: 100%;
    }


    /* Mobile links */

    .main_nav ul li a {

        width: 100%;

        box-sizing: border-box;

        color: #ffffff;

        font-size: 18px;

        padding: 10px 0;
    }


    .main_nav ul li a:hover {
        color: #00e5f4;
    }


    /* Remove underline on mobile */

    .main_nav ul li a::after {
        display: none;
    }


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

    .dropdown::after {
        display: none;
    }


    .dropdown .content {

        position: static;

        display: none;

        width: 100%;

        min-width: 0;

        margin-top: 5px;

        padding: 5px 0;

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

        box-shadow: none;

        border-radius: 5px;

        opacity: 1;

        visibility: visible;

        transform: none;
    }


    /* Open dropdown when JS adds active */

    .dropdown.active .content {
        display: block;
    }


    .dropdown .content a {

        padding: 10px 15px;

        color: #ffffff;

        font-size: 16px;
    }


    .dropdown .content a:hover {

        color: #00e5f4;

        background: rgba(255, 255, 255, 0.08);
    }

}
/* =============================
   REMOVE UNDERLINE ON MOBILE
============================= */

@media (max-width: 992px) {

    .main_nav a::after {
        display: none;
    }

}


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

@media (max-width: 480px) {

    .main_nav {
        width: 85%;
    }

}


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

.encimg {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.encimg img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* Dark overlay */

.encimg::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(71, 48, 48, 0.5);

    z-index: 1;
}


/* Hero heading */

.encimg h1 {
    position: absolute;

    top: 50%;
    left: 50%;

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

    z-index: 2;

    color: #ffffff;

    font-family: "Jost", sans-serif;

    font-size: clamp(2rem, 5vw, 4rem);

    font-weight: 600;

    text-align: center;

    width: 90%;

    margin: 0;
}


/* =============================
   SECOND HERO / BANNER
============================= */

.encimg4 {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.encimg4 img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* Dark overlay */

.encimg4::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(71, 48, 48, 0.5);

    z-index: 1;
}


/* Hero heading */

.encimg4 h1 {
    position: absolute;

    top: 50%;
    left: 50%;

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

    z-index: 2;

    color: #ffffff;

    font-family: "Jost", sans-serif;

    font-size: clamp(2rem, 5vw, 4rem);

    font-weight: 600;

    text-align: center;

    width: 90%;

    margin: 0;
}


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

@media (max-width: 600px) {

    .encimg,
    .encimg4 {
        height: 220px;
    }

    .encimg h1,
    .encimg4 h1 {
        font-size: 2rem;
    }

}




/* =============================
   RECTANGULAR SECTION
============================= */

.rectc {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 40px;
    font-family: "Jost", sans-serif;
}

.rectc1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 40px;
    font-family: "Jost", sans-serif;
    background: #eeeef5;
}


/* =============================
   MAIN BANNER
============================= */

.encimg {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}


/* Banner image */

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


/* Image zoom */

.encimg:hover img {
    transform: scale(1.05);
}


/* Dark overlay */

.encimg::after {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(71, 48, 48, 0.5);

    z-index: 1;
}


/* Banner heading */

.encimg h1 {
    position: absolute;

    top: 50%;
    left: 50%;

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

    color: #ffffff;

    font-size: clamp(2rem, 5vw, 3rem);

    text-align: center;

    font-family: "Jost", sans-serif;

    margin: 0;

    width: 90%;

    z-index: 2;

    animation: fadeIn 1s ease;
}


/* =============================
   SECOND BANNER
============================= */

.encimg4 {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}


/* Banner image */

.encimg4 img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


/* Image zoom */

.encimg4:hover img {
    transform: scale(1.05);
}


/* Dark overlay */

.encimg4::after {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(71, 48, 48, 0.5);

    z-index: 1;
}


/* Main heading */

.encimg4 h1 {
    position: absolute;

    top: 50%;
    left: 50%;

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

    color: #ffffff;

    font-size: clamp(2rem, 5vw, 3rem);

    text-align: center;

    font-family: "Jost", sans-serif;

    margin: 0;

    width: 90%;

    z-index: 2;

    animation: fadeIn 1s ease;
}


/* Subtitle */

.encimg4 h2 {
    position: absolute;

    top: 70%;
    left: 50%;

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

    color: #ffffff;

    font-size: 1.1rem;

    padding: 10px;

    text-align: center;

    font-style: italic;

    font-family: "Jost", sans-serif;

    margin: 0;

    width: 90%;

    z-index: 2;
}


/* =============================
   FADE ANIMATION
============================= */

@keyframes fadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


/* =============================
   BANNER SLIDE ANIMATION
============================= */

@keyframes bannerFade {

    from {
        opacity: 0;
        transform: translate(-50%, -30%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

}


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

@media (max-width: 992px) {

    .encimg,
    .encimg4 {
        height: 250px;
    }

    .encimg h1,
    .encimg4 h1 {
        font-size: 2.5rem;
    }

    .encimg4 h2 {
        font-size: 1rem;
        top: 72%;
    }

}


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

@media (max-width: 576px) {

    .encimg,
    .encimg4 {
        height: 200px;
    }

    .encimg h1,
    .encimg4 h1 {
        font-size: 2rem;
        width: 95%;
    }

    .encimg4 h2 {
        font-size: 0.85rem;
        width: 95%;
        top: 72%;
    }

}


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

@media (max-width: 400px) {

    .encimg,
    .encimg4 {
        height: 180px;
    }

    .encimg h1,
    .encimg4 h1 {
        font-size: 1.7rem;
    }

    .encimg4 h2 {
        font-size: 0.75rem;
    }

}

/* =============================
   DROPDOWN
============================= */

.dropdown {
    position: relative;
    display: inline-block;
}


/* Invisible bridge between
   navbar and dropdown */

.dropdown::after {
    content: "";

    position: absolute;

    left: 0;
    top: 100%;

    width: 100%;
    height: 12px;

    background: transparent;

    z-index: 999;
}


/* =============================
   DROPDOWN BOX
============================= */

.dropdown .content {
    position: absolute;

    top: calc(100% + 8px);
    left: 0;

    min-width: 210px;

    padding: 8px 0;

    background: #38383f;

    border-radius: 6px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

    z-index: 1000;

    /* Hidden */
    opacity: 0;
    visibility: hidden;

    transform: translateY(5px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}


/* =============================
   SHOW DROPDOWN
============================= */

.dropdown:hover .content {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* =============================
   DROPDOWN LINKS
============================= */

.dropdown .content a {
    display: block;

    width: 100%;

    box-sizing: border-box;

    padding: 11px 18px;

    color: #ffffff !important;

    font-family: "Jost", sans-serif;

    font-size: 0.95rem;

    text-decoration: none;

    white-space: nowrap;
}


/* =============================
   DROPDOWN LINK HOVER
============================= */

.dropdown .content a:hover {

    color: #00e5f4 !important;

    background: rgba(214, 20, 20, 0.79);
}


/* Remove navbar underline */

.dropdown .content a::after {
    display: none;
}


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

body {
    color: #000000;
}




/* =========================================
   TOPBAR CONTACT BUTTON
========================================= */

.Contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 20px;

    background: #00e5f4;
    color: #070775 !important;

    border: 2px solid #00e5f4;
    border-radius: 25px;

    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* Contact button hover */

.Contact:hover {
    background: #070775;

    color: #ffffff !important;

    border-color: #00e5f4;

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(0, 229, 244, 0.35);
}


/* =========================================
   DETAIL ENGINEERING SECTION
========================================= */

.rectc1-container {
    width: 100%;

    box-sizing: border-box;

    padding: 80px 6%;

    background-color: #86869b3a;

    background-image:

        linear-gradient(
            to right,
            rgba(56, 134, 154, 0.153) 2px,
            transparent 2px
        ),

        linear-gradient(
            to bottom,
            rgba(43, 80, 86, 0.174) 2px,
            transparent 2px
        );

    background-size: 100px 100px;
}


/* =========================================
   MAIN CONTENT CONTAINER
========================================= */

.rectc10 {
    display: flex;

    flex-direction: column;

    gap: 35px;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================
   DETAIL ENGINEERING ROW
========================================= */

.rectc1-row {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 35px;

    box-sizing: border-box;

    /* KEEP CONTENT VISIBLE */
    opacity: 1;

    transform: translateX(0);

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


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

.rectc1-row.left {
    flex-direction: row;
}


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

.rectc1-row.right {
    flex-direction: row;
}


/* =========================================
   TEXT BOX
========================================= */

.rectc1 {
    flex: 1;

    min-width: 0;

    background: rgba(71, 71, 103, 0.65);

    padding: 30px;

    border-radius: 40px;

    display: flex;

    align-items: center;

    gap: 20px;

    box-sizing: border-box;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);
}


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

.rectc1 .icon {
    flex-shrink: 0;

    font-size: 55px;

    color: #22d3ee;
}


/* =========================================
   TEXT
========================================= */

.rectc1 h2 {
    margin: 0;

    color: #ffffff;

    font-family: "Jost", sans-serif;

    font-size: 17px;

    font-weight: 500;

    line-height: 1.6;
}


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

.rectc1-img {
    width: 330px;

    height: 220px;

    object-fit: cover;

    border-radius: 20px;

    flex-shrink: 0;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.2);
}


/* =========================================
   ANIMATION
========================================= */

.rectc1-row.left {
    opacity: 1;

    transform: translateX(0);
}

.rectc1-row.right {
    opacity: 1;

    transform: translateX(0);
}


/* Optional visible class */

.rectc1-row.visible {
    opacity: 1;

    transform: translateX(0);
}


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

@media (max-width: 900px) {

    .rectc1-container {
        padding: 60px 4%;
    }

    .rectc1-row {
        gap: 20px;
    }

    .rectc1 {
        padding: 25px;
    }

    .rectc1-img {
        width: 280px;

        height: 190px;
    }

    .rectc1 h2 {
        font-size: 15px;
    }

    .rectc1 .icon {
        font-size: 45px;
    }

}


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

@media (max-width: 700px) {

    .rectc1-container {
        padding: 50px 20px;
    }

    .rectc1-row,
    .rectc1-row.left,
    .rectc1-row.right {
        flex-direction: column;

        gap: 20px;
    }

    .rectc1 {
        width: 100%;

        padding: 25px;

        border-radius: 25px;
    }

    .rectc1-img {
        width: 100%;

        max-width: 450px;

        height: 220px;

        margin: 0 auto;
    }

    .rectc1 .icon {
        font-size: 40px;
    }

    .rectc1 h2 {
        font-size: 15px;

        line-height: 1.5;
    }

}


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

@media (max-width: 480px) {

    .Contact {
        padding: 7px 15px;

        font-size: 12px;
    }

    .rectc1-container {
        padding: 40px 15px;
    }

    .rectc10 {
        gap: 25px;
    }

    .rectc1 {
        padding: 20px;

        gap: 12px;
    }

    .rectc1-img {
        height: 180px;
    }

    .rectc1 .icon {
        font-size: 32px;
    }

    .rectc1 h2 {
        font-size: 14px;
    }

}






/* =========================================
   TEXT CARD
========================================= */
/* =========================================
   DETAIL ENGINEERING CARD
========================================= */

.rectc1 {
    width: 65%;
    min-height: 180px;

    padding: 30px 35px;

    box-sizing: border-box;

    display: flex;
    align-items: center;

    gap: 20px;

    background-color: rgba(39, 39, 131, 0.48);

    border-radius: 35px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);

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


/* Hover */

.rectc1:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.2);
}


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

.rectc1 .icon {
    width: 100px;
    height: 100px;

    flex-shrink: 0;

    display: flex;

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

    font-size: 70px;

    color: #22d3ee;
}


/* =========================================
   TEXT
========================================= */

.rectc1 h2 {
    font-family: "Jost", sans-serif;

    margin: 0;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.6;

    color: #ffffff;
}


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

.rectc1-img {
    width: 330px;

    height: 220px;

    object-fit: cover;

    border-radius: 20px;

    flex-shrink: 0;

    margin: 0;

    display: block;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.35s ease;
}


/* Image hover */

.rectc1-img:hover {
    transform: scale(1.03);
}


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

@media (max-width: 900px) {

    .rectc1-container {
        padding: 60px 5%;
    }

    .rectc1-row,
    .rectc1-row.left,
    .rectc1-row.right {

        flex-direction: column;

        gap: 25px;
    }

    .rectc1 {
        width: 100%;

        min-height: auto;

        padding: 25px;
    }

    .rectc1-img {
        width: 100%;

        max-width: 500px;

        height: 260px;
    }

}


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

@media (max-width: 600px) {

    .rectc1-container {
        padding: 45px 5%;
    }

    .rectc10 {
        gap: 30px;
    }

    .rectc1 {
        width: 100%;

        padding: 22px;

        border-radius: 25px;

        flex-direction: column;

        text-align: center;
    }

    .rectc1 .icon {
        width: 55px;

        height: 55px;

        font-size: 35px;
    }

    .rectc1 h2 {
        font-size: 14px;

        line-height: 1.5;
    }

    .rectc1-img {
        width: 100%;

        height: 210px;

        border-radius: 15px;
    }

}


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

@media (max-width: 400px) {

    .rectc1-container {
        padding: 35px 15px;
    }

    .rectc1 {
        padding: 18px;
    }

    .rectc1 h2 {
        font-size: 13px;
    }

    .rectc1-img {
        height: 180px;
    }

}


/* =========================================
   ANALYTICS / SCADA CARDS
========================================= */

.card-container1 {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 70px 5%;

    box-sizing: border-box;

    display: grid;

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

    gap: 30px;
}


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

.card1 {
    display: flex;

    flex-direction: column;

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);

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


/* Card hover */

.card1:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}


/* =========================================
   CARD IMAGE
========================================= */

.card1 img {
    width: 100%;

    height: 220px;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}


.card1:hover img {
    transform: scale(1.04);
}


/* =========================================
   CARD CONTENT
========================================= */

.card-content1 {
    padding: 25px 22px 28px;

    flex: 1;

    background: #ffffff;
}


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

.card-content1 h2 {
    margin: 0 0 12px;

    color: #101953;

    font-family: "Jost", sans-serif;

    font-size: 1.25rem;

    font-weight: 600;

    line-height: 1.3;
}


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

.card-content1 p {
    margin: 0;

    color: #555555;

    font-family: "Jost", sans-serif;

    font-size: 0.95rem;

    line-height: 1.6;

    font-weight: 400;
}


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

@media (max-width: 900px) {

    .card-container1 {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px;

        padding: 55px 5%;
    }

}


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

@media (max-width: 600px) {

    .card-container1 {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 45px 6%;
    }

    .card1 img {
        height: 210px;
    }

    .card-content1 {
        padding: 22px 20px 25px;
    }

    .card-content1 h2 {
        font-size: 1.15rem;
    }

    .card-content1 p {
        font-size: 0.9rem;
    }

}


/* =========================================
   SCADA BANNER
========================================= */

.scadaimg {
    position: relative;

    width: 100%;

    height: 300px;

    margin-top: 100px;

    margin-bottom: 100px;

    overflow: hidden;
}


/* =========================================
   SCADA BANNER IMAGE
========================================= */

.scadaimg img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


/* Image zoom */

.scadaimg:hover img {
    transform: scale(1.04);
}


/* =========================================
   DARK OVERLAY
========================================= */

.scadaimg::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(35, 33, 58, 0.623);

    z-index: 1;
}


/* =========================================
   SCADA BANNER TITLE
========================================= */

.scadaimg h1 {
    position: absolute;

    top: 50%;
    left: 50%;

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

    color: #ffffff;

    font-size: 2.5rem;

    text-align: center;

    font-family: "Jost", sans-serif;

    font-weight: 600;

    margin: 0;

    z-index: 2;

    width: 90%;
}


/* =========================================
   SCADA BANNER DESCRIPTION
========================================= */

.scadaimg h2 {
    position: absolute;

    top: 58%;
    left: 50%;

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

    color: #ffffff;

    font-size: 1rem;

    text-align: center;

    font-family: "Jost", sans-serif;

    font-weight: 500;

    line-height: 1.6;

    margin: 0;

    z-index: 2;

    width: 80%;
}


/* =========================================
   SCADA BANNER TABLET
========================================= */

@media (max-width: 900px) {

    .scadaimg {
        height: 260px;

        margin-top: 70px;

        margin-bottom: 70px;
    }

    .scadaimg h1 {
        font-size: 2.2rem;
    }

    .scadaimg h2 {
        width: 85%;

        font-size: 0.95rem;
    }

}


/* =========================================
   SCADA BANNER MOBILE
========================================= */

@media (max-width: 600px) {

    .scadaimg {
        height: 220px;

        margin-top: 50px;

        margin-bottom: 50px;
    }

    .scadaimg h1 {
        font-size: 1.8rem;

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

    .scadaimg h2 {
        top: 60%;

        width: 90%;

        font-size: 0.85rem;

        line-height: 1.4;
    }

}
/* =========================================
   MES INTRODUCTION SECTION
========================================= */

.arc {
    position: relative;

    width: 100%;

    padding: 70px 7%;

    box-sizing: border-box;

    background: #f5f6fb;

    text-align: center;

    overflow: hidden;
}


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

.arc h1 {
    position: relative;

    z-index: 2;

    margin: 0 auto 25px;

    max-width: 1000px;

    color: #101953;

    font-family: "Schedule", sans-serif;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 600;

    line-height: 1.2;
}


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

.arc h1::after {
    content: "";

    display: block;

    width: 70px;

    height: 4px;

    margin: 15px auto 0;

    background: #22d3ee;

    border-radius: 10px;
}


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

.arc h2 {
    position: relative;

    z-index: 2;

    max-width: 1000px;

    margin: 0 auto;

    color: #282323;

    font-family: "Jost", sans-serif;

    font-size: 1.05rem;

    font-weight: 400;

    line-height: 1.8;

    text-align: center;
}


/* =========================================
   DECORATIVE ELEMENTS
========================================= */

.ar {
    position: absolute;

    inset: 0;

    pointer-events: none;

    z-index: 1;
}


/* Decorative circles */

.ar div {
    position: absolute;

    border-radius: 50%;

    opacity: 0.08;

    background: #101953;
}


/* Circle 1 */

#n1 {
    width: 180px;

    height: 180px;

    top: -70px;

    left: -60px;
}


/* Circle 2 */

#n2 {
    width: 120px;

    height: 120px;

    top: 25%;

    right: -40px;
}


/* Circle 3 */

#n3 {
    width: 90px;

    height: 90px;

    bottom: 10%;

    left: 15%;
}


/* Circle 4 */

#n4 {
    width: 150px;

    height: 150px;

    bottom: -80px;

    right: 15%;
}


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

@media (max-width: 768px) {

    .arc {
        padding: 60px 5%;
    }

    .arc h1 {
        font-size: 2.2rem;
    }

    .arc h2 {
        font-size: 1rem;

        line-height: 1.7;
    }

}


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

@media (max-width: 500px) {

    .arc {
        padding: 50px 20px;
    }

    .arc h1 {
        font-size: 1.8rem;

        margin-bottom: 20px;
    }

    .arc h1::after {
        width: 55px;

        height: 3px;

        margin-top: 12px;
    }

    .arc h2 {
        font-size: 0.92rem;

        line-height: 1.7;
    }


    /* Smaller decorative circles */

    #n1 {
        width: 120px;
        height: 120px;
    }

    #n2 {
        width: 80px;
        height: 80px;
    }

    #n3 {
        width: 60px;
        height: 60px;
    }

    #n4 {
        width: 100px;
        height: 100px;
    }

}
/* =========================================
   INDUSTRIES WE SERVE
========================================= */
/* =========================================
   INDUSTRIES WE SERVE SECTION
========================================= */

.we {
    width: 100%;

    padding: 80px 5%;

    box-sizing: border-box;

    background: #f4f4f8;

    font-family: "Jost", sans-serif;

    display: grid;

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

    gap: 25px;
}


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

.weh1 {
    grid-column: 1 / -1;

    max-width: 900px;

    width: 100%;

    margin: 0 auto 35px;

    text-align: center;
}


.weh1 h1 {
    margin: 0 0 18px;

    font-family: "Schedule", sans-serif;

    font-size: clamp(2rem, 4vw, 3.2rem);

    font-weight: 700;

    line-height: 1.2;

    color: #070775;
}


.weh2 {
    font-family: "Jost", sans-serif;

    font-size: 1.05rem;

    line-height: 1.7;

    color: #555;

    font-weight: 400;
}


/* =========================================
   INDUSTRY COLUMN
========================================= */

.we-column {
    display: flex;

    flex-direction: column;

    gap: 25px;

    width: 100%;
}


/* =========================================
   INDUSTRY CARD
========================================= */

.we-card {
    position: relative;

    width: 100%;

    min-height: 230px;

    padding: 25px 20px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #ffffff;

    border-radius: 20px;

    border: 1px solid rgba(7, 7, 117, 0.08);

    box-shadow:
        0 8px 25px rgba(7, 7, 117, 0.08);

    overflow: hidden;

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


/* =========================================
   CARD HOVER
========================================= */

.we-card:hover {
    transform: translateY(-8px);

    border-color: rgba(34, 211, 238, 0.5);

    box-shadow:
        0 15px 35px rgba(7, 7, 117, 0.15);
}


/* =========================================
   INDUSTRY IMAGE / ICON
========================================= */

.we-icon {
    position: relative;

    width: 120px;

    height: 120px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 15px;
}


.we-icon img {
    position: relative;

    width: 100px;

    height: 100px;

    object-fit: contain;

    z-index: 2;

    transition: transform 0.35s ease;
}


.we-card:hover .we-icon img {
    transform: scale(1.08);
}


/* =========================================
   GLOW BEHIND IMAGE
========================================= */

.weicon-glow {
    position: absolute;

    width: 100px;

    height: 100px;

    border-radius: 50%;

    background: rgba(34, 211, 238, 0.12);

    filter: blur(5px);

    z-index: 1;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.we-card:hover .weicon-glow {
    transform: scale(1.15);

    background: rgba(34, 211, 238, 0.2);
}


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

.we-card h3 {
    margin: 5px 0 0;

    color: #070775;

    font-family: "Jost", sans-serif;

    font-size: 1.15rem;

    font-weight: 600;

    line-height: 1.3;
}


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

.we-card p {
    margin: 8px 0 0;

    color: #666;

    font-family: "Jost", sans-serif;

    font-size: 0.9rem;

    line-height: 1.5;
}


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

@media (max-width: 1100px) {

    .we {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        padding: 70px 5%;
    }

}


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

@media (max-width: 700px) {

    .we {
        grid-template-columns: 1fr;

        padding: 60px 6%;

        gap: 20px;
    }

    .weh1 {
        margin-bottom: 25px;
    }

    .weh1 h1 {
        font-size: 2rem;
    }

    .weh2 {
        font-size: 0.95rem;

        line-height: 1.6;
    }

    .we-column {
        gap: 20px;
    }

    .we-card {
        min-height: 220px;
    }

}


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

@media (max-width: 480px) {

    .we {
        padding: 50px 15px;
    }

    .weh1 h1 {
        font-size: 1.8rem;
    }

    .weh2 {
        font-size: 0.9rem;
    }

    .we-card {
        min-height: 210px;

        padding: 22px 15px;
    }

    .we-icon {
        width: 100px;

        height: 100px;
    }

    .we-icon img {
        width: 85px;

        height: 85px;
    }

    .weicon-glow {
        width: 85px;

        height: 85px;
    }

    .we-card h3 {
        font-size: 1.05rem;
    }

}
/* =========================================
   CARD HOVER
========================================= */
/* =========================================
   CARD HOVER
========================================= */

.we-card:hover {
    transform: translateY(-8px);

    border-color: #00d9ef;

    box-shadow:
        0 15px 35px rgba(7, 7, 117, 0.16);
}


/* =========================================
   IMAGE CONTAINER
========================================= */

.we-icon {
    position: relative;

    width: 120px;

    height: 120px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f1f7fa;

    overflow: hidden;
}


/* =========================================
   GLOW EFFECT
========================================= */

.weicon-glow {
    position: absolute;

    width: 100%;

    height: 100%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 229, 244, 0.25),
            transparent 65%
        );

    opacity: 0;

    transition: opacity 0.3s ease;

    z-index: 1;
}


/* Show glow on hover */

.we-card:hover .weicon-glow {
    opacity: 1;
}


/* =========================================
   INDUSTRY IMAGE
========================================= */

.we-icon img {
    position: relative;

    width: 80px;

    height: 80px;

    object-fit: contain;

    z-index: 2;

    transition:
        transform 0.35s ease;
}


/* Image zoom */

.we-card:hover .we-icon img {
    transform: scale(1.1);
}


/* =========================================
   INDUSTRY NAME
========================================= */

.we-card h3 {
    margin: 0;

    color: #070775;

    font-family: "Jost", sans-serif;

    font-size: 1.05rem;

    line-height: 1.35;

    font-weight: 600;
}


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

.we-card p {
    margin: 8px 0 0;

    color: #666;

    font-family: "Jost", sans-serif;

    font-size: 0.9rem;

    line-height: 1.5;
}


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

@media (max-width: 1100px) {

    .we {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        padding: 70px 5%;
    }

    .we-column {
        gap: 20px;
    }

}


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

@media (max-width: 700px) {

    .we {
        grid-template-columns: 1fr;

        padding: 60px 6%;
    }

    .we-column {
        gap: 20px;
    }

    .we-card {
        min-height: 220px;
    }

}


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

@media (max-width: 480px) {

    .we {
        padding: 50px 15px;
    }

    .we-icon {
        width: 105px;

        height: 105px;

        margin-bottom: 15px;
    }

    .we-icon img {
        width: 70px;

        height: 70px;
    }

    .we-card h3 {
        font-size: 1rem;
    }

    .we-card p {
        font-size: 0.85rem;
    }

}
@media (max-width: 600px) {

    .we {
        display: block;

        width: 100%;

        padding: 55px 6%;
    }


    /* Section heading */

    .weh1 {
        width: 100%;

        margin-bottom: 40px;

        text-align: center;
    }


    .weh1 h1 {
        font-size: 2rem;

        line-height: 1.2;
    }


    .weh2 {
        font-size: 0.95rem;

        line-height: 1.7;
    }


    /* Columns */

    .we-column {
        display: flex;

        flex-direction: column;

        gap: 20px;

        width: 100%;

        margin-bottom: 20px;
    }


    /* Cards */

    .we-card {
        width: 100%;

        min-height: 220px;

        padding: 25px 15px;
    }


    /* Image circle */

    .we-icon {
        width: 105px;

        height: 105px;

        margin-bottom: 15px;
    }


    /* Industry image */

    .we-icon img {
        width: 70px;

        height: 70px;
    }


    /* Glow */

    .weicon-glow {
        width: 100%;

        height: 100%;
    }


    /* Industry name */

    .we-card h3 {
        font-size: 1rem;

        line-height: 1.4;
    }


    /* Description */

    .we-card p {
        font-size: 0.85rem;

        line-height: 1.5;
    }

}







/* =========================================
   ENGINEERING & CONSULTANCY CONTAINER
========================================= */

.encont {
    width: 100%;
    box-sizing: border-box;

    background-color: #86869b3a;

    background-image:
        linear-gradient(
            to left,
            rgba(56, 134, 154, 0.153) 2px,
            transparent 9px
        ),
        linear-gradient(
            to bottom,
            rgba(43, 80, 86, 0.174) 2px,
            transparent 1px
        );

    background-size: 100px 100px;
}


/* =========================================
   SMALL TEXT
========================================= */

.smart1 {
    font-weight: bold;

    font-size: 1rem;

    color: #030310;

    font-family: "Jost", sans-serif;

    display: block;

    padding-bottom: 500px;

    text-align: center;
}


/* =========================================
   FLOAT ANIMATION
========================================= */

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}


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

.smart {

    display: inline-block;

    font-size: clamp(1.5rem, 7vw, 2.5rem);

    margin: 50px;

    padding: 50px;

    font-weight: 800;

    line-height: 1.2;

    font-family: "schedule", sans-serif;

    background: linear-gradient(
        135deg,
        #0a0a5d 0%,
        #0202ff 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    position: relative;

    transition:
        all 0.2s cubic-bezier(
            0.25,
            0.8,
            0.25,
            1
        );
}


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

.smart:hover {

    filter:
        drop-shadow(
            0px 4px 12px
            rgba(22, 22, 172, 0.313)
        );

    animation:
        float 1s ease-in-out infinite;
}


/* =========================================
   UNDERLINE
========================================= */

.smart::after {

    content: "";

    position: absolute;

    width: 100%;

    transform: scaleX(0);

    height: 3px;

    bottom: 0;

    left: 0;

    background:
        linear-gradient(
            90deg,
            #080816,
            #0b0b39
        );

    transform-origin: bottom center;

    transition:
        transform 0.3s ease-out;
}


/* =========================================
   UNDERLINE HOVER
========================================= */

.smart:hover::after {

    transform: scaleX(1);
}


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

@media (max-width: 600px) {

    .smart {

        font-size: 2rem;

        margin: 30px 10px;

        padding: 30px 15px;

        text-align: center;
    }

    .smart1 {

        font-size: 0.9rem;

        padding: 0 20px 100px;
    }

}



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

.smart1 {
    text-align: center;
    padding: 40px 20px;
}


/* Heading */

.smart1 h2 {
    display: inline-block;

    position: relative;

    font-size: 2rem;

    color: #000000;

    font-family: "Jost", sans-serif;

    padding: 50px 70px;

    margin: 0;

    z-index: 1;
}


/* Rounded border */

.smart1 h2::before {
    content: "";

    position: absolute;

    inset: 8px;

    border: 5px solid #d90f20b0;

    border-radius: 50px;

    pointer-events: none;

    z-index: -1;

    transition: all 0.3s ease;
}


/* Hover effect */

.smart1 h2:hover::before {
    border-color: #070775;

    transform: scale(1.03);
}


/* =========================================
   ANALYTICS / MES CARDS
========================================= */

.card-container1 {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 60px 5%;

    box-sizing: border-box;

    display: grid;

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

    gap: 30px;
}


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

@media (max-width: 900px) {

    .card-container1 {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px;
    }

}


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

@media (max-width: 600px) {

    .smart1 {
        padding: 30px 15px;
    }

    .smart1 h2 {
        font-size: 1.5rem;

        padding: 40px 45px;
    }

    .smart1 h2::before {
        inset: 5px;

        border-width: 4px;

        border-radius: 35px;
    }

    .card-container1 {
        grid-template-columns: 1fr;

        padding: 40px 6%;

        gap: 20px;
    }

}




/* =====================================================
   ANALYTICS / MES - CARD SECTION
===================================================== */

.card-container1 {
    width: 90%;
    max-width: 1200px;

    margin: 60px auto 0;
    padding: 0;

    display: grid;

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

    gap: 30px;

    box-sizing: border-box;
}


/* =====================================================
   SECOND CARD ROW
===================================================== */

.card-container1[style*="margin-top"] {
    margin-top: 0 !important;
}


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

.card-container1 .card1 {

    width: 100%;

    min-height: 410px;

    background: #ffffff;

    border: 1px solid #e1e4ed;

    border-radius: 18px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    box-sizing: border-box;

    box-shadow:
        0 6px 20px rgba(16, 25, 83, 0.10);

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


/* =====================================================
   CARD HOVER
===================================================== */

.card-container1 .card1:hover {

    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(16, 25, 83, 0.18);
}


/* =====================================================
   CARD IMAGE
===================================================== */

.card-container1 .card1 > img {

    width: 100%;

    height: 210px;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}


/* IMAGE ZOOM */

.card-container1 .card1:hover > img {

    transform: scale(1.05);
}


/* =====================================================
   CARD CONTENT
===================================================== */

.card-container1 .card-content1 {

    padding: 24px 22px 28px;

    flex: 1;

    box-sizing: border-box;
}


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

.card-container1 .card-content1 h2 {

    margin: 0 0 12px;

    color: #101953;

    font-family: "Jost", sans-serif;

    font-size: 1.25rem;

    font-weight: 600;

    line-height: 1.35;
}


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

.card-container1 .card-content1 p {

    margin: 0;

    color: #555555;

    font-family: "Jost", sans-serif;

    font-size: 0.94rem;

    font-weight: 400;

    line-height: 1.65;
}


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

@media (max-width: 900px) {

    .card-container1 {

        width: 90%;

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

        gap: 25px;
    }

}


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

@media (max-width: 600px) {

    .card-container1 {

        width: 90%;

        grid-template-columns: 1fr;

        gap: 22px;

        margin-top: 40px;
    }


    .card-container1[style*="margin-top"] {

        margin-top: 0 !important;
    }


    .card-container1 .card1 {

        min-height: auto;
    }


    .card-container1 .card1 > img {

        height: 210px;
    }


    .card-container1 .card-content1 {

        padding: 22px 20px 25px;
    }


    .card-container1 .card-content1 h2 {

        font-size: 1.15rem;
    }


    .card-container1 .card-content1 p {

        font-size: 0.9rem;
    }

}








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

.encimg2 {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}


/* Banner Image */

.encimg2 img {
    width: 100%;
    height: 500px;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


/* Dark Overlay */

.encimg2::after {
    content: "";

    position: absolute;

    inset: 0;

    background-color: rgba(71, 48, 48, 0.5);

    z-index: 1;
}


/* Banner Heading */

.encimg2 h1 {
    position: absolute;

    top: 50%;
    left: 50%;

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

    width: 90%;

    margin: 0;

    padding: 20px;

    box-sizing: border-box;

    color: #ffffff;

    font-size: clamp(2rem, 5vw, 3.5rem);

    font-weight: 700;

    text-align: center;

    font-family: "schedule", sans-serif;

    line-height: 1.2;

    z-index: 2;

    animation: bannerFade 1s ease;
}


/* =========================================
   BANNER ANIMATION
========================================= */

@keyframes bannerFade {

    from {
        opacity: 0;

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

    to {
        opacity: 1;

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

}


/* =========================================
   IMAGE HOVER
========================================= */

.encimg2:hover img {
    transform: scale(1.04);
}


/* =========================================
   PARAGRAPH
========================================= */

.parac {
    display: block;

    max-width: 1000px;

    margin: 50px auto;

    padding: 0 30px;

    font-size: 1.2rem;

    font-weight: 400;

    line-height: 1.7;

    color: #222222;

    font-family: "Jost", sans-serif;

    text-align: center;

    box-sizing: border-box;
}


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

@media (max-width: 992px) {

    .encimg2,
    .encimg2 img {
        height: 400px;
    }

    .encimg2 h1 {
        font-size: 2.7rem;
    }

}


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

@media (max-width: 576px) {

    .encimg2,
    .encimg2 img {
        height: 280px;
    }

    .encimg2 h1 {
        font-size: 2rem;

        width: 95%;

        padding: 15px;
    }

    .parac {
        margin: 35px auto;

        padding: 0 20px;

        font-size: 1rem;

        line-height: 1.6;
    }

}





/* =================================
   TIMELINE
================================= */

.timeline {
    position: relative;

    max-width: 1200px;

    margin: 80px auto;

    padding: 20px 0;
}


/* =================================
   CENTRE LINE
================================= */

.timeline::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 5px;

    background: #070775;

    z-index: 0;
}


/* =================================
   TIMELINE ITEM
================================= */

.tc {
    position: relative;

    width: 50%;

    padding: 20px 50px;

    box-sizing: border-box;

    z-index: 2;
}


/* LEFT */

.tc.left {
    left: 0;
}


/* RIGHT */

.tc.right {
    left: 50%;
}


/* =================================
   TIMELINE DOT
================================= */

.tc::after {
    content: "";

    position: absolute;

    width: 20px;
    height: 20px;

    top: 35px;

    background: #00e5f4;

    border: 4px solid #070775;

    border-radius: 50%;

    z-index: 3;

    box-sizing: border-box;
}


/* LEFT DOT */

.tc.left::after {
    right: -10px;
}


/* RIGHT DOT */

.tc.right::after {
    left: -10px;
}


/* =================================
   TEXT BOX
================================= */

.txtbx {
    padding: 25px 30px;

    background: #ffffff;

    border-radius: 15px;

    border: 1px solid #e1e4ed;

    box-shadow:
        0 8px 25px rgba(7, 7, 117, 0.12);

    font-family: "Jost", sans-serif;

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


/* CARD HOVER */

.txtbx:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(7, 7, 117, 0.18);
}


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

.txtbx h2 {
    margin: 0 0 8px;

    color: #070775;

    font-family: "Jost", sans-serif;

    font-size: 1.5rem;

    font-weight: 700;
}


/* =================================
   SMALL TEXT
================================= */

.txtbx small {
    display: block;

    margin-bottom: 12px;

    color: #00a9c0;

    font-size: 0.9rem;

    font-weight: 600;
}


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

.txtbx p {
    margin: 0;

    color: #555555;

    font-size: 0.95rem;

    line-height: 1.6;
}


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

@media (max-width: 768px) {

    .timeline {
        margin: 50px 20px;

        padding-left: 30px;
    }


    /* Move centre line to left */

    .timeline::before {
        left: 15px;

        transform: none;

        width: 4px;
    }


    .tc,
    .tc.left,
    .tc.right {

        width: 100%;

        left: 0;

        padding:
            20px 0 20px 35px;
    }


    /* Move dots to left */

    .tc.left::after,
    .tc.right::after {

        left: 5px;

        right: auto;

        width: 18px;

        height: 18px;
    }


    .txtbx {
        padding: 22px;
    }


    .txtbx h2 {
        font-size: 1.3rem;
    }

}
/* =================================
   CONTENT BOX
================================= */
/* =================================
   TIMELINE TEXT BOX
================================= */

.txtbx {
    position: relative;

    padding: 25px 30px;

    background: floralwhite;

    border-radius: 15px;

    font-family: "Jost", sans-serif;

    box-shadow:
        0 8px 25px rgba(7, 7, 117, 0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    z-index: 2;
}


/* =================================
   HOVER
================================= */

.txtbx:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(7, 7, 117, 0.25);
}


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

.txtbx h2 {

    margin: 0 0 8px;

    color: #070775;

    font-family: "Jost", sans-serif;

    font-size: 24px;

    font-weight: 600;

    line-height: 1.3;
}


/* =================================
   STEP NUMBER
================================= */

.txtbx small {

    display: block;

    color: #22a6c3;

    font-family: "Jost", sans-serif;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 12px;
}


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

.txtbx p {

    margin: 0;

    color: #444;

    font-family: "Jost", sans-serif;

    font-size: 15px;

    line-height: 1.7;
}


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

@media (max-width: 768px) {

    .txtbx {
        padding: 22px 20px;

        border-radius: 12px;
    }

    .txtbx h2 {
        font-size: 20px;
    }

    .txtbx small {
        font-size: 13px;
    }

    .txtbx p {
        font-size: 14px;

        line-height: 1.6;
    }

}
/* =================================
   CENTRE CIRCLES
================================= */
/* =================================
   TIMELINE CIRCLES
================================= */

.tc::after {
    content: "";

    position: absolute;

    top: 38px;

    width: 22px;
    height: 22px;

    background: #ffffff;

    border: 5px solid #070775;

    border-radius: 50%;

    box-sizing: border-box;

    z-index: 5;
}


/* =================================
   LEFT CIRCLE
================================= */

.tc.left::after {
    right: -11px;
}


/* =================================
   RIGHT CIRCLE
================================= */

.tc.right::after {
    left: -11px;
}


/* =================================
   ARROWS
================================= */

/* LEFT CARD → CENTRE LINE */

.tc.left .txtbx::after {
    content: "";

    position: absolute;

    top: 30px;

    right: -12px;

    width: 0;
    height: 0;

    border-top: 12px solid transparent;

    border-bottom: 12px solid transparent;

    border-left: 12px solid floralwhite;
}


/* CENTRE LINE → RIGHT CARD */

.tc.right .txtbx::after {
    content: "";

    position: absolute;

    top: 30px;

    left: -12px;

    width: 0;
    height: 0;

    border-top: 12px solid transparent;

    border-bottom: 12px solid transparent;

    border-right: 12px solid floralwhite;
}


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

@media (max-width: 768px) {

    .timeline {

        margin: 50px 20px;

        padding-left: 30px;
    }


    /* Centre line moves to left */

    .timeline::before {

        left: 15px;

        transform: none;
    }


    /* All cards become full width */

    .tc,
    .tc.left,
    .tc.right {

        width: 100%;

        left: 0;

        padding:
            15px 0 15px 40px;
    }


    /* All circles sit on the line */

    .tc.left::after,
    .tc.right::after {

        left: 4px;

        right: auto;
    }


    /* Remove arrows on mobile */

    .tc.left .txtbx::after,
    .tc.right .txtbx::after {

        display: none;
    }


    .txtbx {

        padding: 20px;
    }


    .txtbx h2 {

        font-size: 20px;
    }


    .txtbx p {

        font-size: 14px;
    }

}

/* =================================
   CLICKABLE TIMELINE CARDS
================================= */
/* =================================
   CLICKABLE TIMELINE CARD
================================= */

.timeline-card {
    display: block;

    text-decoration: none;

    color: inherit;

    cursor: pointer;
}


/* Keep text styling */

.timeline-card .txtbx {
    cursor: pointer;

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


/* Card hover */

.timeline-card:hover .txtbx {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(7, 7, 117, 0.25);
}


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

.timeline-card h2 {

    transition: color 0.3s ease;

}


.timeline-card:hover h2 {

    color: #00a9c0;

}


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

.timeline-card small {

    transition: color 0.3s ease;

}


.timeline-card:hover small {

    color: #070775;

}


/* =================================
   EXPLORE TEXT
================================= */

.card-link {

    display: inline-block;

    margin-top: 15px;

    color: #070775;

    font-family: "Jost", sans-serif;

    font-size: 14px;

    font-weight: 600;

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


.timeline-card:hover .card-link {

    color: #00a9c0;

    transform: translateX(5px);
}

/* Hover effect */
/* =================================
   CLICKABLE CARD HOVER
================================= */

.timeline-card:hover .txtbx {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(7, 7, 117, 0.25);

    border-color: #22d3ee;
}


/* Heading changes color */

.timeline-card:hover h2 {
    color: #22a6c3;
}


/* Explore Service moves slightly */

.timeline-card:hover .card-link {
    color: #22a6c3;

    transform: translateX(5px);
}
/* ==============================
   EXPLORE SERVICES HERO
============================== */
/* =========================================
   SERVICES HERO
========================================= */

.services-hero {
    min-height: 420px;

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

    text-align: center;

    padding: 60px 8%;

    box-sizing: border-box;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.279),
            rgba(18, 18, 23, 0.82)
        ),
        url("/assets/img/SCADA3.jpg");

    background-size: cover;
    background-position: center;

    font-family: "Jost", sans-serif;
}


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

.services-hero-content {
    max-width: 850px;

    color: #ffffff;
}


/* Small Label */

.services-hero-content span {
    display: inline-block;

    color: #22d3ee;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 15px;

    text-transform: uppercase;
}


/* Main Heading */

.services-hero-content h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: "schedule", sans-serif;

    font-size: clamp(2.5rem, 6vw, 4.5rem);

    font-weight: 700;

    line-height: 1.1;
}


/* Description */

.services-hero-content p {
    max-width: 750px;

    margin: 0 auto;

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

    font-family: "Jost", sans-serif;

    font-size: 1.05rem;

    font-weight: 400;

    line-height: 1.7;
}


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

.services-hero-btn {
    display: inline-block;

    margin-top: 30px;

    padding: 12px 28px;

    background: #22d3ee;

    color: #070775;

    border: 2px solid #22d3ee;

    border-radius: 25px;

    text-decoration: none;

    font-family: "Jost", sans-serif;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.3s ease;
}


.services-hero-btn:hover {
    background: #070775;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(34, 211, 238, 0.3);
}


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

@media (max-width: 768px) {

    .services-hero {
        min-height: 380px;

        padding: 50px 6%;
    }

    .services-hero-content h1 {
        font-size: 3rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

}


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

@media (max-width: 480px) {

    .services-hero {
        min-height: 350px;

        padding: 45px 20px;
    }

    .services-hero-content span {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .services-hero-content h1 {
        font-size: 2.3rem;
    }

    .services-hero-content p {
        font-size: 0.9rem;

        line-height: 1.6;
    }

    .services-hero-btn {
        padding: 10px 22px;
    }

}

.services-hero-content h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(40px, 6vw, 70px);

    font-weight: 700;

    line-height: 1.1;
}


.services-hero-content p {
    max-width: 700px;

    margin: 0 auto;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.8;

    opacity: 0.9;
}

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

.services-hero-btn {
    display: inline-flex;

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

    gap: 10px;

    margin-top: 30px;

    padding: 13px 28px;

    background: #22d3ee;

    color: #070775;

    text-decoration: none;

    border-radius: 30px;

    font-family: "Jost", sans-serif;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* Button arrow / span */

.services-hero-btn span {
    margin: 0;

    color: #070775;

    font-size: 18px;

    letter-spacing: 0;
}


/* Hover */

.services-hero-btn:hover {

    background: #ffffff;

    color: #070775;

    transform: translateY(-3px);

    box-shadow:
        0 8px 25px rgba(34, 211, 238, 0.35);
}


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

@media (max-width: 600px) {

    .services-hero {

        min-height: 350px;

        padding: 50px 25px;
    }


    .services-hero-content h1 {

        font-size: 40px;
    }


    .services-hero-content p {

        font-size: 15px;
    }


    .services-hero-btn {

        margin-top: 25px;

        padding: 11px 22px;

        font-size: 14px;
    }

}



/* =========================================
   FEATURE CARD
========================================= */

.feature-card {
    background: #ffffff;

    padding: 30px 25px;

    border-radius: 18px;

    border: 1px solid rgba(7, 7, 117, 0.08);

    box-shadow:
        0 8px 25px rgba(7, 7, 117, 0.08);

    text-align: center;

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


/* Hover */

.feature-card:hover {
    transform: translateY(-8px);

    border-color: #22d3ee;

    box-shadow:
        0 15px 35px rgba(7, 7, 117, 0.16);
}


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

.feature-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

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

    border-radius: 50%;

    background: #eeeef5;

    color: #070775;

    font-size: 30px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.feature-card:hover .feature-icon {
    background: #22d3ee;

    color: #070775;

    transform: scale(1.08);
}


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

.feature-card h3 {
    margin: 0 0 12px;

    color: #070775;

    font-family: "Jost", sans-serif;

    font-size: 1.2rem;

    font-weight: 600;
}
/* =========================================
   FEATURE CARDS
========================================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    align-items: stretch;
}


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

.feature-card {
    background: #02064969;
    border: 3px solid #ffffff;
    border-radius: 16px;

    padding: 32px 24px;

    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    min-height: 300px;
    height: 100%;

    box-sizing: border-box;

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


/* =========================================
   CARD HOVER
========================================= */

.feature-card:hover {
    transform: translateY(-10px);

    border-color: #09b8df;

    box-shadow:
        0 12px 30px rgba(205, 184, 184, 0.25);
}


/* =========================================
   FEATURE ICON
========================================= */

.feature-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 20px;

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

    border-radius: 50%;

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

    transition: 0.4s ease;
}


/* SVG ICON */

.feature-icon svg {
    width: 34px;
    height: 34px;

    color: #00ffea;

    stroke-width: 2;
}


/* ICON HOVER */

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.15);

    background: rgba(255, 255, 255, 0.15);
}


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

.feature-card h3 {
    color: #ffffff;

    font-size: 1.25rem;

    font-weight: 600;

    margin: 0 0 14px;

    font-family: "Jost", sans-serif;

    line-height: 1.4;
}


/* =========================================
   CARD PARAGRAPH
========================================= */

.feature-card p {
    color: #d9d9d9;

    font-size: 0.95rem;

    line-height: 1.7;

    margin: 0;

    flex-grow: 1;
}


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

@media (max-width: 1200px) {

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

}


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

@media (max-width: 992px) {

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-card {
        padding: 28px 20px;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

}

/* =========================================
   CAPABILITIES SECTION
========================================= */

.features {
    background: #eeeef5;

    padding: 80px 6%;

    font-family: "Jost", sans-serif;
}


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

.features-header {
    text-align: center;

    margin-bottom: 50px;
}


/* SMALL LABEL */

.features-tag {
    display: inline-block;

    color: #052328;

    font-size: 0.85rem;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 12px;

    border: 1px solid rgba(0, 0, 0, 0.888);

    padding: 4px 14px;

    border-radius: 20px;
}


/* MAIN HEADING */

.features-header h2 {
    color: #641010;

    font-size: 2.2rem;

    font-weight: 600;

    margin: 0;
}
/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;

        padding: 0 15px;
    }

    .feature-card {
        padding: 24px 18px;

        min-height: auto;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 58px;
        height: 58px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

}

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

.feature-card p {
    margin: 0;

    color: #555;

    font-family: "Jost", sans-serif;

    font-size: 0.92rem;

    line-height: 1.6;
}
/* ========================================= */
/* Feature Card */
/* ========================================= */

.feature-card{
    background:#02064969;
    border:3px solid #ffffff;
    border-radius:16px;
    padding:32px 24px;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    height:100%;
    transition:transform .4s ease,
               box-shadow .4s ease,
               border-color .4s ease;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#09b8df;
    box-shadow:0 12px 30px rgba(205, 184, 184, 0.25);
}

/* ========================================= */
/* Feature Icon */
/* ========================================= */
.feature-icon{
    width:72px;
    height:72px;
    margin:0 auto 20px;

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

    border-radius:50%;

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

    transition:.4s ease;
}

.feature-icon svg{
    width:34px;
    height:34px;
    color:#00ffea;
    stroke-width:2;
}

.feature-card:hover .feature-icon{

    transform:rotate(8deg) scale(1.15);

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

}
.feature-card:hover .feature-icon{
    transform:rotate(10deg) scale(1.15);
}

/* ========================================= */
/* Heading */
/* ========================================= */

.feature-card h3{
    color:#ffffff;
    font-size:1.25rem;
    font-weight:600;
    margin:0 0 14px;
    font-family:jost;
    line-height:1.4;
}

/* ========================================= */
/* Paragraph */
/* ========================================= */

.feature-card p{
    color:#d9d9d9;
    font-size:.95rem;
    line-height:1.7;
    margin:0;
    flex-grow:1;
}

/* ========================================= */
/* Tablet */
/* ========================================= */

@media (max-width:992px){

.feature-card{
    padding:28px 20px;
}

.feature-icon{
    width:64px;
    height:64px;
    line-height:64px;
    font-size:2.1rem;
}

}

/* ========================================= */
/* Mobile */
/* ========================================= */

@media (max-width:576px){

.feature-card{
    padding:24px 18px;
}

.feature-card h3{
    font-size:1.1rem;
}

.feature-card p{
    font-size:.9rem;
}

.feature-icon{
    width:58px;
    height:58px;
    line-height:58px;
    font-size:1.8rem;
}

}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* Slider */

/* NOTE: this file previously had TWO full copies of the Industry 4.0 slider
   CSS (.block/.slider/.slides/.slide/.slide-text/.slider-btn, all defined
   twice with slightly different values). That duplication meant the second
   copy silently overrode the first for every shared property, which is a
   common cause of "the slider looks/behaves inconsistently" bugs. The
   duplicate has been removed below -- only the dot-navigation styles are
   kept here, since the remaining slider block (further down) never
   defined those.
*/

/* ============================= */
/* DOTS (used by the slider below) */
/* ============================= */

.slider-dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    z-index:5;

    display:flex;
    gap:8px;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
    transition:.3s ease;
}

.dot.active{
    background:#ffffff;
    transform:scale(1.3);
}





.block {
    width: 100%;
    padding: 80px 5%;
    background: #eeeef5;
    box-sizing: border-box;
    text-align: center;
    font-family: jost, sans-serif;
}



.slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   SLIDES WRAPPER
========================================================= */

.slides {
    display: flex;
    width: 100%;
    transition: transform 0.7s ease-in-out;
}


/* =========================================================
   INDIVIDUAL SLIDE
========================================================= */

.slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 500px;
    flex-shrink: 0;
    overflow: hidden;
}


/* =========================================================
   SLIDE IMAGE
========================================================= */

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.8s ease;
}


/* =========================================================
   DARK IMAGE MASK
========================================================= */

.slide::after {
    content: "";
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(52, 40, 40, 0.63);

    z-index: 1;
}


/* =========================================================
   SLIDE TEXT
   TEXT STAYS IN CENTER
========================================================= */

.slide-text {
    position: absolute;

    top: 50%;
    left: 50%;

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

    width: min(850px, 82%);

    text-align: center;

    z-index: 2;
}


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

.slide-text h3 {
    color: #ffffff;

    font-family: jost, sans-serif;

    font-size: clamp(1.8rem, 4vw, 3.2rem);

    font-weight: 600;

    line-height: 1.25;

    margin: 0 0 20px 0;

    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}


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

.slide-text p {
    color: #ffffff;

    font-family: jost, sans-serif;

    font-size: clamp(0.9rem, 1.5vw, 1.1rem);

    font-weight: 400;

    line-height: 1.7;

    max-width: 760px;

    margin: 0 auto;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}


.slider-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    width: 52px;
    height: 52px;

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

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.45);

    color: #ffffff;

    font-size: 22px;

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

    cursor: pointer;

    transition: all 0.3s ease;

    backdrop-filter: blur(5px);
}


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

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.75);

    transform: translateY(-50%) scale(1.08);
}


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

.slider-btn.prev {
    left: 20px;
}


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

.slider-btn.next {
    right: 20px;
}


/* =========================================================
   IMAGE HOVER EFFECT
========================================================= */

.slider:hover .slide img {
    transform: scale(1.02);
}


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

@media (max-width: 992px) {

    .block {
        padding: 70px 4%;
    }

    .slider {
        max-width: 100%;
    }

    .slide {
        height: 430px;
    }

    .slide-text {
        width: 78%;
    }

    .slide-text h3 {
        font-size: 2.2rem;
    }

    .slide-text p {
        font-size: 1rem;
    }

    .slider-btn {
        width: 46px;
        height: 46px;

        font-size: 19px;
    }

}


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

@media (max-width: 600px) {

    .block {
        padding: 55px 15px;
    }

    .slider {
        border-radius: 12px;
    }

    .slide {
        height: 380px;
    }


    /* Slightly darker mask on mobile */

    .slide::after {
        background: rgba(0, 0, 0, 0.58);
    }


    /* Center text */

    .slide-text {
        width: 72%;
    }


    .slide-text h3 {
        font-size: 1.5rem;

        line-height: 1.3;

        margin-bottom: 12px;
    }


    .slide-text p {
        font-size: 0.85rem;

        line-height: 1.55;
    }


    /* Mobile arrows */

    .slider-btn {
        width: 38px;
        height: 38px;

        font-size: 16px;
    }


    .slider-btn.prev {
        left: 8px;
    }

    .slider-btn.next {
        right: 8px;
    }

}


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

@media (max-width: 400px) {

    .slide {
        height: 350px;
    }

    .slide-text {
        width: 68%;
    }

    .slide-text h3 {
        font-size: 1.3rem;
    }

    .slide-text p {
        font-size: 0.78rem;
    }

}


/* =========================================
   TECHNOLOGIES WE USE
========================================= */

.block2 {
    width: 100%;
    padding: 80px 5%;
    box-sizing: border-box;
    background: #ffffff;
    text-align: center;
    font-family: jost, sans-serif;
}


/* Heading */

.block2 h2 {
    margin: 0 0 45px;

    color: #5c1515;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 600;

    line-height: 1.2;
}


/* Badge container */

.badges {
    max-width: 1100px;

    margin: 0 auto;

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    align-items: center;

    gap: 16px;
}


/* Individual badges */

.badge {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 22px;

    min-height: 44px;

    box-sizing: border-box;

    border: 2px solid #2c3672;

    border-radius: 50px;

    background: #f5f6fb;

    color: #1499ae;

    font-size: 0.95rem;

    font-weight: 500;

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


/* Hover */
/* 
.badge:hover {
    transform: translateY(-4px);

    background: #858793;

    color: #ffffff;

    box-shadow: 0 8px 20px rgba(16, 25, 83, 0.2);

    cursor: default;
}
 */

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

@media (max-width: 768px) {

    .block2 {
        padding: 65px 4%;
    }

    .block2 h2 {
        margin-bottom: 35px;
    }

    .badges {
        gap: 12px;
    }

    .badge {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

}


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

@media (max-width: 500px) {

    .block2 {
        padding: 55px 20px;
    }

    .block2 h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .badges {
        gap: 10px;
    }

    .badge {
        padding: 9px 15px;
        font-size: 0.82rem;
    }

}

/* =========================================
   IIoT MONITORING SECTION
========================================= */

.commission-row {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;

    box-sizing: border-box;

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

    gap: 60px;

    background: #ffffff;
}


/* LEFT TEXT */

.commission-text {
    flex: 1;
    max-width: 600px;
}
.commission-text h1 {
    color: #101953 !important;
    font-family: 'Jost', sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 500 !important;
    line-height: 1.7 !important;
    text-align: left !important;
    margin: 0 !important;
}


/* IMAGE */

.commission-img {
    width: 48%;
    max-width: 550px;

    height: 380px;

    object-fit: cover;

    display: block;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    transition: transform 0.4s ease;
}


/* IMAGE HOVER */

.commission-img:hover {
    transform: scale(1.02);
}
/* =========================================
   SCADA SECTION HEADING
========================================= */
/* =========================================
   SCADA FULL WIDTH SECTION
========================================= */

.commission-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 70px 5%;
    box-sizing: border-box;
}


/* SCADA HEADING */

.commission-container h1 {
    margin: 0 0 40px;

    color: #101953;

    font-family: 'Jost', sans-serif;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 600;

    line-height: 1.2;

    text-align: center;
}


/* Underline */

.commission-container h1::after {
    content: "";

    display: block;

    width: 70px;
    height: 4px;

    margin: 15px auto 0;

    background: #101953;

    border-radius: 10px;
}


/* Tablet */

@media (max-width: 768px) {

    .commission-container {
        padding: 60px 5%;
    }

    .commission-container h1 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

}


/* Mobile */

@media (max-width: 500px) {

    .commission-container {
        padding: 50px 20px;
    }

    .commission-container h1 {
        font-size: 1.8rem;
    }

    .commission-container h1::after {
        width: 55px;
        height: 3px;
    }

}

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

@media (max-width: 900px) {

    .commission-row {
        gap: 35px;
        padding: 70px 5%;
    }

    .commission-text h2 {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .commission-img {
        width: 45%;
        height: 320px;
    }

}


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

@media (max-width: 650px) {

    .commission-row {
        flex-direction: column;

        padding: 55px 20px;

        gap: 30px;
    }

    .commission-text {
        max-width: 100%;
    }

    .commission-text h2 {
        font-size: 1.25rem;

        line-height: 1.6;

        text-align: center;
    }

    .commission-img {
        width: 100%;
        max-width: 100%;

        height: 280px;
    }

}
/* =========================================
   REPORTS SECTION
========================================= */

.report {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 70px 5% 30px; */
    box-sizing: border-box;
    text-align: center;
}

/* Reports Heading */

.report h1 {
    margin: 0 0 35px;

    color: #101953;

    font-family: 'Jost', sans-serif;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 600;

    line-height: 1.2;
}

/* Underline */

.report h1::after {
    content: "";

    display: block;

    width: 70px;
    height: 4px;

    margin: 15px auto 0;

    background: #101953;

    border-radius: 10px;
}


/* Reports Description */

.report .commission-text {
    max-width: 900px;

    margin: 0 auto;
}


/* Description Text */

.report .commission-text h2 {
    margin: 0;

    color: #444444;

    font-family: 'Jost', sans-serif;

    font-size: 1.55rem;

    font-weight: 400;

    line-height: 1.8;

    text-align: center;
}


/* Reports Image */

.report + .commission-img {
    display: block;

    width: min(900px, 90%);

    height: 400px;

    object-fit: cover;

    margin: 20px auto 80px;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    transition: transform 0.3s ease;
}

.report + .commission-img:hover {
    transform: scale(1.02);
}


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

@media (max-width: 768px) {

    .report {
        padding: 60px 5% 25px;
    }

    .report .commission-text h2 {
        font-size: 1rem;
        line-height: 1.7;
    }

    .report + .commission-img {
        height: 320px;
        margin-bottom: 60px;
    }

}


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

@media (max-width: 500px) {

    .report {
        padding: 50px 20px 20px;
    }

    .report h1 {
        font-size: 1.8rem;
    }

    .report h1::after {
        width: 55px;
        height: 3px;
    }

    .report .commission-text h2 {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .report + .commission-img {
        width: 90%;
        height: 250px;
        margin-top: 15px;
        margin-bottom: 50px;
    }

}


/* =========================================
   REMOTE CONTROL SECTION
========================================= */

.commission-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 70px 5%;
    box-sizing: border-box;
    background: #f5f6fb;
}


/* HEADING */

.commission-container h1 {
    margin: 0 0 45px;

    color: #101953;

    font-family: 'Jost', sans-serif;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 600;

    line-height: 1.2;

    text-align: center;
}


/* UNDERLINE */

.commission-container h1::after {
    content: "";

    display: block;

    width: 70px;
    height: 4px;

    margin: 15px auto 0;

    background: #101953;

    border-radius: 10px;
}


/* REMOTE CONTROL ITEMS */

.barbie-item {
    min-height: 70px;

    padding: 18px 24px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    gap: 15px;

    background: #ffffff;

    border: 2px solid #06070e;

    border-radius: 12px;

    color: #100b2b;

    font-family: 'Jost', sans-serif;

    font-size: 1rem;

    font-weight: 500;

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


/* CHECK ICON */

.barbie-item i {
    width: 25px;
    height: 25px;

    display: flex;

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

    flex-shrink: 0;

    background: #11aa28;

    color: #ffffff;

    border-radius: 50%;

    font-size: 12px;
}


/* HOVER */

.barbie-item:hover {
    transform: translateY(-4px);

    border-color: #101953;

    box-shadow: 0 8px 20px rgba(16, 25, 83, 0.12);
}




.remote-control-grid {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

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

    gap: 20px 30px;
}


/* TABLET */

@media (max-width: 768px) {

    .remote-control-grid {
        grid-template-columns: 1fr;
    }

}


/* MOBILE */

@media (max-width: 500px) {

    .commission-container {
        padding: 55px 20px;
    }

    .barbie-item {
        padding: 16px;
        font-size: 0.9rem;
    }

}







.tommy {
  padding: 90px 6vw;
 background: #eeeef5;
  font-family: jost;
}

.tommy__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.tommy__heading {
  color: #4b0808;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.3px;
  font-family: jost;
  margin: 0 0 16px;
}

.tommy__subheading {
  color: rgba(38, 12, 12, 0.65);
  font-size: 1rem;
  font-weight: 300;
  font-family: sans-serif;
  line-height: 1.6;
  margin: 0;
}

.tommy__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}
/* =========================================
   INDUSTRIES WE SERVE
========================================= */

.tom-card {
    background: #ffffff;
    border: 1px solid #e2e4ee;
    border-radius: 18px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    box-shadow: 0 6px 20px rgba(16, 25, 83, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    height: 100%;
}


/* HOVER */

.tom-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(16, 25, 83, 0.16);
}


/* IMAGE */

.tom-card__image {
    width: 100%;
    height: 220px;

    overflow: hidden;

    background: #eeeeee;
}

.tom-card__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}


/* IMAGE ZOOM */

.tom-card:hover .tom-card__image img {
    transform: scale(1.06);
}


/* BODY */

.tom-card__body {
    padding: 24px 22px 26px;

    display: flex;
    flex-direction: column;

    flex: 1;
}


/* TITLE */

.tom-card__body h3 {
    margin: 0 0 12px;

    color: #101953;

    font-family: 'Jost', sans-serif;

    font-size: 1.25rem;

    font-weight: 600;

    line-height: 1.3;
}


/* DESCRIPTION */

.tom-card__body p {
    margin: 0 0 20px;

    color: #555555;

    font-family: 'Jost', sans-serif;

    font-size: 0.95rem;

    font-weight: 400;

    line-height: 1.6;
}


/* LEARN MORE */

.tom-card__link {
    margin-top: auto;

    color: #101953;

    font-family: 'Jost', sans-serif;

    font-size: 0.95rem;

    font-weight: 600;

    text-decoration: none;

    transition: color 0.3s ease;
}

.tom-card__link:hover {
    color: #070775;
}


.project-card-section1 {
  padding: 60px 6vw;
  background-image: linear-gradient(rgb(6, 1, 1), rgba(4, 4, 4, 0.842)), url("/assets/img/water filter.jpg");
  display: flex;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: xx-large;


  background-size: cover;          
  background-position: center;    
  background-repeat: no-repeat;    
}





.project-card-section2 {
  padding: 60px 6vw;
  background-image: linear-gradient(rgba(7, 20, 32, 0.536), rgb(28, 17, 17)), url("/assets/img/water image.jpg");
  display: flex;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: xx-large;


  background-size: cover;          
  background-position: center;    
  background-repeat: no-repeat;    
}






.project-card-section3 {
  padding: 60px 6vw;
  background-image: linear-gradient(rgba(7, 20, 32, 0.536), rgba(4, 4, 4, 0.574)), url("/assets/img/house.jpg");
  display: flex;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: xx-large;


  background-size: cover;          
  background-position: center;    
  background-repeat: no-repeat;    
}






.project-card-section4 {
  padding: 60px 6vw;
  background-image: linear-gradient(rgba(7, 20, 32, 0.536), rgba(4, 4, 4, 0.574)), url("/assets/img/illustration.jpg");
  display: flex;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: xx-large;


  background-size: cover;          
  background-position: center;    
  background-repeat: no-repeat;    
}



.project-card-section6 {
  padding: 60px 6vw;
  background-image: linear-gradient(rgba(7, 20, 32, 0.536), rgba(4, 4, 4, 0.574)), url("/assets/img/poerplant.jpg");
  display: flex;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: xx-large;
  position: relative;

  background-size: cover;          
  background-position: center;    
  background-attachment: fixed; 
}




.project-card-section7 {
  padding: 60px 6vw;
  background-image: linear-gradient(rgba(7, 20, 32, 0.536), rgba(4, 4, 4, 0.574)), url("/assets/img/tower.jpg");
  display: flex;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: xx-large;
  position: relative;

  background-size: cover;          
  background-position: center;    
  background-attachment: fixed; 
}




.project-card-section9 {
  padding: 60px 6vw;
  background-image: linear-gradient(rgba(7, 20, 32, 0.536), rgba(4, 4, 4, 0.574)), url("/assets/img/boilerpl.jpg");
  display: flex;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: xx-large;
  position: relative;

  background-size: cover;          
  background-position: center;    
  background-attachment: fixed; 
}




.project-card-section10 {
  padding: 60px 6vw;
  background-image: linear-gradient(rgba(7, 20, 32, 0.536), rgba(4, 4, 4, 0.574)), url("/assets/img/machineshops.jpg");
  display: flex;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: xx-large;
  position: relative;

  background-size: cover;          
  background-position: center;    
  background-attachment: fixed; 
}






/* ==============================
   PROJECT CARD
============================== */

.project-card {
    background: rgba(8, 49, 131, 0.278);

    border: 1px solid rgba(34, 211, 238, 0.2);

    border-radius: 16px;

    padding: 40px 44px;

    max-width: 900px;
    width: 100%;

    box-shadow: 0 0 30px rgba(34, 211, 238, 0.527);

    box-sizing: border-box;

    backdrop-filter: blur(8px);
}


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

.project-card__title {
    color: #ffffff;

    font-size: 1.8rem;

    font-weight: 600;

    letter-spacing: 0.3px;

    margin: 0 0 28px;

    font-family: "Jost", sans-serif;

    padding-bottom: 16px;

    border-bottom: 1px solid rgba(34, 211, 238, 0.3);
}


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

.project-card__row {
    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 25px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    align-items: start;
}


.project-card__row:last-child {
    border-bottom: none;
}


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

.project-card__label {
    color: #22d3ee;

    font-size: 1rem;

    font-weight: 600;

    font-family: "Jost", sans-serif;

    text-transform: uppercase;

    letter-spacing: 0.6px;

    padding-top: 3px;
}


/* ==============================
   VALUE
============================== */

.project-card__value {
    color: #ffffff;

    font-size: 1rem;

    font-family: "Jost", sans-serif;

    font-weight: 400;

    line-height: 1.7;
}


/* ==============================
   SCOPE LIST
============================== */

.project-card__scope-list {
    list-style: none;

    margin: 0;

    padding: 0;

    display: flex;

    flex-direction: column;

    gap: 9px;
}


/* ==============================
   SCOPE ITEMS
============================== */

.project-card__scope-list li {
    position: relative;

    padding-left: 20px;

    color: #ffffff;

    font-size: 1rem;

    font-family: "Jost", sans-serif;

    font-weight: 400;

    line-height: 1.5;
}


/* Cyan bullet */

.project-card__scope-list li::before {
    content: "•";

    position: absolute;

    left: 0;

    color: #22d3ee;

    font-size: 20px;
}


/* ==============================
   HOVER
============================== */

.project-card {
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 0 40px rgba(34, 211, 238, 0.65);
}


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

@media (max-width: 700px) {

    .project-card {
        padding: 30px 24px;

        max-width: 100%;
    }

    .project-card__title {
        font-size: 1.5rem;
    }

    .project-card__row {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .project-card__label {
        font-size: 0.9rem;
    }

    .project-card__value,
    .project-card__scope-list li {
        font-size: 0.95rem;
    }
}
















:root{
  --paper:#F3F4F6;
  --panel:#FFFFFF;
  --ink:#14171A;
  --blue:#0B3D91;
  --blue-bright:#1857C4;
  --red:#D7263D;
  --grey:#8B93A1;
  --grey-line:#D6D9DE;
  --grid-line: rgba(11,61,145,0.06);
  --radius: 2px;
}

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

body{
  background-color:var(--paper);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 32px 32px;
  color:var(--ink);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
}

.wrap{
  max-width:1040px;
  margin:0 auto;
  padding: 48px 24px 96px;
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  background:#E4E6E9;
  border:1.5px solid var(--blue-bright);
  border-radius: var(--radius);
  padding: 40px 44px;
  margin-bottom: 56px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  top:-1.5px; left:-1.5px;
  width:18px; height:18px;
  border-top:2px solid var(--red);
  border-left:2px solid var(--red);
}
.hero::after{
  content:"";
  position:absolute;
  bottom:-1.5px; right:-1.5px;
  width:18px; height:18px;
  border-bottom:2px solid var(--red);
  border-right:2px solid var(--red);
}
.hero-tag{
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  letter-spacing:.18em;
  color:var(--blue);
  text-transform:uppercase;
  margin:0 0 14px;
}
.hero h1{
  font-family:'Jost', sans-serif;
  font-weight:500;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height:1.35;
  margin:0;
  color:var(--ink);
  max-width: 620px;
}


.section-head{
  display:flex;
  align-items:baseline;
  gap:14px;
  margin-bottom: 40px;
}
.section-head .idx{
  font-family:Schedule;
  font-size:12px;
  color:var(--red);
  letter-spacing:.1em;
}
.section-head h2{
  font-family:'Jost', sans-serif;
  font-weight:600;
  font-size: 30px;
  letter-spacing:.06em;
  margin:0;
}
.section-head .rule{
  flex:1;
  height:1px;
  background: repeating-linear-gradient(90deg, var(--grey-line) 0 6px, transparent 6px 11px);
}

/* ---------- LAYOUT ---------- */
.grid{
  display:grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
}

/* ---------- FORM ---------- */
form{ position:relative; }

.field{
  position:relative;
  margin-bottom: 26px;
  padding-left: 22px;
}
.field::before{
  content:"";
  position:absolute;
  left:0; top:11px;
  width:9px; height:9px;
  border-radius:50%;
  border:1.5px solid var(--blue);
  background:var(--panel);
}
.field::after{
  content:"";
  position:absolute;
  left:4px; top:20px;
  width:1px; height:calc(100% - 14px);
  background: var(--grey-line);
}
.field:last-of-type::after{ display:none; }

label{
  display:block;
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:300;
  color:var(--grey);
  margin-bottom:8px;
  
}
label .req{ color:var(--red); margin-left:4px; }

input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select{
  width:100%;
  background:var(--panel);
  border:1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family:'Inter', sans-serif;
  font-size:14.5px;
  color:var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input::placeholder, textarea::placeholder{ color:#888888; }

input:focus, textarea:focus, select:focus{
  outline:none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(24,87,196,0.14);
}
.field:focus-within::before{
  background: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(24,87,196,0.16);
}

textarea{ min-height:110px; resize:vertical; }


.select-wrap{ position:relative; }
select{
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
  padding-right: 38px;
}
.select-wrap::after{
  content:"";
  position:absolute;
  right:14px; top:50%;
  width:8px; height:8px;
  border-right:1.5px solid var(--blue);
  border-bottom:1.5px solid var(--blue);
  transform: translateY(-65%) rotate(45deg);
  pointer-events:none;
}

.submit-row{
  display:flex;
  align-items:center;
  gap:18px;
  margin-top: 36px;
  padding-left:22px;
}
button.submit{
  font-family:jost, sans-serif;
  font-size:12.5px;
  letter-spacing:.14em;
  font-weight:600;
  text-transform:uppercase;
  background: var(--ink);
  color:#9d0d0d;
  border:none;
  border-radius: var(--radius);
  padding: 14px 30px;
  cursor:pointer;
  position:relative;
  transition: background .15s ease, transform .1s ease;
}
button.submit::after{
  content:"→";
  margin-left:10px;
}
button.submit:hover{ background: var(--blue-bright); }
button.submit:active{ transform: translateY(1px); }

.status-note{
  font-family:jost, sans-serif;
  font-size:11px;
  color:var(--grey);
}
.status-note.ok{ color: var(--blue-bright); }


.contact{
  background: var(--panel);
  border:1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 32px 30px;
  height:fit-content;
  position:relative;
}
.contact::before{
  content:"";
  position:absolute;
  left:0; top:24px; bottom:24px;
  width:3px;
  background: var(--red);
}

.contact-block{
  padding: 18px 0;
  border-bottom: 1px dashed var(--grey-line);
}
.contact-block:first-child{ padding-top:0; }
.contact-block:last-child{ border-bottom:none; padding-bottom:0; }

.contact-block .k{
  font-family:jost, sans-serif;
  font-size:10.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--blue);
  margin:0 0 10px;
}
.contact-block p{
  margin:0 0 4px;
  font-size:14px;
  line-height:1.55;
  color:var(--ink);
  font-family:jost, sans-serif;
}
.contact-block a{
  color:var(--blue-bright);
  text-decoration:none;
  border-bottom:1px solid rgba(24,87,196,0.35);
  font-family:jost, sans-serif;
}
.contact-block a:hover{ border-bottom-color: var(--blue-bright); }
.contact-block .muted{ color:var(--grey); font-size:13px; }

@media (max-width: 820px){
  .grid{ grid-template-columns: 1fr; gap:44px; }
  .hero{ padding: 30px 26px; }
  .wrap{ padding: 32px 18px 72px; }
}


































.grid-container{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(240px,1fr));
    gap:40px 24px;
    max-width:1100px;
    width:90%;
    margin:80px auto;
    align-items:stretch;
    box-sizing:border-box;
}

/* Tablet */

@media (max-width:992px){

.grid-container{
    width:92%;
    gap:30px 20px;
    margin:60px auto;
}

}

/* Mobile */

@media (max-width:576px){

.grid-container{
    grid-template-columns:1fr;
    width:94%;
    gap:20px;
    margin:40px auto;
}

}


.card{
    position:relative;
    background-color:#6353535d;
    border:3px solid #555555;
    border-radius:16px;
    padding:24px 20px 20px;
    min-height:170px;
    display:flex;
    flex-direction:column;
    box-shadow:0 4px 6px rgba(132,26,26,.738);

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

/* Hover Effect */

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 24px rgba(223, 246, 233, 0.831);
}

/* Tablet */

@media (max-width:992px){

.card{
    min-height:180px;
}

}

/* Mobile */

@media (max-width:576px){

.card{
    padding:20px 18px;
    min-height:auto;
}

}
/* ========================================= */
/* Briefcase Top Handle */
/* ========================================= */

.card::before{
    content:'';
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    width:50px;
    height:15px;
    border:3px solid #2c18ac99;
    border-bottom:none;
    border-top-left-radius:8px;
    border-top-right-radius:8px;
    background-color:#3f6de093;
    z-index:1;
    transition:transform .35s ease;
}

/* Small Hover Effect */

.card:hover::before{
    transform:translateX(-50%) scale(1.05);
}

/* Tablet */

@media (max-width:992px){

.card::before{
    width:46px;
    height:14px;
}

}

/* Mobile */

@media (max-width:576px){

.card::before{
    width:42px;
    height:13px;
    top:-13px;
}

}
/* ========================================= */
/* Card Slots */
/* ========================================= */

.card-slot-left,
.card-slot-right{
    position:absolute;
    top:10px;
    width:16px;
    height:6px;
    background-color:#0fc1e9;
    border-radius:3px;
    transition:all .35s ease;
}

.card-slot-left{
    left:16px;
}

.card-slot-right{
    right:16px;
}

/* Small Hover Effect */

.card:hover .card-slot-left{
    left:18px;
}

.card:hover .card-slot-right{
    right:18px;
}

/* Tablet */

@media (max-width:992px){

.card-slot-left{
    left:14px;
}

.card-slot-right{
    right:14px;
}

}

/* Mobile */

@media (max-width:576px){

.card-slot-left,
.card-slot-right{
    width:14px;
    height:5px;
    top:9px;
}

.card-slot-left{
    left:12px;
}

.card-slot-right{
    right:12px;
}

}

/* ========================================= */
/* Card Header */
/* ========================================= */

.card-header{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:4px;
    margin-bottom:12px;
    color:#101953;
}

.card-header i{
    width:20px;
    height:20px;
    stroke-width:2.5;
    flex-shrink:0;
    transition:transform .35s ease;
}

.card:hover .card-header i{
    transform:rotate(10deg) scale(1.12);
}

.card-title{
    font-size:1rem;
    font-weight:700;
    letter-spacing:-0.3px;
    font-family:schedule;
    line-height:1.3;
}

.card-content{
    font-size:.9rem;
    color:#444444;
    line-height:1.6;
    font-weight:500;
    flex-grow:1;
}

/* ========================= */
/* Tablet */
/* ========================= */

@media (max-width:992px){

.card-title{
    font-size:1rem;
}

.card-content{
    font-size:.88rem;
}

}

/* ========================= */
/* Mobile */
/* ========================= */

@media (max-width:576px){

.card-header{
    gap:8px;
    margin-bottom:10px;
}

.card-header i{
    width:18px;
    height:18px;
}

.card-title{
    font-size:16px;
}

.card-content{
    font-size:14px;
    line-height:1.6;
}

}

/* ========================================= */
/* Card Fade Animation */
/* ========================================= */

.card{
    opacity:0;
    transform:translateY(35px);
    animation:cardReveal .8s ease forwards;
}

.card:nth-child(1){animation-delay:.1s;}
.card:nth-child(2){animation-delay:.2s;}
.card:nth-child(3){animation-delay:.3s;}
.card:nth-child(4){animation-delay:.4s;}
.card:nth-child(5){animation-delay:.5s;}
.card:nth-child(6){animation-delay:.6s;}
.card:nth-child(7){animation-delay:.7s;}
.card:nth-child(8){animation-delay:.8s;}
.card:nth-child(9){animation-delay:.9s;}
.card:nth-child(10){animation-delay:1s;}
.card:nth-child(11){animation-delay:1.1s;}

@keyframes cardReveal{

    from{
        opacity:0;
        transform:translateY(35px);
    }

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

}









.card99 {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #555555;
    color: #4a4017;
}














/* 
* {
  box-sizing: border-box;
} */

body {
  margin: 0;
  background: #F4F5F7;
  font-family: 'Jost', sans-serif;
}

.site-footer {
  background: #FFFFFF;
  border-top: 1px solid #E2E4E9;
  padding: 60px 6vw 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 44px;
}

.footer-heading {
  font-family: schedule, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #be0b29;
  margin: 0 0 18px;
}

.footer-heading-blue {
  color: #1E4FA3;
}

.footer-text {
  font-size: 15px;
  line-height: 1.65;
  color: #124194;
  margin: 0;
  max-width: 320px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  font-size: 15px;
  color: #5B5F66;
  line-height: 1.5;
}

.footer-links a {
  color: #5B5F66;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #1E4FA3;
}

.footer-address {
  color: #5B5F66;
}

/* ===== Map ===== */

.footer-map-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 44px;
}

.footer-map {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E4E9;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.35s ease;
}

.footer-map:hover iframe {
  filter: none;
}

.footer-map-link {
  display: inline-block;
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: #733c46;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.footer-map-link:hover {
  color: #1E4FA3;
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, #C81E3A 0%, #C81E3A 18%, #1E4FA3 18%, #1E4FA3 100%);
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 0 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #E2E4E9;
}

.footer-copyright {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: #8A8E96;
  margin: 0;
}

.footer-tags {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: #8A8E96;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.footer-tags span {
  color: #8A8E96;
  transition: color 0.2s ease;
}

.footer-tags span:hover {
  color: #0F1114;
  cursor: default;
}

.footer-tags span:not(:last-child)::after {
  content: '\00b7';
  margin: 0 10px;
  color: #032185;
}








@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: 48px 6vw 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-map {
    height: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* ========================================= */
/* Footer Responsive + Animation */
/* ========================================= */

.footer-top{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    max-width:1400px;
    margin:auto;
    align-items:flex-start;
}

.footer-col{
    width:100%;
}

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

.footer-links li{
    transition:transform .3s ease;
}

.footer-links li:hover{
    transform:translateX(6px);
}

.footer-links a{
    transition:all .3s ease;
}

.footer-links a:hover{
    padding-left:8px;
}

.footer-map{
    overflow:hidden;
    border-radius:12px;
}

.footer-map iframe{
    width:100%;
    height:300px;
    border:0;
    transition:transform .4s ease;
}

.footer-map:hover iframe{
    transform:scale(1.03);
}

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

.footer-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}

.site-footer{
    animation:footerFade .8s ease;
}

@keyframes footerFade{

from{
    opacity:0;
    transform:translateY(40px);
}

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

}

/* ========================= */
/* Tablet */
/* ========================= */

@media (max-width:992px){

.footer-top{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.footer-map iframe{
    height:250px;
}

.footer-bottom{
    flex-direction:column;
}

}

/* ========================= */
/* Mobile */
/* ========================= */

@media (max-width:576px){

.footer-top{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-links{
    padding:0;
}

.footer-col{
    margin-bottom:20px;
}

.footer-map iframe{
    height:220px;
}

.footer-tags{
    justify-content:center;
}

.footer-bottom{
    gap:15px;
}

}



























.core-headline{
    animation: fadeUp 1s ease forwards;
}

.sub-narrative{
    animation: fadeUp 1s ease .3s forwards;
    opacity:0;
}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}







/* ========================= */
/* Laptop */
/* ========================= */

@media(max-width:1200px){

.launchpad-banner{

padding:100px 5%;

}

}

/* ========================= */
/* Tablet */
/* ========================= */

@media(max-width:768px){

.launchpad-banner{

min-height:75vh;

padding:80px 20px;

}

.core-headline{

font-size:48px;

}

.sub-narrative{

font-size:18px;

max-width:90%;

}

}

/* ========================= */
/* Mobile */
/* ========================= */

@media(max-width:576px){

.launchpad-banner{

min-height:65vh;

padding:70px 15px;

}

.core-headline{

font-size:34px;

}

.sub-narrative{

font-size:16px;

line-height:1.6;

}

}



/* Chrome, Edge, Safari */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#e6e6e6;
}

::-webkit-scrollbar-thumb{
    background:#3a3aad;
    border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
    background:#d23b5e;
}


.launchpad-banner {
    background-color: #ffffff;
    text-align: center;
    padding: 60px 6vw;
    /* max-width: 800px; */
    margin: 0 auto;
}

.launchpad-banner .core-headline {
    display: inline-block;
    font-size: clamp(4.5rem, 7vw, 7rem);
    font-weight: 800;
    line-height: 1.2;
    font-family: schedule; 
    
    background: linear-gradient(135deg, #d5120c 20%, #0a237ce8 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    position: relative;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.launchpad-banner .sub-narrative {
    color: #07090c;
    font-size: 1.5rem;
    font-weight: 550;
}


/* 
.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
    width: 100%;
} */

.capability-pod {
    background:   #0e052b;
    border: 1px solid #bd3131;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.engine-room-icon {
    color: #1447b6; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.pillar-title {
    font-size: 1.45rem;
    color: #8594b5;
    font-weight: 700;
    FONT-FAMILY: jost;
}

.blueprint-text {
    color: #485a74;
    font-size: 0.95rem;
    line-height: 1.6;
}


.capability-pod:hover {
    top: -8px; 
    border-color: #15437c;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 
                0 10px 10px -5px rgba(0, 0, 0, 0.03),
                0 0 0 3px rgba(37, 99, 235, 0.05); 
}

.capability-pod:hover .engine-room-icon {
    transform: scale(1.1); 
}


/* ========================================= */
/* Video Section */
/* ========================================= */

.mp4vid{
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mp4vid video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;

    /* Slow Cinematic Zoom */
    animation: videoZoom 18s ease-in-out infinite alternate;
}

@keyframes videoZoom{
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.08);
    }
}

.mp4vid__overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5,1,14,.82) 30%,
        rgba(255,255,255,.16) 100%
    );
    z-index: 2;
}



.mp4vid__btn:hover{
    transform: translateY(-6px) scale(1.05);
}



.mp4vid__content{
    position: relative;
    z-index: 3;
    width: min(900px,90%);
    margin: auto;
    padding: 20px;
    text-align: center;

    animation: fadeVideo 1s ease;
}

@keyframes fadeVideo{

    from{
        opacity:0;
        transform:translateY(40px);
    }

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

}

.mp4vid__content h2{
    font-size: clamp(2rem,5vw,4rem);
    font-weight:600;
    margin-bottom:20px;
    color:rgba(255,255,255,.9);
    line-height:1.2;
}

.mp4vid__content p{
    font-size:1.1rem;
    line-height:1.8;
    font-weight:500;
    margin-bottom:30px;
    color:rgba(255,255,255,.9);
}

.mp4vid__btn{
    display:inline-block;
    padding:14px 32px;
    background:linear-gradient(
        to bottom,
        rgb(0,0,0) 30%,
        rgb(114,110,110) 100%
    );
    color:#fff8f8;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:all .35s ease;
}

/* Hover Effect */
.mp4vid__btn:hover{
    transform:translateY(-6px);
}

/* ========================= */
/* Tablet */
/* ========================= */

@media (max-width:992px){

    .mp4vid{
        min-height:65vh;
    }

    .mp4vid__content{
        width:90%;
        padding:20px;
    }

}

/* ========================= */
/* Mobile */
/* ========================= */

@media (max-width:576px){

    .mp4vid{
        min-height:55vh;
    }

    .mp4vid__content{
        width:95%;
        padding:15px;
    }

    .mp4vid__content h2{
        font-size:32px;
    }

    .mp4vid__content p{
        font-size:16px;
        line-height:1.7;
    }

    .mp4vid__btn{
        padding:12px 26px;
        font-size:15px;
    }

}






















/* Container & Section Styles */
.vm-section {
  padding: 80px 24px;
  background-color: #ffffff;
  font-family: 'schedule', sans-serif;
  color: #c03939;
  display: flex;
  justify-content: center;
  align-items: center;
}



.vm-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    width:min(1300px,90%);
    margin:auto;
}



.vm-card-frame {
  position: relative; /* Needed to anchor the gradient overlay */
  width: 100%;
  max-width: 420px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #ffffff; /* Switched background to white */
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08),
              0 0 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* White gradient overlay on top of the image */
.vm-card-frame::after {
  content: '';
  position: absolute;
  inset: 0; /* Covers the entire frame */
  background: linear-gradient(
    to bottom,
    rgba(221, 204, 204, 0.332) 30%,      /* Transparent at top */
    rgba(255, 255, 255, 0.429) 100%   /* Soft white blend at bottom */
  );
  pointer-events: none; /* Allows clicks/hovers to pass through */
}
.vm-card-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.801);
}

.vm-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* padding-left:100px; */
}

/* Right Content Column */
.vm-content-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.vm-image-col{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* 

.vm-featured-img{

width:100%;

max-width:550px;

height:auto;

display:block;

} */


@media(max-width:992px){

.vm-container{

flex-direction:column;

text-align:center;

gap:40px;

}

.vm-image-col{

width:100%;

}

.vm-content-col{

width:100%;

}

}



.vm-content-col{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:30px;
}




.vm-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Teal Icon Bubbles */
.vm-icon-bubble {
  width: 46px;
  height: 46px;
  background-color: #605f6a; /* Soft Teal Accent */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.25);
}

.vm-icon-bubble svg {
  width: 22px;
  height: 22px;
}

/* Typography */
.vm-title {
  font-size: 28px;
  font-weight: 800;
  color: #0d3593;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.vm-text {
  font-size: 17px;
  line-height: 1.6;
  color: #07172d;
  font-family: jost, sans-serif;
  margin: 0;
  /* max-width: 380px; */
  font-weight: 500;
}

/* Responsive Breakdown for Tablets & Mobile */
@media (max-width: 768px) {
  .vm-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vm-card-frame {
    height: 380px;
  }

  .vm-content-col {
    gap: 36px;
  }

  .vm-title {
    font-size: 24px;
  }
}



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

.hero-grid-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  padding: 100px 5%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  
  /* Dark Blue/Navy Background Color */
  background-color: #0f376cda;
  
  /* CSS Blueprint Grid Lines Generator */
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
}



/* Content Container */
.hero-content-wrapper {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

/* Main Headline */
.hero-heading {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 32px 0;
}

/* Paragraph Description */
.hero-description {
  color: #edf5ffa9;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  max-width: 720px;
}






/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-heading {
    font-size: 2.75rem;
  }
}

@media (max-width: 640px) {
  .hero-grid-section {
    padding: 60px 24px;
    background-size: 40px 40px; /* Slightly smaller grid on mobile */
  }

  .hero-heading {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .stats-container {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-number {
    font-size: 2.25rem;
  }
}


























@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

.stats-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
    color: rgb(160, 28, 28);
}

.stat-item {
  display: flex;
  flex-direction: column;
  color: #000000;
  text-align: left;
    color: rgb(160, 28, 28);
}







.stat-number {
  font-size: 3rem;      
  font-weight: 400;
  line-height: 1.2;
  FONT-FAMILY: schedule, sans-serif;
  color:rgb(87, 76, 76);
}





.stat-label {
  font-size: 2rem;       /* Same size font as image */
  font-weight: 500;
  line-height: 1.2;
  FONT-FAMILY: schedule, sans-serif;
  color: rgb(27, 17, 115);
}


.stat-item {
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  
}


@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 32px;
  }
  
  .stat-item {
    font-size: 1.5rem;
  }
}






.tangledbarbie {
  font-family: schedule, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #e94444;
  text-align: left;
  letter-spacing: 1px;
  line-height: 1.2;
  background: linear-gradient(90deg, #4e0f05 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 25px rgba(30, 106, 188, 0.012);
  margin: 0;
  padding: 40px;
}

@media (max-width: 768px) {
  .tangledbarbie {
    font-size: 2rem;
  }
}










.nav-container{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    width:min(1400px,95%);
    margin:auto;
    padding:50px 0;
}



@media (max-width:992px){

.nav-container{

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

}

}




@media (max-width:576px){

.nav-container{

grid-template-columns:1fr;

gap:18px;

padding:30px 15px;

}

}

/* Individual Navigation Links */
.nav-container .nav-item {
  flex: 1;
  display: flex;
  width:100%;

height:100%;

padding:30px 20px;

transition:.35s;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 8px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
}




.nav-item:hover{

transform:translateY(-10px);

}




.nav-item:hover .nav-icon{

transform:scale(1.15);

transition:.35s;

}


.nav-label{

transition:.35s;

}

.nav-item:hover .nav-label{

transform:translateY(3px);

}



.nav-item{

opacity:0;

transform:translateY(40px);

animation:cardReveal .7s forwards;

}

.nav-item:nth-child(1){

animation-delay:.1s;

}

.nav-item:nth-child(2){

animation-delay:.2s;

}

.nav-item:nth-child(3){

animation-delay:.3s;

}

.nav-item:nth-child(4){

animation-delay:.4s;

}

.nav-item:nth-child(5){

animation-delay:.5s;

}

.nav-item:nth-child(6){

animation-delay:.6s;

}

@keyframes cardReveal{

to{

opacity:1;

transform:translateY(0);

}

}





.nav-icon{

width:55px;

height:55px;

}

@media(max-width:576px){

.nav-icon{

width:45px;

height:45px;

}

}













/* Vertical Separator Lines */
.nav-container .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-color);
}

/* Icon Styles */
.nav-container .nav-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  transition: transform 0.2s ease;
}

.nav-container .nav-item:hover .nav-icon {
  transform: translateY(-2px);
}

/* Label Styles */
.nav-container .nav-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-blue);
  text-align: center;
  position: relative;
  padding-bottom: 6px;
}

/* Active State Underline */
.nav-container .nav-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-blue);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-container .nav-item.active .nav-label::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
  }
  .nav-container .nav-item {
    flex: 1 1 33.33%;
    margin-bottom: 16px;
  }
  .nav-container .nav-item::after {
    display: none;
  }
}










/* ========================================= */
/* Global Responsive */
/* ========================================= */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

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

video{
    max-width:100%;
    height:auto;
}

.container,
.vm-container,
.hero-content-wrapper,
.stats-container,
.footer-top,
.nav-container{
    width:min(1400px,92%);
    margin:auto;
}

/* ========================= */
/* Laptop */
/* ========================= */

@media (max-width:1200px){

body{
    overflow-x:hidden;
}

}

/* ========================= */
/* Tablet */
/* ========================= */

@media (max-width:992px){

body{
    overflow-x:hidden;
}

section{
    padding-left:20px;
    padding-right:20px;
}

}

/* ========================= */
/* Mobile */
/* ========================= */

@media (max-width:768px){

section{
    padding-top:60px;
    padding-bottom:60px;
}

h1{
    line-height:1.2;
}

p{
    line-height:1.7;
}

}

/* ========================= */
/* Small Mobile */
/* ========================= */

@media (max-width:576px){

body{
    overflow-x:hidden;
}

button,
a{
    min-height:44px;
}

}

/* ========================= */
/* Extra Small Devices */
/* ========================= */

@media (max-width:400px){

body{
    font-size:14px;
}

}





.career-section{
    position:relative;
    width:100%;
    padding:90px 5%;
    box-sizing:border-box;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;

    /* Same Background as Homepage */

    background-color:#0f376cda;

    background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);

    background-size:60px 60px;
}

.career-content{
    max-width:850px;
    z-index:2;
}

.career-heading{
    color:#fff;
    font-family:schedule;
    font-size:clamp(2rem,5vw,3.2rem);
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.career-description{
    color:#edf5ffa9;
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:40px;
}

.career-btn{
    display:inline-block;
    padding:16px 42px;
    border-radius:50px;
    background:#fff;
    color:#0f376c;
    text-decoration:none;
    font-weight:700;
    transition:.35s ease;
}

.career-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

/* Tablet */

@media(max-width:992px){

.career-section{
    padding:70px 5%;
}

}

/* Mobile */

@media(max-width:576px){

.career-section{
    padding:60px 20px;
}

.career-heading{
    font-size:2rem;
}

.career-description{
    font-size:1rem;
}

.career-btn{
    width:100%;
    max-width:260px;
}

}

























/* ========================================= */
/* Process Flow */
/* ========================================= */

.process-section{
    padding:100px 5%;
    background:#f8f9fc;
}

.section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-heading h2{
    font-family:schedule;
    font-size:clamp(2rem,5vw,3rem);
    color:#070775;
    margin-bottom:18px;
}

.section-heading p{
    font-size:1.05rem;
    line-height:1.8;
    color:#555;
}

.process-flow{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.process-card{
    width:250px;
    background:#ffffff;
    border-radius:16px;
    padding:30px 22px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s ease;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-number{
    width:60px;
    height:60px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#070775;
    color:#fff;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.process-card h3{
    color:#070775;
    margin-bottom:12px;
    font-family:jost;
}

.process-card p{
    color:#666;
    line-height:1.7;
}

.process-arrow{
    font-size:32px;
    color:#070775;
    font-weight:bold;
}

/* Tablet */

@media(max-width:992px){

.process-arrow{
    display:none;
}

}

/* Mobile */

@media(max-width:576px){

.process-section{
    padding:70px 20px;
}

.process-card{
    width:100%;
}

}














/* =====================================================
   SCADA PAGE
===================================================== */


/* =========================
   INTRO SECTION
========================= */

.scada-intro {
    width: 100%;
    min-height: 420px;

    padding: 100px 8%;

    box-sizing: border-box;

    display: flex;
    align-items: center;

    background-color: #0f376c;

    background-image:
        linear-gradient(
            to right,
            rgba(255,255,255,0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(255,255,255,0.05) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}


.scada-intro__content {
    width: 100%;
    max-width: 950px;

    margin: 0 auto;

    text-align: center;
}


.scada-intro__content h1 {
    margin: 0 0 25px;

    color: #ffffff;

    font-family: 'Jost', sans-serif;

    font-size: clamp(2rem, 4vw, 3.5rem);

    font-weight: 700;

    line-height: 1.2;
}


.scada-intro__content p {
    margin: 0 auto;

    max-width: 850px;

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

    font-family: 'Jost', sans-serif;

    font-size: 1.05rem;

    line-height: 1.8;
}


/* =========================
   CARD SECTION
========================= */

.scada-cards {

    width: 90%;

    max-width: 1200px;

    margin: 70px auto;

    display: grid;

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

    gap: 30px;

    box-sizing: border-box;
}


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

.scada-card {

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #e2e5ed;

    box-shadow:
        0 8px 25px rgba(16, 25, 83, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    display: flex;

    flex-direction: column;

    min-height: 390px;
}


.scada-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(16, 25, 83, 0.20);
}


/* =========================
   CARD IMAGE
========================= */

.scada-card__image {

    width: 100%;

    height: 210px;

    overflow: hidden;
}


.scada-card__image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}


.scada-card:hover .scada-card__image img {

    transform: scale(1.05);
}


/* =========================
   CARD CONTENT
========================= */

.scada-card__content {

    padding: 25px;

    flex: 1;

    box-sizing: border-box;
}


.scada-card__content h2 {

    margin: 0 0 12px;

    color: #101953;

    font-family: 'Jost', sans-serif;

    font-size: 1.25rem;

    font-weight: 700;

    line-height: 1.4;
}


.scada-card__content p {

    margin: 0;

    color: #555555;

    font-family: 'Jost', sans-serif;

    font-size: 0.94rem;

    line-height: 1.65;
}


/* =========================
   FEATURE SECTION
========================= */

.scada-feature {

    width: 100%;

    min-height: 420px;

    margin: 80px 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #101953;

    overflow: hidden;
}


/* FEATURE IMAGE */

.scada-feature__image {

    width: 100%;

    height: 100%;
}


.scada-feature__image img {

    width: 100%;

    height: 100%;

    min-height: 420px;

    object-fit: cover;

    display: block;
}


/* FEATURE CONTENT */

.scada-feature__content {

    padding: 60px 9%;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.scada-feature__content h2 {

    margin: 0 0 20px;

    color: #ffffff;

    font-family: 'Jost', sans-serif;

    font-size: 2rem;

    font-weight: 700;

    line-height: 1.3;
}


.scada-feature__content p {

    margin: 0;

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

    font-family: 'Jost', sans-serif;

    font-size: 1rem;

    line-height: 1.8;

    max-width: 550px;
}


/* =========================
   SECOND ROW - 2 CARDS
========================= */

.scada-cards--two {

    grid-template-columns: repeat(2, minmax(280px, 430px));

    justify-content: center;

    margin-top: 70px;

    margin-bottom: 90px;
}


/* =========================
   FOOTER
========================= */

.footer {

    width: 100%;

    box-sizing: border-box;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {

    width: 100%;

    padding: 18px 20px;

    box-sizing: border-box;

    text-align: center;

    background: #080d2d;

    border-top: 1px solid rgba(255,255,255,0.1);
}


.footer-bottom p {

    margin: 0;

    color: #cfd3e5;

    font-family: 'Jost', sans-serif;

    font-size: 0.85rem;
}


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

@media (max-width: 900px) {

    .scada-cards {

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

        width: 90%;
    }


    .scada-feature {

        grid-template-columns: 1fr;
    }


    .scada-feature__image {

        height: 320px;
    }


    .scada-feature__image img {

        min-height: 320px;

        height: 320px;
    }


    .scada-feature__content {

        padding: 50px 8%;
    }


    .scada-cards--two {

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

}


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

@media (max-width: 600px) {

    .scada-intro {

        min-height: auto;

        padding: 75px 7%;
    }


    .scada-intro__content h1 {

        font-size: 2rem;
    }


    .scada-intro__content p {

        font-size: 0.95rem;

        line-height: 1.7;
    }


    .scada-cards {

        width: 90%;

        grid-template-columns: 1fr;

        gap: 24px;

        margin: 50px auto;
    }


    .scada-card {

        min-height: auto;
    }


    .scada-card__image {

        height: 210px;
    }


    .scada-feature {

        margin: 60px 0;
    }


    .scada-feature__image {

        height: 250px;
    }


    .scada-feature__image img {

        height: 250px;

        min-height: 250px;
    }


    .scada-feature__content {

        padding: 40px 7%;
    }


    .scada-feature__content h2 {

        font-size: 1.6rem;
    }


    .scada-feature__content p {

        font-size: 0.92rem;
    }


    .scada-cards--two {

        grid-template-columns: 1fr;

        margin-top: 50px;

        margin-bottom: 60px;
    }

}



.topbar {
    width: 100%;

    box-sizing: border-box;

    background: #07075ed6;

    border-bottom: 1px solid rgba(139, 92, 246, 0.18);

    display: flex;

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

    flex-wrap: wrap;

    gap: 12px;

    padding: 12px 5%;

    font-family: "Jost", sans-serif;

    font-size: 13px;

    color: #ffffff;
}


/* =====================================================
   TOPBAR LEFT
===================================================== */

.topbar-left {
    display: flex;

    align-items: center;

    gap: 28px;

    flex-wrap: wrap;
}


/* =====================================================
   TOPBAR ITEMS
===================================================== */

.topbar-item,
.topbar-things {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #ffffff;
}


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

.Contact {
    white-space: nowrap;

    color: #ffffff;

    text-decoration: none;

    transition: 0.3s ease;
}


.Contact:hover {
    color: #00e5f4;
}


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

@media (max-width: 768px) {

    .topbar {

        flex-direction: column;

        justify-content: center;

        align-items: center;

        text-align: center;

        gap: 10px;

        padding: 15px;
    }


    .topbar-left {

        flex-direction: column;

        align-items: center;

        gap: 8px;
    }


    .Contact {

        width: 220px;

        text-align: center;
    }

}


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

@media (max-width: 480px) {

    .topbar {

        font-size: 12px;

        padding: 12px;
    }


    .Contact {

        width: 100%;

        max-width: 220px;
    }

}








/* ==========================================================================
   GLOBAL VARIABLES & RESET
   ========================================================================== */
:root {
     --brand-blue: #0052cc;
    --brand-blue-hover: #003a99;
    --accent-blue: #00a8ff;
    --midnight-dark: #0c1017;
    --charcoal-body: #2d3748;
    --muted-grey: #64748b;
    --cloud-white: #f8fafc;
    --pure-white: #ffffff;
    --border-light: #e2e8f0;
    
   
    
    --smooth-transition: 0.3s ease;
    --card-radius: 18px;
    --button-radius: 6px;
    
    --elevation-low: 0 4px 6px -1px rgba(0,0,0,0.05);
    --elevation-medium: 0 10px 25px -5px rgba(0,0,0,0.08);
    --elevation-high: 0 20px 30px -10px rgba(0,0,0,0.12);
}
/* 
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--main-font);
    color: var(--charcoal-body);
    background-color: var(--cloud-white);
    line-height: 1.6;
    overflow-x: hidden;
} */
/* 
a {
    text-decoration: none;
    color: inherit;
    transition: all var(--smooth-transition);
}

ul {
    list-style: none;
}

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


.content-wrapper {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(78, 78, 86, 0.68);
    margin-bottom: 0.5rem;
    font-family: 'schedule', sans-serif;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 700;
        color: rgb(27, 17, 115);
    line-height: 1.25;
    font-family: 'schedule', sans-serif;
}

.section-lead {
    font-size: 1.15rem;
    /* color: var(--muted-grey); */
    max-width: 1000px;
    font-weight: 400;
    margin: 0 auto;
    color: rgba(73, 63, 66, 0.788);
    font-family: 'jost', sans-serif;
}

.accent-line {
    width: 60px;
    height: 4px;
    background-color: rgb(21, 57, 174);
    margin: 1rem auto 1.5rem auto;
    border-radius: 2px;
}



.action-button {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(black);
    transition: all var(--smooth-transition);
    cursor: pointer;
    border: none;
}

.primary-btn {
    background-color: rgb(12, 175, 211);
    color: var(--pure-white);
}

.primary-btn:hover {
    background-color: var(--brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: var(--elevation-medium);
}

.dark-btn {
    background-color: var(--midnight-dark);
    color: var(--pure-white);
}

.dark-btn:hover {
    background-color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: var(--elevation-medium);
}

.light-btn {
    background-color: var(--pure-white);
    color: var(--brand-blue);
}

.light-btn:hover {
    background-color: var(--cloud-white);
    color: var(--brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: var(--elevation-medium);
}




.primary-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all var(--smooth-transition);
}

.primary-header.is-scrolled {
    box-shadow: var(--elevation-low);
    padding: 0.25rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.site-logo img {
    height: 42px;
}

.navigation-bar {
    display: flex;
    align-items: center;
}

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

.menu-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--midnight-dark);
    padding: 0.5rem 0;
}

.menu-link:hover,
.menu-link.active-page {
    color: var(--brand-blue);
}

.contact-highlight {
    background-color: var(--brand-blue);
    color: var(--pure-white) ;
    padding: 0.5rem 1.25rem;
    border-radius: var(--button-radius);
}

.contact-highlight:hover {
    background-color: var(--brand-blue-hover);
}

/* Submenu / Dropdown */
.has-submenu {
    position: relative;
}

.submenu-trigger {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.caret-icon {
    font-size: 0.7rem;
    transition: transform var(--smooth-transition);
}

.submenu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 230px;
    background-color: var(--pure-white);
    border-radius: var(--button-radius);
    box-shadow: var(--elevation-medium);
    border: 1px solid var(--border-light);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--smooth-transition);
}

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

.has-submenu:hover .caret-icon {
    transform: rotate(180deg);
}

.submenu-item {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    color: var(--charcoal-body);
}

.submenu-item:hover {
    background-color: var(--cloud-white);
    color: var(--brand-blue);
}

/* Mobile Trigger Button */
.mobile-menu-trigger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--midnight-dark);
    position: relative;
    transition: background-color var(--smooth-transition);
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--midnight-dark);
    transition: transform var(--smooth-transition);
}

.hamburger-icon::before { top: -7px; }
.hamburger-icon::after { top: 7px; }



.page-hero {
    position: relative;
    padding-top: 11rem;
    padding-bottom: 7rem;
    background: linear-gradient(135deg, #03083d 0%, #232020e8 100%);
    color: black;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(11, 9, 40, 0.95) 1px, transparent 1px),url("/assets/img/grid-me.png");
    background-size: 30px 30px;
    opacity: 0.6;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.category-pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(0, 168, 255, 0.15);
    color: rgb(0, 217, 255);
    border: 1px solid rgba(94, 113, 123, 0.55);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-heading {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-summary {
    font-size: 1.2rem;
    color: #aeb9c8;
    margin-bottom: 2rem;
    max-width: 650px;
    font-family: 'jost', sans-serif;
}


.overview-section {
    padding: 5rem 0 3rem 0;
}

.solutions-showcase {
    padding-bottom: 6rem;
}

.solution-card {
    background-color: rgb(217, 217, 232);
    border-radius: var(--card-radius);
    box-shadow: black;
    border: 1px solid var(--border-light);
    margin-bottom: 3.5rem;
    overflow: hidden;
    transition: transform var(--smooth-transition), box-shadow var(--smooth-transition);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--elevation-high);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.reverse-layout .solution-grid {
    direction: rtl;
}

.reverse-layout .solution-info {
    direction: ltr;
}

.solution-visual {
    height: 100%;
}

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

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

.solution-card:hover .image-frame img {
    transform: scale(1.03);
}

.solution-info {
    padding: 3.5rem;
}

.step-indicator {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(71, 73, 77, 0.381);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.solution-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.25rem;
}

.solution-subheading {
    font-size: 1rem;
    font-weight: 600;
    color: var(-- rgb(194, 19, 19));
    margin-bottom: 1.25rem;
}

.solution-description {
    color: var(--muted-grey);
    margin-bottom: 1.75rem;
}

.feature-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--midnight-dark);
}

.feature-checklist i {
    color: var(--brand-blue);
}



.cta-banner {
    padding-bottom: 6rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue) 100%);
    border-radius: var(--card-radius);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--pure-white);
    box-shadow: var(--elevation-medium);
}

.cta-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    display: block;
    margin-bottom: 0.75rem;
}

.cta-heading {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtext {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}












@media (max-width: 900px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .reverse-layout .solution-grid {
    direction: ltr;
  }

  .image-frame {
    min-height: 260px;
  }

  .solution-info {
    padding: 2rem 1.5rem;
  }

  .solution-title {
    font-size: 1.6rem;
  }

  .hero-heading {
    font-size: 2.4rem;
  }
}

/* Feature checklist (currently locked 2-col) */
@media (max-width: 480px) {
  .feature-checklist {
    grid-template-columns: 1fr;
  }
}

/* Industries grid (tommy__grid) */
@media (max-width: 1200px) {
  .tommy__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .tommy__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tommy {
    padding: 60px 5vw;
  }
}

@media (max-width: 900px) {
  .tom-card__image {
    height: 190px;
  }
}

@media (max-width: 560px) {
  .tommy__grid {
    grid-template-columns: 1fr;
  }

  .tom-card__image {
    height: 220px;
  }
}


@media (max-width: 992px) {
  .encimg2 img {
    height: 350px;
  }

  .encimg2 h1 {
    font-size: 2.2rem;
    padding: 0;
  }
}

@media (max-width: 576px) {
  .encimg2 img {
    height: 240px;
  }

  .encimg2 h1 {
    font-size: 1.7rem;
    width: 92%;
  }
}


@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-trigger {
    display: block;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 1.6rem;
  }

  .cta-heading {
    font-size: 1.7rem;
  }
}
```css
/* =========================================================
   SPIDER-MAN SLIDER
========================================================= */

.spider-web-section {

    width: 100%;

    padding: 80px 5%;

    box-sizing: border-box;

    background: #eeeef5;

    font-family: Arial, sans-serif;
}


/* =========================================================
   MAIN SLIDER
========================================================= */

.spider-web-slider {

    position: relative;

    width: 100%;

    max-width: 1200px;

    height: 500px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   SLIDE TRACK
========================================================= */

.spider-web-track {

    display: flex;

    width: 100%;

    height: 100%;

    transition:
        transform 0.7s ease-in-out;
}


/* =========================================================
   INDIVIDUAL SLIDE
========================================================= */

.spider-man-slide {

    position: relative;

    min-width: 100%;

    width: 100%;

    height: 100%;

    flex-shrink: 0;

    overflow: hidden;
}


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

.spider-man-slide img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.spider-man-slide::after {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background:
        rgba(0, 0, 0, 0.55);

    z-index: 1;
}


/* =========================================================
   CENTER TEXT
========================================================= */

.spider-sense-content {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 100%;

    padding: 0 10%;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    z-index: 5;
}


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

.spider-sense-content h2 {

    margin: 0 0 20px 0;

    padding: 0;

    color: #ffffff;

    font-size:
        clamp(1.8rem, 4vw, 3.2rem);

    font-weight: 600;

    line-height: 1.25;

    text-align: center;

    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.7);
}


/* =========================================================
   PARAGRAPH
========================================================= */

.spider-sense-content p {

    width: 100%;

    max-width: 760px;

    margin: 0 auto;

    padding: 0;

    color: #ffffff;

    font-size:
        clamp(0.9rem, 1.5vw, 1.1rem);

    font-weight: 400;

    line-height: 1.7;

    text-align: center;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.7);
}


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

.spider-arrow-button {

    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 10;

    width: 52px;

    height: 52px;

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

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.55);

    color: #ffffff;

    font-size: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition:
        all 0.3s ease;

    backdrop-filter:
        blur(5px);
}


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

.spider-arrow-button:hover {

    background:
        rgba(0, 0, 0, 0.85);

    transform:
        translateY(-50%)
        scale(1.08);
}


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

.spider-left-arrow {

    left: 20px;
}


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

.spider-right-arrow {

    right: 20px;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.spider-web-slider:hover
.spider-man-slide img {

    transform: scale(1.02);
}


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

@media (max-width: 992px) {

    .spider-web-section {

        padding: 70px 4%;
    }

    .spider-web-slider {

        height: 430px;
    }

    .spider-sense-content {

        padding: 0 12%;
    }

    .spider-sense-content h2 {

        font-size: 2.2rem;
    }

    .spider-sense-content p {

        font-size: 1rem;
    }

    .spider-arrow-button {

        width: 46px;

        height: 46px;

        font-size: 19px;
    }
}


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

@media (max-width: 600px) {

    .spider-web-section {

        padding: 55px 15px;
    }

    .spider-web-slider {

        height: 380px;

        border-radius: 12px;
    }

    .spider-sense-content {

        padding: 0 18%;
    }

    .spider-sense-content h2 {

        font-size: 1.5rem;

        line-height: 1.3;

        margin-bottom: 12px;
    }

    .spider-sense-content p {

        font-size: 0.85rem;

        line-height: 1.55;
    }

    .spider-arrow-button {

        width: 38px;

        height: 38px;

        font-size: 16px;
    }

    .spider-left-arrow {

        left: 8px;
    }

    .spider-right-arrow {

        right: 8px;
    }
}


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

@media (max-width: 400px) {

    .spider-web-slider {

        height: 350px;
    }

    .spider-sense-content {

        padding: 0 20%;
    }

    .spider-sense-content h2 {

        font-size: 1.3rem;
    }

    .spider-sense-content p {

        font-size: 0.78rem;
    }
}
```
