@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

body {
    font-family: "Cairo", sans-serif;
}

/* ======================== Navbar Start =========================== */

.ax-navbar {
    background: #0b1446;
}
.ax-logo-text {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}
.navbar-brand img {
    width: 100px;
}
.navbar-nav .nav-link {
    color: #fff;
    font-size: 18px;
}
.navbar-nav .nav-link:hover {
    color: #ffcc00;
}
.navbar-nav .nav-link.active {
    color: #ffcc00;
}
.dropdown-menu {
    background: #0b1e66;
    border: none;
}

.dropdown-item {
    color: #fff;
}
.dropdown-item:hover {
    background: #ffcc00;
    color: #000;
}

/* Desktop only hover dropdown */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    /* stop Bootstrap click positioning jump */
    .navbar-nav .dropdown > .dropdown-toggle::after {
        margin-left: 6px;
    }
}

.ax-contact-btn {
    padding: 10px 30px;
    color: #ffffff;
    border: 1px solid #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ax-contact-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: #e2b00b;
    transition: width 0.4s ease;
    z-index: -1;
}

.ax-contact-btn:hover::before {
    width: 100%;
}

.ax-contact-btn:hover {
    color: #ffffff;
    border-color: #ffcc00;
}

.navbar-toggler-icon {
    filter: invert(1);
}
.navbar-nav .nav-link.show {
    color: #ffcc00 !important;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler {
    border: 0;
}

/* toogle bar design */

.ax-toggler-icon {
    width: 26px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.ax-toggler-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.35s ease;
}

.ax-toggler-icon span:nth-child(1) {
    top: 0;
}

.ax-toggler-icon span:nth-child(2) {
    top: 8px;
}

.ax-toggler-icon span:nth-child(3) {
    top: 16px;
}

/* when menu is OPEN (button is NOT collapsed) */
.navbar-toggler:not(.collapsed) .ax-toggler-icon span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .ax-toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .ax-toggler-icon span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

/* navbar hide / show animation */
.ax-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform 0.35s ease;
}

/* when scrolling down */
.ax-navbar.nav-hide {
    transform: translateY(-100%);
}

/* ======================== Navbar End =========================== */

/* ============= Hero Sec Start ================== */

.ax-hero-section {
    min-height: 80vh;
    background: url("./images/hero 1_compressed.webp") bottom/cover no-repeat;
    display: flex;
    align-items: center;
    margin-top: 68px;
}
.ax-hero-card {
    background: rgba(0, 0, 0, 0.55);
    padding: 25px;
    border-radius: 14px;
    max-width: 624px;
    max-height: 327px;
}
.ax-hero-eyebrow {
    color: #f5b400;
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 14px;
}
.ax-hero-title {
    color: #fff;
    font-size: 33px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
}
.ax-hero-text {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.ax-hero-btn {
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 18px;
}
.ax-hero-btn:hover {
    background: #f5b400;
    color: #ffffff;
    border-color: #f5b400;
}
@media (max-width: 991px) {
    .ax-hero-title {
        font-size: 30px;
    }
}
@media (max-width: 576px) {
    .ax-hero-card {
        padding: 24px;
    }
}

/* ============= Hero Sec End ================== */

/* ========================= Who We Are Sec Start ======================== */

.ax-about-section {
    padding: 60px 0;
    background: #fff;
}
.ax-about-img {
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid #f3a326;
    height: 447px;
}
.ax-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ax-about-eyebrow {
    max-width: 550px;
    overflow-wrap: break-word;
    color: #f3a326;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    display: inline-block;
}
.ax-about-title {
    max-width: 550px;
    overflow-wrap: break-word;
    font-size: 32px;
    font-weight: 700;
    color: #0b1e3c;
    margin-bottom: 16px;
}
.ax-about-text {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}
.ax-about-features {
    background: #fff2d6;
    padding: 15px 9px;
    border-radius: 12px;
    margin-top: 15px;
}
.ax-feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.ax-feature-item i {
    color: #fff;
    font-size: 18px;
    background: #0b1e3c;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ax-feature-item img {
    padding: 5px;
    background: #1e4566;
    border-radius: 50%;
    width: 28px;
    height: 28px;
}
.ax-feature-item span {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    max-width: 320px;
    overflow-wrap: break-word;
}
.ax-about-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.ax-btn-primary {
    background: #1e4566;
    color: #fff;
    padding: 10px 19px;
    border-radius: 8px;
}
.ax-btn-primary:hover {
    background: #16344d;
    color: #fff;
}
.ax-btn-outline {
    border: 1.5px solid #1e4566;
    color: #1e4566;
    padding: 10px 19px;
    border-radius: 8px;
}
.ax-btn-outline:hover {
    background: #1e4566;
    color: #fff;
}
@media (max-width: 768px) {
    .ax-about-title {
        font-size: 26px;
    }
}

/* ========================= Who We Are Sec End ======================== */

/* =========================== What We Deliver Sec Start ========================== */

.ax-deliver-section {
    padding: 40px 0;
    background: #f4f4f4;
}
.ax-section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #0b1e3c;
    margin-bottom: 40px;
}
.ax-service-card {
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ax-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(190, 141, 27, 0.884);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    text-align: center;
    padding: 20px;
    transform: translateY(100%);
    transition: 0.45s ease;
    z-index: 3;
}

.ax-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
    transition: 0.4s ease;
}
.ax-service-card:hover .ax-card-overlay {
    transform: translateY(0);
}
/* .ax-service-card:hover .ax-card-overlay {
    transform: translateY(0);
} */
.ax-card-overlay i {
    font-size: 32px;
    margin-bottom: 12px;
}
.ax-card-overlay h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.ax-card-overlay p {
    max-width: 325px;
    overflow-wrap: break-word;
    font-size: 14px;
    line-height: 1.6;
}
.ax-hidden {
    display: none;
}
.ax-view-btn {
    border: 1.5px solid #0b1e3c;
    color: #0b1e3c;
    padding: 8px 20px;
    border-radius: 6px;
}
.ax-view-btn:hover {
    background: #0b1e3c;
    color: #fff;
}
@media (max-width: 768px) {
    .ax-service-card {
        height: 240px;
    }
}

