/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #071525;
}

a {
    text-decoration: none;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    height: 30px;
    padding: 0 7.5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #061a31;
    color: #ffffff;

    font-size: 11px;

    position: relative;
    z-index: 1000;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.topbar-left span {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.topbar i {
    font-size: 11px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-right span {
    margin-right: 2px;
}

.topbar-right a {
    color: #ffffff;
    font-size: 11px;
    transition: 0.2s ease;
}

.topbar-right a:hover {
    color: #ff5b19;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    height: 72px;

    background: #ffffff;
    border-bottom: 1px solid #eeeeee;

    position: relative;
    z-index: 5000;
}

.navbar-inner {
    width: 82%;
    max-width: 1280px;
    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    position: relative;
}


/* =========================================================
   BRAND / LOGO
========================================================= */

.brand {
    position: absolute;
    left: 0;

    display: flex;
    align-items: center;
    gap: 9px;

    z-index: 9999;

    text-decoration: none;
}

.brand img {
    width: 72px;
    height: 72px;

    display: block;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    line-height: 1;
}

.brand-text span {
    font-family: "Poppins", sans-serif;

    color: #17619a;

    font-size: 25px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: -1px;
}

.brand-text small {
    display: block;

    margin-top: 5px;

    color: #17619a;

    font-family: "Poppins", sans-serif;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 1px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.nav-menu {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 38px;
}

.nav-menu > a {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 7px;

    position: relative;

    color: #071525;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition: 0.25s ease;
}

.nav-menu > a:hover {
    color: #ff5b19;
}


/* =========================================================
   ACTIVE NAVIGATION
========================================================= */

.nav-menu > a.active {
    color: #ff5b19;
}

.nav-menu > a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: #ff5b19;
}


/* =========================================================
   SERVICES ARROW
========================================================= */

.nav-menu > a i {
    font-size: 8px;
}


/* =========================================================
   GET IN TOUCH BUTTON
========================================================= */

.contact-btn {
    height: 44px !important;

    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px !important;

    margin-left: 2px;

    background: #ff5b19;
    color: #ffffff !important;

    border-radius: 5px;

    transition: 0.25s ease;
}

.contact-btn:hover {
    background: #e84f10;
    color: #ffffff !important;

    transform: translateY(-1px);
}

.contact-btn i {
    font-size: 13px !important;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    z-index: 9999;
}

.menu-toggle span {
    width: 25px;
    height: 2.5px;

    display: block;

    background: #071525;

    border-radius: 3px;

    transition: 0.3s ease;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: 100%;
    height: 357px;

    position: relative;

    overflow: hidden;

    background-image: url("img/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2, 26, 50, 0.91) 0%,
            rgba(2, 31, 57, 0.80) 48%,
            rgba(2, 31, 57, 0.55) 100%
        );

    z-index: 1;
}


/* =========================================================
   HERO INNER
========================================================= */

.hero-inner {
    width: 85%;
    max-width: 1280px;
    height: 100%;

    margin: auto;

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    width: 55%;
    padding-top: 4px;
}

.welcome {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 17px;

    color: #ff5b19;

    font-size: 12px;
    font-weight: 700;
}

.welcome span {
    width: 3px;
    height: 19px;

    display: block;

    background: #ff5b19;
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-content h1 {
    margin-bottom: 17px;

    color: #ffffff;

    font-size: 48px;
    font-weight: 700;
    line-height: 1.17;

    letter-spacing: -1.5px;
}

.hero-content h1 strong {
    color: #ff5b19;
    font-weight: 700;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-content p {
    max-width: 650px;

    margin-bottom: 25px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 16px;
}

.primary-btn,
.outline-btn {
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.25s ease;
}

.primary-btn {
    padding: 0 24px;

    gap: 11px;

    background: #ff5b19;
    color: #ffffff;
}

.primary-btn:hover {
    background: #e84f10;
    transform: translateY(-2px);
}

.outline-btn {
    padding: 0 23px;

    border: 1px solid #ffffff;

    color: #ffffff;
}

.outline-btn:hover {
    background: #ffffff;
    color: #071525;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {
    position: relative;
    width: 48%;
    height: 280px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(200, 196, 196, 0.25);
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.hero-tagline {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: linear-gradient(
        90deg,
        rgba(3, 28, 52, 0.25),
        rgba(3, 28, 52, 0.68)
    );
}

.hero-tagline h2 {
    color: #ffffff;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-tagline p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1.6;
    max-width: 300px;
}
/* =========================================================
   FLOATING CONTACT
========================================================= */

.floating-contact {
    position: fixed;

    right: 0;
    top: 52%;

    width: 87px;

    transform: translateY(-50%);

    background: #ffffff;

    border-radius: 18px 0 0 18px;

    overflow: hidden;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);

    z-index: 2000;
}

.floating-contact a {
    height: 77px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 7px;

    color: #071525;

    border-bottom: 1px solid #eeeeee;

    font-size: 11px;

    transition: 0.2s ease;
}

.floating-contact a:last-child {
    border-bottom: none;
}

.floating-contact i {
    color: #000000;
    font-size: 20px;
}

.floating-contact a:hover {
    background: #f7f7f7;
    color: #ff5b19;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .navbar-inner,
    .hero-inner {
        width: 90%;
    }

    .nav-menu {
        gap: 24px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-image {
        width: 47%;
        height: 240px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    /* ---------- TOP BAR ---------- */

    .topbar {
        height: 28px;

        padding: 0 15px;

        justify-content: center;

        font-size: 9px;
    }

    .topbar-left {
        gap: 12px;
    }

    .topbar-left span {
        gap: 4px;
    }

    .topbar-left span:nth-child(2) {
        display: none;
    }

    .topbar-right {
        display: none;
    }


    /* ---------- NAVBAR ---------- */

    .navbar {
        height: 68px;
    }

    .navbar-inner {
        width: 92%;
        justify-content: flex-end;
    }


    /* ---------- LOGO ---------- */

    .brand {
        left: 0;
        top: -12px;

        gap: 6px;
    }

    .brand img {
        width: 58px;
        height: 58px;
    }

    .brand-text span {
        font-size: 19px;
        letter-spacing: -0.5px;
    }

    .brand-text small {
        font-size: 8px;
        letter-spacing: 0.8px;
    }


    /* ---------- DESKTOP MENU HIDDEN ---------- */

    .nav-menu {
        display: none;
    }


    /* ---------- HAMBURGER ---------- */

    .menu-toggle {
        display: flex;
    }


    /* ---------- MOBILE MENU ---------- */

    .mobile-menu {
        position: absolute;

        top: 68px;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;

        padding: 10px 6% 20px;

        background: #ffffff;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;

        z-index: 4999;
    }

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .mobile-menu > a {
        width: 100%;

        padding: 14px 5px;

        color: #071525;

        font-size: 14px;
        font-weight: 600;

        border-bottom: 1px solid #eeeeee;

        transition: 0.2s ease;
    }

    .mobile-menu > a:hover,
    .mobile-menu > a.mobile-active {
        color: #ff5b19;
    }


    /* ---------- MOBILE CONTACT BUTTON ---------- */

    .mobile-contact-btn {
        margin-top: 14px;

        padding: 13px 18px !important;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 10px;

        background: #ff5b19;
        color: #ffffff !important;

        border: none !important;
        border-radius: 5px;
    }

    .mobile-contact-btn:hover {
        background: #e84f10;
        color: #ffffff !important;
    }


    /* ---------- HAMBURGER ANIMATION ---------- */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }


    /* ---------- HERO ---------- */

    .hero {
        height: auto;
        min-height: auto;
    }

    .hero-inner {
        width: 90%;

        min-height: 700px;

        padding: 55px 0 50px;

        flex-direction: column;

        align-items: flex-start;
        justify-content: center;

        gap: 40px;
    }


    /* ---------- HERO CONTENT ---------- */

    .hero-content {
        width: 100%;
        padding-top: 0;
    }

    .welcome {
        margin-bottom: 15px;
        font-size: 11px;
    }

    .welcome span {
        height: 17px;
    }

    .hero-content h1 {
        margin-bottom: 16px;

        font-size: 36px;
        line-height: 1.18;

        letter-spacing: -0.8px;
    }

    .hero-content p {
        max-width: 100%;

        margin-bottom: 22px;

        font-size: 13px;
        line-height: 1.7;
    }


    /* ---------- HERO BUTTONS ---------- */

    .hero-buttons {
        gap: 12px;
        flex-wrap: wrap;
    }

    .primary-btn,
    .outline-btn {
        height: 46px;

        padding: 0 18px;

        font-size: 12px;
    }


    /* ---------- HERO IMAGE ---------- */

    .hero-image {
        width: 100%;
        height: 230px;

        border-radius: 15px;
    }

    .hero-image img {
        border-radius: 10px;
    }


    /* ---------- FLOATING CONTACT ---------- */

    .floating-contact {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    /* ---------- TOP BAR ---------- */

    .topbar {
        font-size: 8px;
    }


    /* ---------- NAVBAR ---------- */

    .navbar-inner {
        width: 90%;
    }


    /* ---------- LOGO ---------- */

    .brand {
        top: 0px;
    }

    .brand img {
        width: 53px;
        height: 53px;
    }

    .brand-text span {
        font-size: 17px;
    }

    .brand-text small {
        font-size: 7px;
    }


    /* ---------- HERO ---------- */

    .hero-inner {
        width: 88%;

        min-height: auto;

        padding: 45px 0;

        gap: 32px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.2;

        letter-spacing: -0.5px;
    }

    .hero-content p {
        font-size: 12px;
        line-height: 1.7;
    }

    .welcome {
        font-size: 10px;
    }


    /* ---------- BUTTONS ---------- */

    .hero-buttons {
        width: 100%;

        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .outline-btn {
        width: 100%;

        justify-content: center;
    }


    /* ---------- HERO IMAGE ---------- */

    .hero-image {
        width: 100%;
        height: 200px;
    }
}
/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    width: 100%;
    background: #ffffff;
    padding: 22px 0 14px;
}

.services-container {
    width: 79%;
    max-width: 1280px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 20px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    min-height: 202px;

    padding: 10px 20px 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 6px;

    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: #d9d9d9;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #061a31;

    border-radius: 50%;

    color: #ffffff;

    font-size: 21px;
}

.service-icon i {
    font-size: 21px;
}


/* =========================================================
   SERVICE TITLE
========================================================= */

.service-card h3 {
    margin-bottom: 7px;

    color: #071525;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.25;
}


/* =========================================================
   SERVICE DESCRIPTION
========================================================= */

.service-card p {
    max-width: 210px;

    margin-bottom: 8px;

    color: #444444;

    font-size: 11px;
    line-height: 1.55;
}


/* =========================================================
   READ MORE
========================================================= */

.service-link {
    margin-top: auto;

    display: flex;
    align-items: center;

    gap: 9px;

    color: #ff5b19;

    font-size: 11px;
    font-weight: 600;

    transition: 0.25s ease;
}

.service-link i {
    font-size: 10px;
}

.service-link:hover {
    gap: 13px;
    color: #e84f10;
}
/* =========================================================
   SERVICES - TABLET
========================================================= */

@media (max-width: 1100px) {

    .services-container {
        width: 90%;

        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   SERVICES - MOBILE
========================================================= */

@media (max-width: 850px) {

    .services-section {
        padding: 35px 0;
    }

    .services-container {
        width: 90%;

        grid-template-columns: repeat(2, 1fr);

        gap: 15px;
    }

    .service-card {
        min-height: 220px;

        padding: 18px 14px;
    }

}


/* =========================================================
   SERVICES - SMALL MOBILE
========================================================= */

@media (max-width: 550px) {

    .services-container {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .service-card {
        min-height: auto;

        padding: 22px 20px;
    }

    .service-card p {
        max-width: 280px;
    }

}
/* =========================================================
   ABOUT US SECTION
========================================================= */

.about-section {
    width: 100%;
    background: #f8f9fc;
    padding: 45px 0;
}

.about-container {
    width: 79%;
    max-width: 1280px;

    margin: auto;

    display: grid;
    grid-template-columns: 30% 70%;

    gap: 35px;

    align-items: center;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {
    padding-right: 15px;
}

.section-label {
    display: block;

    margin-bottom: 8px;

    color: #ff5b19;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .2px;
}

.about-content h2 {
    margin-bottom: 12px;

    color: #071525;

    font-size: 25px;
    line-height: 1.2;

    font-weight: 700;
}

.about-content h2 span {
    display: block;

    color: #ff5b19;
}

.about-content p {
    margin-bottom: 9px;

    color: #4b4b4b;

    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   ABOUT BUTTON
========================================================= */

.about-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 7px;

    padding: 9px 15px;

    background: #061a31;

    color: #ffffff;

    border-radius: 4px;

    font-size: 11px;
    font-weight: 600;

    transition: .25s ease;
}

.about-btn:hover {
    background: #ff5b19;

    transform: translateY(-2px);
}

.about-btn i {
    font-size: 9px;
}


/* =========================================================
   STATISTICS
========================================================= */

.about-stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}

.stat-card {
    min-height: 150px;

    background: #ffffff;

    border: 1px solid #e7e7e7;

    border-radius: 5px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    transition: .3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .07);
}


/* =========================================================
   STAT ICON
========================================================= */

.stat-icon {
    width: 38px;
    height: 38px;

    margin-bottom: 8px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #071525;

    font-size: 22px;
}

.stat-icon.orange {
    color: #ff5b19;
}


/* =========================================================
   STAT NUMBER
========================================================= */

.stat-card h3 {
    margin-bottom: 3px;

    color: #071525;

    font-size: 27px;

    line-height: 1;

    font-weight: 700;
}

.stat-card p {
    color: #222222;

    font-size: 10px;

    font-weight: 500;
}
/* =========================================================
   ABOUT - TABLET
========================================================= */

@media (max-width: 1100px) {

    .about-container {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .about-content {
        max-width: 600px;
    }

}


/* =========================================================
   ABOUT - MOBILE
========================================================= */

@media (max-width: 850px) {

    .about-section {
        padding: 40px 0;
    }

    .about-container {
        width: 90%;
    }

    .about-content h2 {
        font-size: 25px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .stat-card {
        min-height: 140px;
    }

}


/* =========================================================
   ABOUT - SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .about-section {
        padding: 35px 0;
    }

    .about-content h2 {
        font-size: 23px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card h3 {
        font-size: 24px;
    }

}
/* =========================================================
   MAIN SERVICES SECTION
========================================================= */

.services-main-section {
    width: 100%;

    background: #ffffff;

    padding: 55px 0;
}

.services-main-container {
    width: 79%;
    max-width: 1280px;

    margin: auto;
}


/* =========================================================
   SERVICES HEADING
========================================================= */

.services-heading {
    text-align: center;

    max-width: 650px;

    margin: 0 auto 32px;
}

.services-heading .section-label {
    margin-bottom: 7px;
}

.services-heading h2 {
    color: #071525;

    font-size: 28px;

    line-height: 1.25;

    font-weight: 700;

    margin-bottom: 10px;
}

.services-heading h2 span {
    color: #ff5b19;
}

.services-heading p {
    color: #555555;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-main-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* =========================================================
   MAIN SERVICE CARD
========================================================= */

.main-service-card {
    padding: 25px 22px;

    background: #ffffff;

    border: 1px solid #e6e6e6;

    border-radius: 6px;

    transition: all .3s ease;
}

.main-service-card:hover {
    transform: translateY(-6px);

    border-color: #ff5b19;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.main-service-icon {
    width: 48px;
    height: 48px;

    margin-bottom: 16px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #061a31;

    color: #ffffff;

    border-radius: 7px;

    font-size: 19px;
}

.main-service-card:hover .main-service-icon {
    background: #ff5b19;
}


/* =========================================================
   SERVICE TITLE
========================================================= */

.main-service-card h3 {
    margin-bottom: 9px;

    color: #071525;

    font-size: 15px;

    font-weight: 700;
}


/* =========================================================
   SERVICE DESCRIPTION
========================================================= */

.main-service-card p {
    margin-bottom: 17px;

    color: #555555;

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   SERVICE LINK
========================================================= */

.main-service-card a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ff5b19;

    font-size: 11px;

    font-weight: 600;
}

.main-service-card a i {
    font-size: 9px;

    transition: .2s;
}

.main-service-card a:hover i {
    transform: translateX(4px);
}
/* =========================================================
   SERVICES - TABLET
========================================================= */

@media (max-width: 1000px) {

    .services-main-container {
        width: 90%;
    }

    .services-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   SERVICES - MOBILE
========================================================= */

@media (max-width: 600px) {

    .services-main-section {
        padding: 40px 0;
    }

    .services-main-container {
        width: 90%;
    }

    .services-heading h2 {
        font-size: 24px;
    }

    .services-main-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .main-service-card {
        padding: 22px 20px;
    }

}
/* =========================================================
   GET IN TOUCH SECTION
========================================================= */

.get-touch-section {
    width: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(3, 25, 47, .97),
            rgba(5, 42, 73, .94)
        );

    padding: 48px 0;
}

.get-touch-container {
    width: 79%;
    max-width: 1280px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.get-touch-label {
    display: block;

    margin-bottom: 8px;

    color: #ff5b19;

    font-size: 11px;

    font-weight: 700;
}

.get-touch-content h2 {
    color: #ffffff;

    font-size: 29px;

    line-height: 1.25;

    font-weight: 700;

    margin-bottom: 8px;
}

.get-touch-content h2 span {
    color: #ff5b19;
}

.get-touch-content p {
    max-width: 580px;

    color: rgba(255,255,255,.82);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   CTA BUTTONS
========================================================= */

.get-touch-action {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.get-touch-btn {
    height: 45px;

    padding: 0 22px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #ff5b19;

    color: #ffffff;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 600;

    transition: .25s;
}

.get-touch-btn:hover {
    background: #e84f10;

    transform: translateY(-2px);
}

.get-touch-btn i {
    font-size: 10px;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.call-btn {
    height: 45px;

    padding: 0 19px;

    display: flex;

    align-items: center;

    gap: 9px;

    border: 1px solid rgba(255,255,255,.7);

    color: #ffffff;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 600;

    transition: .25s;
}

.call-btn:hover {
    background: #ffffff;

    color: #071525;
}

.call-btn i {
    font-size: 12px;
}
/* =========================================================
   CTA - TABLET
========================================================= */

@media (max-width: 850px) {

    .get-touch-container {
        width: 90%;

        flex-direction: column;

        align-items: flex-start;
    }

    .get-touch-content h2 {
        font-size: 26px;
    }

}


/* =========================================================
   CTA - MOBILE
========================================================= */

@media (max-width: 500px) {

    .get-touch-section {
        padding: 40px 0;
    }

    .get-touch-container {
        width: 90%;
    }

    .get-touch-content h2 {
        font-size: 24px;
    }

    .get-touch-action {
        width: 100%;

        flex-wrap: wrap;
    }

    .get-touch-btn,
    .call-btn {
        flex: 1;

        justify-content: center;
    }

}
/* ============================================
   FOOTER
============================================ */

.footer {
    background: #061a31;
    color: #ffffff;
}


/* ============================================
   FOOTER MAIN
============================================ */

.footer-main {
    padding: 65px 0 50px;
}

.footer-container {
    width: 82%;
    max-width: 1280px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1.3fr;

    gap: 55px;
}


/* ============================================
   FOOTER COMPANY
============================================ */

.footer-company {
    padding-right: 30px;
}


/* ============================================
   FOOTER BRAND
============================================ */

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: #ffffff;
}

.footer-brand img {
    width: 58px;
    height: 58px;

    object-fit: contain;
}

.footer-brand div {
    display: flex;
    flex-direction: column;
}

.footer-brand span {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;

    color: #ffffff;
}

.footer-brand small {
    margin-top: 5px;

    font-size: 9px;
    line-height: 1;

    font-weight: 700;
    letter-spacing: 1.5px;

    color: #ff5b19;
}


/* ============================================
   FOOTER DESCRIPTION
============================================ */

.footer-company p {
    max-width: 360px;

    color: #c9d4df;

    font-size: 13px;
    line-height: 1.8;

    margin-bottom: 25px;
}


/* ============================================
   SOCIAL ICONS
============================================ */

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    color: #ffffff;

    font-size: 13px;

    transition: .25s;
}

.footer-social a:hover {
    background: #ff5b19;
    border-color: #ff5b19;

    transform: translateY(-3px);
}


/* ============================================
   FOOTER HEADINGS
============================================ */

.footer-column h3 {
    position: relative;

    color: #ffffff;

    font-size: 17px;
    font-weight: 600;

    margin-bottom: 25px;

    padding-bottom: 12px;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 2px;

    background: #ff5b19;
}


/* ============================================
   FOOTER LINKS
============================================ */

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 13px;
}

.footer-column ul li a {
    color: #c9d4df;

    font-size: 13px;

    transition: .25s;

    position: relative;
}

.footer-column ul li a:hover {
    color: #ff5b19;

    padding-left: 5px;
}


/* ============================================
   FOOTER CONTACT
============================================ */

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 18px;

    color: #c9d4df;

    font-size: 13px;

    line-height: 1.6;
}

.footer-contact-item i {
    width: 18px;

    color: #ff5b19;

    font-size: 14px;

    margin-top: 3px;
}

.footer-contact-item a {
    color: #c9d4df;

    transition: .25s;
}

.footer-contact-item a:hover {
    color: #ff5b19;
}


/* ============================================
   FOOTER CONTACT BUTTON
============================================ */

.footer-contact-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 8px;

    padding: 12px 20px;

    background: #ff5b19;

    color: #ffffff;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 600;

    transition: .25s;
}

.footer-contact-btn:hover {
    background: #e84f10;

    transform: translateY(-2px);
}

.footer-contact-btn i {
    font-size: 12px;
}


/* ============================================
   FOOTER BOTTOM
============================================ */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);

    padding: 18px 0;
}

.footer-bottom-inner {
    width: 82%;
    max-width: 1280px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: #9eacba;

    font-size: 11px;
}

.footer-bottom p span {
    color: #ffffff;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #9eacba;

    font-size: 11px;

    transition: .25s;
}

.footer-bottom-links a:hover {
    color: #ff5b19;
}


/* ============================================
   TABLET
============================================ */

@media (max-width: 1000px) {

    .footer-container {
        width: 90%;

        grid-template-columns: 1.5fr 1fr 1fr;

        gap: 40px;
    }

    .footer-company {
        grid-column: span 3;
    }

    .footer-company p {
        max-width: 600px;
    }

    .footer-bottom-inner {
        width: 90%;
    }
}


/* ============================================
   MOBILE
============================================ */

@media (max-width: 650px) {

    .footer-main {
        padding: 45px 0 35px;
    }

    .footer-container {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-company {
        grid-column: auto;

        padding-right: 0;
    }

    .footer-company p {
        max-width: 100%;
    }

    .footer-column h3 {
        margin-bottom: 20px;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .footer-bottom-inner {
        width: 90%;

        flex-direction: column;

        text-align: center;

        gap: 12px;
    }

    .footer-bottom-links {
        gap: 18px;
    }
}
/* ============================================
   COMPANY INTRODUCTION VIDEO
============================================ */

.company-video-section {
    position: relative;

    width: 100%;

    padding: 90px 0;

    background: #f7f9fc;

    overflow: hidden;
}


/* ============================================
   VIDEO CONTAINER
============================================ */

.company-video-container {
    width: 82%;
    max-width: 1200px;

    margin: auto;
}


/* ============================================
   SECTION HEADING
============================================ */

.company-video-heading {
    text-align: center;

    max-width: 720px;

    margin: 0 auto 42px;
}


/* Orange label */

.section-tag {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 14px;

    color: #ff5b19;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .5px;
}


.section-tag span {
    width: 3px;

    height: 18px;

    background: #ff5b19;

    display: block;
}


/* Heading */

.company-video-heading h2 {
    margin-bottom: 15px;

    color: #071525;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -.8px;
}


.company-video-heading h2 strong {
    color: #ff5b19;

    font-weight: 700;
}


/* Description */

.company-video-heading p {
    max-width: 650px;

    margin: auto;

    color: #647383;

    font-size: 14px;

    line-height: 1.8;
}


/* ============================================
   VIDEO WRAPPER
============================================ */

.company-video-wrapper {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    background: #061a31;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(6, 26, 49, .18);

    border: 5px solid #ffffff;
}


/* ============================================
   VIDEO
============================================ */

.company-video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    background: #061a31;
}


/* ============================================
   TABLET
============================================ */

@media (max-width: 1000px) {

    .company-video-section {
        padding: 75px 0;
    }

    .company-video-container {
        width: 90%;
    }

    .company-video-heading h2 {
        font-size: 34px;
    }

}


/* ============================================
   MOBILE
============================================ */

@media (max-width: 650px) {

    .company-video-section {
        padding: 55px 0;
    }

    .company-video-container {
        width: 90%;
    }

    .company-video-heading {
        margin-bottom: 28px;
    }

    .company-video-heading h2 {
        font-size: 28px;

        letter-spacing: -.4px;
    }

    .company-video-heading p {
        font-size: 12px;

        line-height: 1.7;
    }

    .company-video-wrapper {
        border-width: 3px;

        border-radius: 12px;

        aspect-ratio: 16 / 9;
    }

}
/* =========================================================
   ANSYS TECHNOLOGIES - AUTOMATION WORKFLOW
========================================================= */

.automation-section {
    width: 100%;
    background: #ffffff;
    padding: 65px 35px 45px;
    overflow: hidden;
}

.automation-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.workflow-header {
    text-align: center;
    margin-bottom: 55px;
}

.workflow-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.workflow-title {
    margin: 0;
    padding: 0;

    color: #071d42;
    font-family: "Poppins", sans-serif;

    font-size: 46px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1px;
}

.header-line {
    width: 105px;
    height: 1px;
    background: #0755c9;
    position: relative;
}

.header-line::before,
.header-line::after {
    content: "";
    position: absolute;

    width: 6px;
    height: 6px;

    background: #061a31;
    border-radius: 50%;

    top: 50%;
    transform: translateY(-50%);
}

.header-line::before {
    left: 0;
}

.header-line::after {
    right: 0;
}

.workflow-subtitle {
    margin: 7px 0 0;

    color: #53627a;

    font-size: 17px;
    font-weight: 400;
}


/* =========================================================
   7 STEP WORKFLOW
========================================================= */

.workflow {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(130px, 1fr)
        45px
        minmax(130px, 1fr)
        45px
        minmax(130px, 1fr)
        45px
        minmax(130px, 1fr)
        45px
        minmax(130px, 1fr)
        45px
        minmax(130px, 1fr)
        45px
        minmax(130px, 1fr);

    align-items: start;
}


/* =========================================================
   INDIVIDUAL STEP
========================================================= */

.workflow-step {
    width: 100%;
    min-width: 0;

    text-align: center;

    position: relative;

    opacity: 1;
    transform: none;
}


/* =========================================================
   MAIN CIRCLE
========================================================= */

.icon-wrapper {
    width: 140px;
    height: 140px;

    margin: 0 auto 18px;

    border: 1.4px solid #8da9cf;

    border-radius: 50%;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    overflow: visible;

    z-index: 1;
}


/* =========================================================
   01 02 03 04 05 06 07
   THIS IS THE IMPORTANT PART
========================================================= */

.step-number {
    position: absolute !important;

    top: -20px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    width: 43px !important;
    height: 43px !important;

    min-width: 43px;
    min-height: 43px;

    background: #061a31 !important;

    color: #ffffff !important;

    border-radius: 50% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-family: Arial, sans-serif !important;

    font-size: 15px !important;
    font-weight: 600 !important;

    line-height: 1 !important;

    text-align: center !important;

    z-index: 999 !important;

    /* White separation around blue number */
    box-shadow: 0 0 0 2px #ffffff;

    transition: transform 0.25s ease;
}


/* Hover */
.workflow-step:hover .step-number {
    transform: translateX(-50%) scale(1.08) !important;
}


/* =========================================================
   STEP ICONS
========================================================= */

.icon-wrapper > svg {
    width: 78px;
    height: 78px;

    display: block;

    overflow: visible;

    fill: none;

    stroke: #071d42;

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-wrapper > svg .accent {
    stroke: #0755c9;
}


/* =========================================================
   STEP TITLE
========================================================= */

.step-title {
    margin: 0;

    min-height: 50px;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    color: #ea3b06;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.45;

    text-align: center;
}


/* =========================================================
   BLUE SMALL LINE
========================================================= */

.step-line {
    width: 36px;
    height: 2px;

    background: #061a31;

    margin: 11px auto 16px;
}


/* =========================================================
   STEP DESCRIPTION
========================================================= */

.step-list {
    list-style: none;

    padding: 0 4px;
    margin: 0;

    text-align: left;
}

.step-list li {
    position: relative;

    padding-left: 13px;

    margin-bottom: 8px;

    color: #202d42;

    font-family: "Poppins", sans-serif;

    font-size: 11.5px;
    font-weight: 400;

    line-height: 1.5;
}

.step-list li::before {
    content: "•";

    position: absolute;

    left: 0;
    top: 0;

    color: #111111;

    font-size: 13px;
}


/* =========================================================
   ARROWS
========================================================= */

.workflow-arrow {
    height: 140px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding-top: 0;
}

.workflow-arrow svg {
    width: 35px;
    height: 35px;

    display: block;

    fill: none;

    stroke: #061a31;

    stroke-width: 2.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   ENABLERS
========================================================= */

.enablers-box {
    width: 100%;

    margin-top: 55px;

    padding: 36px 18px 18px;

    border: 1px solid #bfd0e8;

    border-radius: 13px;

    background: #ffffff;

    position: relative;
}

.section-label {
    position: absolute;

    left: 50%;
    top: -15px;

    transform: translateX(-50%);

    background: #ffffff;

    padding: 0 15px;

    color: #061a31;

    font-size: 20px;
    font-weight: 600;

    line-height: 30px;

    white-space: nowrap;
}

.enablers-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(6, 1fr);
}

.enable-item {
    min-height: 105px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-right: 1px solid #d9e1ec;
}

.enable-item:last-child {
    border-right: none;
}

.enable-icon {
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.enable-icon svg {
    width: 58px;
    height: 58px;

    fill: none;

    stroke: #071d42;

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.enable-icon svg .accent {
    stroke: #0755c9;
}

.enable-name {
    margin-top: 3px;

    color: #17233b;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.45;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits-box {
    width: 100%;

    margin-top: 22px;

    padding: 42px 15px 17px;

    background: #f4f8ff;

    border: 1px solid #dce6f5;

    border-radius: 13px;

    position: relative;
}

.benefits-box .section-label {
    background: #f4f8ff;
}

.benefits-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(6, 1fr);
}

.benefit-item {
    min-height: 125px;

    padding: 0 12px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    border-right: 1px solid #cad5e5;
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-icon {
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 57px;
    height: 57px;

    fill: none;

    stroke: #0755c9;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-icon svg .accent {
    stroke: #0755c9;
}

.benefit-title {
    margin-top: 5px;

    color: #071d42;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.4;
}

.benefit-text {
    margin-top: 4px;

    max-width: 190px;

    color: #27364d;

    font-size: 10px;
    font-weight: 400;

    line-height: 1.45;
}


/* =========================================================
   SMARTER OPERATIONS
========================================================= */

.smart-item {
    justify-content: center;
}

.smart-icon {
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.smart-icon svg {
    width: 65px;
    height: 65px;

    fill: none;

    stroke: #0755c9;

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.smart-icon svg .accent {
    stroke: #0755c9;
}

.smart-title {
    margin-top: 4px;

    color: #071d42;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.55;
}

.smart-title span {
    display: block;
}


/* =========================================================
   BOTTOM TAGLINE
========================================================= */

.bottom-tagline {
    width: 100%;

    margin-top: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    color: #061a31;

    font-size: 16px;
    font-weight: 600;

    letter-spacing: 1px;
}

.tagline-line {
    width: 240px;
    height: 1px;

    background: #061a31;

    position: relative;
}

.tagline-line::before,
.tagline-line::after {
    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    background: #061a31;

    border-radius: 50%;

    top: 50%;

    transform: translateY(-50%);
}

.tagline-line::before {
    left: 0;
}

.tagline-line::after {
    right: 0;
}

.tagline-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #061a31;
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1350px) {

    .automation-section {
        padding-left: 25px;
        padding-right: 25px;
    }

    .workflow {
        grid-template-columns:
            minmax(115px, 1fr)
            35px
            minmax(115px, 1fr)
            35px
            minmax(115px, 1fr)
            35px
            minmax(115px, 1fr)
            35px
            minmax(115px, 1fr)
            35px
            minmax(115px, 1fr)
            35px
            minmax(115px, 1fr);
    }

    .icon-wrapper {
        width: 125px;
        height: 125px;
    }

    .icon-wrapper > svg {
        width: 68px;
        height: 68px;
    }

    .workflow-arrow {
        height: 125px;
    }

    .workflow-title {
        font-size: 40px;
    }

    .step-title {
        font-size: 12px;
    }

    .step-list li {
        font-size: 10px;
    }

    .step-number {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
        min-height: 40px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .workflow {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 55px;
    }

    .workflow-arrow {
        display: none;
    }

    .workflow-step {
        padding: 0 18px;
    }

    .icon-wrapper {
        width: 135px;
        height: 135px;
    }

    .icon-wrapper > svg {
        width: 72px;
        height: 72px;
    }

    .step-title {
        font-size: 14px;
    }

    .step-list {
        max-width: 220px;
        margin: auto;
    }

    .step-list li {
        font-size: 11px;
    }

    .enablers-grid,
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .enable-item:nth-child(3),
    .benefit-item:nth-child(3) {
        border-right: none;
    }

    .enable-item:nth-child(n + 4),
    .benefit-item:nth-child(n + 4) {
        border-top: 1px solid #d9e1ec;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .automation-section {
        padding: 50px 15px 35px;
    }

    .workflow-header {
        margin-bottom: 50px;
    }

    .workflow-title-row {
        gap: 8px;
    }

    .workflow-title {
        font-size: 26px;
        letter-spacing: -0.5px;
    }

    .header-line {
        width: 30px;
    }

    .workflow-subtitle {
        font-size: 11px;
        line-height: 1.6;

        max-width: 330px;

        margin-left: auto;
        margin-right: auto;
    }

    .workflow {
        display: block;
    }

    .workflow-step {
        max-width: 350px;

        margin: 0 auto 65px;

        padding: 0 15px;
    }

    .workflow-step:last-child {
        margin-bottom: 0;
    }

    .icon-wrapper {
        width: 140px;
        height: 140px;

        margin-bottom: 20px;
    }

    .icon-wrapper > svg {
        width: 75px;
        height: 75px;
    }

    /*
       Keep numbers exactly above circles
    */
    .step-number {
        top: -19px !important;

        width: 42px !important;
        height: 42px !important;

        min-width: 42px;
        min-height: 42px;

        font-size: 14px !important;
    }

    .step-title {
        min-height: auto;

        font-size: 14px;

        line-height: 1.45;
    }

    .step-line {
        margin: 11px auto 16px;
    }

    .step-list {
        max-width: 255px;

        margin-left: auto;
        margin-right: auto;
    }

    .step-list li {
        font-size: 11.5px;
    }


    /* ENABLERS */

    .enablers-box {
        margin-top: 45px;

        padding: 35px 5px 5px;
    }

    .enablers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .enable-item {
        min-height: 120px;

        border-right: 1px solid #d9e1ec;
        border-bottom: 1px solid #d9e1ec;
    }

    .enable-item:nth-child(2n) {
        border-right: none;
    }

    .enable-item:nth-child(5),
    .enable-item:nth-child(6) {
        border-bottom: none;
    }


    /* BENEFITS */

    .benefits-box {
        padding: 40px 5px 5px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item {
        min-height: 140px;

        padding: 12px 6px;

        border-right: 1px solid #cad5e5;
        border-bottom: 1px solid #cad5e5;
    }

    .benefit-item:nth-child(2n) {
        border-right: none;
    }

    .benefit-item:nth-child(5),
    .benefit-item:nth-child(6) {
        border-bottom: none;
    }

    .benefit-title {
        font-size: 11px;
    }

    .benefit-text {
        font-size: 9.5px;
    }


    /* BOTTOM */

    .bottom-tagline {
        gap: 7px;

        font-size: 10px;

        flex-wrap: wrap;
    }

    .tagline-line {
        width: 45px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .workflow-title {
        font-size: 23px;
    }

    .header-line {
        width: 20px;
    }

    .workflow-subtitle {
        font-size: 10px;
    }

    .enablers-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .enable-item,
    .benefit-item {
        border-right: none !important;
        border-bottom: 1px solid #d9e1ec;
    }

    .enable-item:last-child,
    .benefit-item:last-child {
        border-bottom: none;
    }
}
/* ================= INDUSTRY 4.0 SECTION ================= */

.industry-section {
    position: relative;
    padding: 120px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.industry-container {
    width: min(1200px, 90%);
    margin: auto;
}


/* ---------- Heading ---------- */

.industry-heading {
    max-width: 760px;
    margin-bottom: 65px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: #e9f2ff;
    color: #1769e0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.industry-heading h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.1;
    color: #071525;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.industry-heading h2 span {
    color: #fa5a04;
}

.industry-heading p {
    margin-top: 22px;
    max-width: 650px;
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}


/* ---------- Main Showcase ---------- */

.industry-showcase {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr;
    gap: 55px;
    align-items: center;
    margin-bottom: 35px;
}


/* ---------- Image ---------- */

.industry-image-wrapper {
    position: relative;
    height: 480px;
    border-radius: 22px;
    overflow: hidden;
    background: #071525;
    box-shadow: 0 25px 70px rgba(7, 21, 37, 0.16);
}

.industry-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.industry-image-wrapper:hover img {
    transform: scale(1.035);
}

.image-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    right: -100px;
    top: -100px;
    background: #1769e0;
    opacity: 0.15;
    filter: blur(80px);
    z-index: 1;
}

.image-overlay {
    position: absolute;
    left: 22px;
    bottom: 22px;
    right: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;

    background: rgba(7, 21, 37, 0.75);
    backdrop-filter: blur(12px);

    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.image-overlay i {
    font-size: 14px;
}


/* ---------- Content ---------- */

.industry-content {
    padding-right: 10px;
}

.solution-number {
    font-size: 14px;
    color: #1769e0;
    font-weight: 700;
    letter-spacing: 2px;
}

.industry-content h3 {
    margin: 12px 0 18px;
    color: #071525;
    font-size: 34px;
    line-height: 1.15;
}

.industry-content > p {
    color: #667085;
    line-height: 1.75;
    font-size: 15px;
}


/* ---------- Features ---------- */

.industry-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin: 28px 0;
}

.industry-features div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #344054;
    font-size: 13px;
}

.industry-features i {
    color: #1ca85b;
    font-size: 13px;
}


/* ---------- Button ---------- */

.industry-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 22px;
    border-radius: 8px;

    background: #071525;
    color: white;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.industry-btn:hover {
    background: #1769e0;
    transform: translateY(-2px);
}

.industry-btn i {
    transition: 0.3s ease;
}

.industry-btn:hover i {
    transform: translateX(4px);
}


/* ---------- Cards ---------- */

.industry-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.industry-card {
    position: relative;

    min-height: 170px;
    padding: 12px;

    border: 1px solid #e4e7ec;
    border-radius: 15px;

    background: white;
    cursor: pointer;

    transition: 0.35s ease;
    overflow: hidden;
}

.industry-card:hover,
.industry-card.active {
    border-color: #1769e0;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(23, 105, 224, 0.12);
}

.industry-card.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #1769e0;
}


/* Card Image */

.card-image {
    height: 85px;
    overflow: hidden;
    border-radius: 9px;
    margin-bottom: 12px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.industry-card:hover .card-image img {
    transform: scale(1.08);
}


/* Card Info */

.card-info {
    padding: 0 4px;
}

.card-info span {
    font-size: 10px;
    color: #1769e0;
    font-weight: 700;
}

.card-info h4 {
    margin: 3px 0 2px;
    color: #071525;
    font-size: 14px;
}

.card-info p {
    margin: 0;
    color: #98a2b3;
    font-size: 11px;
}


/* Arrow */

.card-arrow {
    position: absolute;
    right: 15px;
    bottom: 15px;

    color: #98a2b3;
    font-size: 12px;

    transition: 0.3s ease;
}

.industry-card:hover .card-arrow,
.industry-card.active .card-arrow {
    color: #1769e0;
    transform: translateX(4px);
}


/* ---------- Responsive ---------- */

@media (max-width: 1000px) {

    .industry-showcase {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .industry-image-wrapper {
        height: 420px;
    }

    .industry-content {
        max-width: 700px;
    }

    .industry-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .industry-section {
        padding: 80px 0;
    }

    .industry-heading {
        margin-bottom: 40px;
    }

    .industry-heading h2 {
        font-size: 36px;
    }

    .industry-heading p {
        font-size: 15px;
    }

    .industry-image-wrapper {
        height: 260px;
        border-radius: 15px;
    }

    .industry-content h3 {
        font-size: 28px;
    }

    .industry-features {
        grid-template-columns: 1fr;
    }

    .industry-cards {
        grid-template-columns: 1fr;
    }

    .industry-card {
        min-height: 150px;
    }
}