.ax_icon_box {
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1111;
}
.ax_icon_box i {
    font-size: 40px;
    margin-bottom: 12px;
}
.ax_icon_box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    max-width: 220px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.ax-service-card:hover::after {
    opacity: 0;
}

/* =========================== What We Deliver Sec End ========================== */

/* ====================== Tools And Software Sec Start ====================== */

.ax-tools-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* background image layer */
.ax-tools-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/grid_bg.png") center / cover no-repeat;
    opacity: 0.4;
    z-index: 0;
}

/* ✅ Keep content above overlay */
.ax-tools-section .container {
    position: relative;
    z-index: 1;
}

.ax-tools-title {
    font-size: 40px;
    font-weight: 700;
    color: #224c68;
    margin-bottom: 10px;
}
.ax-tools-subtitle {
    font-size: 14px;
    color: #555;
}
.ax-tools-subtitle span {
    color: #f3a326;
    font-weight: 500;
}
.ax-tool-box {
    align-items: center;
    justify-content: center;
    display: flex;
    background: #fff;
    height: 80px;
    font-size: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 14px;
    text-align: center;
    font-weight: 600;
    color: #0b1e3c;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.ax-tool-box:hover {
    background: #f2ac22;
    color: #ffffff;
    transform: translateY(-2px);
    transition: 0.3s ease;
}

.ax-tools-image {
    max-width: 100%;
    height: auto;
}
@media (max-width: 991px) {
    .ax-tools-image {
        max-width: 60%;
    }
}
@media (max-width: 768px) {
    .ax-tool-box {
        text-align: center;
    }
}
/* ====================== Tools And Software Sec End ====================== */

/* =========================== Our Industry Focus Start ==========================  */

.ax-industry-section {
    padding: 40px 0;
    background: #f4f4f4;
}
.ax-industry-title {
    font-size: 40px;
    font-weight: 700;
    color: #224c68;
    margin-bottom: 10px;
}
.ax-industry-subtitle {
    font-size: 14px;
    color: #555;
}
.ax-industry-subtitle span {
    color: #f3a326;
    font-weight: 500;
}
.ax-industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ax-industry-list li {
    position: relative;
    padding: 16px 16px 16px 36px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s ease;
}
.ax-industry-list li:hover {
    background: #f9f9f9;
}
.ax-industry-list li.active {
    background: #fff7e0;
}
.ax-industry-list h5 {
    font-size: 25px;
    font-weight: 600;
    color: #0b1e3c;
    margin-bottom: 6px;
}
.ax-industry-list p {
    font-size: 14px;
    color: #666;
    margin: 0;
}
.ax-indicator {
    position: absolute;
    left: 0;
    top: 18px;
    width: 19px;
    height: 53px;
    background: #f3a326;
    border-radius: 0 20px 20px 0;
    opacity: 0;
    transition: 0.3s ease;
}
.ax-industry-list li.active .ax-indicator {
    opacity: 1;
}
.ax-industry-image {
    border: 1.5px solid #f3a326;
    border-radius: 12px;
    overflow: hidden;
}
.ax-industry-image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
}
@media (max-width: 991px) {
    .ax-industry-image {
        margin-top: 20px;
        width: 55%;
        text-align: center;
        margin: auto;
    }
}

/* =========================== Our Industry Focus End ==========================  */

/* ============================= Design and Detail Sec Start ======================== */

.ax-design-section {
    padding: 40px 0;
    background: #111746;
    color: #fff;
}
.design_title {
    font-size: 40px;
}
.ax-left {
    border-right: 1px solid #fff;
}
.ax-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}
.ax-subtext {
    font-size: 14px;
    color: #cfd6ff;
    line-height: 1.6;
}
.ax-left h5 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 28px;
}
.ax-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ax-list li {
    font-size: 20px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 500;
}
.ax-list li img {
    padding: 6px;
    border-radius: 50%;
    background: #224c68;
    width: 32px;
    height: 32px;
}
.ax-carousel .ax-card {
    background: #fff;
    border-radius: 10px;
    padding: 2px;
    width: 234px;
    height: 234px;
}
.ax-carousel img {
    width: 230px;
    height: 230px;
    border-radius: 8px;
}
.ax-btn {
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 24px;
    border-radius: 6px;
}
.ax-btn:hover {
    background: #fff;
    color: #0b1240;
}
.owl-dots {
    text-align: center;
    margin-top: 16px;
    display: block !important;
}
.owl-dot span {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 1;
    display: block !important;
    margin: 4px;
    border-radius: 50%;
    opacity: 1;
}
.owl-dot.active span {
    background: #f3a326;
    opacity: 1;
}

/* ============================= Design and Detail Sec End ======================== */

/* ============================== Engineering Material Sec Start  ============================== */

.ax-material-section {
    padding: 60px 0;
    background: #fff;
}
.ax-title {
    font-size: 40px;
    font-weight: 700;
    color: #224c68;
}
.ax-subtitle {
    font-size: 14px;
    color: #555;
    max-width: 720px;
    margin: 0 auto;
}
.ax-heading {
    font-size: 30px;
    font-weight: 700;
    margin-top: 20px;
    color: #000;
}
.ax-text {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
}
.ax-img {
    max-width: 100%;
    height: auto;
}
.ax-img.one {
    width: 355px;
    height: 240px;
}
.ax-img.two {
    width: 320px;
    height: 240px;
}
.ax-img.three {
    width: 320px;
    height: 240px;
}
.ax-material-section .ax-btn {
    padding: 8px 26px;
    border: 1px solid #4a5aa5;
    color: #4a5aa5;
    border-radius: 6px;
    background: transparent;
}
.ax-material-section .ax-btn:hover {
    background: #4a5aa5;
    color: #fff;
}
@media (max-width: 767px) {
    .ax-title {
        font-size: 22px;
    }
}

/* ============================== Engineering Material Sec End  ============================== */

/* ========================= Why Choose Us Sec Start ====================== */

.ax-why-section {
    padding: 40px 0;
    background: #f4f4f4;
}
.ax-why-title {
    font-size: 40px;
    font-weight: 700;
    color: #224c68;
    margin-bottom: 10px;
    max-width: 540px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.ax-why-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    max-width: 520px;
}
.ax-why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.award_icon img {
    width: 32px;
    height: 32px;
    padding: 6px;
    border-radius: 50%;
    background: #224c68;
}
.ax-why-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.ax-why-list i {
    font-size: 18px;
    color: #f0a500;
    margin-top: 4px;
}
.ax-why-list h6 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ef891f;
    max-width: 440px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.ax-why-list p {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    text-align: left;
}
.ax-read-btn {
    background: #0b1e3c;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
}
.ax-read-btn:hover {
    background: #092048;
    color: #fff;
}
.ax-rotate-wrap {
    position: relative;
    display: inline-block;
}
.ax-rotate-img {
    max-width: 100%;
    /* animation: axRotate 30s linear infinite; */
    width: 580px;
}
/* @keyframes axRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
} */
@media (max-width: 991px) {
    .ax-why-section {
        text-align: center;
    }
}
@media (max-width: 991px) {
    .ax-why-list li {
        justify-content: start;
    }
}
@media (max-width: 991px) {
    .ax-why-sub {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ========================= Why Choose Us Sec End ====================== */

/* =========================== Footer Start ========================= */

.ax-footer {
    position: relative;
    background: url("./images/footer_img.jpg") center/cover no-repeat;
    padding: 70px 0 30px;
    color: #fff;
    overflow: hidden;
}
.ax-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000b28c9;
    backdrop-filter: blur(8.9px);
    -webkit-backdrop-filter: blur(8.9px);
    z-index: 0;
}
.ax-footer .container {
    position: relative;
    z-index: 1;
}

.ax-footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}
.ax-footer-tagline {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
}
.ax-footer-text {
    font-size: 12px;
    color: #cfd6e4;
    line-height: 1.6;
}
.ax-footer-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}
.ax-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ax-footer-links li {
    margin-bottom: 8px;
}
.ax-footer-links a {
    color: #cfd6e4;
    font-size: 14px;
    text-decoration: none;
}
.ax-footer-links a:hover {
    color: #f0a500;
}
.ax-footer-contact {
    display: flex;
    gap: 10px;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #cfd6e4;
}
.ax-footer-contact div:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}
.ax-footer-contact i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: #ffffff;
    width: 60px;
    background: #224c68;
    margin-top: 3px;
    height: 60px;
    border-radius: 8px;
}
.ax-footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 69%);
    padding-top: 15px;
    text-align: center;
    font-size: 20px;
    color: #cfd6e4;
}
.contact_box {
    display: flex;
    flex-direction: column;
}
.contact_box strong {
    color: #ef891f;
    font-size: 16px;
}
.contact_box span {
    font-size: 12px;
    font-weight: bold;
}
.contact_box .address {
    font-size: 12px;
    font-weight: bold;
}

.ax-footer-contact a {
    color: #fff;
    text-decoration: none;
}
.ax-footer-contact a:hover {
    text-decoration: underline;
}

/* =========================== Footer End ========================= */

/* ============================ inner-banner ================================= */

.tools-bannera {
    position: relative;
    margin-top: 50px;
    height: 310px;
    background: url("images/abbaner.webp") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* optional dark overlay for better text readability */
.tools-bannera::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* keep title above overlay */
.tools-bannera__title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.about-banner {
    width: 100%;
    background: #cfcfcf; /* grey background */
}

.about-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

/* Center text area */
.about-banner__center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner__title {
    font-size: 32px;
    font-weight: 700;
    color: #224c68; /* blue text like screenshot */
}

/* Right image area */
.about-banner__right {
    width: 360px; /* right block size */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about-banner__image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right center;
}

/* Responsive: keep image right, reduce height on small screens */
@media (max-width: 700px) {
    .about-banner__inner {
        height: 160px;
    }
    .about-banner__right {
        width: 240px;
    }
    .about-banner__title {
        font-size: 26px;
    }
}
.paranew {
    margin-top: 20px;
    line-height: 30px;
    font-weight: 600;
}
/* ============================ inner-banner ================================= */

/* ========================== Our Engineering Principles ============================== */
/* Section */
.principles {
    padding: 6px 16px 20px;
    background: #ffffff;
}

.principles__container {
    max-width: 1120px;
    margin: 0 auto;
}

.principles__title {
    text-align: center;
    font-size: 27px;
    font-weight: 700;
    color: #0d1f3f; /* deep navy */
    margin-bottom: 26px;
}

/* Grid layout: 2 + 2 + centered last */
.principles__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 22px;
    align-items: start;
}

/* Card */
.principle-card {
    background: #ffffff;
    height: 100%;
    border: 1px solid #f2d7c7; /* light peach */
    border-radius: 12px;
    padding: 18px 18px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-height: 96px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

/* Icon image holder */
.principle-card__icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: grid;
    place-items: center;
}

.principle-card__icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

/* Text */
.principle-card__heading {
    font-size: 20px;
    font-weight: 700;
    color: #1f4d73; /* blue heading */
    margin-bottom: 6px;
}

.principle-card__text {
    font-size: 15px;
    line-height: 1.5;
    color: #2a2a2a;
    max-width: 435px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Center 5th card */
.principle-card--center {
    grid-column: 1 / -1; /* span both columns */
    justify-self: center; /* center in row */
    width: min(560px, 100%); /* like screenshot */
}

/* Hover animation */
.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(15, 27, 42, 0.1);
    border-color: #eec3a8;
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 520ms ease,
        transform 520ms ease;
    transition-delay: var(--d, 0s);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px) {
    .principles__grid {
        grid-template-columns: 1fr;
    }

    .principle-card--center {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
    }
}

@media (max-width: 420px) {
    .principle-card {
        padding: 10px;
        gap: 8px;
    }

    .principle-card__icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .principle-card__icon img {
        width: 48px;
        height: 48px;
    }

    .principles__title {
        font-size: 22px;
        margin-top: -20px;
    }
}
/* ========================== Our Engineering Principles ============================== */
/* ========================== Vision-mission ========================= */
/* Section spacing like screenshot */
.vm {
    padding: 28px 16px;
}

.vm__container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Two-column layout */
.vm__grid {
    /* display: grid; */
    gap: 30px;
    align-items: start;
}

/* Titles */
.vm__title {
    font-size: 27px;
    font-weight: 700;
    color: #0b1738;
    margin-bottom: 10px;
}

/* Vision paragraph */
.vm__desc {
    font-size: 19px;
    line-height: 1.9;
    color: #0f172a;
    font-weight: 600;
}

/* Mission list */
.vm__list {
    list-style: none;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vm__item {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

/* Icon circle like screenshot */
.vm__icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #1f4d73;
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    margin-top: 2px;
    box-shadow: 0 6px 14px rgba(31, 77, 115, 0.15);
}

.vm__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1); /* makes icon white if it's dark */
}

/* Mission text style (big like screenshot) */
.vm__text {
    font-size: 16.5px;
    line-height: 1.9;
    color: #0b1220;
}

/* Right image card */
.vm__right {
    display: flex;
    justify-content: flex-end;
}

.vm__imageCard {
    width: 100%;

    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.14);
}

.vm__image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* Hover animation like modern UI */
.vm__imageCard:hover {
    transform: translateY(-4px);
    transition: transform 220ms ease;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 520ms ease,
        transform 520ms ease;
    transition-delay: var(--d, 0s);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .vm__grid {
        grid-template-columns: 1fr;
    }

    .vm__right {
        justify-content: flex-start;
    }

    .vm__imageCard {
        max-width: 560px;
    }

    .vm__image {
        height: 240px;
    }
}

@media (max-width: 420px) {
    .vm__title {
        font-size: 20px;
    }

    .vm__item {
        gap: 6px;
    }

    .vm__icon {
        width: 34px;
        height: 34px;
    }

    .vm__icon img {
        width: 20px;
        height: 20px;
    }
}
/* ========================== Vision-mission ========================= */

/* ========================== Our Values =========================== */
/* ===== Section with BLUR background image ===== */
.core-values {
    position: relative;
    padding: 34px 16px 40px;
    overflow: hidden;
    min-height: 360px;
}

/* Background image (blurred) */
.core-values::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/images/about-usinner.webp") center/cover
        no-repeat; /* <-- replace bg image */
    filter: blur(11px);
    transform: scale(1.08); /* prevent blur edges */
    z-index: 0;
}

/* Dark overlay like screenshot */
.core-values::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(22, 24, 28, 0.7);
    z-index: 0;
}

.core-values__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

/* Title */
.core-values__title {
    text-align: center;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Grid: 3 top + 3 bottom */
.core-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 16px;
}

/* Card */
.value-card {
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 10px;
    padding: 16px 16px 14px;
    text-align: center;

    background: rgba(255, 255, 255, 0.08); /* slight glass */
    backdrop-filter: blur(2px);

    transition:
        transform 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
}

/* Icon centered */
.value-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
}

.value-card__icon img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    display: block;
}

/* Heading */
.value-card__heading {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

/* Paragraph */
.value-card__text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.7;
    /* max-width: 260px; */
    margin: 0 auto;
    font-weight: 600;
}

/* Hover animation */
.value-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .core-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .value-card__text {
        max-width: 340px;
    }
}
/* ========================== Our Values =========================== */

/* ========================== Our Work Flow =========================== */

.workflow-head {
    text-align: center;
    padding: 40px 15px 25px;
}

.workflow-title {
    font-size: 40px;
    font-weight: 700;
    color: #0c1d57;
    margin-bottom: 14px;
}

.workflow-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 1210px;
    margin: 0 auto;
}

.workflow-sub p {
    margin: 0;
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    text-align: center;
    font-weight: 600;
}

.workflow-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1f4d7a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.workflow-icon i {
    color: #ffffff;
    font-size: 14px;
}

@media (max-width: 575px) {
    .workflow-sub {
        flex-direction: column;
        text-align: center;
    }
    .workflow-sub p {
        text-align: center;
    }
}

/* ========================== Our Process ============================ */
.flow {
    padding: 24px 16px 30px;
}

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

.flow__canvas {
    position: relative;
    background: #f4f4f4;
    padding: 16px 6px 8px;
    overflow: hidden; /* IMPORTANT: NO SCROLLBAR */
}

/* Grid with 7 equal columns (fits the page) */
.flow__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
}

/* SVG lines overlay */
.flow__lines {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 260px;
    z-index: 1;
    pointer-events: none;
}

.flow__lines--mobile {
    display: none;
}

.flow__path {
    fill: none;
    stroke: rgba(0, 0, 0, 0.55);
    stroke-width: 2;
    stroke-dasharray: 2 5; /* dotted */
}

.flow__dot {
    fill: #f4f4f4;
}

/* Step layout */
.step {
    display: grid;
    justify-items: center;
    align-items: center;
    text-align: center;
    min-height: 240px;
    padding: 0 4px;
}

/* Titles + text */
.step__title {
    font-size: 12px;
    font-weight: 700;
    color: #234b6f;
    margin: 6px 0 4px;
}

.step__title--bottom {
    margin-top: 40px;
}
.step__desc--top {
    margin-bottom: 30px;
}

.step__desc {
    font-size: 8px;
    line-height: 1.5;
    color: #2a2a2a;
    max-width: 160px;
}

/* Circle node */
.step__circle {
    position: relative;
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
}

.step__outer {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 0, 0, 0.3);
    display: grid;
    place-items: center;
}

.step__inner {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 3px solid #ff8a00;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.step__inner img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
}

/* Orange vertical dotted line + orange dots (like your image) */
.step__vline {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    border-left: 2px dotted #ff8a00;
}

.step__vline--top {
    top: -34px;
    height: 30px;
}

.step__vline--bottom {
    bottom: -34px;
    height: 30px;
}

.step__vline--top::after,
.step__vline--bottom::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #ff8a00;
    border-radius: 50%;
}

.step__vline--top::after {
    top: -4px;
}
.step__vline--bottom::after {
    bottom: -4px;
}

/* Alternate: top text above circle, bottom text under circle */
.step--top {
    grid-template-rows: auto auto;
}
.step--top .step__circle {
    margin-top: 10px;
}

.step--bottom {
    grid-template-rows: auto auto;
}
.step--bottom .step__circle {
    margin-bottom: 10px;
}

/* Responsive: scale down but keep same page (no horizontal scroll) */
@media (max-width: 1100px) {
    .step__desc {
        max-width: 140px;
    }
    .step__circle {
        width: 98px;
        height: 98px;
    }
    .step__outer {
        width: 98px;
        height: 98px;
    }
    .step__inner {
        width: 78px;
        height: 78px;
    }
    .step__inner img {
        width: 40px;
        height: 40px;
    }
    .flow__lines {
        height: 240px;
    }
}

@media (max-width: 980px) {
    /* On small screens, it becomes 2 rows (still NO scroll) */
    .flow__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px 10px;
    }

    /* hide desktop line */
    .flow__lines:not(.flow__lines--mobile) {
        display: none;
    }

    .step {
        min-height: 220px;
    }
}

@media (max-width: 560px) {
    .flow__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .step__desc {
        max-width: 180px;
    }

    /* show mobile line */
    .flow__lines--mobile {
        display: block;
        height: 100%;
        inset: 0;
    }

    .flow__lines--mobile .flow__path {
        fill: none;
        stroke: rgba(0, 0, 0, 0.55);
        stroke-width: 0.5;
        stroke-dasharray: 0.8;
    }
}

/* ========================== Our Process ============================ */

/* ========================== Founder ================================ */
/* Outer white area */
.founder {
    padding: 18px 0 24px;
}

/* Light grey panel like screenshot */
.founder__box {
    background: #f2f2f2;
    padding: 18px 0 22px;
}

/* Title centered */
.founder__title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #0b1738;
    margin-bottom: 14px;
}

/* Content width + spacing (matches image) */
.founder__content {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 46px; /* left-right inset like screenshot */
}

.founder__content p {
    font-size: 15.5px;
    line-height: 1.9;
    color: #1f2937;
    margin-bottom: 10px;
}

/* Signature section */
.founder__sign {
    margin-top: 14px;
}

.founder__role {
    font-size: 25px;
    font-weight: 700;
    color: #0b1738;
    margin-bottom: 8px;
}

.founder__company {
    font-size: 25px;
    font-weight: 700;
    color: #0b1738;
}

/* Responsive */
@media (max-width: 700px) {
    .founder__content {
        padding: 0 18px;
    }
}
/* ========================== Founder ================================ */

/* =========================== software-banner ======================== */

/* ======================== Software Tools Deck ======================== */

/* ======================== Software Tools Deck ======================== */
/* ===== Banner Design (Background image + centered text) ===== */
.tools-banner {
    height: 310px; /* similar to screenshot */
    width: 100%;
    position: relative;
    margin-top: 60px;

    /* background image */
    background: url("../assets/images/softwarebanner.webp") center/cover
        no-repeat;

    /* dark overlay feel (optional but matches screenshot tone) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* overlay layer */
.tools-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* adjust darkness */
}

/* centered title */
.tools-banner__title {
    position: relative; /* to be above overlay */
    z-index: 1;
    color: #ffffff;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

/* ================================
   Responsive Video Section
================================ */

.ax-video-section {
    padding: 30px 0;
    background: #f6f8fc;
}

.ax-video-wrapper {
    position: relative;
    width: 100%;
    /* max-width: 1000px; */
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    background: #000;
}

/* iframe and video both supported */
.ax-video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* responsive text */
@media (max-width: 768px) {
    .tools-banner {
        height: 170px;
    }
    .tools-banner__title {
        font-size: 24px;
        padding: 0 14px;
    }

    .tools-bannera {
        position: relative;
        margin-top: 50px;
        height: 170px;
    }
}

/* =========================== software-banner ======================== */

/* ================= Tool Expertise Start ==================  */

.tool-expertise-section {
    padding-top: 50px;
    padding-bottom: 40px;
    background: #ffffff;
}

.tool-expertise-title {
    font-size: 40px;
    font-weight: 700;
    color: #0c1d57;
    margin-bottom: 14px;
}

.tool-expertise-text {
    font-size: 25px;
    color: #222222;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .tool-expertise-title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .tool-expertise-title {
        font-size: 22px;
    }
    .tool-expertise-text {
        font-size: 13px;
    }
}

/* ================= Tool Expertise End ==================  */

/* ================= Auto Change img and desc Start ==================  */

.tool-slider-section {
    padding-top: 40px;
    padding-bottom: 20px;
    background: #f7f7f7;
}

.tool-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-item {
    padding: 12px 14px;
    border-radius: 6px;
    cursor: pointer;
    background: transparent;
    transition: all 0.4s ease;
}

.tool-item h6 {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    color: #0c1d57;
}

.tool-item.active h6 {
    animation: slideUp 0.8s ease forwards;
}

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

.tool-item small {
    font-weight: 400;
    color: #666666;
}

.tool-item.active {
    background: #ffffff;
    border-left: 15px solid #f4a320;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    border-top-right-radius: 80px;
}

.tool-card {
    animation: fadeSlide 0.6s ease;
}

.tool-desc {
    margin-top: 10px;
}

.tool-used > span {
    font-size: 17px;
    font-weight: 600;
    color: #f4a320;
    display: block;
    margin-bottom: 4px;
}

.tool-used ul {
    display: flex;
    padding-left: 18px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.tool-used li {
    display: flex;
    margin-right: 7px;
    font-size: 17px;
    color: #333333;
    line-height: 3;
    list-style: none;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.tool-why span {
    font-size: 17px;
    font-weight: 600;
    color: #f4a320;
    display: block;
    margin-bottom: 4px;
}

.tool-why p {
    font-size: 12px;
    margin: 0;
    color: #444444;
    line-height: 1.7;
}

.tool-right {
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #f2a23a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    animation: fadeImg 0.6s ease;
}

.tool-right img {
    width: 510px;
    height: 470px;
    border-radius: 6px;
}

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

@keyframes fadeImg {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 991px) {
    .tool-right {
        margin-top: 20px;
    }
}

/* ================= Auto Change img and desc End ==================  */

/* ================contact-us banner================== */
.tools-banner1 {
    height: 310px; /* similar to screenshot */
    width: 100%;
    position: relative;
    margin-top: 60px;

    /* background image */
    background: url("../assets/images/contact_bg.png") center/cover no-repeat;

    /* dark overlay feel (optional but matches screenshot tone) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* overlay layer */
.tools-banner1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* adjust darkness */
}

/* centered title */
.tools-banner1__title {
    position: relative; /* to be above overlay */
    z-index: 1;
    color: #ffffff;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

/* responsive text */
@media (max-width: 768px) {
    .tools-banner1 {
        height: 170px;
    }
    .tools-banner1__title {
        font-size: 24px;
        padding: 0 14px;
    }
}
/* ================contact-us banner================== */

/* ================= contact-us ================== */
/* Section */
.cu-section {
    background: #f2f2f2;
    padding: 28px 0 34px;
}
.cu-wrap {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}
.cu-title {
    text-align: center;
    font-weight: 800;
    color: #0c1450;
    letter-spacing: 0.2px;
    margin: 0 0 22px;
    font-size: 27px;
}

/* Layout */
.cu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: start;
}

/* Left */
.cu-leftTitle {
    margin: 18px 0 26px;
    color: #0c1450;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
}
.cu-infoList {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 6px;
}
.cu-infoItem {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.cu-iconBox {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: #0c1450;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 20px rgba(12, 20, 80, 0.15);
    flex: 0 0 54px;
}
.cu-iconBox i {
    color: #fff;
    font-size: 22px;
}
.cu-infoLabel {
    font-weight: 700;
    color: #0c1450;
    margin: 2px 0 6px;
    font-size: 15px;
}
.cu-infoValue {
    font-weight: 700;
    color: #000;
    font-size: 16px;
    line-height: 1.45;
}

/* Right card */
.cu-formCard {
    background: #dff1ff;
    border-radius: 6px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.cu-form {
    margin: 0;
}

.cu-field {
    margin-bottom: 14px;
}
.cu-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cu-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
}
.cu-required {
    color: #e11d48;
    margin-left: 2px;
}

.cu-input,
.cu-select,
.cu-textarea {
    width: 100%;
    background: #fff;
    border: 2px solid #cfe3f2;
    border-radius: 3px;
    padding: 10px 10px;
    font-size: 13px;
    outline: none;
}
.cu-input:focus,
.cu-select:focus,
.cu-textarea:focus {
    border-color: #9dc4dc;
    box-shadow: 0 0 0 3px rgba(30, 79, 114, 0.1);
}

.cu-textarea {
    min-height: 92px;
    resize: none;
}

.cu-actions {
    margin-top: 8px;
}
.cu-submitBtn {
    border: 0;
    background: #1e4f72;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(30, 79, 114, 0.18);
}
.cu-submitBtn:active {
    transform: translateY(1px);
}

/* Responsive */
@media (max-width: 900px) {
    .cu-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .cu-leftTitle {
        margin-top: 4px;
    }
    .cu-formCard {
        max-width: 520px;
    }
}
@media (max-width: 520px) {
    .cu-wrap {
        width: min(1120px, calc(100% - 24px));
    }
    .cu-row {
        grid-template-columns: 1fr;
    }
    .cu-leftTitle {
        font-size: 32px;
    }
}
.leftaside {
    margin-top: 50px;
}
/* ================= contact-us ================== */

/* ================= our-service ================= */
.tools-banner2 {
    height: 310px; /* similar to screenshot */
    width: 100%;
    position: relative;
    margin-top: 60px;

    /* background image */
    background: url("../assets/images/our-servicebanner.webp") center/cover
        no-repeat;

    /* dark overlay feel (optional but matches screenshot tone) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* overlay layer */
.tools-banner2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* adjust darkness */
}

/* centered title */
.tools-banner2__title {
    position: relative; /* to be above overlay */
    z-index: 1;
    color: #ffffff;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

/* responsive text */
@media (max-width: 768px) {
    .tools-banner2 {
        height: 170px;
    }
    .tools-banner2__title {
        font-size: 24px;
        padding: 0 14px;
    }
}

/* ====== Scope Design start ====== */

.design-scope-section {
    padding-top: 15px;
    padding-bottom: 50px;
    background: #f6f6f6;
}

.design-scope-title {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
}

.scope-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.scope-img-box {
    background: #ffffff;
    border-radius: 6px;
    padding: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.scope-img-box img {
    width: 100%;
    height: 200px;
    display: block;
    border-radius: 4px;
    transition: transform 0.25s ease;
}

.scope-img-box:hover {
    background: #f5f7fb;
    box-shadow: 0 8px 18px rgba(12, 47, 87, 0.12);
}

.scope-img-box:hover img {
    transform: translateY(-2px);
}

.scope-list {
    border-left: 1px solid #dcdcdc;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scope-item {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 18px;
    font-weight: 500;
    color: #0c2f57;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #cfd8e3;
    cursor: pointer;
    z-index: 1;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.scope-item i {
    color: #0c2f57;
    font-size: 14px;
    z-index: 2;
}

.scope-item:hover {
    background: #f5f9ff;
    border-color: #bcd3eb;
    color: #0c2f57;
}

.scope-item:active {
    background: #e6f0ff;
    border-color: #9dbde4;
}

.scope-bullet {
    font-size: 18px;
    line-height: 1;
    color: #0c2f57;
    flex-shrink: 0;
}

.scope-item:hover p {
    color: #0c2f57;
}

.scope-item:hover i {
    color: #0c2f57;
}

/* scope item view more button */

.scope-block .scope-item-hidden {
    display: none;
}

.scope-block.expanded .scope-item-hidden {
    display: flex;
}

.scope-view-more-wrap {
    width: 100%;
    text-align: center;
    margin-top: 16px;
}

.scope-view-more-btn {
    background: #1b4e81;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.scope-view-more-btn:hover {
    background: #163e67;
}

@media (max-width: 991px) {
    .scope-list {
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    .design-scope-title {
        font-size: 22px;
    }
    .scope-item {
        font-size: 13px;
        padding: 10px 12px;
    }
}

.flow_two_grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
}

.flow-title {
    font-size: 40px;
    font-weight: 700;
    color: #111746;
    padding-bottom: 20px;
}

.flow_two_grid .step__title {
    font-size: 14px;
    font-weight: 700;
    color: #ed8527;
    margin: 20px 0 4px;
}

/* ========== material-section ======== */

.material-section {
    padding: 30px 0 20px;
    background: #ffffff;
}

.material-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #111746;
    margin-bottom: 10px;
}

.material-sub {
    text-align: center;
    font-size: 20px;
    color: #000000;
    margin-bottom: 25px;
}

.material-subtitle {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #000000;
}

.material-blue {
    width: 100%;
    padding: 40px 15px;
    background: #f4f4f4;
}

.material-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.material-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.material-title-two {
    font-size: 25px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.material-text {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 0;
}

.material-divider {
    width: 1px;
    background: #dcdcdc;
}

.material-right {
    width: 65%;
}

.material-grid {
    margin: 0;
}

.material-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 0 0 1px #eeeeee inset;
    transition: all 0.2s ease;
}

.material-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.material-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.material-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.material-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #1b4e81;
    line-height: 1.4;
    margin-bottom: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
    .material-layout {
        flex-direction: column;
        gap: 25px;
    }

    .material-left {
        width: 100%;
    }

    .material-right {
        width: 100%;
    }

    .material-divider {
        width: 100%;
        height: 1px;
    }
}

@media (max-width: 575px) {
    .material-title {
        font-size: 18px;
    }

    .material-text {
        font-size: 13px;
    }

    .material-card {
        padding: 14px 8px;
    }

    .material-card-title {
        font-size: 11px;
    }
}

.flow_three_grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
}

.flow_three_grid .step__title {
    font-size: 15px;
    font-weight: 700;
    color: #ff9207;
    margin: 6px 0 4px;
}

/* ================= our-service ================= */

/* =============================== Responsive Start =============================== */

@media (min-width: 1200px) and (max-width: 9000px) {
}

/* responsive */
@media only screen and (max-width: 1799px) {
}

@media only screen and (max-width: 1699px) {
}

@media only screen and (max-width: 1499px) {
    .ax-section-title,
    .ax-tools-title,
    .ax-industry-title,
    .design_title,
    .ax-why-title {
        font-size: 35px;
    }

    .core-values__title,
    .workflow-title,
    .founder__title {
        font-size: 35px;
    }

    .founder__role,
    .founder__company {
        font-size: 24px;
    }

    .tools-banner__title {
        font-size: 42px;
    }

    .tool-expertise-title {
        font-size: 35px;
    }
    .tool-expertise-text {
        font-size: 20px;
    }

    .tools-banner2__title {
        font-size: 42px;
    }

    .design-scope-title {
        font-size: 35px;
    }

    .flow-title,
    .material-title,
    .flow-title {
        font-size: 35px;
    }

    .tools-banner1__title {
        font-size: 42px;
    }
}

@media only screen and (max-width: 1445px) {
}

@media only screen and (max-width: 1399px) {
    .ax-rotate-img {
        width: 480px;
    }
}

@media only screen and (max-width: 1199px) {
    .ax-rotate-img {
        width: 380px;
    }

    .ax-hero-title {
        font-size: 28px;
    }

    .ax-btn-primary {
        padding: 10px 10px;
    }

    .ax-btn-outline {
        padding: 10px 10px;
    }

    .ax-carousel .ax-card {
        background: #fff;
        border-radius: 10px;
        padding: 2px;
        width: 300px;
        height: 240px;
    }

    .ax-carousel img {
        width: 298px;
        height: 236px;
        border-radius: 8px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        background: #0b1853;
        flex-basis: 100%;
        flex-grow: 1;
        align-items: start;
        top: 68px;
        right: 0;
        width: 88%;
        height: 100vh;
        z-index: 11111;
    }

    .navbar-nav {
        padding: 10px 26px;
        text-align: start !important;
    }

    .ax-hero-title {
        font-size: 25px;
    }

    .ax-about-img {
        border-radius: 14px;
        overflow: hidden;
        border: 2px solid #f3a326;
        height: 380px;
    }

    .ax-about-section {
        padding: 50px 0;
    }

    .ax-deliver-section {
        padding: 40px 0;
    }

    .ax-section-title {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        color: #0b1e3c;
        margin-bottom: 30px;
    }

    .ax-tools-section {
        padding: 40px 0;
        background: #fff;
    }

    .ax-tools-title {
        font-size: 36px;
        font-weight: 700;
        color: #224c68;
        margin-bottom: 10px;
    }

    .ax-industry-section {
        padding: 40px 0;
    }

    .ax-industry-title {
        font-size: 36px;
    }

    .ax-design-section {
        padding: 40px 0;
    }

    .design_title {
        font-size: 36px;
    }

    .ax-left {
        border-right: none;
    }

    .ax-why-list h6 {
        text-align: left;
    }
    .ax-left h5 {
        margin-top: 0px !important;
    }

    .ax-material-section {
        padding: 40px 0;
    }

    .ax-title {
        font-size: 36px;
    }

    .ax-heading {
        margin-top: 10px;
    }

    .ax-why-section {
        padding: 40px 0;
    }

    .ax-why-title {
        font-size: 36px;
    }

    .ax-industry-image img {
        width: 100%;
        height: 340px;
    }

    .ax-industry-image {
        margin-top: 20px;
        width: 98%;
    }
}

@media only screen and (max-width: 767px) {
    .ax-carousel .ax-card {
        background: #fff;
        border-radius: 10px;
        padding: 2px;
        width: 248px;
        height: 240px;
    }

    .ax-rotate-wrap {
        margin-top: 20px;
    }

    .ax-industry-image img {
        width: 100%;
        height: 320px;
    }

    .ax-industry-image {
        margin-top: 20px;
        width: 98%;
    }
}

@media only screen and (max-width: 575px) {
    .ax-hero-title {
        font-size: 24px;
    }

    .ax-carousel .ax-card {
        margin: auto;
    }

    .ax-rotate-img {
        width: 360px;
    }

    .ax-title {
        font-size: 32px;
    }

    .ax-heading {
        font-size: 26px;
    }

    .ax-why-title {
        font-size: 32px;
    }

    .design_title {
        font-size: 32px;
    }

    .ax-industry-title {
        font-size: 32px;
    }

    .ax-tools-title {
        font-size: 32px;
    }

    .ax-section-title {
        font-size: 32px;
    }

    .tool-right img {
        width: 320px;
        height: 310px;
    }

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

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

    .ax-industry-image img {
        width: 100%;
        height: 300px;
    }

    .ax-industry-image {
        margin-top: 20px;
        width: 98%;
    }
}

@media only screen and (max-width: 480px) {
    .ax-hero-card {
        padding: 13px;
    }

    .ax-hero-eyebrow {
        font-size: 14px;
    }

    .ax-hero-title {
        font-size: 18px;
    }

    .ax-hero-text {
        line-height: 1.5;
    }

    .ax-hero-btn {
        color: #fff;
        border: 2px solid #fff;
        padding: 8px 22px;
        border-radius: 12px;
        font-weight: bold;
        font-size: 16px;
    }

    .ax-about-img {
        border-radius: 14px;
        overflow: hidden;
        border: 2px solid #f3a326;
        height: 250px;
    }

    .ax-about-text {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .ax-feature-item {
        gap: 5px;
    }

    .ax-about-section {
        padding: 25px 0;
    }

    .ax-deliver-section {
        padding: 20px 0;
    }

    .ax-section-title {
        font-size: 26px;
    }

    .ax-tools-title {
        font-size: 26px;
    }

    .ax-tools-section {
        padding: 20px 0;
        background: #fff;
    }

    .ax-tool-box {
        font-size: 18px;
    }

    .ax-industry-title {
        font-size: 26px;
    }

    .ax-industry-section {
        padding: 20px 0;
    }

    .ax-industry-list h5 {
        font-size: 18px;
    }

    .ax-design-section {
        padding: 20px 0;
    }

    .design_title {
        font-size: 26px;
    }

    .ax-left h5 {
        font-size: 20px;
    }

    .ax-list li {
        font-size: 16px;
    }

    .ax-design-section .container .row.mt-5.align-items-center {
        margin-top: 25px !important;
    }

    .ax-design-section .container .row.mt-5.align-items-center .col-lg-8.mt-5 {
        margin-top: 20px !important;
    }

    .ax-design-section .container .text-center.mt-5 {
        margin-top: 20px !important;
    }

    .ax-material-section {
        padding: 20px 0;
    }

    .ax-title {
        font-size: 26px;
    }

    .ax-heading {
        font-size: 22px;
    }

    .ax-text {
        font-size: 15px;
    }

    .ax-rotate-img {
        width: 250px;
    }

    .ax-img.one {
        width: 260px;
        height: 140px;
    }

    .ax-img.two {
        width: 260px;
    }

    .ax-img.three {
        width: 250px;
    }

    .ax-why-section {
        padding: 20px 0;
    }

    .ax-why-title {
        font-size: 26px;
    }

    .ax-why-list h6 {
        font-size: 16px;
    }

    .ax-why-list li {
        display: flex;
        gap: 10px;
    }

    /* =========== inner page ======== */

    /* about pg */

    .tools-bannera__title {
        position: relative;
        z-index: 1;
        color: #fff;
        font-size: 35px;
    }

    .about-banner__title {
        font-size: 20px;
    }

    .principle-card__heading {
        font-size: 18px;
    }

    .principle-card__text {
        font-size: 13px;
    }

    .vm__list {
        padding-left: 0px;
    }

    .vm__desc {
        font-size: 16px;
    }

    .vm {
        padding: 10px 12px;
    }

    .core-values__title,
    .workflow-title,
    .founder__title {
        font-size: 26px;
    }

    .workflow-sub p {
        margin: 0;
        font-size: 15px;
    }

    .workflow-head {
        text-align: center;
        padding: 25px 15px 10px;
    }

    .step__desc--bottom {
        margin-bottom: 30px;
    }

    .flow {
        padding: 24px 16px 10px;
    }

    .founder__content p {
        font-size: 13px;
    }

    .founder__role,
    .founder__company {
        font-size: 18px;
    }

    /* software page */

    .tools-banner__title {
        font-size: 20px;
    }
    .tool-expertise-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .tool-expertise-title {
        font-size: 22px;
    }

    .tool-expertise-text {
        font-size: 14px;
    }

    .tool-slider-section {
        padding-top: 20px;
    }

    .tool-right img {
        width: 270px;
        height: 270px;
    }

    .tool-right {
        min-height: 295px;
    }

    .tool-left {
        margin-top: 16px;
    }

    .tool-item h6 {
        font-size: 20px;
    }

    .tool-item.active {
        border-top-right-radius: 70px;
    }

    .tool-used ul {
        padding-left: 10px;
    }

    .ax-video-section {
        padding: 10px 0 30px 0;
    }

    /* our service */

    .tools-banner2__title {
        font-size: 26px;
    }

    .design-scope-title {
        font-size: 22px;
    }

    .scope-img-box img {
        width: 100%;
        height: 140px;
    }

    .flow-title {
        font-size: 22px;
    }

    .flow_two_grid .step__title {
        margin: 28px 0 4px;
    }
    .flow-title {
        padding-bottom: 0px;
    }

    .material-title {
        font-size: 22px;
    }

    .material-sub {
        font-size: 16px;
    }

    .material-subtitle {
        font-size: 22px;
    }

    .material-title-two {
        font-size: 20px;
    }

    .material-blue {
        width: 100%;
        padding: 30px 10px;
    }

    /* contact pg */

    .tools-banner1__title {
        font-size: 26px;
    }

    .leftaside {
        margin-top: 0px;
    }
    .cu-leftTitle {
        font-size: 22px;
    }
    .cu-iconBox {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: #0c1450;
        display: grid;
        place-items: center;
        box-shadow: 0 10px 20px rgba(12, 20, 80, 0.15);
        flex: 0 0 42px;
    }

    .cu-infoValue {
        font-weight: 700;
        color: #000;
        font-size: 14px;
        line-height: 1.45;
    }

    .cu-infoItem {
        gap: 10px;
    }

    .ax-hero-section {
        min-height: 55vh;
    }

    .ax-industry-image img {
        width: 100%;
        height: 270px;
    }

    .ax-industry-image {
        margin-top: 20px;
        width: 98%;
    }

    /* our core values */

    .value-card__text {
        color: rgba(255, 255, 255, 0.92);
        font-size: 10px;
        line-height: 1.4;
        max-width: 260px;
        margin: 0 auto;
        font-weight: 600;
    }

    .value-card {
        padding: 6px 6px 6px;
    }

    .value-card__heading {
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .value-card__icon {
        width: 40px;
        height: 52px;
        margin: 0 auto 0px;
    }

    .value-card__icon img {
        width: 32px;
        height: 32px;
    }

    .ax-footer-logo {
        max-width: 100px;
        margin-bottom: 15px;
    }

    .ax-footer-tagline {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        margin-bottom: 12px;
    }


    .navbar-nav .nav-link {
        font-size: 16px;
   }


}

.nwpro {
    font-weight: 800;
    font-size: 22px;
    margin-top: 15px;
}
